/* ==========================================================================
   ProDent Advisors — Design System
   Brand: deep teal-navy (trust) + growth green (success) + warm cream
   Type:  Fraunces (display) + Plus Jakarta Sans (UI/body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — teal/navy scale */
  --teal-950: #04212c;
  --teal-900: #06232e;
  --teal-800: #0b3140;
  --teal-700: #114050;
  --teal-600: #19566b;
  --teal-500: #2c7187;
  --teal-100: #d7e4e7;

  /* Brand — growth green */
  --green-700: #266b1f;
  --green-600: #2f7d26;   /* accessible green for CTAs (5.1:1 on white) */
  --green-500: #52a832;   /* logo green — accents, graphics, large text */
  --green-400: #6fbe4e;
  --green-100: #e4f3da;
  --green-50:  #f1f9ea;

  /* Warm gold (sparingly: highlights, rating stars) */
  --gold-600: #c8901c;
  --gold-500: #e0a82e;
  --gold-100: #f8edcf;

  /* Neutrals — warm */
  --cream:   #f7f5ec;
  --cream-2: #f0eee1;
  --paper:   #ffffff;
  --ink:     #0e2a33;     /* headings / body on light */
  --ink-soft:#42585f;     /* muted body text (≈6:1 on cream) */
  --ink-faint:#6b7d82;
  --line:    #e4e3d6;     /* hairline borders on cream */
  --line-2:  #ecebe0;

  /* On-dark text */
  --on-dark:       #f4f6f3;
  --on-dark-soft:  #aec3c8;
  --on-dark-line:  rgba(255,255,255,.12);

  /* Type scale (fluid) */
  --fs-display: clamp(2.6rem, 1.4rem + 4.6vw, 4.4rem);
  --fs-h1:      clamp(2.2rem, 1.4rem + 3.2vw, 3.4rem);
  --fs-h2:      clamp(1.9rem, 1.3rem + 2.4vw, 2.85rem);
  --fs-h3:      clamp(1.25rem, 1.05rem + 0.7vw, 1.5rem);
  --fs-lead:    clamp(1.075rem, 1rem + 0.4vw, 1.3rem);
  --fs-body:    1.0625rem;
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;

  --ff-display: 'Lora', Georgia, 'Times New Roman', serif;
  --ff-sans:    'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing */
  --container: 1180px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 4vw, 2.25rem);
  --section-y: clamp(4rem, 3rem + 6vw, 7rem);

  /* Radii */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows (teal-tinted) */
  --shadow-xs: 0 1px 2px rgba(6,35,46,.06);
  --shadow-sm: 0 2px 8px -2px rgba(6,35,46,.10);
  --shadow:    0 14px 34px -16px rgba(6,35,46,.22);
  --shadow-lg: 0 30px 70px -28px rgba(6,35,46,.30);
  --ring: 0 0 0 4px rgba(82,168,50,.30);

  --t: 200ms cubic-bezier(.4,0,.2,1);
  --t-slow: 420ms cubic-bezier(.22,1,.36,1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-700); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--green-600); }
ul, ol { padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-family: var(--ff-sans); font-weight: 700; font-size: var(--fs-h3); letter-spacing: -0.005em; line-height: 1.25; }

p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }

:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; border-radius: 4px; }

::selection { background: var(--green-100); color: var(--teal-900); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--teal-800); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top var(--t);
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section.tight { padding-block: clamp(3rem, 2rem + 4vw, 4.5rem); }

.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-paper { background: var(--paper); }
.bg-teal { background: var(--teal-900); color: var(--on-dark); }
.bg-teal h1, .bg-teal h2, .bg-teal h3 { color: #fff; }
.bg-teal p { color: var(--on-dark-soft); }

.center { text-align: center; }
.maxw-prose { max-width: 62ch; }
.center .maxw-prose { margin-inline: auto; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.stack > * + * { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   4. Eyebrow / section heads
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-sans); font-weight: 700; font-size: var(--fs-xs);
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green-500); border-radius: 2px; }
.eyebrow.on-dark { color: var(--green-400); }
.center .eyebrow { justify-content: center; }

