:root {
  --ink: #0F1A0F;
  --cream: #F7F5F0;
  --sage: #4A6741;
  --sage-light: #6B8C61;
  --gold: #C8A24E;
  --white: #FFFFFF;
  --warm-gray: #8A8578;
  --border: #DED9D0;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,26,15,.04), 0 2px 8px rgba(15,26,15,.05);
  --shadow-md: 0 8px 30px rgba(15,26,15,.08);
  --shadow-lg: 0 20px 60px rgba(15,26,15,.14);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -.01em; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--sage); }
p { margin: 0 0 1rem; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
.eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 16px;
}
.section-head { max-width: 660px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 16px; }
.section-head p { color: var(--warm-gray); font-size: 1.1rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--sage); color: var(--white); box-shadow: 0 6px 18px rgba(74,103,65,.28); }
.btn-primary:hover { background: #3e5837; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(74,103,65,.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); }
.btn-light { background: var(--white); color: var(--sage); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,240,.85); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(15,26,15,.07); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.brand svg { flex: none; }
.wordmark { font-size: 1.35rem; display: inline-flex; align-items: baseline; gap: 3px; }
.wordmark .b { font-family: var(--sans); font-weight: 600; letter-spacing: -.01em; }
.wordmark .l { font-family: var(--serif); font-style: italic; color: var(--sage); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links > li > a { text-decoration: none; font-weight: 500; font-size: .98rem; color: var(--ink); opacity: .82; transition: opacity .15s ease, color .15s ease; }
.nav-links > li > a:hover { opacity: 1; color: var(--sage); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 20px; font-size: .95rem; }

/* ---------- Nav dropdown ---------- */
.has-dropdown { position: relative; }
.nav-drop-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-weight: 500; font-size: .98rem;
  color: var(--ink); opacity: .82; background: none; border: 0; cursor: pointer; padding: 0;
  transition: opacity .15s ease, color .15s ease;
}
.nav-drop-toggle:hover { opacity: 1; color: var(--sage); }
.nav-drop-toggle .caret { transition: transform .2s ease; }
.has-dropdown.open .nav-drop-toggle .caret { transform: rotate(180deg); }
.nav-drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 220px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  list-style: none; margin: 0; padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
  z-index: 60;
}
.nav-drop::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.has-dropdown:hover .nav-drop, .has-dropdown.open .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-drop a {
  display: block; padding: 9px 12px; border-radius: 8px; text-decoration: none;
  font-size: .95rem; font-weight: 500; color: var(--ink); opacity: .85; white-space: nowrap;
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}
.nav-drop a:hover, .nav-drop a[aria-current="page"] { background: rgba(74,103,65,.1); color: var(--sage); opacity: 1; }
.nav-drop .sep { height: 1px; background: var(--border); margin: 6px 4px; }

.hamburger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin: -8px -8px -8px 0;
  width: 44px; height: 44px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; margin: 5px auto; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 88px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); margin: 0 0 22px; }
.hero .sub { font-size: 1.2rem; color: var(--warm-gray); max-width: 34ch; margin: 0 0 18px; }
.hero-proof {
  display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 500;
  color: var(--ink); background: rgba(200,162,78,.12); border: 1px solid rgba(200,162,78,.35);
  padding: 8px 14px; border-radius: 999px; margin: 0 0 30px;
}
.hero-proof strong { color: var(--sage); }
.hero-proof .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Dashboard / snapshot card */
.dash {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 26px; position: relative;
}
.dash::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); pointer-events: none;
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-title { font-family: var(--sans); font-weight: 600; font-size: .95rem; }
.dash-live { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 600; color: var(--sage); text-transform: uppercase; letter-spacing: .06em; }
.dash-live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-light); }
.dash-metric { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 4px; }
.dash-metric .num { font-family: var(--serif); font-size: 3.4rem; line-height: 1; color: var(--ink); }
.dash-metric .tag { font-size: .82rem; font-weight: 600; color: var(--white); background: var(--sage); padding: 4px 9px; border-radius: 999px; margin-bottom: 10px; }
.dash-label { font-size: .9rem; color: var(--warm-gray); margin: 0 0 22px; }
.dash-bars { display: grid; gap: 14px; }
.bar-row { display: grid; grid-template-columns: 92px 1fr 42px; align-items: center; gap: 12px; font-size: .85rem; }
.bar-row .plat { color: var(--ink); font-weight: 500; }
.bar-track { height: 9px; background: #EEEBE3; border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; width: 0; border-radius: 999px; background: var(--sage); }
.bar-fill.g { background: var(--sage); }
.bar-fill.l { background: var(--sage); }
.bar-row .val { text-align: right; font-weight: 600; color: var(--warm-gray); }
.dash-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: .82rem; color: var(--warm-gray); }
.dash-foot strong { color: var(--ink); font-weight: 600; }
.snap-list { display: grid; gap: 12px; }
.snap-row { display: flex; align-items: center; gap: 10px; font-size: .93rem; color: var(--ink); font-weight: 500; }
.snap-row svg { color: var(--sage); flex: none; }

