/* ================================================================
   Design 2 — Mr Rajen Gupta | Ultra-Premium Eye Care
   Dark luxury · Glassmorphism · Kinetic type · Cinematic layout
   Motion · Immersive · Bold serif · Adaptive Dark / Light mode
   ================================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --blue:        #2563eb;
  --blue-light:  #60a5fa;
  --blue-dim:    rgba(37,99,235,0.12);
  --blue-glow:   rgba(37,99,235,0.35);
  --gold:        #f0a500;
  --gold-light:  #fbbf24;
  --gold-glow:   rgba(240,165,0,0.25);
  --teal:        #0891b2;
  --teal-light:  #22d3ee;
  --emerald:     #059669;

  /* Backgrounds */
  --bg:          #030b18;
  --bg-2:        #06101f;
  --bg-surface:  #091527;
  --bg-card:     rgba(255,255,255,0.045);
  --bg-card-hov: rgba(255,255,255,0.085);

  /* Glass */
  --glass:       rgba(255,255,255,0.055);
  --glass-edge:  rgba(255,255,255,0.1);
  --glass-hov:   rgba(37,99,235,0.28);

  /* Text */
  --text:        #f1f5f9;
  --text-muted:  #94a3b8;
  --text-dim:    rgba(148,163,184,0.38);

  /* Fonts */
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   26px;
  --r-xl:   38px;
  --r-full: 9999px;

  /* Motion */
  --spring: cubic-bezier(0.34,1.56,0.64,1);
  --smooth: cubic-bezier(0.22,1,0.36,1);
  --eio:    cubic-bezier(0.65,0,0.35,1);
  --fast:   0.18s;
  --mid:    0.35s;
  --slow:   0.65s;
}

/* Light theme */
[data-theme="light"] {
  --bg:          #f0f4fb;
  --bg-2:        #e8edf7;
  --bg-surface:  #dfe4f0;
  --bg-card:     rgba(255,255,255,0.75);
  --bg-card-hov: rgba(255,255,255,0.98);
  --glass:       rgba(255,255,255,0.65);
  --glass-edge:  rgba(0,0,0,0.08);
  --glass-hov:   rgba(37,99,235,0.15);
  --text:        #0f172a;
  --text-muted:  #475569;
  --text-dim:    rgba(71,85,105,0.38);
}

/* ── Base ────────────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:var(--ff-sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  transition:background var(--mid) var(--smooth), color var(--mid) var(--smooth);
}
img { display:block; max-width:100%; }
a   { text-decoration:none; color:inherit; }
button { border:none; background:none; cursor:pointer; }
ul  { list-style:none; }

/* Scrollbar */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb {
  background:linear-gradient(to bottom, var(--blue), var(--teal));
  border-radius:var(--r-full);
}

/* ── Grid texture ────────────────────────────────────────────── */
.grid-tx {
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* ── Ambient blobs ───────────────────────────────────────────── */
.blobs { position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.blob { position:absolute; border-radius:50%; filter:blur(100px); will-change:transform; animation:blobDrift 18s ease-in-out infinite; }
.blob-1 { width:700px; height:700px; top:-200px; left:-200px; background:radial-gradient(circle, rgba(37,99,235,0.13) 0%, transparent 70%); }
.blob-2 { width:550px; height:550px; top:35%; right:-180px; background:radial-gradient(circle, rgba(240,165,0,0.09) 0%, transparent 70%); animation-delay:-7s; }
.blob-3 { width:450px; height:450px; bottom:-100px; left:30%; background:radial-gradient(circle, rgba(8,145,178,0.09) 0%, transparent 70%); animation-delay:-13s; }
@keyframes blobDrift {
  0%,100% { transform:translate(0,0) scale(1); }
  40%     { transform:translate(44px,-54px) scale(1.09); }
  70%     { transform:translate(-28px,32px) scale(0.94); }
}

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position:fixed; inset:0 0 auto 0; z-index:200;
  padding:1.5rem 0;
  /* Always-present top gradient so nav text is readable over the hero photo */
  background:linear-gradient(to bottom, rgba(3,11,24,0.72) 0%, rgba(3,11,24,0.35) 55%, transparent 100%);
  transition:padding var(--mid) var(--smooth), background var(--mid) var(--smooth);
}
[data-theme="light"] .nav {
  background:linear-gradient(to bottom, rgba(240,244,251,0.82) 0%, rgba(240,244,251,0.25) 60%, transparent 100%);
}
.nav__inner {
  max-width:1340px; margin:0 auto; padding:0 3rem;
  display:flex; align-items:center; gap:2rem;
}
.nav.is-scrolled { padding:0.5rem 0; background:transparent; }
.nav.is-scrolled .nav__inner {
  background:rgba(3,11,24,0.72);
  backdrop-filter:blur(32px) saturate(1.7);
  -webkit-backdrop-filter:blur(32px) saturate(1.7);
  border:1px solid var(--glass-edge);
  border-radius:var(--r-full);
  padding:0.65rem 2rem;
  max-width:1080px;
  box-shadow:0 4px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
}
[data-theme="light"] .nav.is-scrolled .nav__inner {
  background:rgba(240,244,251,0.88);
  border-color:rgba(0,0,0,0.07);
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.nav__brand { display:flex; align-items:center; gap:0.75rem; flex-shrink:0; }
.nav__logo  { height:38px; width:auto; }
.nav__name  {
  font-family:var(--ff-serif);
  font-size:1.05rem; font-weight:700; letter-spacing:-0.01em;
  color:var(--text); white-space:nowrap;
}
.nav__links {
  display:flex; align-items:center; gap:0.1rem; flex:1; justify-content:center;
}
.nav__links a {
  position:relative; padding:0.45rem 0.85rem;
  font-size:0.84rem; font-weight:500; color:var(--text-muted);
  border-radius:var(--r-full);
  transition:color var(--fast), background var(--fast);
  white-space:nowrap;
}
.nav__links a::after {
  content:''; position:absolute; bottom:5px; left:50%;
  transform:translateX(-50%) scaleX(0);
  width:16px; height:2px;
  background:var(--blue-light); border-radius:var(--r-full);
  transition:transform var(--mid) var(--spring);
}
.nav__links a:hover { color:var(--text); }
.nav__links a:hover::after { transform:translateX(-50%) scaleX(1); }
.nav__actions { display:flex; align-items:center; gap:0.75rem; flex-shrink:0; }

/* Theme toggle */
.btn-theme {
  width:38px; height:38px; border-radius:var(--r-full);
  background:var(--glass); border:1px solid var(--glass-edge);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--text-muted);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  transition:all var(--fast);
}
.btn-theme:hover { color:var(--text); border-color:var(--glass-hov); }

/* Primary CTA */
.btn-cta {
  position:relative; display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.6rem 1.45rem;
  font-size:0.85rem; font-weight:600; letter-spacing:0.01em;
  color:#fff;
  background:linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  border-radius:var(--r-full); overflow:hidden;
  transition:transform var(--mid) var(--spring), box-shadow var(--mid) var(--smooth);
  box-shadow:0 4px 20px var(--blue-glow);
}
.btn-cta::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 55%);
  opacity:0; transition:opacity var(--fast);
}
.btn-cta:hover { transform:translateY(-2px) scale(1.03); box-shadow:0 8px 32px var(--blue-glow), 0 2px 8px rgba(0,0,0,0.3); }
.btn-cta:hover::before { opacity:1; }
.btn-cta:active { transform:translateY(0) scale(0.99); }
.btn-cta--lg   { padding:0.95rem 2.75rem; font-size:1.05rem; }