.section-head { max-width: 60ch; }
.center .section-head, .section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 + p { margin-top: 1rem; font-size: var(--fs-lead); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--green-600); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-sans); font-weight: 700; font-size: var(--fs-sm);
  line-height: 1; letter-spacing: .005em; text-align: center;
  padding: 1rem 1.6rem; min-height: 52px;
  border-radius: var(--r-pill); border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  cursor: pointer; white-space: nowrap;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { --btn-bg: var(--green-600); --btn-fg: #fff; }
.btn-primary:hover { --btn-bg: var(--green-700); }

.btn-dark { --btn-bg: var(--teal-800); --btn-fg: #fff; }
.btn-dark:hover { --btn-bg: var(--teal-700); }

.btn-outline { --btn-bg: transparent; --btn-fg: var(--teal-800); --btn-bd: var(--teal-800); box-shadow: none; }
.btn-outline:hover { --btn-bg: var(--teal-800); --btn-fg: #fff; }

.btn-ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.5); box-shadow: none; }
.btn-ghost-light:hover { --btn-bg: rgba(255,255,255,.10); --btn-fg: #fff; --btn-bd: #fff; }

.btn-sm { padding: .7rem 1.15rem; min-height: 44px; font-size: var(--fs-xs); }
.btn-lg { padding: 1.15rem 2rem; min-height: 58px; font-size: var(--fs-body); }
.btn-block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.center .btn-row { justify-content: center; }

.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--green-600); }
.text-link svg { width: 17px; height: 17px; transition: transform var(--t); }
.text-link:hover { color: var(--green-700); }
.text-link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,236,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t), background var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(247,245,236,.94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: auto; height: 42px; }
@media (min-width: 768px){ .brand-logo { height: 46px; } }

.nav { display: flex; align-items: center; gap: clamp(.25rem, 1.5vw, 1.75rem); }
.nav-menu { display: flex; align-items: center; gap: clamp(.25rem, 1.4vw, 1.6rem); }
.nav-menu > li > a:not(.btn) {
  font-weight: 600; font-size: var(--fs-sm); color: var(--ink); padding: .5rem .25rem; position: relative;
  display: inline-flex; align-items: center; min-height: 42px;
}
.nav-menu > li > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--green-500); border-radius: 2px; transition: right var(--t);
}
.nav-menu > li > a:not(.btn):hover { color: var(--teal-800); }
.nav-menu > li > a:not(.btn):hover::after,
.nav-menu > li > a.active::after { right: 0; }
.nav-menu > li > a.active { color: var(--teal-800); }

/* Services dropdown */
.has-dropdown { position: relative; }
.nav-dd-toggle { display: inline-flex !important; align-items: center; gap: .3rem; cursor: pointer; }
.nav-dd-toggle .chev { width: 15px; height: 15px; transition: transform var(--t); }
.has-dropdown::after { content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 16px; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 248px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: .45rem; display: flex; flex-direction: column; gap: .1rem;
  opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t), visibility var(--t); z-index: 60;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .nav-dd-toggle .chev, .has-dropdown:focus-within .nav-dd-toggle .chev { transform: rotate(180deg); }
.dropdown li a { display: block; padding: .65rem .8rem; border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: 600; color: var(--ink); white-space: nowrap; }
.dropdown li a::after { display: none !important; }
.dropdown li a:hover { background: var(--green-50); color: var(--green-700); }
.dropdown li a.active { background: var(--green-100); color: var(--green-700); }

@media (max-width: 860px) {
  .has-dropdown::after { display: none; }
  .nav-dd-toggle .chev { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 0 0 .5rem; min-width: 0;
  }
  .dropdown li a { padding: .7rem .25rem .7rem 1.1rem; font-weight: 500; font-size: 1rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-2); border-radius: 0; }
  .dropdown li a:hover, .dropdown li a.active { background: transparent; color: var(--teal-800); }
}

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); align-items: center; justify-content: center; color: var(--teal-800); }
.nav-toggle:hover { background: rgba(17,64,80,.07); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; order: 2; }
  .nav-menu {
    order: 3; position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.75rem; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--t), opacity var(--t); max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu > li > a:not(.btn) { display: block; padding: .85rem .25rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-2); }
  .nav-menu > li > a:not(.btn)::after { display: none; }
  .nav-menu .nav-cta { margin-top: .75rem; }
  .nav-menu .nav-cta .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 80% -10%, var(--teal-700) 0%, var(--teal-900) 55%, var(--teal-950) 100%); color: var(--on-dark); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(40% 60% at 12% 110%, rgba(82,168,50,.28), transparent 70%),
    radial-gradient(30% 50% at 95% 0%, rgba(44,113,135,.45), transparent 70%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding-block: clamp(3.5rem, 3rem + 5vw, 6.5rem); }
