/* ==========================================================================
   VMA — Vishal Mohit & Associates
   Design System v1.0 · "Quiet Authority"
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --navy-950: #060c18;
  --navy-900: #0a1424;
  --navy-800: #0f1f38;
  --navy-700: #16294a;
  --navy-100: #dbe3f0;
  --charcoal: #1b1f26;
  --ink: #10141b;
  --slate: #46505e;
  --slate-light: #6b7686;
  --paper: #fafaf7;
  --surface: #ffffff;
  --mist: #f1f3f6;
  --line: #e5e8ee;
  --line-dark: rgba(255, 255, 255, 0.08);

  --emerald-600: #0b7a5c;
  --emerald-500: #0e9770;
  --emerald-050: #ebf7f2;
  --indigo-600: #4f5ae8;
  --indigo-500: #6470f3;
  --gold-500: #c2a35e;
  --gold-400: #d4bc80;
  --gold-050: #faf6ec;

  --text-on-dark: #eef2f8;
  --muted-on-dark: #97a3b8;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.2vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 2vw, 2.75rem);
  --text-4xl: clamp(2.375rem, 1.7rem + 3vw, 4rem);
  --text-hero: clamp(2.625rem, 1.8rem + 4vw, 5rem);

  /* Space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;
  --section-y: clamp(4.5rem, 3rem + 6vw, 8.5rem);

  /* Shape */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(16, 20, 27, 0.05);
  --shadow-md: 0 6px 24px -6px rgba(16, 20, 27, 0.1);
  --shadow-lg: 0 24px 60px -16px rgba(16, 20, 27, 0.18);
  --shadow-gold: 0 8px 32px -8px rgba(194, 163, 94, 0.35);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  --container: 72.5rem;
  --container-wide: 82rem;
  --nav-h: 4.5rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--navy-800); color: #fff; }

:focus-visible {
  outline: 2px solid var(--indigo-600);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0; font-size: var(--text-sm);
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); line-height: 1.3; }
h4, h5 { font-family: var(--font-body); font-weight: 600; line-height: 1.4; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: var(--space-5);
}
.eyebrow::before {
  content: "";
  width: 1.75rem; height: 1px;
  background: var(--gold-500);
}
.on-dark .eyebrow { color: var(--gold-400); }

.lede {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--slate);
  max-width: 38em;
}
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3 { color: var(--text-on-dark); }
.on-dark .lede, .on-dark p { color: var(--muted-on-dark); }

.serif-accent { font-style: italic; color: var(--gold-500); }
em.gold { font-style: italic; color: var(--gold-500); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container-wide { max-width: var(--container-wide); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: var(--section-y); }
.section-dark { background: var(--navy-950); color: var(--text-on-dark); }
.section-mist { background: var(--mist); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: var(--space-4); }

.grid { display: grid; gap: var(--space-5); }
@media (min-width: 48em) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
  min-height: 48px;
}
.btn svg { transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--navy-900); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-950); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-outline { border: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.btn-outline:hover { border-color: var(--navy-900); transform: translateY(-2px); }

.on-dark .btn-outline { border-color: rgba(255, 255, 255, 0.22); background: transparent; color: #fff; }
.on-dark .btn-outline:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.05); }

.btn-ghost { padding: 0.9rem 0.5rem; color: var(--emerald-600); font-weight: 600; }
.btn-ghost:hover svg { transform: translateX(4px); }

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--text-sm); font-weight: 600; color: var(--emerald-600);
}
.text-link svg { transition: transform 0.3s var(--ease-out); }
.text-link:hover svg { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}
.nav-dark:not(.scrolled) { border-bottom-color: transparent; }
.nav-dark:not(.scrolled) .nav-link, .nav-dark:not(.scrolled) .brand-name,
.nav-dark:not(.scrolled) .brand-sub, .nav-dark:not(.scrolled) .nav-toggle { color: var(--text-on-dark); }
.nav-dark:not(.scrolled) .nav-link:hover { color: #fff; }

.nav-inner {
  max-width: var(--container-wide); margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
}
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-mark {
  width: 2.5rem; height: 2.5rem; border-radius: 10px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-950));
  color: var(--gold-400);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(194, 163, 94, 0.35);
}
.brand-name { font-weight: 650; font-size: 0.95rem; letter-spacing: -0.01em; color: var(--ink); line-height: 1.25; }
.brand-sub { display: block; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-light); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.55rem 0.9rem; border-radius: var(--radius-pill);
  font-size: var(--text-sm); font-weight: 500; color: var(--slate);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-link:hover { color: var(--ink); background: rgba(16, 20, 27, 0.05); }