/* Outline CTA */
.btn-outline {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.95rem 2.75rem;
  font-size:1.05rem; font-weight:500; color:var(--text-muted);
  border:1px solid var(--glass-edge); border-radius:var(--r-full);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  transition:all var(--fast);
}
.btn-outline:hover { color:var(--text); border-color:rgba(96,165,250,0.5); background:rgba(37,99,235,0.09); }

/* Hamburger */
.nav__hamburger {
  display:none; flex-direction:column; align-items:center; justify-content:center;
  gap:5px; width:42px; height:42px;
  background:var(--glass); border:1px solid var(--glass-edge); border-radius:var(--r-md);
}
.nav__hamburger span { display:block; width:18px; height:2px; background:var(--text); border-radius:2px; transition:all var(--fast); }

/* ── Glass card ──────────────────────────────────────────────── */
.gc {
  background:var(--bg-card);
  backdrop-filter:blur(24px) saturate(1.5);
  -webkit-backdrop-filter:blur(24px) saturate(1.5);
  border:1px solid var(--glass-edge);
  border-radius:var(--r-lg);
  position:relative; overflow:hidden;
  transition:transform var(--mid) var(--smooth), box-shadow var(--mid) var(--smooth), border-color var(--fast), background var(--fast);
}
.gc::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(145deg, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events:none; border-radius:inherit;
}
.gc:hover {
  transform:translateY(-5px);
  border-color:rgba(96,165,250,0.28);
  background:var(--bg-card-hov);
  box-shadow:0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(96,165,250,0.14), 0 0 48px rgba(37,99,235,0.08);
}

/* ── Eyebrow ─────────────────────────────────────────────────── */
.eyebrow {
  display:inline-flex; align-items:center; gap:0.6rem;
  font-size:0.68rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--blue-light);
}
.eyebrow::before {
  content:''; display:inline-block; width:24px; height:1.5px;
  background:linear-gradient(to right, var(--blue), var(--teal-light)); border-radius:2px;
}

/* Section title */
.sec-title {
  font-family:var(--ff-serif);
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:800; line-height:1.1; letter-spacing:-0.025em;
  color:var(--text);
}
.sec-sub {
  font-size:0.95rem; color:var(--text-muted); line-height:1.8; margin-top:1rem;
}

/* ── Reveal animations ───────────────────────────────────────── */
.rv   { opacity:0; transform:translateY(34px); transition:opacity var(--slow) var(--smooth), transform var(--slow) var(--smooth); }
.rv.on{ opacity:1; transform:none; }
.rv-l { opacity:0; transform:translateX(-34px); transition:opacity var(--slow) var(--smooth), transform var(--slow) var(--smooth); }
.rv-l.on{ opacity:1; transform:none; }
.rv-r { opacity:0; transform:translateX(34px); transition:opacity var(--slow) var(--smooth), transform var(--slow) var(--smooth); }
.rv-r.on{ opacity:1; transform:none; }
/* Stagger */
.d1{transition-delay:.08s!important}.d2{transition-delay:.16s!important}
.d3{transition-delay:.24s!important}.d4{transition-delay:.32s!important}
.d5{transition-delay:.40s!important}.d6{transition-delay:.48s!important}