@media (max-width: 920px){ .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.hero h1 { color: #fff; font-size: var(--fs-display); font-weight: 600; }
.hero h1 .accent { color: var(--green-400); font-style: italic; }
.hero .lead { font-size: var(--fs-lead); color: var(--on-dark-soft); max-width: 56ch; margin-top: 1.25rem; }
.hero .btn-row { margin-top: 2rem; }
.hero-trust { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; color: var(--on-dark-soft); font-size: var(--fs-sm); }
.hero-trust .stars { display: inline-flex; gap: 2px; color: var(--gold-500); }
.hero-trust .stars svg { width: 18px; height: 18px; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid var(--on-dark-line); border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 2rem); backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card .hc-label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--on-dark-soft); font-weight: 700; }
.hero-card .hc-stat { font-family: var(--ff-display); font-weight: 600; font-size: clamp(2.4rem,6vw,3.4rem); color: #fff; line-height: 1; margin-top: .35rem; }
.hero-card .hc-stat .unit { color: var(--green-400); }
.hero-chart { margin-top: 1.25rem; }
.hero-mini { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.25rem; }
.hero-mini div { background: rgba(255,255,255,.05); border: 1px solid var(--on-dark-line); border-radius: var(--r-sm); padding: .85rem .9rem; }
.hero-mini .n { font-family: var(--ff-display); font-weight: 600; font-size: 1.5rem; color: #fff; }
.hero-mini .l { font-size: var(--fs-xs); color: var(--on-dark-soft); }
.hero-badge {
  position: absolute; right: -8px; top: -18px; background: var(--green-500); color: #06231a;
  font-weight: 800; font-size: var(--fs-xs); padding: .55rem .9rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow); transform: rotate(3deg);
}

/* Hero services-at-a-glance card */
.hero-svc { display: grid; gap: .65rem; margin-top: 1.1rem; }
.hero-svc li {
  display: flex; gap: .85rem; align-items: center;
  background: rgba(255,255,255,.05); border: 1px solid var(--on-dark-line);
  border-radius: var(--r-sm); padding: .8rem .95rem;
}
.hero-svc .ic {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: rgba(82,168,50,.18); color: var(--green-400);
  display: grid; place-items: center;
}
.hero-svc .ic svg { width: 20px; height: 20px; }
.hero-svc strong { display: block; color: #fff; font-size: .95rem; line-height: 1.3; }
.hero-svc em { font-style: normal; font-size: var(--fs-xs); color: var(--on-dark-soft); }
.hero-foot { margin-top: 1.1rem; display: flex; align-items: center; gap: .55rem; font-size: var(--fs-xs); color: var(--on-dark-soft); }
.hero-foot svg { width: 17px; height: 17px; color: var(--green-400); flex: none; }

/* Section wave/edge */
.edge-fade { height: 0; }

/* --------------------------------------------------------------------------
   8. Logo / trust strip
   -------------------------------------------------------------------------- */
.trustbar { border-block: 1px solid var(--line); background: var(--cream); }
.trustbar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.25rem, 5vw, 3.5rem); padding-block: 1.5rem; }
.trustbar p { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--ink-faint); }
.trust-metric { display: inline-flex; align-items: baseline; gap: .5rem; }
.trust-metric .n { font-family: var(--ff-display); font-weight: 600; font-size: 1.65rem; color: var(--teal-800); }
.trust-metric .l { font-size: var(--fs-sm); color: var(--ink-soft); }
.trust-sep { width: 1px; height: 28px; background: var(--line); }
@media (max-width: 620px){ .trust-sep { display: none; } }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem); box-shadow: var(--shadow-xs);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.card.hoverable:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-200, #cdebbe); }

.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--green-100); color: var(--green-700); margin-bottom: 1.25rem;
}
.icon-chip svg { width: 26px; height: 26px; }
.icon-chip.teal { background: var(--teal-100); color: var(--teal-700); }
.icon-chip.gold { background: var(--gold-100); color: var(--gold-600); }

.card h3 { margin-bottom: .5rem; }
.card p { font-size: var(--fs-sm); }
.card .text-link { margin-top: 1.1rem; font-size: var(--fs-sm); }

/* Feature list with checks */
.checklist { display: grid; gap: .7rem; }
.checklist li { display: grid; grid-template-columns: 24px 1fr; gap: .65rem; align-items: start; font-size: var(--fs-sm); color: var(--ink-soft); }
.checklist li svg { width: 22px; height: 22px; color: var(--green-600); margin-top: 1px; flex: none; }
.checklist.on-dark li { color: var(--on-dark-soft); }
.checklist.on-dark li svg { color: var(--green-400); }