.nav-dark:not(.scrolled) .nav-link:hover { background: rgba(255, 255, 255, 0.08); }
.nav-cta { display: none; }
.nav-toggle {
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-sm); color: var(--ink);
}

@media (min-width: 64em) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; padding: 0.65rem 1.35rem; min-height: 0; }
  .nav-toggle { display: none; }
}

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-panel {
  position: absolute; top: calc(100% + 0.75rem); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(44rem, 92vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s;
}
.nav-drop:hover .nav-drop-panel, .nav-drop:focus-within .nav-drop-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.drop-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 0.8rem 0.9rem; border-radius: var(--radius-md);
  transition: background-color 0.2s ease;
}
.drop-item:hover { background: var(--mist); }
.drop-item .di-icon {
  flex: none; width: 2.25rem; height: 2.25rem; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--emerald-050); color: var(--emerald-600);
}
.drop-item strong { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--ink); }
.drop-item span { font-size: var(--text-xs); color: var(--slate-light); line-height: 1.45; }
.drop-foot {
  grid-column: 1 / -1; margin-top: 0.25rem; padding: 0.85rem 0.9rem 0.25rem;
  border-top: 1px solid var(--line);
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy-950);
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2.5rem;
  display: flex; flex-direction: column;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { color: var(--text-on-dark); }
.mm-primary { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: var(--space-6); }
.mm-primary > a {
  font-family: var(--font-display); font-size: 1.75rem; padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
  transform: translateY(12px); opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.mobile-menu.open .mm-primary > a { transform: none; opacity: 1; }
.mm-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; margin-bottom: var(--space-6); }
.mm-services a { font-size: var(--text-sm); color: var(--muted-on-dark); padding: 0.35rem 0; }
.mm-services a:hover { color: #fff; }
.mm-label { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 0.75rem; font-weight: 600; }
.mm-foot { margin-top: auto; display: flex; flex-direction: column; gap: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--text-on-dark);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 2rem + 6vw, 8rem));
  padding-bottom: clamp(4rem, 3rem + 5vw, 7.5rem);
}
.hero-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-mesh::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 18%, rgba(79, 90, 232, 0.16), transparent 65%),
    radial-gradient(ellipse 50% 55% at 12% 85%, rgba(14, 151, 112, 0.13), transparent 65%),
    radial-gradient(ellipse 35% 30% at 60% 90%, rgba(194, 163, 94, 0.07), transparent 70%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 30%, transparent 75%);
}
.hero-inner { position: relative; }
.hero h1 {
  font-size: var(--text-hero);
  color: #fff;
  max-width: 13.5em;
  margin-bottom: var(--space-5);
}
.hero .lede { color: var(--muted-on-dark); margin-bottom: var(--space-7); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: clamp(3rem, 2rem + 4vw, 5rem); }

.hero-proof {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line-dark);
  border-block: 1px solid var(--line-dark);
}
@media (min-width: 48em) { .hero-proof { grid-template-columns: repeat(4, 1fr); } }
.proof-item { background: var(--navy-950); padding: 1.5rem 1.25rem; }
.proof-item .num {
  font-family: var(--font-display); font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  color: #fff; line-height: 1.1; display: flex; align-items: baseline; gap: 0.1em;
}
.proof-item .num .unit { color: var(--gold-400); font-size: 0.65em; }
.proof-item .lbl { font-size: var(--text-xs); color: var(--muted-on-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.4rem; font-weight: 500; }

/* --- Hero cinematic entrance --- */
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); mix-blend-mode: screen;
  will-change: transform; opacity: 0;
  animation: orb-in 2.4s var(--ease-out) forwards, orb-drift 26s ease-in-out 2.4s infinite alternate;
}
.orb-1 { width: 44rem; height: 44rem; top: -18rem; right: -12rem;
  background: radial-gradient(circle, rgba(79, 90, 232, 0.32), transparent 65%); }
