:root {
  --navy: #071e3d;
  --navy-2: #0b2d55;
  --navy-3: #153f6d;
  --gold: #bd9146;
  --gold-light: #d9b66f;
  --cream: #fbf8f2;
  --cream-2: #f3eee4;
  --paper: #fffdfa;
  --sage: #6f8f78;
  --ink: #132136;
  --muted: #626c78;
  --line: rgba(7, 30, 61, 0.11);
  --shadow-sm: 0 10px 30px rgba(7, 30, 61, 0.08);
  --shadow-md: 0 24px 60px rgba(7, 30, 61, 0.13);
  --radius: 22px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 95px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(189, 145, 70, .25); color: var(--navy); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 104px 0; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .76rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
h1 { margin-bottom: 24px; font-size: clamp(3.1rem, 6.1vw, 5.55rem); }
h1 span { display: block; color: var(--navy); }
h2 { margin-bottom: 18px; font-size: clamp(2.35rem, 4.3vw, 4rem); }
h3 { margin-bottom: 10px; font-size: 1.17rem; line-height: 1.35; }

.section-heading { width: min(770px, 100%); margin: 0 auto 52px; text-align: center; }
.section-heading > p:last-child { margin: 0 auto; max-width: 680px; color: var(--muted); font-size: 1.06rem; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid var(--navy);
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 25px rgba(7, 30, 61, .15);
  font-size: .93rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--navy-2); box-shadow: 0 16px 34px rgba(7, 30, 61, .22); }