/* --------------------------------------------------------------------------
   10. Pricing cards
   -------------------------------------------------------------------------- */
.price-grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.75rem); }
.pricecard {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pricecard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricecard.featured { border: 1.5px solid var(--green-500); box-shadow: var(--shadow); }
.pricecard.featured::after {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green-600); color: #fff; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .04em; padding: .35rem .9rem; border-radius: var(--r-pill); white-space: nowrap;
}
.pricecard .pc-name { font-family: var(--ff-sans); font-weight: 700; font-size: 1.15rem; color: var(--teal-800); }
.pricecard .pc-for { font-size: var(--fs-xs); color: var(--ink-faint); margin-top: .35rem; }
.pricecard .pc-price { font-family: var(--ff-display); font-weight: 600; color: var(--ink); margin: 1rem 0 .25rem; line-height: 1; }
.pricecard .pc-price .amt { font-size: clamp(2.1rem, 5vw, 2.8rem); }
.pricecard .pc-price .per { font-family: var(--ff-sans); font-size: var(--fs-sm); font-weight: 600; color: var(--ink-faint); }
.pricecard .pc-note { font-size: var(--fs-xs); color: var(--ink-faint); }
.pricecard .pc-desc { font-size: var(--fs-sm); margin: 1rem 0 1.25rem; }
.pricecard .checklist { margin-bottom: 1.5rem; }
.pricecard .btn { margin-top: auto; }
.pc-tag { display: inline-block; font-size: var(--fs-xs); font-weight: 700; color: var(--green-700); background: var(--green-100); padding: .25rem .6rem; border-radius: var(--r-pill); }

/* compact price rows (marketing / billing) */
.price-rows { display: grid; gap: .85rem; }
.price-row { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1rem; padding: 1rem 1.25rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.price-row .pr-name { font-weight: 700; color: var(--teal-800); }
.price-row .pr-name span { display: block; font-weight: 400; font-size: var(--fs-xs); color: var(--ink-faint); }
.price-row .pr-amt { font-family: var(--ff-display); font-weight: 600; font-size: 1.3rem; color: var(--ink); white-space: nowrap; }
.price-row .pr-amt small { font-family: var(--ff-sans); font-size: var(--fs-xs); font-weight: 600; color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   11. Stats
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,3vw,2rem); }
@media (max-width: 760px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--ff-display); font-weight: 600; font-size: clamp(2.4rem,6vw,3.4rem); line-height: 1; color: var(--teal-800); }
.bg-teal .stat .num { color: #fff; }
.stat .num .sym { color: var(--green-500); }
.stat .lbl { margin-top: .5rem; font-size: var(--fs-sm); color: var(--ink-soft); }
.bg-teal .stat .lbl { color: var(--on-dark-soft); }

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem,3vw,2rem); box-shadow: var(--shadow-xs); height: 100%;
  display: flex; flex-direction: column;
}
.quote .stars { display: inline-flex; gap: 2px; color: var(--gold-500); margin-bottom: 1rem; }
.quote .stars svg { width: 18px; height: 18px; }
.quote blockquote { font-size: 1.075rem; line-height: 1.6; color: var(--ink); font-family: var(--ff-display); font-weight: 500; }
.quote .who { display: flex; align-items: center; gap: .85rem; margin-top: 1.5rem; }
.quote .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--teal-700); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--ff-sans); flex: none; }
.quote .who .nm { font-weight: 700; color: var(--ink); font-size: var(--fs-sm); line-height: 1.2; }
.quote .who .rl { font-size: var(--fs-xs); color: var(--ink-faint); }
.quote.feature { background: var(--teal-900); border-color: transparent; }
.quote.feature blockquote { color: #fff; }
.quote.feature .who .nm { color: #fff; }
.quote.feature .who .rl { color: var(--on-dark-soft); }

/* --------------------------------------------------------------------------
   13. Timeline (about)
   -------------------------------------------------------------------------- */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--green-400), var(--teal-500)); }