.orb-2 { width: 36rem; height: 36rem; bottom: -16rem; left: -10rem;
  background: radial-gradient(circle, rgba(14, 151, 112, 0.28), transparent 65%);
  animation-duration: 2.4s, 32s; animation-delay: 0.3s, 2.7s; }
.orb-3 { width: 26rem; height: 26rem; top: 30%; left: 42%;
  background: radial-gradient(circle, rgba(194, 163, 94, 0.14), transparent 65%);
  animation-duration: 2.4s, 38s; animation-delay: 0.6s, 3s; }
@keyframes orb-in { to { opacity: 1; } }
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(4rem, -2.5rem) scale(1.12); }
  100% { transform: translate(-3rem, 3rem) scale(0.94); }
}

/* Split hero with globe */
.hero-split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 64em) {
  .hero-split { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; }
}
.hero-globe {
  position: relative;
  width: min(400px, 82vw);
  margin-inline: auto;
}
@media (min-width: 64em) {
  .hero-globe { width: 112%; max-width: 34rem; margin-right: -12%; }
}
.hero-globe::before {
  content: ""; position: absolute; inset: -12%;
  background: radial-gradient(circle, rgba(79, 90, 232, 0.14), rgba(14, 151, 112, 0.06) 55%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-globe canvas { position: relative; width: 100%; aspect-ratio: 1; display: block; }

/* Rotating headline word */
.rotate-word {
  display: inline-block;
  color: var(--gold-400);
  font-style: italic;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.rotate-word.out { opacity: 0; transform: translateY(0.35em); }
@media (prefers-reduced-motion: reduce) {
  .rotate-word, .rotate-word.out { opacity: 1; transform: none; transition: none; }
}

.mask-line { display: block; overflow: hidden; padding-block: 0.06em; }
.mask-line > span {
  display: block;
  transform: translateY(112%);
  animation: rise 1.1s var(--ease-out) forwards;
}
.hero .mask-line:nth-child(2) > span { animation-delay: 0.14s; }
.hero .mask-line:nth-child(3) > span { animation-delay: 0.28s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-copy h1 {
  font-size: clamp(2.35rem, 1.5rem + 3.1vw, 3.9rem);
  max-width: none;
}
.hero-split .hero-ctas { margin-bottom: 0; }
.hero-split ~ .hero-proof, .hero-inner .hero-proof { margin-top: clamp(3rem, 2rem + 4vw, 5rem); }

.hero-fade { opacity: 0; transform: translateY(22px); animation: hero-fade 1s var(--ease-out) forwards; }
.hf-1 { animation-delay: 0.1s; }
.hf-2 { animation-delay: 0.55s; }
.hf-3 { animation-delay: 0.75s; }
.hf-4 { animation-delay: 0.95s; }
@keyframes hero-fade { to { opacity: 1; transform: none; } }

.hero em.gold {
  background: linear-gradient(100deg, var(--gold-500) 20%, #ecd9a8 40%, var(--gold-400) 60%, var(--gold-500) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: sheen 7s ease-in-out 1.4s infinite;
}
@keyframes sheen {
  0%, 55%, 100% { background-position: 0% 0; }
  25% { background-position: 100% 0; }
}

.hero-scroll-hint {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  width: 1.4rem; height: 2.3rem; border-radius: 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  opacity: 0; animation: hero-fade 1s var(--ease-out) 1.6s forwards;
  display: none;
}
.hero-scroll-hint::after {
  content: ""; position: absolute; left: 50%; top: 0.45rem;
  width: 3px; height: 6px; margin-left: -1.5px; border-radius: 2px;
  background: var(--gold-400);
  animation: hint-drop 2.2s ease-in-out 2s infinite;
}
@keyframes hint-drop {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(0.7rem); opacity: 0; }
}
@media (min-width: 64em) { .hero-scroll-hint { display: block; } }

@media (prefers-reduced-motion: reduce) {
  .mask-line > span { transform: none; animation: none; }
  .hero-fade { opacity: 1; transform: none; animation: none; }
  .orb { opacity: 1; animation: none; }
  .hero em.gold { animation: none; }
  .hero-scroll-hint { display: none; }
}

/* Page hero (inner pages, light) */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 2rem + 4vw, 6rem));
  padding-bottom: clamp(3rem, 2rem + 3.5vw, 5.5rem);
  background:
    radial-gradient(ellipse 60% 55% at 90% 0%, rgba(100, 112, 243, 0.06), transparent 60%),
    radial-gradient(ellipse 45% 50% at 5% 100%, rgba(14, 151, 112, 0.05), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 15em; margin-bottom: var(--space-5); }
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  font-size: var(--text-xs); color: var(--slate-light);
  margin-bottom: var(--space-6); font-weight: 500;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--gold-500); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

.icon-badge {
  width: 3rem; height: 3rem; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--emerald-050); color: var(--emerald-600);
  margin-bottom: var(--space-5);
}
.icon-badge.indigo { background: #eef0fe; color: var(--indigo-600); }
.icon-badge.gold { background: var(--gold-050); color: #a8873d; }
.icon-badge.navy { background: #e9edf5; color: var(--navy-800); }

/* Service card (home) */
.svc-card { display: flex; flex-direction: column; position: relative; overflow: hidden; }
.svc-card .svc-num {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-family: var(--font-display); font-size: var(--text-sm);
  color: var(--gold-500); font-style: italic;
}
.svc-card h3 { margin-bottom: var(--space-3); }
.svc-card p { font-size: var(--text-sm); color: var(--slate); flex-grow: 1; margin-bottom: var(--space-5); }
.svc-card .text-link { margin-top: auto; }

/* Featured advisory card */
.svc-featured {
  background: linear-gradient(150deg, var(--navy-900), var(--navy-950));
  border-color: rgba(194, 163, 94, 0.25);
  color: var(--text-on-dark);
}
.svc-featured h3 { color: #fff; }
.svc-featured p { color: var(--muted-on-dark); }
.svc-featured .icon-badge { background: rgba(194, 163, 94, 0.12); color: var(--gold-400); }
.svc-featured .text-link { color: var(--gold-400); }
.svc-featured .svc-num { color: rgba(194, 163, 94, 0.6); }

/* Flagship service cards */
.svc-flag {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-950) 70%);
  border: 1px solid rgba(194, 163, 94, 0.22);
  color: var(--text-on-dark);
  display: flex; flex-direction: column;
}
.svc-flag::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 85% 0%, rgba(194, 163, 94, 0.1), transparent 60%);
  opacity: 0; transition: opacity 0.5s ease;
}
.svc-flag:hover::before { opacity: 1; }
.svc-flag h3 { color: #fff; margin-bottom: var(--space-3); }
.svc-flag p { color: var(--muted-on-dark); font-size: var(--text-sm); flex-grow: 1; margin-bottom: var(--space-5); }
.svc-flag .icon-badge { background: rgba(194, 163, 94, 0.12); color: var(--gold-400); }
.svc-flag .text-link { color: var(--gold-400); }
.svc-flag .svc-num { color: rgba(194, 163, 94, 0.55); }
.flag-tag {
  display: inline-block; align-self: flex-start;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-400); border: 1px solid rgba(194, 163, 94, 0.35);
  border-radius: var(--radius-pill); padding: 0.25rem 0.75rem;
  margin-bottom: var(--space-5);
}