/* Section wrapper */
.sec { position:relative; z-index:1; padding:7rem 0; }
.sec__inner { max-width:1280px; margin:0 auto; padding:0 2.5rem; }

/* ──────────────────────────────────────────────────────────────
   HERO
────────────────────────────────────────────────────────────── */
.hero {
  position:relative; min-height:100svh;
  display:grid; grid-template-columns:54% 46%;
  overflow:hidden;
}

/* LEFT */
.hero__left {
  position:relative; z-index:2;
  display:flex; flex-direction:column; justify-content:center;
  padding:10rem 4rem 6rem 6rem;
}

/* RIGHT */
.hero__right { position:relative; overflow:hidden; }
.hero__right::before {
  content:''; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:linear-gradient(100deg, var(--bg) 0%, rgba(3,11,24,0.6) 22%, transparent 55%);
}
.hero__right::after {
  content:''; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:linear-gradient(0deg, rgba(3,11,24,0.8) 0%, transparent 45%, rgba(3,11,24,0.15) 100%);
}
.hero__photo {
  width:100%; height:100%;
  object-fit:cover; object-position:top center;
  filter:saturate(0.75) contrast(1.08);
  transform:scale(1.04);
  transition:transform 6s var(--smooth);
}
.hero__photo.loaded { transform:scale(1); }

/* Floating badge */
.hero__badge {
  position:absolute; bottom:3rem; right:3rem; z-index:5;
  padding:1.5rem 2rem; border-radius:var(--r-lg);
  background:rgba(3,11,24,0.6);
  backdrop-filter:blur(32px) saturate(1.8);
  -webkit-backdrop-filter:blur(32px) saturate(1.8);
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 20px 50px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.1);
  display:flex; flex-direction:column; gap:0.25rem; align-items:center;
  animation:badgeFloat 8s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-12px); }
}
.hero__badge-num  { font-family:var(--ff-serif); font-size:3rem; font-weight:800; line-height:1; color:#fff; letter-spacing:-0.04em; }
.hero__badge-num span { font-size:1.6rem; color:var(--gold-light); }
.hero__badge-label{ font-size:0.6rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.45); text-align:center; }

/* Status pill */
.hero__status {
  display:inline-flex; align-items:center; gap:0.65rem;
  font-size:0.68rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--teal-light); margin-bottom:2rem;
  padding:0.42rem 1rem 0.42rem 0.75rem;
  background:rgba(8,145,178,0.1); border:1px solid rgba(34,211,238,0.22);
  border-radius:var(--r-full); width:fit-content;
  animation:fadeUp 0.8s var(--smooth) 0.1s both;
}
.hero__dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--teal-light);
  animation:dotPing 1.8s ease-in-out infinite;
}
@keyframes dotPing {
  0%  { box-shadow:0 0 0 0 rgba(34,211,238,0.6); }
  70% { box-shadow:0 0 0 9px rgba(34,211,238,0); }
  100%{ box-shadow:0 0 0 0 rgba(34,211,238,0); }
}

/* Headline */
.hero__headline {
  font-family:var(--ff-serif);
  font-size:clamp(3.4rem,5.8vw,6.5rem);
  font-weight:900; line-height:0.98; letter-spacing:-0.035em;
  color:var(--text); margin-bottom:1.75rem;
}
.hero__headline .line { display:block; overflow:hidden; }
.hero__headline .line-inner {
  display:block;
  animation:lineReveal 0.9s var(--smooth) both;
  animation-fill-mode:both;
}
.hero__headline .line:nth-child(1) .line-inner { animation-delay:0.2s; }
.hero__headline .line:nth-child(2) .line-inner { animation-delay:0.35s; }
.hero__headline .line:nth-child(3) .line-inner { animation-delay:0.5s; }
@keyframes lineReveal {
  from { transform:translateY(105%); opacity:0; }
  to   { transform:translateY(0); opacity:1; }
}
.hero__headline em {
  font-style:italic;
  background:linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  background-size:200% auto;
  animation:goldShimmer 4s linear infinite alternate;
}
@keyframes goldShimmer {
  from { background-position:0% center; }
  to   { background-position:100% center; }
}

/* Sub text */
.hero__sub {
  font-size:1.05rem; color:var(--text-muted); line-height:1.78;
  max-width:450px; margin-bottom:1.75rem;
  animation:fadeUp 0.9s var(--smooth) 0.65s both;
}
.hero__sub strong { color:var(--text); font-weight:600; }

/* Qualifications row */
.hero__quals {
  display:flex; flex-wrap:wrap; align-items:center; gap:0.5rem;
  margin-bottom:2.5rem;
  animation:fadeUp 0.9s var(--smooth) 0.77s both;
}
.hero__qual-label {
  font-size:0.58rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--text-dim); margin-right:0.4rem;
}
.hero__qual-chip {
  font-size:0.7rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--gold-light);
  padding:0.28rem 0.8rem;
  background:rgba(240,165,0,0.1); border:1px solid rgba(251,191,36,0.25);
  border-radius:var(--r-full);
  transition:background var(--fast), border-color var(--fast);
}
.hero__qual-chip:hover { background:rgba(240,165,0,0.18); border-color:rgba(251,191,36,0.5); }
.hero__qual-sep { color:var(--text-dim); font-size:0.85rem; line-height:1; }