.tl-item { position: relative; padding: 0 0 2.25rem 3.5rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 8px; top: 4px; width: 24px; height: 24px; border-radius: 50%; background: var(--paper); border: 3px solid var(--green-500); box-shadow: 0 0 0 4px var(--cream); }
.tl-year { font-family: var(--ff-display); font-weight: 600; font-size: 1.1rem; color: var(--green-700); }
.tl-item h3 { margin: .15rem 0 .35rem; }
.tl-item p { font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   14. Split / media sections
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split.narrow-media { grid-template-columns: 1.1fr .9fr; }
@media (max-width: 860px){ .split, .split.narrow-media { grid-template-columns: 1fr; gap: 2.25rem; } .split .media.order-first-mobile { order: -1; } }
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--cream-2); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-badge {
  position: absolute; left: 1rem; bottom: 1rem; background: var(--paper); border-radius: var(--r);
  padding: .85rem 1.1rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .75rem;
}
.media-badge .n { font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; color: var(--teal-800); line-height: 1; }
.media-badge .l { font-size: var(--fs-xs); color: var(--ink-soft); }

/* portrait placeholder with monogram */
.portrait {
  aspect-ratio: 4/5; border-radius: var(--r-lg); display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 0%, var(--teal-700), var(--teal-950));
  color: #fff; box-shadow: var(--shadow);
}
.portrait .mono { font-family: var(--ff-display); font-weight: 600; font-size: clamp(3rem,10vw,5rem); }
.portrait .cap { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; font-size: var(--fs-xs); color: var(--on-dark-soft); }
.portrait-wrap { position: relative; }

/* real founder photo */
.portrait-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--cream-2); }
.portrait-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; display: block; }
.portrait-photo .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.25rem 1rem .85rem; text-align: center; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .02em; color: #fff; background: linear-gradient(transparent, rgba(4,33,44,.85)); }
.avatar-photo { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; box-shadow: var(--shadow-sm); }
.avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --------------------------------------------------------------------------
   15. Case study cards
   -------------------------------------------------------------------------- */
.case {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-xs); display: flex; flex-direction: column; height: 100%;
  transition: transform var(--t), box-shadow var(--t);
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-top { padding: 1.5rem 1.5rem 1.25rem; border-bottom: 1px solid var(--line-2); }
.case-tag { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--green-700); }
.case-top h3 { margin-top: .5rem; }
.case-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line-2); }
.case-metrics div { background: var(--paper); padding: 1.1rem 1.5rem; }
.case-metrics .n { font-family: var(--ff-display); font-weight: 600; font-size: 1.7rem; color: var(--teal-800); line-height: 1; }
.case-metrics .n .sym { color: var(--green-500); }
.case-metrics .l { font-size: var(--fs-xs); color: var(--ink-faint); margin-top: .3rem; }
.case-body { padding: 1.25rem 1.5rem 1.5rem; }
.case-body p { font-size: var(--fs-sm); }

/* before/after bars */
.ba { display: grid; gap: 1.1rem; }
.ba-row .ba-top { display: flex; justify-content: space-between; font-size: var(--fs-sm); margin-bottom: .4rem; }
.ba-row .ba-top .v { font-weight: 700; color: var(--teal-800); }
.ba-track { height: 12px; background: var(--cream-2); border-radius: var(--r-pill); overflow: hidden; }
.ba-fill { height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--green-500), var(--green-600)); width: 0; transition: width 1s var(--t-slow); }
.ba-fill.before { background: var(--teal-500); opacity: .55; }

/* --------------------------------------------------------------------------
   16. Process steps
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: clamp(1rem,2.5vw,1.5rem); }
.step { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.5rem 1.5rem 1.5rem; }
.step .num { counter-increment: step; font-family: var(--ff-display); font-weight: 600; font-size: 1.1rem; color: var(--green-600); display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--green-100); margin-bottom: 1rem; }
.step .num::before { content: counter(step); }
.step h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.step p { font-size: var(--fs-sm); }
.bg-teal .step h3 { color: var(--ink); }
.bg-teal .step p { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   17. CTA band
   -------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: radial-gradient(120% 140% at 85% 0%, var(--teal-700), var(--teal-900) 60%, var(--teal-950)); color: #fff; border-radius: var(--r-xl); padding: clamp(2.5rem,5vw,4rem); }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(82,168,50,.35), transparent 65%); pointer-events: none; }
.cta-band .inner { position: relative; max-width: 56ch; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-soft); font-size: var(--fs-lead); margin-top: 1rem; }
.cta-band .btn-row { margin-top: 2rem; }
.cta-section { background: var(--cream); }

/* full-bleed dark cta variant */
.cta-dark { background: var(--teal-900); }