/* ---------- Trust bar ---------- */
.trust { background: var(--ink); color: var(--cream); padding: 30px 0; }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 36px; }
.trust-item { display: flex; align-items: center; gap: 11px; font-size: .96rem; font-weight: 500; color: rgba(247,245,240,.9); }
.trust-item svg { flex: none; color: var(--gold); }
.trust-line { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; text-align: center; margin: 0; font-size: 1.08rem; font-weight: 500; color: rgba(247,245,240,.92); }
.trust-line svg { flex: none; color: var(--gold); }
.trust-line strong { color: var(--gold); font-weight: 700; }

/* ---------- Services / cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards.services-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-light); }
.card-ic {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(74,103,65,.1); color: var(--sage); margin-bottom: 18px;
}
.card h3 { font-family: var(--sans); font-weight: 600; font-size: 1.18rem; margin: 0 0 8px; letter-spacing: -.01em; }
.card p { color: var(--warm-gray); font-size: .98rem; margin: 0; }

/* ---------- Offer / The System ---------- */
.system { background: var(--ink); color: var(--cream); }
.system .eyebrow { color: var(--gold); }
.system .section-head h2 { color: var(--white); }
.system .section-head h2 em { color: var(--gold); }
.system .section-head p { color: rgba(247,245,240,.7); }
.offer-grid { display: grid; grid-template-columns: 1.3fr .85fr; gap: 28px; align-items: start; }
.offer-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 14px 28px;
}
.offer-line {
  display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.09);
}
.offer-line:last-child { border-bottom: 0; }
.offer-line .chk { color: var(--gold); }
.offer-line .name { font-weight: 500; color: var(--cream); }
.offer-line .name small { display: block; font-weight: 400; font-size: .82rem; color: rgba(247,245,240,.55); margin-top: 2px; }
.offer-line .price { font-weight: 600; color: rgba(247,245,240,.85); font-size: .95rem; white-space: nowrap; }
.offer-total { display: flex; align-items: center; justify-content: space-between; padding: 20px 4px 4px; }
.offer-total .lbl { font-weight: 600; color: var(--cream); }
.offer-total .amt { font-family: var(--serif); font-size: 1.6rem; color: rgba(247,245,240,.6); text-decoration: line-through; text-decoration-color: rgba(200,162,78,.7); }

.price-card {
  background: linear-gradient(165deg, var(--sage) 0%, #3a5232 100%);
  border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-lg);
  position: sticky; top: 96px; text-align: center;
}
.price-card .kicker { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.price-card .big { font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--white); margin: 8px 0 2px; }
.price-card .big span { font-family: var(--sans); font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,.8); }
.price-card .desc { color: rgba(255,255,255,.85); font-size: .96rem; margin: 0 0 20px; }
.price-card .btn { width: 100%; justify-content: center; margin-bottom: 14px; }
.price-card .fine { font-size: .82rem; color: rgba(255,255,255,.7); margin: 0; }
.guarantee {
  display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 16px 18px;
  background: rgba(200,162,78,.14); border: 1px solid rgba(200,162,78,.4); border-radius: var(--radius-sm);
  font-size: .92rem; color: var(--cream);
}
.guarantee svg { flex: none; color: var(--gold); }
.guarantee strong { color: var(--white); }
.spend-note { margin-top: 18px; font-size: .86rem; color: rgba(247,245,240,.6); text-align: center; }