/* Compact service cards */
.svc-mini { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem 1.5rem; }
.svc-mini .icon-badge { width: 2.5rem; height: 2.5rem; border-radius: 10px; margin: 0; flex: none; }
.svc-mini h3 { font-family: var(--font-body); font-weight: 600; font-size: var(--text-base); line-height: 1.35; margin-bottom: 0.2rem; }
.svc-mini p { font-size: var(--text-xs); color: var(--slate-light); margin-bottom: 0.45rem; line-height: 1.55; }
.svc-mini .text-link { font-size: var(--text-xs); }

/* Pillar (why us) */
.pillar { padding: var(--space-6) 0; border-top: 1px solid var(--line-dark); display: grid; gap: var(--space-4); }
@media (min-width: 48em) { .pillar { grid-template-columns: 4rem 16rem 1fr; gap: var(--space-6); align-items: start; } }
.pillar .p-num { font-family: var(--font-display); font-style: italic; color: var(--gold-400); font-size: var(--text-lg); }
.pillar h3 { font-size: var(--text-xl); color: #fff; }
.pillar p { color: var(--muted-on-dark); font-size: var(--text-sm); max-width: 34em; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: var(--space-5); }
@media (min-width: 64em) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: var(--space-6) 0 0; border-top: 2px solid var(--line); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: -0.8em; left: 0;
  background: var(--paper); padding-right: 0.75rem;
  font-family: var(--font-display); font-style: italic;
  color: var(--gold-500); font-size: var(--text-lg);
}
.step h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 600; margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--slate); }