/* CTAs */
.hero__ctas {
  display:flex; flex-wrap:wrap; gap:1rem;
  margin-bottom:4rem;
  animation:fadeUp 0.9s var(--smooth) 0.8s both;
}

/* Trust stats */
.hero__trust {
  display:flex; align-items:center; gap:2.25rem;
  animation:fadeUp 0.9s var(--smooth) 0.95s both;
}
.hero__trust-sep { width:1px; height:38px; background:var(--glass-edge); }
.hero__stat { }
.hero__stat-num {
  font-family:var(--ff-serif);
  font-size:1.7rem; font-weight:800; letter-spacing:-0.035em;
  color:var(--text); line-height:1.1;
}
.hero__stat-lbl {
  font-size:0.67rem; font-weight:600; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--text-dim);
  margin-top:0.15rem;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:none; }
}

/* Scroll cue */
.hero__scroll {
  position:absolute; bottom:2.5rem; left:5.5rem; z-index:3;
  display:flex; align-items:center; gap:0.9rem;
  font-size:0.65rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--text-dim);
  animation:fadeUp 0.8s var(--smooth) 1.1s both;
}
.hero__scroll-bar {
  width:48px; height:1px;
  background:linear-gradient(to right, var(--blue), transparent);
  position:relative; overflow:hidden;
}
.hero__scroll-bar::after {
  content:''; position:absolute; top:0; left:-100%;
  width:100%; height:100%;
  background:linear-gradient(to right, transparent, var(--blue-light), transparent);
  animation:shimmer 2.2s linear infinite;
}
@keyframes shimmer { to { left:200%; } }

/* ──────────────────────────────────────────────────────────────
   ABOUT
────────────────────────────────────────────────────────────── */
.about-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5.5rem; align-items:center;
}

/* Portrait */
.about-portrait { position:relative; }
.about-portrait::before {
  content:''; position:absolute;
  top:-18px; left:-18px; right:28px; bottom:28px;
  border:1.5px solid var(--blue); border-radius:var(--r-xl);
  opacity:0.25; z-index:0; pointer-events:none;
}
.about-portrait-img {
  position:relative; z-index:1;
  border-radius:var(--r-xl); aspect-ratio:4/5;
  object-fit:cover; object-position:top center; width:100%;
  filter:saturate(0.82) contrast(1.06);
}
.about-portrait-overlay {
  position:absolute; bottom:0; left:0; right:0; z-index:2;
  padding:2rem;
  background:linear-gradient(to top, rgba(3,11,24,0.95) 0%, transparent 100%);
  border-radius:0 0 var(--r-xl) var(--r-xl);
}
.about-portrait-name  { font-family:var(--ff-serif); font-size:1.2rem; font-weight:700; color:#fff; }
.about-portrait-creds { font-size:0.7rem; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.42); margin-top:0.25rem; }

/* Content */
.about-title {
  font-family:var(--ff-serif);
  font-size:clamp(2.2rem,3.5vw,3.4rem);
  font-weight:800; line-height:1.08; letter-spacing:-0.028em;
  color:var(--text); margin-bottom:1.75rem; margin-top:0.75rem;
}
.about-title em { font-style:italic; color:var(--gold-light); -webkit-text-fill-color:initial; }

.about-lead { font-size:1rem; color:var(--text-muted); line-height:1.82; margin-bottom:2rem; }

/* Credential list */
.about-creds { display:flex; flex-direction:column; gap:0.875rem; }
.about-cred {
  display:flex; align-items:flex-start; gap:1rem; padding:1.25rem 1.5rem;
}
.about-cred-ico {
  width:38px; height:38px; flex-shrink:0;
  border-radius:var(--r-sm);
  background:linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(8,145,178,0.12) 100%);
  border:1px solid rgba(96,165,250,0.2);
  display:flex; align-items:center; justify-content:center; font-size:1rem;
}
.about-cred-txt { font-size:0.9rem; color:var(--text-muted); line-height:1.65; }
.about-cred-txt strong { color:var(--text); font-weight:600; }

/* Pull quote */
.about-quote {
  margin-top:2rem; padding:2rem 2.5rem;
  background:linear-gradient(135deg, rgba(37,99,235,0.09) 0%, rgba(8,145,178,0.05) 100%);
  border-left:3px solid var(--blue);
  border-radius:0 var(--r-md) var(--r-md) 0;
}
.about-quote-text  { font-family:var(--ff-serif); font-size:1.15rem; font-style:italic; color:var(--text); line-height:1.67; }
.about-quote-attr  { margin-top:0.75rem; font-size:0.72rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-dim); }

/* ──────────────────────────────────────────────────────────────
   SERVICES — BENTO GRID
────────────────────────────────────────────────────────────── */
.services-hdr { max-width:600px; margin-bottom:3.5rem; }

/* The grid */
.bento {
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:1.25rem;
}
.bento-item { padding:2.25rem; }

/* Slot assignments */
.bi-1 { grid-column:span 5; grid-row:span 2; min-height:460px; }
.bi-2 { grid-column:span 4; }
.bi-3 { grid-column:span 3; }
.bi-4 { grid-column:span 3; }
.bi-5 { grid-column:span 4; }
.bi-6 { grid-column:span 5; }