.button:focus-visible, .primary-nav a:focus-visible, summary:focus-visible, .text-link:focus-visible { outline: 3px solid rgba(189, 145, 70, .55); outline-offset: 4px; }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-small { min-height: 42px; padding: 11px 18px; border-radius: 8px; font-size: .84rem; }
.button-outline { background: rgba(255, 255, 255, .68); border-color: rgba(189, 145, 70, .75); color: var(--navy); box-shadow: none; backdrop-filter: blur(12px); }
.button-outline:hover { background: #fff; border-color: var(--gold); }
.button-gold { background: linear-gradient(135deg, #b7893d, #d4ae63); border-color: #c2964b; color: var(--navy); box-shadow: 0 12px 28px rgba(189, 145, 70, .22); }
.button-gold:hover { background: linear-gradient(135deg, #c3974a, #e1c078); border-color: #c89c50; }
.button-dark { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(7, 30, 61, .08);
  background: rgba(255, 253, 250, .91);
  backdrop-filter: blur(18px) saturate(145%);
}
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.brand img { width: 245px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a:not(.button) {
  position: relative;
  color: #243044;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav > a:not(.button):hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 9px; background: transparent; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 44% 12%, rgba(214, 177, 105, .11), transparent 25%),
    linear-gradient(180deg, #fffdfa 0%, #fdfaf4 72%, #f4ede1 100%);
}
.hero::after {
  position: absolute;
  right: -10%;
  bottom: -22%;
  width: 58%;
  height: 54%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(165deg, rgba(113, 144, 119, .11), rgba(7, 30, 61, .03));
  content: '';
  transform: rotate(-5deg);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
.hero-copy { padding-bottom: 10px; }
.hero-lead { max-width: 660px; margin-bottom: 30px; color: #556170; font-size: 1.12rem; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 35px; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; max-width: 690px; }
.trust-item { display: flex; align-items: center; gap: 9px; color: #374456; font-size: .75rem; font-weight: 750; line-height: 1.25; }
.trust-icon { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border: 1px solid rgba(189, 145, 70, .28); border-radius: 50%; background: rgba(255, 255, 255, .74); color: var(--navy); box-shadow: 0 8px 18px rgba(7, 30, 61, .05); }
.trust-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.hero-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { top: 50px; right: -120px; width: 500px; height: 500px; background: rgba(211, 176, 108, .12); }
.hero-glow-two { bottom: -280px; left: -180px; width: 560px; height: 560px; background: rgba(7, 30, 61, .05); }

.hero-visual { position: relative; min-height: 615px; }
.visual-aura { position: absolute; inset: 5% 0 0 7%; border-radius: 48% 52% 52% 48%; background: radial-gradient(circle at 55% 36%, rgba(255,255,255,.98), rgba(238,229,211,.65) 48%, rgba(113,144,119,.05) 76%); box-shadow: inset 0 0 90px rgba(255,255,255,.92); }
.glass-card { border: 1px solid rgba(7, 30, 61, .1); background: rgba(255, 253, 250, .9); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.card-kicker { color: var(--navy); font-size: .69rem; font-weight: 800; letter-spacing: .02em; }
.dashboard-card { position: absolute; z-index: 5; top: 45px; right: 66px; width: 315px; padding: 20px; border-radius: 15px; transform: rotate(-.6deg); }
.dash-welcome { margin: 12px 0 13px; color: #4e5a69; font-size: .74rem; font-weight: 700; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dash-stats div { padding: 10px 9px; border: 1px solid rgba(7,30,61,.075); border-radius: 8px; background: #fff; box-shadow: 0 5px 14px rgba(7,30,61,.04); }
.dash-stats span { display: block; color: #8a919a; font-size: .55rem; line-height: 1.25; }
.dash-stats strong { display: block; margin-top: 5px; color: var(--navy); font-size: 1.24rem; line-height: 1; }
.dash-next { display: flex; flex-direction: column; align-items: flex-start; margin-top: 11px; padding: 12px; border-radius: 9px; background: #f8f4ec; }
.dash-next .mini-label { color: var(--gold); font-size: .53rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.dash-next strong { margin: 4px 0 1px; color: var(--navy); font-size: .69rem; }
.dash-next > span:not(.mini-label) { color: #7a828c; font-size: .55rem; }
.dash-next button { margin-top: 9px; padding: 6px 12px; border: 0; border-radius: 6px; background: var(--navy); color: #fff; font-size: .55rem; font-weight: 700; }
.checklist-card { position: absolute; z-index: 7; top: 74px; right: -26px; width: 205px; padding: 17px; border-radius: 13px; transform: rotate(1.2deg); }
.checklist-card ul { display: grid; gap: 9px; margin: 13px 0 0; padding: 0; list-style: none; }
.checklist-card li { display: flex; align-items: center; gap: 7px; color: #4e5a67; font-size: .59rem; font-weight: 650; line-height: 1.25; }
.checklist-card li span { display: grid; width: 15px; height: 15px; flex: 0 0 15px; place-items: center; border-radius: 50%; background: #7ca187; color: #fff; font-size: .55rem; }
.mailbox { position: absolute; z-index: 4; bottom: 88px; left: -42px; width: 310px; overflow: visible; }
.certificate { position: absolute; z-index: 6; right: 9px; bottom: 92px; width: 230px; padding: 12px; border-radius: 8px; transform: rotate(-7deg); }
.certificate-border { position: relative; display: flex; min-height: 140px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(189,145,70,.48); text-align: center; }
.cert-small { color: #7d7569; font-family: var(--serif); font-size: .61rem; }
.certificate strong { margin-top: 5px; color: var(--navy); font-family: var(--serif); font-size: .89rem; }
.cert-line { width: 82px; height: 1px; margin-top: 13px; background: rgba(189,145,70,.6); }
.seal { position: absolute; right: 13px; bottom: 10px; display: grid; width: 38px; height: 38px; place-items: center; border: 5px double #b88a3b; border-radius: 50%; background: #d7b365; color: #664912; font-family: var(--serif); font-size: .55rem; font-weight: 800; }
.address-envelope { position: absolute; z-index: 8; right: 87px; bottom: 20px; display: flex; width: 280px; min-height: 105px; align-items: center; justify-content: space-between; padding: 18px; border-radius: 9px; transform: rotate(2deg); }
.address-envelope div { display: flex; flex-direction: column; }
.address-envelope span { color: var(--gold); font-size: .57rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.address-envelope strong { margin: 3px 0; color: var(--navy); font-size: .67rem; }
.address-envelope small { color: #838b94; font-size: .56rem; }
.address-envelope svg { width: 65px; fill: none; stroke: rgba(7,30,61,.45); stroke-width: 1.4; }
.plant { position: absolute; z-index: 3; right: -36px; bottom: 2px; width: 110px; height: 190px; }
.plant i { position: absolute; bottom: 0; left: 54px; width: 6px; height: 135px; border-radius: 6px; background: #8f7d59; transform: rotate(2deg); }
.plant span { position: absolute; width: 54px; height: 26px; border-radius: 100% 0 100% 0; background: #78947d; transform-origin: right center; }
.plant span:nth-child(1) { top: 40px; left: 3px; transform: rotate(21deg); }
.plant span:nth-child(2) { top: 76px; right: 0; transform: rotate(159deg); }
.plant span:nth-child(3) { top: 101px; left: 7px; transform: rotate(12deg); }
.plant span:nth-child(4) { top: 128px; right: 6px; transform: rotate(168deg); }
.mountain { position: absolute; z-index: 1; right: -160px; bottom: 0; width: 530px; height: 180px; clip-path: polygon(0 100%, 20% 38%, 34% 61%, 53% 12%, 75% 61%, 89% 42%, 100% 100%); }
.mountain-one { background: rgba(7,30,61,.05); }
.mountain-two { right: -20px; bottom: -5px; width: 390px; height: 130px; background: rgba(113,144,119,.08); }

.services { background: var(--cream); border-top: 1px solid rgba(7,30,61,.04); border-bottom: 1px solid rgba(7,30,61,.05); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 270px; padding: 30px; overflow: hidden; border: 1px solid rgba(7,30,61,.085); border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::after { position: absolute; right: -42px; bottom: -54px; width: 120px; height: 120px; border: 1px solid rgba(189,145,70,.17); border-radius: 50%; content: ''; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(189,145,70,.32); box-shadow: var(--shadow-md); }
.service-icon { display: grid; width: 55px; height: 55px; margin-bottom: 22px; place-items: center; border: 1px solid rgba(189,145,70,.24); border-radius: 16px; background: linear-gradient(145deg, #fff, #f6efe2); color: var(--navy); box-shadow: 0 10px 22px rgba(7,30,61,.07); }
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
.service-card h3 { font-family: var(--serif); font-size: 1.3rem; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; line-height: 1.72; }

.how { background: #fffdfa; }
.steps { display: grid; grid-template-columns: 1fr 90px 1fr 90px 1fr; align-items: start; gap: 15px; }
.step { padding: 8px 12px; text-align: center; }
.step-icon { position: relative; display: grid; width: 104px; height: 104px; margin: 0 auto 24px; place-items: center; border: 1px solid rgba(189,145,70,.38); border-radius: 50%; background: #fff; box-shadow: 0 16px 30px rgba(7,30,61,.08); }
.step-icon > svg { width: 43px; height: 43px; fill: none; stroke: var(--navy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.step-icon > span { position: absolute; bottom: -8px; left: -2px; display: grid; width: 30px; height: 30px; place-items: center; border: 3px solid #fffdfa; border-radius: 50%; background: var(--gold); color: #fff; font-size: .75rem; font-weight: 800; }
.step h3 { font-family: var(--serif); font-size: 1.32rem; }
.step p { margin: 0; color: var(--muted); font-size: .91rem; }
.step-arrow { display: flex; align-items: center; padding-top: 52px; color: rgba(189,145,70,.75); }
.step-arrow span { width: 100%; height: 1px; background: rgba(189,145,70,.42); }
.step-arrow svg { width: 28px; flex: 0 0 28px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.3; }

.founders { position: relative; background: linear-gradient(180deg, #f6f0e6 0%, #fffdfa 100%); }
.founders::after { position: absolute; top: 10%; right: 0; width: 320px; height: 520px; background-image: radial-gradient(circle at center, rgba(189,145,70,.12) 0 1px, transparent 1.5px); background-size: 18px 18px; content: ''; opacity: .4; mask-image: linear-gradient(to left, #000, transparent); }
.founders-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; }
.founder-art { position: relative; }
.founder-art > svg { width: 100%; border-radius: 32px; box-shadow: 0 30px 70px rgba(7,30,61,.22); }
.art-caption { position: absolute; right: -30px; bottom: 34px; display: flex; width: 260px; flex-direction: column; padding: 18px 22px; border: 1px solid rgba(189,145,70,.3); border-radius: 14px; background: rgba(255,253,250,.94); box-shadow: var(--shadow-md); backdrop-filter: blur(10px); }
.art-caption span { color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.art-caption strong { margin-top: 4px; color: var(--navy); font-family: var(--serif); font-size: 1rem; }
.founder-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.check-list { display: grid; gap: 17px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; }
.check-list li > span { display: grid; width: 24px; height: 24px; flex: 0 0 24px; margin-top: 2px; place-items: center; border-radius: 50%; background: var(--gold); color: #fff; font-size: .72rem; font-weight: 800; }
.check-list div { display: flex; flex-direction: column; }
.check-list strong { color: var(--navy); font-size: .98rem; }
.check-list small { margin-top: 1px; color: var(--muted); font-size: .86rem; line-height: 1.55; }

.pricing { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 24px; }
.price-card { position: relative; display: flex; min-height: 595px; flex-direction: column; padding: 34px 31px 31px; border: 1px solid rgba(7,30,61,.11); border-radius: 20px; background: #fffdfa; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 1.5px solid rgba(189,145,70,.8); background: linear-gradient(180deg, #fffdf7 0%, #fff 100%); box-shadow: 0 24px 55px rgba(7,30,61,.15); transform: translateY(-12px); }
.price-card.featured:hover { transform: translateY(-18px); }
.popular { position: absolute; top: -15px; right: 28px; left: 28px; padding: 8px; border-radius: 9px 9px 0 0; background: linear-gradient(135deg, #b78a3e, #d3ad64); color: var(--navy); font-size: .64rem; font-weight: 900; letter-spacing: .13em; text-align: center; text-transform: uppercase; }
.plan-label { display: inline-block; margin-bottom: 11px; color: var(--navy); font-family: var(--serif); font-size: 1.42rem; font-weight: 700; }
.price { color: var(--navy); font-family: var(--serif); font-size: 4rem; font-weight: 700; line-height: 1; letter-spacing: -.05em; }
.price sup { position: relative; top: -1.45rem; margin-right: 2px; color: var(--gold); font-family: var(--sans); font-size: 1.15rem; }
.price span { margin-left: 7px; color: #747c86; font-family: var(--sans); font-size: .86rem; font-weight: 600; letter-spacing: 0; }
.price-top p { min-height: 82px; margin: 16px 0 25px; color: var(--muted); font-size: .91rem; }
.price-card ul { display: grid; flex: 1; gap: 14px; margin: 0 0 28px; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; color: #414d5c; font-size: .89rem; line-height: 1.45; }
.price-card li span { display: grid; width: 19px; height: 19px; flex: 0 0 19px; margin-top: 1px; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; font-size: .58rem; }
.featured li span { background: var(--gold); }
.pricing-note { width: min(900px, 100%); margin: 36px auto 0; color: #7a828d; font-size: .76rem; line-height: 1.65; text-align: center; }

.audiences { background: var(--cream); border-top: 1px solid rgba(7,30,61,.05); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card { position: relative; min-height: 250px; padding: 32px; overflow: hidden; border: 1px solid rgba(7,30,61,.09); border-radius: 20px; background: rgba(255,255,255,.78); box-shadow: 0 10px 28px rgba(7,30,61,.06); }
.audience-card::after { position: absolute; right: -15px; bottom: -42px; color: rgba(7,30,61,.035); content: 'M'; font-family: var(--serif); font-size: 12rem; line-height: 1; }
.audience-card > span { color: var(--gold); font-size: .74rem; font-weight: 850; letter-spacing: .16em; }
.audience-card h3 { margin-top: 28px; font-family: var(--serif); font-size: 1.45rem; }
.audience-card p { position: relative; z-index: 1; margin-bottom: 0; color: var(--muted); font-size: .93rem; }

.faq { background: #fffdfa; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 80px; }
.faq-intro { position: sticky; top: 132px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--navy); font-size: .9rem; font-weight: 800; text-decoration: none; }
.text-link span { color: var(--gold); font-size: 1.2rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid rgba(7,30,61,.09); border-radius: 13px; background: #fff; box-shadow: 0 8px 22px rgba(7,30,61,.045); }
.faq-list summary { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; color: var(--navy); font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 22px; height: 22px; flex: 0 0 22px; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 10px; left: 4px; width: 14px; height: 1.5px; border-radius: 2px; background: var(--gold); content: ''; transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details[open] summary { border-bottom: 1px solid rgba(7,30,61,.07); }
.faq-list details p { margin: 0; padding: 20px 22px 24px; color: var(--muted); font-size: .91rem; line-height: 1.75; }

.final-cta { padding: 35px 0 0; background: #fffdfa; }
.cta-panel { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; min-height: 250px; padding: 43px 52px; overflow: hidden; border-radius: 25px 25px 0 0; background: linear-gradient(135deg, #061a35 0%, #0b3159 66%, #153d66 100%); box-shadow: 0 24px 60px rgba(7,30,61,.21); }
.cta-mark { position: relative; z-index: 2; display: grid; width: 88px; height: 88px; place-items: center; border: 1px solid rgba(214,177,105,.45); border-radius: 50%; background: rgba(255,255,255,.05); }
.cta-mark img { width: 76px; }
.cta-copy { position: relative; z-index: 2; }
.cta-copy .eyebrow { margin-bottom: 10px; }
.cta-copy h2 { margin-bottom: 8px; color: #fff; font-size: clamp(2rem, 3.5vw, 3.3rem); }
.cta-copy p:last-child { max-width: 660px; margin-bottom: 0; color: rgba(255,255,255,.74); font-size: .96rem; }
.cta-panel > .button { position: relative; z-index: 3; white-space: nowrap; }
.cta-cross { position: absolute; z-index: 1; right: 79px; bottom: 59px; width: 44px; height: 80px; opacity: .65; }
.cta-cross span { position: absolute; top: 0; left: 18px; width: 8px; height: 80px; border-radius: 3px; background: var(--gold-light); }
.cta-cross i { position: absolute; top: 18px; left: 0; width: 44px; height: 8px; border-radius: 3px; background: var(--gold-light); }
.cta-hills { position: absolute; right: -4%; bottom: -62px; width: 50%; height: 180px; clip-path: polygon(0 100%, 12% 58%, 29% 76%, 48% 30%, 65% 65%, 79% 42%, 100% 100%); background: rgba(255,255,255,.055); }

.site-footer { padding: 68px 0 22px; background: #06182f; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, .6fr); gap: 55px; padding-bottom: 52px; }
.brand-footer img { width: 245px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 390px; margin: 18px 0 10px; font-size: .9rem; }
.footer-brand > a:not(.brand) { color: var(--gold-light); font-size: .9rem; text-decoration: none; }
.footer-column { display: flex; flex-direction: column; gap: 8px; }
.footer-column h3 { margin: 0 0 9px; color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.67); font-size: .86rem; text-decoration: none; transition: color .2s ease; }
.footer-column a:hover { color: var(--gold-light); }
.legal-notice { padding: 25px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.legal-notice p { margin: 0; color: rgba(255,255,255,.53); font-size: .72rem; line-height: 1.65; }
.legal-notice strong { color: rgba(255,255,255,.75); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; color: rgba(255,255,255,.46); font-size: .74rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .13s; }



/* Updated operating-model components */
.hero-lead strong { color: var(--navy); font-weight: 850; }
.dash-stats strong { font-size: 1.05rem; }
.service-card.partner-service { background: linear-gradient(145deg, #fffdfa 0%, #f6f0e5 100%); border-color: rgba(189,145,70,.34); }
.service-card.coming-soon { background: linear-gradient(145deg, rgba(7,30,61,.035), rgba(255,253,250,.96)); border-style: dashed; }
.service-badge { display: inline-flex; margin: 0 0 18px; padding: 6px 10px; border-radius: 999px; background: rgba(189,145,70,.13); color: #8d672b; font-size: .62rem; font-weight: 900; letter-spacing: .11em; line-height: 1; text-transform: uppercase; }
.coming-soon .service-badge { background: rgba(7,30,61,.08); color: var(--navy); }
.formation-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; margin-top: 52px; padding: 24px 28px; border: 1px solid rgba(189,145,70,.28); border-radius: 18px; background: rgba(255,253,250,.86); box-shadow: var(--shadow-sm); }
.formation-note-mark { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(189,145,70,.48); border-radius: 50%; background: var(--navy); color: var(--gold-light); font-family: var(--serif); font-size: 1.1rem; font-weight: 800; }
.formation-note strong { color: var(--navy); font-family: var(--serif); font-size: 1.15rem; }
.formation-note p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.formation-note .text-link { margin: 0; white-space: nowrap; }
.pricing-single { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: stretch; gap: 34px; width: min(1040px, 100%); margin-inline: auto; }
.price-card-single { min-height: 640px; transform: none; }
.price-card-single:hover { transform: translateY(-7px); }
.price-card-single .price-top p { min-height: 0; }
.pricing-details { display: grid; gap: 18px; }
.pricing-detail-card { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 18px; padding: 27px 28px; overflow: hidden; border: 1px solid rgba(7,30,61,.1); border-radius: 18px; background: #fffdfa; box-shadow: var(--shadow-sm); }
.pricing-detail-card::after { position: absolute; right: -38px; bottom: -55px; width: 125px; height: 125px; border: 1px solid rgba(189,145,70,.15); border-radius: 50%; content: ''; }
.detail-number { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; font-size: .66rem; font-weight: 900; letter-spacing: .08em; }
.pricing-detail-card h3 { margin: 3px 0 8px; font-family: var(--serif); font-size: 1.28rem; }
.pricing-detail-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.68; }
.future-detail { border-color: rgba(189,145,70,.35); background: linear-gradient(145deg, #fffdfa 0%, #f5efe4 100%); }
.future-detail .detail-number { background: var(--gold); color: var(--navy); }
.mini-coming-soon { margin: 0 0 6px; color: var(--gold); font-size: .61rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 1120px) {
  .container { width: min(100% - 34px, 1060px); }
  .primary-nav { gap: 21px; }
  .brand img { width: 220px; }
  .hero-grid { gap: 25px; }
  .dashboard-card { right: 40px; }
  .checklist-card { right: -8px; }
  .mailbox { left: -28px; width: 280px; }
  .founders-grid { gap: 48px; }
  .cta-panel { grid-template-columns: auto 1fr; }
  .cta-panel > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 960px) {
  .section-pad { padding: 84px 0; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(360px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 110px 28px 32px;
    background: #fffdfa;
    box-shadow: -20px 0 50px rgba(7,30,61,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .primary-nav::before { position: absolute; top: 0; right: 100%; width: 100vw; height: 100%; background: rgba(3,14,29,.5); content: ''; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .primary-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav.open::before { opacity: 1; pointer-events: auto; }
  .primary-nav > a:not(.button) { padding: 16px 2px; border-bottom: 1px solid rgba(7,30,61,.08); font-size: 1rem; }
  .primary-nav > .button { margin-top: 24px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { 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); }
  .hero { padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .trust-row { margin-inline: auto; }
  .hero-visual { width: min(620px, 100%); min-height: 580px; margin: 10px auto 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { width: min(560px, 100%); margin-inline: auto; }
  .step-arrow { display: none; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-art { width: min(650px, 100%); margin-inline: auto; }
  .founder-copy { width: min(720px, 100%); margin-inline: auto; }
  .pricing-grid { grid-template-columns: 1fr; width: min(630px, 100%); margin-inline: auto; gap: 32px; }
  .pricing-single { grid-template-columns: 1fr; width: min(680px, 100%); }
  .formation-note { grid-template-columns: auto 1fr; }
  .formation-note .text-link { grid-column: 2; justify-self: start; }
  .price-card { min-height: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-7px); }
  .price-top p { min-height: auto; }
  .audience-grid { grid-template-columns: 1fr; width: min(720px, 100%); margin-inline: auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; text-align: center; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, .7fr); gap: 30px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 680px); }
  .section-pad { padding: 70px 0; }
  .header-inner { min-height: 72px; }
  .brand img { width: 188px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  h2 { font-size: clamp(2.15rem, 9vw, 3.2rem); }
  .hero { min-height: auto; padding-top: 52px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: min(360px, 100%); margin-inline: auto; }
  .trust-row { grid-template-columns: repeat(2, 1fr); width: min(500px, 100%); gap: 18px 12px; }
  .hero-visual { min-height: 530px; transform: scale(.94); transform-origin: top center; margin-bottom: -25px; }
  .dashboard-card { top: 38px; right: 40px; width: 292px; }
  .checklist-card { top: 85px; right: -10px; width: 185px; }
  .mailbox { bottom: 80px; left: -35px; width: 255px; }
  .certificate { right: 3px; bottom: 100px; width: 205px; }
  .address-envelope { right: 50px; bottom: 25px; width: 245px; }
  .plant { right: -40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .founders-grid { gap: 44px; }
  .art-caption { right: 12px; bottom: 18px; width: 230px; }
  .cta-panel { grid-template-columns: 1fr; gap: 18px; padding: 38px 28px; text-align: center; }
  .cta-mark { margin-inline: auto; }
  .cta-panel > .button { grid-column: 1; justify-self: center; }
  .cta-cross { right: 28px; opacity: .35; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 520px) {
  .brand img { width: 170px; }
  .hero-visual { min-height: 470px; transform: scale(.82); width: 118%; margin-left: -9%; margin-bottom: -82px; }
  .dashboard-card { right: 22px; }
  .checklist-card { right: -14px; }
  .mailbox { left: -24px; }
  .service-card, .price-card, .audience-card { padding: 27px 23px; }
  .formation-note { grid-template-columns: 1fr; padding: 23px; }
  .formation-note .text-link { grid-column: auto; }
  .formation-note-mark { width: 52px; height: 52px; }
  .pricing-detail-card { padding: 23px; }
  .trust-item { font-size: .69rem; }
  .founder-art > svg { border-radius: 22px; }
  .art-caption { position: relative; right: auto; bottom: auto; width: calc(100% - 26px); margin: -28px auto 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .faq-list summary { padding: 17px; font-size: .91rem; }
  .faq-list details p { padding: 18px; }
}

@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; }
}

/* Secondary legal pages */
.legal-page { background: var(--cream); }
.legal-page .site-header { position: relative; }
.legal-hero { padding: 70px 0 44px; background: linear-gradient(180deg, #fffdfa, #f4ede2); border-bottom: 1px solid var(--line); }
.legal-hero .container { width: min(880px, calc(100% - 40px)); }
.legal-hero h1 { margin-bottom: 12px; font-size: clamp(2.6rem, 6vw, 4.8rem); }
.legal-hero p { color: var(--muted); }
.legal-content { width: min(880px, calc(100% - 40px)); margin: 48px auto 80px; padding: 44px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.legal-content h2 { margin-top: 38px; font-size: 1.75rem; letter-spacing: -.02em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #4f5b69; font-size: .95rem; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--navy); font-weight: 700; }
.legal-back { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-weight: 750; text-decoration: none; }
@media (max-width: 620px) { .legal-content { padding: 28px 22px; } }
