:root {
  --green-950: #052c22;
  --green-900: #073f30;
  --green-800: #0a503d;
  --green-700: #12664e;
  --cream: #f6f2e9;
  --cream-deep: #eee7da;
  --white: #fffefa;
  --ink: #17201c;
  --muted: #65706a;
  --line: rgba(7, 63, 48, .14);
  --gold: #d1aa54;
  --gold-light: #f0d48c;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(4, 35, 27, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
:where(a, button, input, select, summary):focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; background: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(246, 242, 233, .97); border-color: var(--line); box-shadow: 0 8px 34px rgba(7,63,48,.06); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--green-900); line-height: 1; }
.brand-mark { flex: 0 0 auto; width: 43px; height: auto; object-fit: contain; }
.brand-wordmark { width: 105px; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--green-900); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a[aria-current="true"]::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { width: 26px; height: 2px; display: block; margin: 5px 0; background: var(--green-900); transition: .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--green-900);
  border-radius: 999px;
  background: var(--green-900);
  color: white;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-800); box-shadow: 0 12px 28px rgba(7,63,48,.2); }
.button-small { min-height: 42px; padding: 0 19px; font-size: 13px; }
.button-gold { color: var(--green-950); background: var(--gold); border-color: var(--gold); }
.button-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button-outline { color: var(--green-900); background: transparent; width: 100%; }
.button-outline:hover { color: white; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding: 12px 3px; border-bottom: 1px solid rgba(7,63,48,.35); color: var(--green-900); font-size: 14px; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }

.hero { position: relative; overflow: hidden; min-height: 790px; padding: 156px 0 90px; background: var(--cream); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(rgba(7,63,48,.16) .8px, transparent .8px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent 0, black 55%, black 100%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { width: 540px; height: 540px; right: -160px; top: 10px; background: rgba(209,170,84,.12); }
.hero-glow-two { width: 380px; height: 380px; left: -250px; bottom: -160px; background: rgba(18,102,78,.1); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); align-items: center; gap: 62px; }
.hero-copy { min-width: 0; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--green-700); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.eyebrow > span { display: block; width: 32px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }
.eyebrow.dark { color: var(--green-700); }
.hero h1, .section-heading h2, .diagnostic h2, .metrics h2, .report-copy h2, .faq h2, .final-cta h2 { margin: 0; font-size: clamp(44px, 5.15vw, 73px); line-height: 1.045; letter-spacing: -.055em; font-weight: 800; }
h1 em, h2 em { color: var(--green-700); font-style: normal; }
.hero-text { max-width: 600px; margin: 28px 0 30px; color: #4f5d56; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 22px; margin: 30px 0 0; padding: 0; list-style: none; color: #52615a; font-size: 12px; font-weight: 700; }
.trust-list li { display: flex; align-items: center; gap: 7px; }
.trust-list span { display: grid; place-items: center; width: 19px; height: 19px; border: 1px solid rgba(7,63,48,.22); border-radius: 50%; color: var(--green-700); font-size: 10px; }

.hero-visual { position: relative; min-height: 530px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(7,63,48,.13); border-radius: 50%; }
.orbit-one { width: 490px; height: 490px; }
.orbit-two { width: 610px; height: 610px; border-style: dashed; opacity: .7; animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.dashboard-card { position: relative; z-index: 2; width: 100%; max-width: 450px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; color: white; background: linear-gradient(145deg, #0b513f, #052f25); box-shadow: 0 40px 80px rgba(4,44,34,.24); }
.dashboard-card::after { content: "M"; position: absolute; right: -22px; top: -83px; color: rgba(255,255,255,.035); font-size: 270px; line-height: 1; font-family: Georgia, serif; }
.dashboard-top { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
.micro-label { color: rgba(255,255,255,.55); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.dashboard-top h2 { margin: 4px 0 0; font-size: 22px; }
.status { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #d9e9e2; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(209,170,84,.12); }
.funnel { position: relative; z-index: 1; }
.funnel-step { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 13px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; background: rgba(255,255,255,.035); }
.funnel-step > span { color: rgba(255,255,255,.35); font-size: 10px; }
.funnel-step div { display: grid; }
.funnel-step strong { font-size: 13px; }
.funnel-step small { color: rgba(255,255,255,.48); font-size: 9px; }
.funnel-step b { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; font-size: 10px; }
.funnel-step.active b { color: var(--gold-light); }
.funnel-step.focus { border-color: rgba(209,170,84,.5); background: rgba(209,170,84,.09); }
.funnel-line { width: 1px; height: 10px; margin-left: 30px; background: rgba(209,170,84,.55); }
.funnel-line.muted { background: rgba(255,255,255,.16); }
.chart-card { position: relative; z-index: 1; margin-top: 22px; padding: 16px 17px 5px; border-radius: 15px; background: rgba(255,255,255,.055); }
.chart-copy { display: flex; align-items: center; justify-content: space-between; }
.chart-copy span { color: rgba(255,255,255,.5); font-size: 9px; }
.chart-copy strong { color: var(--gold-light); font-size: 10px; }
.chart-card svg { width: 100%; margin-top: 10px; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--gold); stroke-width: 2; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; min-width: 175px; padding: 13px 15px; border: 1px solid rgba(7,63,48,.1); border-radius: 16px; background: rgba(255,254,250,.97); box-shadow: 0 18px 44px rgba(7,63,48,.14); }
.floating-card-left { left: -28px; top: 92px; }
.floating-card-right { right: -24px; bottom: 76px; }
.floating-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; color: var(--gold-light); background: var(--green-900); font-weight: 800; }
.floating-card div { display: grid; }
.floating-card small { color: var(--muted); font-size: 9px; }
.floating-card strong { color: var(--green-900); font-size: 11px; }

.promise-strip { color: white; background: var(--green-950); }
.promise-grid { min-height: 105px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.promise-grid > p { margin: 0; color: var(--gold-light); font-size: 13px; font-weight: 700; }
.promise-items { display: flex; align-items: center; gap: 42px; }
.promise-items span { display: flex; gap: 9px; font-size: 13px; font-weight: 700; }
.promise-items b { color: var(--gold); font-size: 10px; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 58px; }
.section-heading h2, .diagnostic h2, .metrics h2, .report-copy h2, .faq h2, .final-cta h2 { font-size: clamp(37px, 4vw, 57px); }
.section-heading > p { max-width: 450px; margin: 0 0 4px; color: var(--muted); }
.section-heading.centered { display: block; max-width: 760px; margin: 0 auto 62px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p { max-width: 590px; margin: 22px auto 0; }

.problems { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service-card { position: relative; grid-column: span 2; min-height: 280px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fbfaf6; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(7,63,48,.28); box-shadow: var(--shadow); }
.service-card.featured { color: white; background: var(--green-900); }
.service-number { color: rgba(7,63,48,.45); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.featured .service-number { color: rgba(255,255,255,.42); }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; margin: 35px 0 21px; border-radius: 14px; color: var(--green-900); background: var(--cream-deep); font-size: 24px; font-weight: 500; }
.featured .service-icon { color: var(--green-950); background: var(--gold); }
.service-card h3 { margin: 0 0 9px; font-size: 20px; letter-spacing: -.03em; }
.service-card p { max-width: 320px; margin: 0; color: var(--muted); font-size: 14px; }
.featured p { color: rgba(255,255,255,.64); }

.expert { background: var(--cream); }
.expert-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.expert-portrait { position: relative; isolation: isolate; display: grid; min-height: 520px; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); color: var(--gold-light); background: linear-gradient(145deg, var(--green-800), var(--green-950)); box-shadow: var(--shadow); }
.expert-portrait::before, .expert-portrait::after { content: ""; position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.expert-portrait::before { width: 390px; height: 390px; }
.expert-portrait::after { width: 540px; height: 540px; border-style: dashed; }
.expert-portrait > span { font-family: Georgia, serif; font-size: clamp(150px, 19vw, 260px); line-height: 1; opacity: .16; }
.expert-portrait > small { position: absolute; left: 24px; bottom: 24px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.75); background: rgba(0,0,0,.14); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.template-label { display: inline-flex; padding: 7px 10px; border: 1px dashed rgba(7,63,48,.3); border-radius: 8px; color: var(--green-700); background: rgba(18,102,78,.06); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.expert-copy h2 { margin: 18px 0 5px; font-size: clamp(38px, 4.2vw, 58px); line-height: 1.05; letter-spacing: -.05em; }
.expert-role { margin: 0 0 20px !important; color: var(--green-700) !important; font-weight: 800; }
.expert-copy > p:not(.eyebrow):not(.expert-role) { max-width: 650px; color: var(--muted); }
.expert-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 30px 0 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--line); }
.expert-facts div { min-width: 0; padding: 18px; background: var(--white); }
.expert-facts dt { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.expert-facts dd { margin: 8px 0 0; overflow-wrap: anywhere; color: var(--green-900); font-size: 12px; font-weight: 700; }

.diagnostic { color: white; background: var(--green-900); }
.diagnostic-shell { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: center; }
.diagnostic h2 em { color: var(--gold-light); }
.diagnostic-copy > p:not(.eyebrow) { max-width: 540px; margin: 24px 0; color: rgba(255,255,255,.68); }
.diagnostic-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; padding: 0; list-style: none; }
.diagnostic-copy li { display: flex; gap: 10px; font-size: 13px; font-weight: 700; }
.diagnostic-copy li span { color: var(--gold-light); }
.diagnostic-copy > small { display: block; max-width: 480px; color: rgba(255,255,255,.42); font-size: 10px; }
.audit-form { padding: 32px; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: rgba(255,255,255,.07); box-shadow: 0 30px 80px rgba(0,0,0,.16); }
.form-top { display: flex; gap: 14px; align-items: center; margin-bottom: 25px; }
.form-top > span { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; color: var(--green-950); background: var(--gold); font-size: 11px; font-weight: 800; }
.form-top div { display: grid; }
.form-top small { color: rgba(255,255,255,.48); font-size: 10px; }
.form-top strong { font-size: 15px; }
.audit-form label { display: grid; gap: 7px; margin-top: 15px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; }
.audit-form input, .audit-form select { width: 100%; height: 51px; padding: 0 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; outline: none; color: white; background: rgba(1,21,16,.2); transition: border-color .2s ease, box-shadow .2s ease; }
.audit-form select { color-scheme: dark; }
.audit-form input::placeholder { color: rgba(255,255,255,.35); }
.audit-form input:focus, .audit-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(209,170,84,.12); }
.audit-form .button { width: 100%; margin-top: 22px; }
.form-context { margin: 14px 0 -7px; padding: 10px 12px; border: 1px solid rgba(240,212,140,.24); border-radius: 10px; color: var(--gold-light); background: rgba(240,212,140,.07); font-size: 12px; text-align: center; }
.form-note { margin: 11px 0 0; color: rgba(255,255,255,.66); font-size: 11px; text-align: center; }
.form-note a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }

.process { background: var(--cream); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.timeline-item { position: relative; min-height: 264px; padding: 34px 31px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline-item::before { content: ""; position: absolute; inset: 0; background: var(--green-900); transform: scaleY(0); transform-origin: bottom; transition: transform .35s ease; }
.timeline-item:hover::before { transform: scaleY(1); }
.timeline-item > * { position: relative; z-index: 1; }
.timeline-item:hover { color: white; }
.timeline-index { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--green-700); font-size: 10px; font-weight: 800; transition: .35s ease; }
.timeline-item:hover .timeline-index { border-color: var(--gold); color: var(--green-950); background: var(--gold); }
.timeline-item small { color: var(--green-700); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.timeline-item:hover small { color: var(--gold-light); }
.timeline-item h3 { margin: 7px 0 10px; font-size: 19px; letter-spacing: -.025em; }
.timeline-item p { margin: 0; color: var(--muted); font-size: 13px; }
.timeline-item:hover p { color: rgba(255,255,255,.62); }

.metrics { color: white; background: var(--green-950); }
.metrics-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: center; }
.metrics h2 em { color: var(--gold-light); }
.metrics-intro > p:not(.eyebrow) { margin-top: 24px; color: rgba(255,255,255,.6); }
.metric-cards { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.metric-card { min-height: 225px; padding: 27px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.metric-card > span { color: var(--gold); font-size: 10px; font-weight: 800; }
.metric-card h3 { margin: 28px 0 8px; font-size: 21px; }
.metric-card p { margin: 0 0 18px; color: rgba(255,255,255,.66); font-size: 13px; }
.metric-card small { color: var(--gold-light); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }

.cases { color: white; background: var(--green-800); }
.cases .section-heading h2 em { color: var(--gold-light); }
.cases .section-heading > p { color: rgba(255,255,255,.67); }
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.case-card { display: flex; flex-direction: column; min-width: 0; min-height: 390px; padding: 27px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(2,35,27,.28); }
.case-head { display: flex; justify-content: space-between; gap: 14px; }
.case-head span { color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.case-head small { color: rgba(255,255,255,.45); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-align: right; }
.case-card h3 { margin: 34px 0 8px; font-size: 23px; letter-spacing: -.035em; }
.case-card > p { min-height: 65px; margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.case-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 25px 0; background: rgba(255,255,255,.12); }
.case-stats div { min-width: 0; padding: 13px 10px; background: #0a4939; }
.case-stats dt { min-height: 29px; color: rgba(255,255,255,.45); font-size: 8px; }
.case-stats dd { margin: 5px 0 0; color: var(--gold-light); font-size: 13px; font-weight: 800; overflow-wrap: anywhere; }
.case-result { display: grid; gap: 7px; margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.case-result small { color: rgba(255,255,255,.43); font-size: 8px; font-weight: 800; letter-spacing: .11em; }
.case-result strong { color: rgba(255,255,255,.85); font-size: 12px; }
.testimonial-heading { max-width: 690px; margin: 75px auto 30px; text-align: center; }
.light-template { color: var(--gold-light); border-color: rgba(240,212,140,.35); background: rgba(240,212,140,.06); }
.testimonial-heading h3 { margin: 15px 0 7px; font-size: 30px; letter-spacing: -.04em; }
.testimonial-heading p { margin: 0; color: rgba(255,255,255,.61); font-size: 13px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; max-width: 980px; margin-inline: auto; }
.testimonial-card { margin: 0; padding: 27px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.testimonial-card blockquote { min-height: 75px; margin: 0 0 25px; color: rgba(255,255,255,.88); font-family: Georgia, serif; font-size: 18px; line-height: 1.55; }
.testimonial-card figcaption { display: grid; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.testimonial-card figcaption span { color: var(--gold-light); font-size: 12px; font-weight: 800; }
.testimonial-card figcaption small { color: rgba(255,255,255,.48); font-size: 10px; }

.packages { background: var(--white); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fbfaf6; transition: transform .25s ease, box-shadow .25s ease; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-card.popular { color: white; border-color: var(--green-900); background: var(--green-900); box-shadow: 0 25px 60px rgba(7,63,48,.2); }
.popular-label { position: absolute; right: 24px; top: -13px; padding: 7px 12px; border-radius: 999px; color: var(--green-950); background: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.package-head { display: flex; align-items: center; justify-content: space-between; }
.package-head > span { color: var(--green-700); font-size: 10px; font-weight: 800; }
.package-head small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.popular .package-head > span { color: var(--gold); }
.popular .package-head small { color: rgba(255,255,255,.48); }
.package-card h3 { margin: 34px 0 9px; font-size: 34px; letter-spacing: -.05em; }
.package-card > p { min-height: 66px; margin: 0; color: var(--muted); font-size: 13px; }
.popular > p { color: rgba(255,255,255,.58); }
.duration { margin: 28px 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--green-900); font-size: 14px; font-weight: 800; }
.popular .duration { border-color: rgba(255,255,255,.13); color: var(--gold-light); }
.package-price { display: grid; gap: 3px; margin: -5px 0 20px; padding: 0 0 18px; border-bottom: 1px solid var(--line); }
.package-price small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.package-price strong { color: var(--green-900); font-size: 15px; }
.popular .package-price { border-color: rgba(255,255,255,.13); }
.popular .package-price small { color: rgba(255,255,255,.45); }
.popular .package-price strong { color: var(--gold-light); }
.package-card ul { flex: 1; display: grid; gap: 13px; margin: 0 0 30px; padding: 0; list-style: none; color: #4f5d56; font-size: 13px; }
.package-card li { position: relative; padding-left: 21px; }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-700); font-weight: 800; }
.popular ul { color: rgba(255,255,255,.68); }
.popular li::before { color: var(--gold-light); }
.popular .button { color: var(--green-950); border-color: var(--gold); background: var(--gold); }
.package-note { display: flex; justify-content: center; align-items: center; gap: 10px; max-width: 820px; margin: 30px auto 0; color: var(--muted); font-size: 11px; text-align: center; }
.package-note span { display: grid; place-items: center; flex: 0 0 auto; width: 19px; height: 19px; border: 1px solid var(--line); border-radius: 50%; color: var(--green-700); font-weight: 800; }

.report-section { background: var(--cream); }
.report-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.report-preview { padding: 35px; border-radius: var(--radius-lg); background: var(--cream-deep); }
.report-window { overflow: hidden; border-radius: 20px; background: white; box-shadow: 0 25px 60px rgba(7,63,48,.13); transform: rotate(-1.5deg); transition: transform .3s ease; }
.report-preview:hover .report-window { transform: rotate(0deg); }
.report-bar { display: flex; align-items: center; gap: 6px; height: 42px; padding: 0 16px; border-bottom: 1px solid #edf0ed; }
.report-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d4dcd7; }
.report-bar span { margin-left: auto; color: #87918c; font-size: 8px; font-weight: 700; }
.report-content { padding: 25px; }
.report-summary { display: grid; }
.report-summary span { color: var(--green-700); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.report-summary strong { margin-top: 4px; color: var(--green-900); font-size: 16px; }
.report-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 20px 0; }
.report-stats div { display: grid; padding: 12px; border: 1px solid #edf0ed; border-radius: 10px; }
.report-stats small { min-height: 25px; color: #87918c; font-size: 7px; }
.report-stats span { color: var(--green-900); font-size: 18px; font-weight: 800; }
.report-chart { height: 130px; display: flex; align-items: flex-end; gap: 9px; padding: 13px 16px 0; border-radius: 12px; background: #f7f8f6; }
.report-chart div { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(var(--green-700), var(--green-900)); }
.report-chart div:nth-child(2n) { background: linear-gradient(var(--gold), #e4c87d); }
.report-chart div:nth-child(1) { height: 42%; }
.report-chart div:nth-child(2) { height: 58%; }
.report-chart div:nth-child(3) { height: 49%; }
.report-chart div:nth-child(4) { height: 72%; }
.report-chart div:nth-child(5) { height: 65%; }
.report-chart div:nth-child(6) { height: 88%; }
.report-chart div:nth-child(7) { height: 78%; }
.report-insight { display: flex; align-items: center; gap: 11px; margin-top: 15px; padding: 11px; border-radius: 10px; color: white; background: var(--green-900); }
.report-insight > span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 8px; color: var(--green-950); background: var(--gold); }
.report-insight p { display: grid; margin: 0; }
.report-insight small { color: rgba(255,255,255,.45); font-size: 6px; letter-spacing: .13em; }
.report-insight strong { font-size: 8px; }
.report-copy > p:not(.eyebrow) { margin: 23px 0 30px; color: var(--muted); }
.check-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 13px; align-items: center; }
.check-list > li > span { display: grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; color: white; background: var(--green-900); font-size: 11px; }
.check-list div { display: grid; }
.check-list strong { font-size: 13px; }
.check-list small { color: var(--muted); font-size: 10px; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro > p:not(.eyebrow) { margin: 22px 0; color: var(--muted); }
.dark-link { color: var(--green-900); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; justify-content: space-between; gap: 20px; padding: 26px 6px; list-style: none; cursor: pointer; font-size: 15px; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--green-700); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 690px; margin: -5px 45px 25px 6px; color: var(--muted); font-size: 14px; }

.final-cta { overflow: hidden; color: white; background: var(--green-900); }
.final-cta-inner { position: relative; min-height: 530px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 90px 20px; text-align: center; }
.final-cta-inner::before, .final-cta-inner::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.final-cta-inner::before { width: 650px; height: 650px; }
.final-cta-inner::after { width: 890px; height: 890px; border-style: dashed; }
.final-cta-inner > * { position: relative; z-index: 1; }
.cta-mark { position: absolute; z-index: 0; right: 7%; top: -70px; color: rgba(255,255,255,.035); font-family: Georgia, serif; font-size: 330px; line-height: 1; transform: rotate(-8deg); }
.cta-mark span { font-family: "Segoe UI", Arial, sans-serif; font-size: .25em; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 em { color: var(--gold-light); }
.final-cta-inner > p:not(.eyebrow) { max-width: 590px; margin: 23px 0 29px; color: rgba(255,255,255,.62); }

.site-footer { padding: 64px 0 25px; color: white; background: #031e17; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr .65fr 1.35fr; gap: 38px; align-items: start; }
.brand-light { color: white; }
.brand-light .brand-mark, .brand-light .brand-wordmark { filter: brightness(0) invert(1); }
.footer-grid > p { max-width: 350px; margin: 0; color: rgba(255,255,255,.62); font-size: 12px; }
.footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.72); font-size: 12px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { display: grid; gap: 8px; }
.footer-contact small { color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .13em; }
.footer-contact a { color: var(--gold-light); font-size: 12px; font-weight: 800; }
.footer-contact dl { display: grid; gap: 8px; margin: 4px 0 6px; }
.footer-contact dl div { display: grid; grid-template-columns: 85px 1fr; gap: 10px; }
.footer-contact dt { color: rgba(255,255,255,.43); font-size: 10px; }
.footer-contact dd { margin: 0; color: rgba(255,255,255,.72); font-size: 10px; overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.55); font-size: 11px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.legal-links a:hover { color: var(--gold-light); }
.floating-contact { position: fixed; z-index: 50; right: 24px; bottom: 22px; display: flex; align-items: center; gap: 10px; padding: 9px 16px 9px 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: white; background: var(--green-900); box-shadow: 0 12px 35px rgba(4,35,27,.3); font-size: 11px; }
.floating-contact span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; color: var(--green-950); background: var(--gold); }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 30px; max-width: min(460px, calc(100% - 30px)); padding: 14px 20px; border-radius: 12px; color: white; background: #18241f; box-shadow: var(--shadow); font-size: 12px; opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 1; transform: none; }

.legal-page { background: var(--cream); }
.legal-page .site-header { position: sticky; background: rgba(246,242,233,.98); border-color: var(--line); }
.legal-page .nav-wrap { min-height: 74px; }
.legal-back { color: var(--green-900); font-size: 13px; font-weight: 800; }
.legal-main { padding: 80px 0 110px; }
.legal-hero { max-width: 850px; margin-bottom: 55px; }
.legal-hero .template-label { margin-bottom: 20px; }
.legal-hero h1 { margin: 0; font-size: clamp(44px, 6vw, 72px); line-height: 1.02; letter-spacing: -.055em; }
.legal-hero > p { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: 16px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 25px; margin-top: 24px; color: var(--green-700); font-size: 11px; font-weight: 800; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0,780px); gap: 75px; align-items: start; }
.legal-toc { position: sticky; top: 110px; display: grid; gap: 8px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.legal-toc strong { margin-bottom: 6px; color: var(--green-900); font-size: 12px; }
.legal-toc a { color: var(--muted); font-size: 11px; }
.legal-toc a:hover { color: var(--green-700); }
.legal-content { min-width: 0; }
.legal-content section { padding: 0 0 34px; margin: 0 0 34px; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { margin: 0 0 14px; color: var(--green-900); font-size: 25px; letter-spacing: -.03em; }
.legal-content h3 { margin: 24px 0 9px; color: var(--green-900); font-size: 16px; }
.legal-content p, .legal-content li { color: #4f5d56; font-size: 14px; }
.legal-content ul { display: grid; gap: 8px; padding-left: 21px; }
.legal-placeholder { display: inline; padding: 2px 5px; border: 1px dashed rgba(7,63,48,.3); border-radius: 5px; color: var(--green-700); background: rgba(18,102,78,.06); font-weight: 800; }
.legal-callout { padding: 18px 20px; border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; color: #4f5d56; background: #eee7da; font-size: 13px; }

@media (max-width: 1040px) {
  .hero-grid { gap: 30px; }
  .expert-grid { gap: 55px; }
  .floating-card-left { left: 0; }
  .floating-card-right { right: 0; }
  .diagnostic-shell, .report-grid { gap: 50px; }
  .faq-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 86px 0; }
  .menu-toggle { position: relative; z-index: 102; display: block; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: center; gap: 26px; color: white; background: var(--green-950); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .main-nav.open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.button) { font-size: 21px; }
  .main-nav .button { color: var(--green-950); border-color: var(--gold); background: var(--gold); }
  body.menu-open .menu-toggle > span:not(.sr-only) { background: white; }
  body.menu-open .brand { position: relative; z-index: 102; color: white; }
  .hero { padding-top: 135px; }
  .hero-grid, .expert-grid, .diagnostic-shell, .metrics-grid, .report-grid, .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-list { justify-content: center; }
  .hero-text { margin-inline: auto; }
  .hero-visual { width: min(100%, 570px); margin-inline: auto; }
  .promise-grid { padding: 25px 0; flex-direction: column; gap: 18px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 22px; }
  .service-card { grid-column: span 3; }
  .service-card:nth-child(5) { grid-column: 2 / span 4; }
  .expert-portrait { width: min(100%, 600px); min-height: 440px; margin-inline: auto; }
  .expert-copy { max-width: 680px; margin-inline: auto; }
  .diagnostic-copy { text-align: center; }
  .diagnostic-copy .eyebrow { justify-content: center; }
  .diagnostic-copy > p:not(.eyebrow), .diagnostic-copy > small { margin-inline: auto; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .metrics-intro { text-align: center; }
  .metrics-intro .eyebrow { justify-content: center; }
  .case-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .case-card { min-height: 350px; }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .legal-toc { position: static; grid-template-columns: repeat(2,1fr); }
  .legal-toc strong { grid-column: 1 / -1; }
  .package-grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .package-card > p { min-height: 0; }
  .report-preview { max-width: 590px; margin-inline: auto; }
  .faq-intro { position: static; text-align: center; }
  .faq-intro .eyebrow { justify-content: center; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 70px; }
  .brand-mark { width: 37px; }
  .brand-wordmark { width: 92px; }
  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero h1 { font-size: clamp(37px, 10.7vw, 43px); overflow-wrap: anywhere; }
  .hero-text { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .trust-list { gap: 10px 17px; }
  .hero-visual { min-height: 465px; margin-top: 15px; }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 460px; height: 460px; }
  .dashboard-card { padding: 20px; }
  .floating-card { min-width: 155px; padding: 10px; }
  .floating-card-left { top: 10px; left: -3px; }
  .floating-card-right { right: -3px; bottom: 3px; }
  .promise-items { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 28px; }
  .section-heading h2, .diagnostic h2, .metrics h2, .report-copy h2, .faq h2, .final-cta h2 { font-size: 37px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; min-height: 250px; }
  .expert-portrait { min-height: 360px; }
  .expert-facts { grid-template-columns: 1fr; }
  .diagnostic-shell { gap: 45px; }
  .diagnostic-copy ul { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; text-align: left; }
  .audit-form { padding: 23px 18px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { min-height: 220px; }
  .metric-cards { grid-template-columns: 1fr; }
  .metric-card { min-height: 200px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card blockquote { min-height: 0; }
  .package-card { padding: 27px 22px; }
  .report-preview { padding: 14px; }
  .report-content { padding: 16px; }
  .report-stats small { min-height: 35px; }
  .faq-grid { gap: 42px; }
  .accordion summary { font-size: 13px; }
  .final-cta-inner { min-height: 560px; padding-inline: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .legal-main { padding: 55px 0 80px; }
  .legal-hero { margin-bottom: 40px; }
  .legal-hero h1 { font-size: 42px; }
  .legal-toc { grid-template-columns: 1fr; }
  .floating-contact b { display: none; }
  .floating-contact { right: 14px; bottom: 14px; padding: 7px; }
  .floating-contact span { width: 39px; height: 39px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