/* Service internals */
.svc-icon {
  width:52px; height:52px; border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center; font-size:1.4rem;
  margin-bottom:1.75rem; flex-shrink:0;
  transition:transform var(--mid) var(--spring);
}
.svc-icon--blue  { background:rgba(37,99,235,0.14);  border:1px solid rgba(96,165,250,0.22); }
.svc-icon--gold  { background:rgba(240,165,0,0.11);   border:1px solid rgba(251,191,36,0.22); }
.svc-icon--teal  { background:rgba(8,145,178,0.14);   border:1px solid rgba(34,211,238,0.22); }
.svc-icon--green { background:rgba(5,150,105,0.11);   border:1px solid rgba(52,211,153,0.22); }
.gc:hover .svc-icon { transform:rotate(7deg) scale(1.12); }

.svc-tag {
  display:inline-block; font-size:0.6rem; font-weight:700; letter-spacing:0.14em;
  text-transform:uppercase; border-radius:var(--r-full); padding:0.2rem 0.7rem;
  margin-bottom:0.75rem;
}
.svc-tag--blue  { color:var(--blue-light); background:rgba(37,99,235,0.1); border:1px solid rgba(96,165,250,0.18); }
.svc-tag--gold  { color:var(--gold-light); background:rgba(240,165,0,0.1); border:1px solid rgba(251,191,36,0.18); }
.svc-tag--teal  { color:var(--teal-light); background:rgba(8,145,178,0.1); border:1px solid rgba(34,211,238,0.18); }
.svc-tag--green { color:#34d399; background:rgba(5,150,105,0.1); border:1px solid rgba(52,211,153,0.18); }

.svc-title {
  font-family:var(--ff-serif); font-size:1.25rem; font-weight:700;
  letter-spacing:-0.015em; color:var(--text); margin-bottom:0.75rem; line-height:1.25;
}
.bi-1 .svc-title { font-size:1.65rem; }

.svc-desc { font-size:0.875rem; color:var(--text-muted); line-height:1.72; }

.svc-cta {
  display:inline-flex; align-items:center; gap:0.5rem;
  font-size:0.78rem; font-weight:600;
  color:var(--blue-light); margin-top:1.5rem;
  transition:gap var(--fast), color var(--fast);
}
.gc:hover .svc-cta { gap:1rem; }

/* ──────────────────────────────────────────────────────────────
   SPECIALTY
────────────────────────────────────────────────────────────── */
.specialty-hdr { text-align:center; max-width:560px; margin:0 auto 4rem; }

.specialty-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem;
}
.spec-card { padding:2.5rem 2rem; text-align:center; }
.spec-num {
  display:block; font-size:0.58rem; font-weight:700; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--blue-light); opacity:0.55; margin-bottom:1.25rem;
}
.spec-ico {
  display:block; font-size:2.1rem; margin-bottom:1.25rem;
  transition:transform var(--mid) var(--spring);
}
.gc:hover .spec-ico { transform:scale(1.25) rotate(-6deg); }
.spec-title { font-family:var(--ff-serif); font-size:1.05rem; font-weight:700; color:var(--text); margin-bottom:0.75rem; line-height:1.3; }
.spec-desc  { font-size:0.835rem; color:var(--text-muted); line-height:1.72; }

/* ──────────────────────────────────────────────────────────────
   STATS STRIP
────────────────────────────────────────────────────────────── */
.stats-sec {
  background:linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(8,145,178,0.07) 55%, rgba(240,165,0,0.06) 100%);
  border-top:1px solid var(--glass-edge); border-bottom:1px solid var(--glass-edge);
}
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  text-align:center; padding:5rem 0; gap:0;
}
.stat-item {
  position:relative; padding:0 1rem;
}
.stat-item:not(:last-child)::after {
  content:''; position:absolute;
  right:0; top:15%; bottom:15%; width:1px;
  background:var(--glass-edge);
}
.stat-num {
  font-family:var(--ff-serif);
  font-size:clamp(2.8rem,5vw,4.8rem); font-weight:800; letter-spacing:-0.04em; line-height:1;
  background:linear-gradient(135deg, var(--blue-light) 0%, var(--teal-light) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:0.6rem;
}
.stat-lbl {
  font-size:0.75rem; font-weight:500; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--text-dim);
}

/* ──────────────────────────────────────────────────────────────
   PUBLICATIONS
────────────────────────────────────────────────────────────── */
.pubs-grid { display:grid; grid-template-columns:340px 1fr; gap:5rem; align-items:start; }
.pubs-sticky { position:sticky; top:8rem; }
.pubs-sticky .sec-title { font-size:clamp(1.8rem,2.5vw,2.6rem); }
.pubs-intro { font-size:0.9rem; color:var(--text-muted); line-height:1.82; margin-top:1rem; }

.pub-card { padding:2.5rem 3rem; margin-bottom:1.5rem; }
.pub-badge {
  display:inline-block; font-size:0.58rem; font-weight:700; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--emerald);
  background:rgba(5,150,105,0.1); border:1px solid rgba(52,211,153,0.2);
  border-radius:var(--r-full); padding:0.22rem 0.8rem; margin-bottom:1rem;
}
.pub-title { font-family:var(--ff-serif); font-size:1.35rem; font-weight:700; letter-spacing:-0.015em; color:var(--text); margin-bottom:1rem; line-height:1.3; }
.pub-body  { font-size:0.875rem; color:var(--text-muted); line-height:1.82; }