/* --------------------------------------------------------------------------
   18. Forms
   -------------------------------------------------------------------------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem,3vw,2.5rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: var(--fs-sm); color: var(--ink); margin-bottom: .4rem; }
.field label .req { color: var(--green-600); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; font-size: var(--fs-body);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  color: var(--ink); transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-500); background: var(--paper); box-shadow: var(--ring); }
.field textarea { min-height: 130px; resize: vertical; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c0392b; }
.field-error { display: none; color: #b03326; font-size: var(--fs-xs); margin-top: .35rem; font-weight: 600; }
.field.invalid .field-error { display: block; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 560px){ .field-grid { grid-template-columns: 1fr; } }
.form-note { font-size: var(--fs-xs); color: var(--ink-faint); margin-top: 1rem; }
.form-status { margin-top: 1rem; padding: 1rem 1.25rem; border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--green-100); color: var(--green-700); }
.form-status.err { background: #fbe8e6; color: #b03326; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* contact info list */
.contact-list { display: grid; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; flex: none; }
.contact-item .ic svg { width: 23px; height: 23px; }
.contact-item .k { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--ink-faint); }
.contact-item .v { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.contact-item .v a { color: var(--teal-800); }
.contact-item .v a:hover { color: var(--green-600); }

/* --------------------------------------------------------------------------
   19. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .75rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.35rem; text-align: left; font-weight: 700; color: var(--teal-800); font-size: 1.02rem; }
.faq-q:hover { color: var(--green-700); }
.faq-q .chev { width: 22px; height: 22px; flex: none; color: var(--green-600); transition: transform var(--t); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); }
.faq-a .faq-a-inner { padding: 0 1.35rem 1.25rem; font-size: var(--fs-sm); color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   20. Page hero (interior)
   -------------------------------------------------------------------------- */
.page-hero { background: radial-gradient(120% 130% at 85% -20%, var(--teal-700), var(--teal-900) 60%, var(--teal-950)); color: #fff; }
.page-hero .inner { padding-block: clamp(3rem, 2.5rem + 4vw, 5rem); max-width: 64ch; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); }
.page-hero p { color: var(--on-dark-soft); font-size: var(--fs-lead); margin-top: 1rem; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: var(--fs-xs); color: var(--on-dark-soft); margin-bottom: 1rem; }
.breadcrumb a { color: var(--on-dark-soft); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* values / philosophy chips */
.value-card { padding: 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.value-card .icon-chip { width: 46px; height: 46px; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.value-card p { font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--teal-950); color: var(--on-dark-soft); padding-top: clamp(3rem,5vw,4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 46px; width: auto; margin-bottom: 1rem; }
.footer-about p { font-size: var(--fs-sm); color: var(--on-dark-soft); max-width: 34ch; }
.footer-col h4 { font-family: var(--ff-sans); font-weight: 700; font-size: var(--fs-sm); letter-spacing: .04em; color: #fff; margin-bottom: 1.1rem; text-transform: uppercase; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { color: var(--on-dark-soft); font-size: var(--fs-sm); }
.footer-col a:hover { color: #fff; }
.footer-contact { display: grid; gap: .75rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .6rem; color: var(--on-dark-soft); font-size: var(--fs-sm); }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green-400); flex: none; }
.socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: var(--on-dark-soft); }
.socials a:hover { background: var(--green-600); color: #fff; }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid var(--on-dark-line); padding-block: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: var(--fs-xs); color: var(--on-dark-soft); }
.footer-bottom a { color: var(--on-dark-soft); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   22. Misc utilities
   -------------------------------------------------------------------------- */
.price-row[id], .pc-name[id], section[id] { scroll-margin-top: 96px; }
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .85rem; border-radius: var(--r-pill); font-size: var(--fs-xs); font-weight: 700; background: var(--green-100); color: var(--green-700); }
.pill.teal { background: var(--teal-100); color: var(--teal-700); }
.pill.gold { background: var(--gold-100); color: var(--gold-600); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 0; }
.mt-0{margin-top:0}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.muted { color: var(--ink-faint); }
.nowrap { white-space: nowrap; }

/* growth-line SVG accent stroke */
.growth-stroke { stroke: var(--green-500); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.growth-arrow { fill: var(--green-500); }

/* --------------------------------------------------------------------------
   23. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--t-slow), transform .7s var(--t-slow); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .card.hoverable:hover, .pricecard:hover, .case:hover { transform: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