/* ---------- Problems we fix (industry pages) ---------- */
.pain-grid { max-width: 800px; margin: 0 auto; display: grid; gap: 16px; }
.pain {
  display: grid; grid-template-columns: 60px 1fr; gap: 22px; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pain:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pain .pic {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(200,162,78,.16); color: var(--gold);
}
.pain .pic svg { width: 26px; height: 26px; display: block; }
.pain-body h3 { font-family: var(--sans); font-weight: 600; font-size: 1.12rem; margin: 0 0 5px; }
.pain-body p { color: var(--warm-gray); font-size: .98rem; margin: 0; }

/* ---------- Offer strip (industry pages) ---------- */
.offer-strip { background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 48px 44px; text-align: center; }
.offer-strip h2 { color: var(--white); font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 0 0 14px; }
.offer-strip h2 em { color: var(--gold); }
.offer-strip p { color: rgba(247,245,240,.78); max-width: 60ch; margin: 0 auto 24px; }
.offer-strip .btn { margin-bottom: 6px; }
.offer-strip .guarantee { max-width: max-content; margin-left: auto; margin-right: auto; }

/* ---------- Add-on services (pricing cards) ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.addon-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.addon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-light); }
.addon-ic { width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; background: rgba(74,103,65,.1); color: var(--sage); margin-bottom: 20px; }
.addon-card h3 { font-family: var(--sans); font-weight: 600; font-size: 1.3rem; margin: 0 0 8px; letter-spacing: -.01em; }
.addon-card .blurb { color: var(--warm-gray); font-size: .98rem; margin: 0 0 22px; }
.addon-price { display: flex; align-items: baseline; gap: 7px; margin: 0; }
.addon-price .amt { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--ink); }
.addon-price .per { font-size: .95rem; font-weight: 500; color: var(--warm-gray); }
.addon-tag { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--sage); margin: 0 0 12px; }
.addon-note { font-size: .82rem; color: var(--warm-gray); margin: 6px 0 0; }
.addon-feats { list-style: none; margin: 24px 0 26px; padding: 22px 0 0; border-top: 1px solid var(--border); display: grid; gap: 12px; }
.addon-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--ink); }
.addon-feats li svg { color: var(--sage); flex: none; margin-top: 3px; }
.addon-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ---------- About page ---------- */
.about-portrait { position: relative; max-width: 440px; width: 100%; margin-left: auto; }
.about-photo { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); display: block; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.about-badge { position: absolute; left: 16px; bottom: 16px; display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px 9px 12px; box-shadow: var(--shadow-md); font-size: .9rem; }
.about-badge svg { flex: none; }
.about-badge strong { color: var(--ink); font-weight: 700; margin-right: 6px; }
.about-badge span { color: var(--warm-gray); }
.about-prose { max-width: 720px; margin: 0 auto; }
.about-prose p { font-size: 1.08rem; line-height: 1.75; color: #34402F; margin: 0 0 1.1rem; }
.about-prose p:last-child { margin-bottom: 0; }

/* ---------- Case study ---------- */
.case { background: var(--white); }
.case-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.case-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  color: var(--sage); background: rgba(74,103,65,.1); padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.case h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 0 0 16px; }
.case p { color: var(--warm-gray); }
.case-quote {
  max-width: 880px; margin: 64px auto 0;
  background: var(--cream); border: 1px solid var(--border); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 40px 44px;
}
.case-quote .qmark { color: var(--gold); margin: 0 0 14px; }
.case-quote blockquote { margin: 0; padding: 0; border: 0; }
.case-quote blockquote p { font-size: 1.04rem; line-height: 1.75; color: #34402F; margin: 0 0 1.05rem; }
.case-quote blockquote p:first-of-type { font-family: var(--serif); font-size: 1.45rem; line-height: 1.35; color: var(--ink); margin-bottom: 1.2rem; }
.case-quote blockquote p:last-of-type { margin-bottom: 0; }
.case-quote figcaption { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); font-weight: 600; color: var(--sage); font-size: 1rem; }
.case-quote.has-photo { padding: 0; overflow: hidden; }
.case-photo { width: 100%; height: 340px; object-fit: cover; object-position: center 55%; display: block; }
.case-quote-body { padding: 40px 44px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px;
}
.stat-grid > .stat:first-child { grid-column: 1 / -1; background: var(--sage); border-color: var(--sage); color: var(--white); }
.stat .n { font-family: var(--serif); font-size: 3.2rem; line-height: 1; }
.stat-grid > .stat:first-child .n { font-size: 3.8rem; }
.stat .k { font-size: .96rem; color: var(--warm-gray); margin-top: 8px; }
.stat-grid > .stat:first-child .k { color: rgba(255,255,255,.85); }

/* 3-up stat row (industry proof band) */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-row .stat { text-align: center; }
.stat-row .stat .n { color: var(--sage); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; }
.step-n {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--white); border: 1.5px solid var(--border); color: var(--sage);
  font-family: var(--serif); font-size: 1.4rem; margin-bottom: 18px;
}
.step h3 { font-family: var(--sans); font-weight: 600; font-size: 1.12rem; margin: 0 0 8px; }
.step p { color: var(--warm-gray); font-size: .96rem; margin: 0; }
.step-speed {
  margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 12px;
  background: rgba(74,103,65,.08); border: 1px solid rgba(74,103,65,.2); border-radius: 999px;
  padding: 14px 24px; font-weight: 500; max-width: max-content; margin-left: auto; margin-right: auto;
}
.step-speed svg { color: var(--sage); flex: none; }
.step-speed strong { color: var(--sage); }