.btn-text-link {
  display:inline-flex; align-items:center; gap:0.5rem;
  font-size:0.85rem; font-weight:600; color:var(--teal-light);
  padding:0.6rem 1.5rem; margin-top:1.5rem;
  border:1px solid rgba(34,211,238,0.25); border-radius:var(--r-full);
  background:rgba(8,145,178,0.07);
  transition:all var(--fast);
}
.btn-text-link:hover { background:rgba(8,145,178,0.15); border-color:rgba(34,211,238,0.5); transform:translateX(5px); }

/* Ticker */
.ticker {
  overflow:hidden; padding:1.75rem 0;
  border-top:1px solid var(--glass-edge); border-bottom:1px solid var(--glass-edge);
  margin-top:4rem; position:relative;
  /* Soft fade out at both edges */
  -webkit-mask-image:linear-gradient(to right,transparent 0%,black 7%,black 93%,transparent 100%);
  mask-image:linear-gradient(to right,transparent 0%,black 7%,black 93%,transparent 100%);
}
.ticker-track {
  display:flex; gap:0; width:max-content;
  animation:tickScroll 28s linear infinite; white-space:nowrap;
}
.ticker:hover .ticker-track { animation-play-state:paused; }
.ticker-item {
  font-size:0.68rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--text-muted); /* was text-dim (38% opacity) — now fully visible */
  padding:0 2.25rem;
  transition:color var(--fast);
}
.ticker-item:hover { color:var(--blue-light); }
.ticker-sep {
  display:inline-block; width:5px; height:5px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue-light),var(--teal-light));
  opacity:0.75; margin:0; vertical-align:middle;
}
@keyframes tickScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ──────────────────────────────────────────────────────────────
   COST / PRICING
────────────────────────────────────────────────────────────── */
.cost-sec { background:var(--bg-surface); border-top:1px solid var(--glass-edge); }
.cost-hdr  { text-align:center; max-width:540px; margin:0 auto 4rem; }

.pricing-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.25rem;
  align-items:start;
}

.price-card {
  padding:2.5rem 2rem;
  display:flex; flex-direction:column; gap:0;
}
.price-card--feat {
  background:linear-gradient(145deg, rgba(37,99,235,0.16) 0%, rgba(8,145,178,0.1) 100%) !important;
  border-color:rgba(96,165,250,0.38) !important;
  box-shadow:0 0 0 1px rgba(96,165,250,0.12), 0 24px 60px rgba(37,99,235,0.18);
  position:relative;
}
.price-card--feat::after {
  content:'Most Popular';
  position:absolute; top:-1px; left:50%; transform:translateX(-50%);
  font-size:0.56rem; font-weight:800; letter-spacing:0.18em; text-transform:uppercase;
  color:#fff;
  background:linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
  padding:0.3rem 1.1rem; border-radius:0 0 var(--r-md) var(--r-md);
  white-space:nowrap;
}

.price-icon {
  width:48px; height:48px; border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
  margin-bottom:1.5rem; flex-shrink:0;
  transition:transform var(--mid) var(--spring);
}
.gc:hover .price-icon { transform:rotate(8deg) scale(1.12); }
.price-icon--blue  { background:rgba(37,99,235,0.14);  border:1px solid rgba(96,165,250,0.22); }
.price-icon--gold  { background:rgba(240,165,0,0.11);   border:1px solid rgba(251,191,36,0.22); }
.price-icon--teal  { background:rgba(8,145,178,0.14);   border:1px solid rgba(34,211,238,0.22); }
.price-icon--green { background:rgba(5,150,105,0.11);   border:1px solid rgba(52,211,153,0.22); }