/* Testimonials */
.quote-card { display: flex; flex-direction: column; gap: var(--space-5); height: 100%; }
.quote-card blockquote {
  font-family: var(--font-display); font-size: var(--text-lg);
  line-height: 1.5; color: var(--charcoal); flex-grow: 1;
}
.quote-card blockquote::before { content: "“"; display: block; font-size: 3rem; line-height: 0.6; color: var(--gold-500); margin-bottom: 0.75rem; }
.quote-attr { display: flex; align-items: center; gap: 0.9rem; }
.quote-attr .qa-mark { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--navy-900); color: var(--gold-400); display: grid; place-items: center; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.05em; }
.quote-attr strong { display: block; font-size: var(--text-sm); }
.quote-attr span { font-size: var(--text-xs); color: var(--slate-light); }

/* ---------- Marquee ---------- */
.marquee-wrap {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee { display: flex; width: max-content; gap: 3.5rem; animation: marquee 36s linear infinite; align-items: center; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee span {
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.08em;
  color: var(--slate-light); text-transform: uppercase; white-space: nowrap;
  display: flex; align-items: center; gap: 3.5rem;
}
.marquee span::after { content: "·"; color: var(--gold-500); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Statement ---------- */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 1.2rem + 2.4vw, 3rem);
  line-height: 1.3; letter-spacing: -0.01em;
  max-width: 24em;
}
.statement .reveal-word { opacity: 0.16; transition: opacity 0.5s ease; }
.statement .reveal-word.on { opacity: 1; }

/* ---------- Lists ---------- */
.check-list { display: grid; gap: 0.85rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: var(--text-sm); color: var(--slate); }
.check-list li strong { color: var(--ink); font-weight: 600; }
.check-list .ck {
  flex: none; width: 1.375rem; height: 1.375rem; margin-top: 0.15rem;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--emerald-050); color: var(--emerald-600);
}

/* ---------- Service page layout ---------- */
.svc-layout { display: grid; gap: var(--space-7); }
@media (min-width: 64em) { .svc-layout { grid-template-columns: 1fr 20rem; gap: var(--space-9); } }
.svc-body > * + * { margin-top: var(--space-5); }
.svc-body h2 { margin-top: var(--space-8); margin-bottom: var(--space-4); font-size: var(--text-2xl); }
.svc-body h2:first-child { margin-top: 0; }
.svc-body p { color: var(--slate); }
.svc-body .check-list { margin-top: var(--space-5); }

.svc-aside { position: relative; }
.aside-sticky { position: sticky; top: calc(var(--nav-h) + 1.5rem); display: grid; gap: var(--space-5); }
.aside-card {
  background: var(--navy-950); color: var(--text-on-dark);
  border-radius: var(--radius-lg); padding: var(--space-6);
}
.aside-card h3 { color: #fff; font-size: var(--text-lg); margin-bottom: var(--space-2); }
.aside-card p { font-size: var(--text-sm); color: var(--muted-on-dark); margin-bottom: var(--space-5); }
.aside-card .btn { width: 100%; }
.aside-links { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-5); background: var(--surface); }
.aside-links h4 { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-light); margin-bottom: var(--space-4); }
.aside-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; font-size: var(--text-sm); font-weight: 500;
  border-bottom: 1px solid var(--line); color: var(--slate);
  transition: color 0.2s ease, padding-left 0.25s var(--ease-out);
}
.aside-links a:last-child { border-bottom: 0; }
.aside-links a:hover { color: var(--ink); padding-left: 0.35rem; }