/* ---------- Industries grid ---------- */
.ind { background: var(--white); }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ind-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; background: var(--cream);
  text-decoration: none; color: inherit; display: block;
}
.ind-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sage-light); }
.ind-card .emoji { width: 44px; height: 44px; border-radius: 11px; background: rgba(74,103,65,.12); color: var(--sage); display: grid; place-items: center; margin-bottom: 14px; }
.ind-card h3 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; margin: 0 0 6px; color: var(--ink); }
.ind-card p { font-size: .92rem; color: var(--warm-gray); margin: 0; }
.ind-card .more { margin-top: 14px; font-weight: 600; color: var(--sage); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.ind-card .more .arrow { transition: transform .2s ease; }
.ind-card:hover .more .arrow { transform: translateX(3px); }

/* ---------- Results numbers ---------- */
.results { background: var(--cream); }
.num-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; }
.num-cell { padding: 18px; }
.num-cell .n { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--sage); }
.num-cell .k { color: var(--warm-gray); font-size: .96rem; margin-top: 10px; }

/* ---------- Final CTA ---------- */
.final { background: var(--sage); color: var(--white); text-align: center; }
.final h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 18px; color: var(--white); }
.final h2 em { color: var(--gold); }
.final p { color: rgba(255,255,255,.88); font-size: 1.15rem; max-width: 52ch; margin: 0 auto 32px; }
.final .micro { margin-top: 22px; font-size: .9rem; color: rgba(255,255,255,.78); display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.final .micro span { display: inline-flex; align-items: center; gap: 7px; }
.final .micro svg { color: var(--gold); flex: none; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(247,245,240,.7); padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
footer .brand { color: var(--cream); margin-bottom: 16px; }
footer .brand .wordmark .l { color: var(--gold); }
footer .blurb { font-size: .96rem; max-width: 32ch; margin: 0 0 18px; }
footer .foot-mail { color: var(--gold); text-decoration: none; font-weight: 500; }
footer .foot-mail:hover { text-decoration: underline; }
.foot-col h4 { font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(247,245,240,.5); margin: 6px 0 16px; font-weight: 600; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { text-decoration: none; color: rgba(247,245,240,.72); font-size: .95rem; transition: color .15s ease; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .86rem; color: rgba(247,245,240,.5);
}

/* ---------- Focus / a11y ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; background: var(--white); color: var(--ink);
  padding: 12px 18px; border-radius: 8px; z-index: 100; font-weight: 600; transition: top .2s ease; box-shadow: var(--shadow-md);
}
.skip-link:focus { top: 12px; }

/* ---------- Motion ---------- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .bar-fill { transition: width 1.1s cubic-bezier(.2,.7,.2,1); }
  .pulse { animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  section { padding: 80px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero .sub { max-width: 46ch; }
  .about-portrait { margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards.services-4 { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .offer-grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .case-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 22px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .num-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 22px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: block; }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0; background: var(--cream); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .3s ease;
    padding: 18px 24px 26px; z-index: 49;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu ul.nav-links { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 4px; }
  .nav-links > li > a { display: block; padding: 13px 8px; text-decoration: none; font-weight: 500; font-size: 1.05rem; border-bottom: 1px solid var(--border); opacity: 1; }
  .nav-menu > .btn { width: 100%; justify-content: center; }

  /* Dropdown becomes an inline expandable inside the mobile menu */
  .has-dropdown { position: static; }
  .nav-drop-toggle { width: 100%; justify-content: space-between; padding: 13px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--border); opacity: 1; }
  .nav-drop {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: 0; min-width: 0; padding: 4px 0 10px 12px; display: none; background: transparent;
  }
  .has-dropdown:hover .nav-drop { transform: none; }
  .has-dropdown.open .nav-drop { display: grid; transform: none; left: auto; }
  .nav-drop::before { display: none; }
  .nav-drop a { font-size: 1rem; padding: 10px 8px; }
}

@media (min-width: 1025px) {
  .nav-menu { display: contents; }
  .nav-menu > .btn { display: none; } /* mobile-dropdown CTA hidden on desktop; .nav-cta button shows instead */
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .cards { grid-template-columns: 1fr; }
  .cards.services-4 { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-grid > .stat:first-child .n { font-size: 3.2rem; }
  .case-photo { height: 230px; }
  .case-quote-body { padding: 28px 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 48px 0 64px; }
  .dash { padding: 22px; }
  .dash-metric .num { font-size: 2.8rem; }
  .offer-card { padding: 8px 20px; }
  .offer-strip { padding: 36px 24px; }
  .pain { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 22px; }
  .pain .pic { width: 48px; height: 48px; }
  .pain .pic svg { width: 22px; height: 22px; }
  .offer-line { grid-template-columns: 20px 1fr; }
  .offer-line .price { grid-column: 2; text-align: left; padding-left: 0; }
}