.price-label {
  font-size:0.6rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--blue-light); margin-bottom:0.6rem;
}
.price-title {
  font-family:var(--ff-serif); font-size:1.2rem; font-weight:700;
  color:var(--text); line-height:1.25; margin-bottom:1.25rem;
}
.price-amount {
  display:flex; align-items:baseline; gap:0.3rem; margin-bottom:0.4rem;
}
.price-currency {
  font-family:var(--ff-serif); font-size:1.5rem; font-weight:700;
  color:var(--text-muted); line-height:1;
}
.price-value {
  font-family:var(--ff-serif); font-size:3rem; font-weight:900;
  letter-spacing:-0.04em; line-height:1;
  background:linear-gradient(135deg, var(--blue-light) 0%, var(--teal-light) 80%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.price-value--gold {
  background:linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 70%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.price-value--enquire {
  font-size:1.95rem; letter-spacing:-0.02em;
  background:linear-gradient(135deg, var(--teal-light) 0%, var(--emerald) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.price-from {
  font-size:0.7rem; font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:0.2rem;
}
.price-unit {
  font-size:0.72rem; color:var(--text-muted); margin-bottom:1.5rem; letter-spacing:0.02em;
}
.price-divider {
  width:100%; height:1px;
  background:linear-gradient(to right, var(--glass-edge), transparent);
  margin:1.25rem 0;
}
.price-features { list-style:none; display:flex; flex-direction:column; gap:0.6rem; margin-bottom:1.75rem; }
.price-features li {
  font-size:0.83rem; color:var(--text-muted);
  display:flex; align-items:flex-start; gap:0.6rem; line-height:1.5;
}
.price-features li::before {
  content:'✓'; flex-shrink:0;
  font-size:0.7rem; font-weight:700;
  color:var(--teal-light); margin-top:0.1rem;
}
.price-cta {
  display:inline-flex; align-items:center; justify-content:center; gap:0.5rem;
  padding:0.75rem 1.5rem; font-size:0.82rem; font-weight:600;
  border-radius:var(--r-full); border:1px solid var(--glass-edge);
  color:var(--text-muted); background:var(--glass);
  transition:all var(--fast); margin-top:auto;
}
.price-cta:hover { color:var(--blue-light); border-color:rgba(96,165,250,0.4); background:rgba(37,99,235,0.09); transform:translateY(-2px); }
.price-card--feat .price-cta {
  color:#fff; border-color:var(--blue);
  background:linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  box-shadow:0 4px 20px var(--blue-glow);
}
.price-card--feat .price-cta:hover { box-shadow:0 8px 32px var(--blue-glow); transform:translateY(-3px) scale(1.03); }

.price-note {
  text-align:center; margin-top:3rem;
  font-size:0.8rem; color:var(--text-dim);
  max-width:560px; margin-inline:auto;
  padding:1rem 2rem;
  background:var(--bg-card); border:1px solid var(--glass-edge); border-radius:var(--r-md);
}
.price-note a { color:var(--blue-light); text-decoration:underline; text-underline-offset:3px; }

@media(max-width:1200px){
  .pricing-grid{ grid-template-columns:repeat(2,1fr); }
  .price-card--feat::after{ font-size:0.5rem; }
}
@media(max-width:640px){
  .pricing-grid{ grid-template-columns:1fr; }
}

/* ──────────────────────────────────────────────────────────────
   INSURANCE
────────────────────────────────────────────────────────────── */
.insurance-sec {
  background:var(--bg-surface);
  border-top:1px solid var(--glass-edge); border-bottom:1px solid var(--glass-edge);
}
.insurance-inner { text-align:center; max-width:640px; margin:0 auto; }
.insurance-chips { display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; margin-top:2.5rem; }
.ins-chip {
  padding:0.9rem 2.5rem; font-size:1rem; font-weight:700; letter-spacing:0.05em;
  color:var(--text); background:var(--bg-card); border:1px solid var(--glass-edge);
  border-radius:var(--r-full); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  transition:all var(--fast); cursor:default;
}
.ins-chip:hover {
  border-color:rgba(96,165,250,0.45); background:var(--bg-card-hov);
  color:var(--blue-light); transform:translateY(-4px);
  box-shadow:0 10px 28px rgba(37,99,235,0.14);
}

/* ──────────────────────────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────────────────────────── */
.testimonials-hdr { text-align:center; max-width:540px; margin:0 auto 4rem; }

.testimonials-grid {
  display:grid; grid-template-columns:1.15fr 1fr;
  gap:1.5rem; align-items:start;
}
/* Right side stacks two smaller cards */
.testimonials-right { display:flex; flex-direction:column; gap:1.5rem; }

.tcard { padding:2.5rem; }
.tcard .stars { font-size:0.82rem; letter-spacing:0.1em; color:var(--gold-light); margin-bottom:1.5rem; }
.tcard blockquote { font-family:var(--ff-serif); font-style:italic; color:var(--text); line-height:1.75; margin-bottom:2rem; }
.tcard--feat blockquote { font-size:1.35rem; }
.tcard blockquote { font-size:1.05rem; }
.tcard__right blockquote { font-size:0.97rem; }

.author { display:flex; align-items:center; gap:0.875rem; }
.author-av {
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; font-weight:700; color:#fff;
  border:2px solid rgba(255,255,255,0.1);
}
.author-name { font-size:0.9rem; font-weight:700; color:var(--text); }
.author-loc  { font-size:0.72rem; color:var(--text-muted); margin-top:0.1rem; }

/* ──────────────────────────────────────────────────────────────
   CONTACT / CTA
────────────────────────────────────────────────────────────── */
.contact-sec { background:var(--bg-2); border-top:1px solid var(--glass-edge); }

.contact-hdr { text-align:center; max-width:580px; margin:0 auto 3.5rem; }
.contact-hdr .sec-title { font-size:clamp(2rem,3.2vw,3.2rem); }
.contact-hdr p { font-size:1rem; color:var(--text-muted); margin-top:1rem; line-height:1.75; }

/* Voice waveform */
.waveform {
  display:flex; align-items:center; justify-content:center;
  gap:3px; margin-bottom:3rem;
}
.waveform span {
  display:block; width:3px; border-radius:2px;
  background:linear-gradient(to top, var(--blue), var(--teal-light));
  animation:wave 1.4s ease-in-out infinite;
}
.waveform span:nth-child(1){height:10px; animation-delay:0s;}
.waveform span:nth-child(2){height:20px; animation-delay:0.1s;}
.waveform span:nth-child(3){height:32px; animation-delay:0.2s;}
.waveform span:nth-child(4){height:24px; animation-delay:0.3s;}
.waveform span:nth-child(5){height:14px; animation-delay:0.15s;}
.waveform span:nth-child(6){height:28px; animation-delay:0.25s;}
.waveform span:nth-child(7){height:20px; animation-delay:0.35s;}
.waveform span:nth-child(8){height:32px; animation-delay:0.05s;}
.waveform span:nth-child(9){height:16px; animation-delay:0.4s;}
.waveform span:nth-child(10){height:24px; animation-delay:0.1s;}
@keyframes wave { 0%,100%{transform:scaleY(0.32); opacity:0.55;} 50%{transform:scaleY(1); opacity:1;} }

.contact-cards {
  display:grid; grid-template-columns:1fr 1fr;
  gap:1.5rem; max-width:840px; margin:0 auto 3rem;
}
.contact-card { padding:2.5rem; }
.contact-tag  {
  display:block; font-size:0.58rem; font-weight:700; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--teal-light); margin-bottom:1rem;
}
.contact-name { font-family:var(--ff-serif); font-size:1.3rem; font-weight:700; color:var(--text); margin-bottom:0.75rem; }
.contact-addr { font-size:0.875rem; color:var(--text-muted); line-height:1.75; margin-bottom:1.5rem; }
.contact-cta  { text-align:center; }

/* ──────────────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────────────── */
.footer {
  background:var(--bg); border-top:1px solid var(--glass-edge);
  padding:5rem 0 2rem; position:relative; z-index:1;
}
.footer__inner { max-width:1280px; margin:0 auto; padding:0 2.5rem; }
.footer__grid  { display:grid; grid-template-columns:2.2fr 1fr 1fr 1.4fr; gap:3rem; margin-bottom:3rem; }
.footer__brand { font-family:var(--ff-serif); font-size:1.3rem; font-weight:800; letter-spacing:-0.025em; color:var(--text); margin-bottom:0.75rem; }
.footer__tagline { font-size:0.875rem; color:var(--text-muted); line-height:1.75; max-width:280px; }
.footer__col-hd { font-size:0.62rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-dim); margin-bottom:1.25rem; }
.footer__links  { }
.footer__links li { margin-bottom:0.65rem; }
.footer__links a { font-size:0.875rem; color:var(--text-muted); transition:color var(--fast); }
.footer__links a:hover { color:var(--blue-light); }
.footer__addr { font-size:0.875rem; color:var(--text-muted); line-height:1.8; }
.footer__addr + .footer__addr { margin-top:1rem; }
.footer__hr    { border:none; border-top:1px solid var(--glass-edge); margin-bottom:1.5rem; }
.footer__btm   { display:flex; align-items:center; justify-content:space-between; font-size:0.76rem; color:var(--text-dim); }

/* Cursor FX */
#cfx {
  position:fixed; width:460px; height:460px; border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,0.055) 0%, transparent 68%);
  transform:translate(-50%,-50%); pointer-events:none;
  transition:left 0.12s, top 0.12s; z-index:0;
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────────────── */
@media(max-width:1200px){
  .bento{ grid-template-columns:repeat(6,1fr); }
  .bi-1{ grid-column:span 3; grid-row:span 2; }
  .bi-2,.bi-3,.bi-4,.bi-5,.bi-6{ grid-column:span 3; }
  .specialty-grid{ grid-template-columns:repeat(2,1fr); }
  .stats-grid{ grid-template-columns:repeat(2,1fr); padding:3.5rem 0; }
  .stat-item:not(:last-child)::after{ display:none; }
  .pubs-grid{ grid-template-columns:1fr; gap:3rem; }
  .pubs-sticky{ position:static; }
}
@media(max-width:1024px){
  .hero{ grid-template-columns:1fr; }
  .hero__left{ padding:9rem 2.5rem 5rem; max-width:640px; position:relative; z-index:2; }
  .hero__right{ position:absolute; inset:0; opacity:0.18; z-index:0; }
  .hero__badge{ bottom:2rem; right:2rem; }
  .hero__scroll{ left:2.5rem; }
  .about-grid{ grid-template-columns:1fr; gap:3.5rem; }
  .testimonials-grid{ grid-template-columns:1fr; }
  .testimonials-right{ display:contents; }
  .footer__grid{ grid-template-columns:1fr 1fr; }
  .contact-cards{ grid-template-columns:1fr; }
}
@media(max-width:768px){
  .nav__links{ display:none; }
  .nav__hamburger{ display:flex; }
  .mobile-menu-open .nav__links{
    display:flex; flex-direction:column; position:fixed; inset:0;
    background:rgba(3,11,24,0.97); backdrop-filter:blur(28px);
    align-items:center; justify-content:center; gap:1.2rem; z-index:199; padding:5rem 2rem;
  }
  .mobile-menu-open .nav__links a{ font-size:1.4rem; font-weight:700; color:var(--text); }
  .sec{ padding:5rem 0; }
  .bento{ display:flex; flex-direction:column; }
  .specialty-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:1rem; }
  .footer__grid{ grid-template-columns:1fr; }
  .hero__ctas{ flex-direction:column; align-items:flex-start; }
}
@media(max-width:480px){
  .hero__left{ padding:8rem 1.5rem 4rem; }
  .sec__inner{ padding:0 1.5rem; }
  .hero__trust{ flex-wrap:wrap; gap:1rem; }
  .hero__trust-sep{ display:none; }
  .btn-cta--lg,.btn-outline{ width:100%; text-align:center; justify-content:center; }
}