/* Callout */
.callout {
  border-left: 3px solid var(--gold-500);
  background: var(--gold-050);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5) var(--space-6);
}
.callout strong { display: block; margin-bottom: 0.3rem; color: var(--ink); }
.callout p { font-size: var(--text-sm) !important; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); max-width: 50rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: 1.4rem 0.25rem; text-align: left;
  font-weight: 600; font-size: var(--text-base); color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--emerald-600); }
.faq-q .faq-icon {
  flex: none; width: 1.75rem; height: 1.75rem; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: transform 0.4s var(--ease-out), background-color 0.25s ease, color 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease-out); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 3rem 1.4rem 0.25rem; font-size: var(--text-sm); color: var(--slate); max-width: 44em; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--navy-950); color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(2.75rem, 2rem + 4vw, 5.5rem) clamp(1.5rem, 1rem + 3vw, 4.5rem);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 65% at 88% 20%, rgba(194, 163, 94, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 60% at 8% 90%, rgba(14, 151, 112, 0.12), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 15em; margin-bottom: var(--space-4); }
.cta-band p { color: var(--muted-on-dark); max-width: 36em; margin-bottom: var(--space-6); }
.cta-band .hero-ctas { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: var(--space-4); }
@media (min-width: 48em) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label { display: block; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); font-size: var(--text-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-800);
  box-shadow: 0 0 0 3px rgba(15, 31, 56, 0.08);
}
.field textarea { min-height: 8.5rem; resize: vertical; }

/* ---------- Contact info ---------- */
.contact-item { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-4) 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .icon-badge { width: 2.5rem; height: 2.5rem; margin: 0; border-radius: 9px; flex: none; }
.contact-item h4 { font-size: var(--text-sm); margin-bottom: 0.15rem; }
.contact-item p, .contact-item a { font-size: var(--text-sm); color: var(--slate); }
.contact-item a:hover { color: var(--emerald-600); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: var(--muted-on-dark); padding: var(--space-9) 0 var(--space-6); }
.footer-grid { display: grid; gap: var(--space-7); margin-bottom: var(--space-8); }
@media (min-width: 64em) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: var(--space-6); } }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: var(--muted-on-dark); }
.footer-tag { font-family: var(--font-display); font-style: italic; color: var(--gold-400); font-size: var(--text-lg); margin: var(--space-5) 0 var(--space-4); }
.footer-desc { font-size: var(--text-sm); max-width: 26em; }
.footer h5 { color: #fff; font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--space-5); }
.footer-col a { display: block; font-size: var(--text-sm); padding: 0.32rem 0; color: var(--muted-on-dark); transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-top: var(--space-5);
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between;
  font-size: var(--text-xs);
}
.footer-cred { font-size: var(--text-xs); line-height: 1.7; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.5);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
@media (min-width: 64em) { .wa-float { right: 2rem; bottom: 2rem; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---------- Utilities ---------- */
.mt-2 { margin-top: var(--space-2); } .mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); } .mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); } .mb-6 { margin-bottom: var(--space-6); }
.text-center { text-align: center; }
.muted { color: var(--slate-light); font-size: var(--text-sm); }

/* Industries strip */
.industry-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.industry-chips span {
  padding: 0.5rem 1.1rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--surface);
  font-size: var(--text-xs); font-weight: 500; color: var(--slate);
}
.on-dark .industry-chips span { border-color: var(--line-dark); background: rgba(255,255,255,0.04); color: var(--muted-on-dark); }

/* Split feature */
.split { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 64em) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-9); } }

/* Abstract visual panel */
.visual-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  aspect-ratio: 4 / 3.4;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.visual-panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* SVG draw animation */
.draw path, .draw circle, .draw line, .draw polyline {
  stroke-dasharray: 600; stroke-dashoffset: 600;
}
.in .draw path, .in .draw circle, .in .draw line, .in .draw polyline,
.draw.in path, .draw.in circle, .draw.in line, .draw.in polyline {
  animation: draw 2.4s var(--ease-out) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee { animation: none; flex-wrap: wrap; }
  .statement .reveal-word { opacity: 1; }
}

/* Print */
@media print {
  .nav, .wa-float, .mobile-menu, .cta-band, .footer { display: none; }
}
