:root {
  --ink: #07090d;
  --navy: #0d1b2a;
  --charcoal: #141821;
  --charcoal-2: #1c222d;
  --white: #ffffff;
  --paper: #f6f2ea;
  --soft: #fbfaf7;
  --line: rgba(7, 9, 13, .14);
  --line-strong: rgba(7, 9, 13, .24);
  --line-light: rgba(255, 255, 255, .16);
  --gold: #c9a24a;
  --gold-2: #edcf77;
  --gold-soft: #fbf2dc;
  --text: #101620;
  --muted: #45546a;
  --muted-dark: #273143;
  --muted-light: rgba(255, 255, 255, .72);
  --shadow: 0 28px 70px rgba(7, 9, 13, .18);
  --shadow-soft: 0 18px 44px rgba(7, 9, 13, .08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.62;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: var(--gold-2);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 900;
}
.skip-link:focus { left: 12px; }
.hidden, .sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 13, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 74, .24);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); font-weight: 950; letter-spacing: .08em; text-transform: uppercase; min-width: 0; }
.brand-image { padding: 8px 0; }
.brand-logo { width: clamp(185px, 21vw, 255px); height: auto; filter: drop-shadow(0 12px 22px rgba(0,0,0,.28)); }
.site-nav { display: flex; align-items: center; gap: 20px; color: rgba(255, 255, 255, .78); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.site-nav a { padding: 27px 0; transition: color .18s ease, border-color .18s ease, background .18s ease; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-2); }
.nav-cta { border: 1px solid var(--gold); color: var(--gold-2) !important; padding: 10px 14px !important; }
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }
.nav-toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,.22); width: 46px; height: 42px; padding: 9px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--white); margin: 5px 0; }

h1, h2, h3, p { margin: 0; }
h1, h2, .display-heading { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: .96; letter-spacing: -.045em; }
h1 { font-size: clamp(3rem, 7vw, 6.8rem); color: var(--white); max-width: 920px; }
h2 { font-size: clamp(2.15rem, 4.4vw, 4.45rem); color: var(--ink); max-width: 960px; }
h3 { font-size: 1.22rem; line-height: 1.25; letter-spacing: -.02em; color: var(--ink); }
.lead { margin-top: 24px; font-size: clamp(1.08rem, 2vw, 1.34rem); color: rgba(255,255,255,.78); max-width: 720px; }
.section-lead { margin-top: 16px; color: var(--muted); font-size: 1.08rem; max-width: 790px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 17px; color: var(--gold-2); font-size: .72rem; font-weight: 1000; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--gold); }
.gold-text { color: var(--gold-2); font-style: italic; }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 950;
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary, .button.gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--ink); box-shadow: 0 18px 42px rgba(201,162,74,.22); }
.button.secondary { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.045); }
.button.light { background: var(--white); color: var(--ink); border-color: var(--line); }
.button.outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button.full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--gold); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.text-link::after { content: "→"; font-size: 1rem; }
.gold-card .text-link { color: var(--ink); opacity: 1; }
.gold-card .text-link::after { color: var(--ink); }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 76% 18%, rgba(201,162,74,.18), transparent 30%), linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 46%, var(--navy) 100%); color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 86%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr); gap: clamp(34px, 5vw, 70px); align-items: center; min-height: calc(100vh - 76px); padding: clamp(68px, 9vw, 112px) 0; }
.inner-hero .hero-grid { min-height: 620px; }
.hero-copy { max-width: 980px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 34px; max-width: 690px; }
.proof-item { border: 1px solid var(--line-light); background: rgba(255,255,255,.055); padding: 17px; }
.proof-item strong { display: block; color: var(--white); font-size: 1.08rem; margin-bottom: 4px; }
.proof-item span { display: block; color: rgba(255,255,255,.62); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; }

.process-visual { border: 1px solid rgba(201,162,74,.36); background: rgba(7,9,13,.52); padding: 24px; box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.visual-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line-light); padding-bottom: 18px; }
.visual-title { color: var(--white); font-weight: 950; letter-spacing: -.02em; }
.status-pill { background: rgba(201,162,74,.16); color: var(--gold-2); border: 1px solid rgba(201,162,74,.38); padding: 7px 10px; font-size: .7rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.visual-list { display: grid; gap: 12px; margin-top: 18px; }
.visual-row { display: grid; grid-template-columns: 38px 1fr auto; gap: 13px; align-items: center; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); padding: 14px; }
.visual-row b { width: 34px; height: 34px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: var(--gold-2); font-size: .78rem; }
.visual-row strong { color: var(--white); display: block; line-height: 1.2; }
.visual-row span { display: block; color: rgba(255,255,255,.6); font-size: .86rem; margin-top: 3px; }
.visual-tag { color: var(--gold-2); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-style: normal; }
.visual-note { margin-top: 14px; padding: 18px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--ink); font-weight: 950; }
.visual-note span { display: block; font-weight: 700; opacity: .82; margin-top: 4px; }
.logo-showcase {
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  padding: 18px;
}
.logo-showcase img { width: min(360px, 100%); height: auto; }
.route-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.route-card {
  position: relative;
  border: 1px solid var(--line-strong);
  background: var(--white);
  padding: clamp(26px, 3vw, 34px);
  min-height: 260px;
  box-shadow: var(--shadow-soft);
}
.route-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gold); }
.route-card.dark-route { background: var(--ink); color: var(--white); border-color: rgba(201,162,74,.42); }
.route-card.dark-route h3 { color: var(--white); }
.route-card.dark-route p, .route-card.dark-route li { color: var(--muted-light); }
.route-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 2.8vw, 2.65rem); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.route-card p { color: var(--muted); margin-top: 14px; }
.route-card ul { margin-top: 18px; }
.route-badge { display: inline-flex; background: var(--gold-soft); color: #7a570e; border: 1px solid rgba(201,162,74,.34); padding: 7px 10px; font-size: .68rem; font-weight: 1000; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.dark-route .route-badge { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.system-note { margin-top: 18px; padding: 20px; background: rgba(201,162,74,.12); border: 1px solid rgba(201,162,74,.32); color: var(--muted-dark); }


.section { padding: clamp(70px, 8vw, 108px) 0; background: var(--soft); }
.section.paper { background: var(--paper); }
.section.soft { background: #f8f6f1; }
.section.dark { background: var(--charcoal); color: var(--white); }
.section.navy { background: var(--navy); color: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section.dark h2, .section.dark h3, .section.navy h2, .section.navy h3 { color: var(--white); }
.section.dark .section-lead, .section.navy .section-lead { color: var(--muted-light); }

.big-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.split-block { position: relative; min-height: 420px; padding: clamp(30px, 5vw, 52px); display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); overflow: hidden; }
.split-block::after { content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--gold); }
.split-block.dark-card { background: var(--charcoal); color: var(--white); border-color: rgba(255,255,255,.13); }
.split-block.gold-card { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--ink); }
.split-block.white-card { background: var(--white); color: var(--ink); }
.split-block.navy-card { background: var(--navy); color: var(--white); border-color: rgba(255,255,255,.13); }
.split-block h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.1vw, 3.2rem); font-weight: 500; line-height: 1; letter-spacing: -.045em; color: inherit; }
.split-block p { margin-top: 18px; color: currentColor; opacity: .8; font-size: 1.05rem; }
.split-list { list-style: none; margin: 24px 0 0; padding: 0; }
.split-list li { padding: 12px 0 12px 24px; border-top: 1px solid rgba(255,255,255,.13); position: relative; color: currentColor; opacity: .88; }
.split-list li::before { content: "■"; position: absolute; left: 0; top: 12px; color: var(--gold-2); font-size: .62rem; }
.gold-card .split-list li, .white-card .split-list li { border-color: rgba(7,9,13,.14); }
.gold-card .split-list li::before, .white-card .split-list li::before { color: var(--gold); }

.card-grid { display: grid; gap: 18px; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid.modules { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sharp-card { position: relative; background: var(--white); border: 1px solid var(--line); padding: 26px; min-height: 230px; box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.sharp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(201,162,74,.42); }
.sharp-card.gold-line::before, .sharp-card.blue-line::before, .sharp-card.dark-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--gold); }
.sharp-card.blue-line::before { background: var(--navy); }
.sharp-card.dark-card { background: #0d1118; border-color: rgba(255,255,255,.13); color: var(--white); }
.sharp-card.dark-card h3 { color: var(--white); }
.sharp-card.dark-card p, .sharp-card.dark-card li { color: var(--muted-light); }
.sharp-card h3 { margin-top: 0; }
.sharp-card p { margin-top: 12px; color: var(--muted); }
.card-number { display: inline-grid; place-items: center; width: 38px; height: 38px; background: var(--ink); color: var(--gold-2); font-weight: 1000; font-size: .82rem; margin-bottom: 18px; }
.dark-card .card-number, .section.dark .card-number, .section.navy .card-number { background: var(--gold); color: var(--ink); }
.check-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 24px; color: var(--muted); }
.check-list li::before { content: "■"; position: absolute; left: 0; top: 2px; color: var(--gold); font-size: .62rem; }
.dark-card .check-list li, .section.dark .check-list li, .section.navy .check-list li { color: var(--muted-light); }

.feature-band { display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-soft); }
.band-title { background: var(--ink); color: var(--white); padding: clamp(34px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.band-title h2 { color: var(--white); }
.band-title p { color: var(--muted-light); margin-top: 18px; font-size: 1.08rem; }
.band-content { padding: clamp(28px, 5vw, 48px); display: flex; align-items: center; }
.band-grid { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.mini-card { border: 1px solid var(--line); background: var(--soft); padding: 22px; }
.mini-card strong { display: block; color: var(--ink); margin-bottom: 6px; }
.mini-card span { display: block; color: var(--muted); }

.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 18px; align-items: stretch; }
.package-card { position: relative; background: var(--white); border: 1px solid var(--line-strong); padding: clamp(26px, 3vw, 34px); display: flex; flex-direction: column; min-height: 100%; box-shadow: var(--shadow-soft); }
.package-card::before { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--gold); }
.package-card.featured { background: var(--ink); color: var(--white); border-color: var(--gold); box-shadow: var(--shadow); }
.package-card.featured h3, .package-card.featured .price { color: var(--white); }
.package-card.featured p, .package-card.featured li { color: var(--muted-light); }
.package-card .button { margin-top: auto; }
.package-label { display: inline-flex; align-self: flex-start; background: var(--gold-soft); color: #8a6417; border: 1px solid rgba(201,162,74,.32); padding: 8px 10px; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 1000; margin-bottom: 18px; }
.package-card.featured .package-label { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.price { margin: 17px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 3.1rem; line-height: 1; letter-spacing: -.045em; color: var(--ink); }
.price small { font-size: .9rem; font-family: inherit; color: inherit; opacity: .7; }
.package-card p { color: var(--muted); }
.care-plan { margin-top: 18px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 26px; border: 1px solid rgba(201,162,74,.44); background: linear-gradient(135deg, rgba(201,162,74,.13), rgba(255,255,255,.82)); }
.care-plan h3 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.care-plan h3 span { color: var(--gold); font-size: 1rem; letter-spacing: 0; font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
.care-plan p { color: var(--muted); margin-top: 6px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; align-items: stretch; }
.contact-panel { background: var(--ink); color: var(--white); padding: clamp(30px, 5vw, 50px); border: 1px solid rgba(201,162,74,.3); }
.contact-panel h2 { color: var(--white); }
.contact-panel p { color: var(--muted-light); margin-top: 18px; font-size: 1.08rem; }
.contact-points { display: grid; gap: 12px; margin-top: 30px; }
.contact-point { border-left: 3px solid var(--gold); padding: 12px 0 12px 16px; }
.contact-point strong { display: block; color: var(--gold-2); margin-bottom: 4px; }
.contact-point span { color: var(--muted-light); }
.form-card { background: var(--white); border: 1px solid var(--line); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; font-weight: 900; font-size: .9rem; margin-bottom: 8px; color: var(--ink); }
input, select, textarea { width: 100%; border: 1px solid rgba(17,24,39,.24); background: #fff; padding: 13px 14px; color: var(--ink); min-height: 48px; outline: none; }
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,74,.18); }
.checkbox-line { display: flex; gap: 12px; align-items: start; color: var(--muted); font-size: .95rem; }
.checkbox-line input { width: 18px; min-height: 18px; margin-top: 3px; flex: 0 0 auto; }
.form-note { color: var(--muted); font-size: .9rem; margin-top: 12px; }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--line); padding: 24px; }
.faq-item p { color: var(--muted); margin-top: 10px; }
.legal-hero { background: var(--ink); color: var(--white); padding: 80px 0; }
.legal-hero h1 { max-width: 900px; }
.legal-main { padding: 58px 0; background: var(--paper); }
.legal-box { background: var(--white); border: 1px solid var(--line); padding: clamp(26px, 5vw, 58px); }
.legal-box h2 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.45rem; line-height: 1.25; letter-spacing: -.02em; margin-top: 28px; }
.legal-box h2:first-child { margin-top: 0; }
.legal-box p, .legal-box li { color: var(--muted); margin-top: 12px; }
.success-card { max-width: 780px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); padding: clamp(32px, 6vw, 64px); text-align: center; box-shadow: var(--shadow-soft); }
.success-card h1 { color: var(--ink); font-size: clamp(2.4rem, 6vw, 5rem); }
.success-card p { color: var(--muted); margin-top: 16px; font-size: 1.08rem; }

.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 44px 0; border-top: 1px solid rgba(201,162,74,.22); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: start; }
.footer-logo { width: min(310px, 88vw); height: auto; margin-bottom: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 900; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-2); }

.kicker-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.kicker-card { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.14); padding: 20px; color: var(--white); }
.kicker-card strong { display: block; color: var(--gold-2); margin-bottom: 6px; }
.kicker-card span { color: rgba(255,255,255,.68); }

@media (max-width: 1100px) {
  .site-nav { gap: 14px; font-size: .68rem; }
  .hero-grid, .contact-grid, .feature-band { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .process-visual { max-width: 780px; }
  .card-grid.four, .card-grid.modules { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 76px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); border-bottom: 1px solid rgba(201,162,74,.28); padding: 8px 20px 18px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero-proof, .big-split, .card-grid.two, .card-grid.three, .card-grid.four, .card-grid.modules, .band-grid, .form-grid, .faq-grid, .kicker-grid, .route-strip { grid-template-columns: 1fr; }
  .split-block { min-height: auto; }
  .section-head { display: block; }
  .section-head .button { margin-top: 22px; }
  .care-plan { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero-grid { padding: 54px 0 68px; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .visual-row { grid-template-columns: 38px 1fr; }
  .visual-tag { grid-column: 2; }
  .brand-logo { width: min(215px, 68vw); }
  .process-visual { padding: 18px; }
  .sharp-card, .package-card, .contact-panel, .form-card { padding: 22px; }
}


/* ProcessPortal v5 polish pass */
:root {
  --ink: #05070b;
  --navy: #0a1726;
  --charcoal: #111721;
  --charcoal-2: #18202c;
  --paper: #f3efe5;
  --soft: #fbfaf6;
  --gold: #caa24a;
  --gold-2: #f0d275;
  --teal: #12b8bd;
  --line: rgba(5, 7, 11, .13);
  --line-strong: rgba(5, 7, 11, .28);
  --shadow: 0 30px 80px rgba(5, 7, 11, .24);
  --shadow-soft: 0 20px 46px rgba(5, 7, 11, .10);
}
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(201,162,74,.08), transparent 28rem),
    linear-gradient(180deg, #fbfaf6 0%, #f4f0e7 100%);
}
.container { width: min(1200px, calc(100% - 44px)); }
.site-header { background: rgba(5, 7, 11, .96); border-bottom: 1px solid rgba(240,210,117,.26); box-shadow: 0 10px 32px rgba(0,0,0,.18); }
.nav-wrap { min-height: 82px; }
.brand-logo { width: clamp(205px, 20vw, 270px); }
.site-nav { gap: 22px; }
.site-nav a { position: relative; padding: 30px 0; }
.site-nav a:not(.nav-cta)::after { content:""; position:absolute; left:0; right:0; bottom:22px; height:2px; background:var(--gold-2); transform:scaleX(0); transform-origin:left; transition:transform .18s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform:scaleX(1); }
.nav-cta { background: linear-gradient(135deg, rgba(201,162,74,.18), rgba(201,162,74,.08)); }
.nav-cta:hover { box-shadow: 0 16px 34px rgba(201,162,74,.18); }

h1 { max-width: 960px; text-wrap: balance; }
h2 { text-wrap: balance; }
h3 { text-wrap: balance; }
.lead { max-width: 760px; color: rgba(255,255,255,.84); }
.section-lead { color: #344155; }
.eyebrow { letter-spacing: .2em; }

.button { border-radius: 0; min-height: 56px; box-shadow: none; }
.button.primary, .button.gold { border-color: rgba(5,7,11,.14); background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 100%); color: #05070b; }
.button.primary:hover, .button.gold:hover { box-shadow: 0 20px 48px rgba(201,162,74,.30); }
.button.secondary { border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.07); }
.button.outline { border-color: rgba(5,7,11,.28); background: rgba(255,255,255,.52); }
.button.outline:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.package-card.featured .button.gold:hover { background: var(--white); color: var(--ink); }

.hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(18,184,189,.16), transparent 26rem),
    radial-gradient(circle at 70% 50%, rgba(240,210,117,.14), transparent 28rem),
    linear-gradient(135deg, #05070b 0%, #101722 48%, #0a1726 100%);
}
.hero::after { content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background:linear-gradient(90deg, transparent, rgba(240,210,117,.7), transparent); }
.hero-grid { min-height: calc(100vh - 82px); }
.inner-hero .hero-grid { min-height: 590px; }
.hero-proof { gap: 14px; }
.proof-item { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.proof-item strong { letter-spacing: -.02em; }
.proof-item span { color: rgba(255,255,255,.70); }
.process-visual { background: linear-gradient(180deg, rgba(11,15,22,.82), rgba(5,7,11,.70)); border: 1px solid rgba(240,210,117,.42); box-shadow: 0 34px 86px rgba(0,0,0,.38); }
.visual-title { font-size: 1.02rem; }
.status-pill { background: rgba(18,184,189,.12); color: #79f3f7; border-color: rgba(18,184,189,.32); }
.visual-row { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }
.visual-row b { background: rgba(240,210,117,.12); color: var(--gold-2); border: 1px solid rgba(240,210,117,.20); }
.visual-note { background: linear-gradient(135deg, var(--gold-2), var(--gold)); border: 1px solid rgba(255,255,255,.22); }
.logo-showcase { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.logo-showcase img { width: min(330px, 100%); }

.section { position: relative; border-top: 1px solid rgba(5,7,11,.06); }
.section.dark, .section.navy { border-top-color: rgba(255,255,255,.08); }
.section-head { margin-bottom: 38px; }
.route-strip { gap: 20px; }
.route-card, .sharp-card, .package-card, .form-card, .faq-item, .mini-card, .split-block, .contact-panel, .legal-box, .success-card {
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(5,7,11,.08);
}
.route-card, .package-card, .sharp-card { isolation: isolate; }
.route-card::after, .package-card::after, .sharp-card::after {
  content:"";
  position:absolute;
  right:14px;
  bottom:14px;
  width:22px;
  height:22px;
  border-right:1px solid rgba(201,162,74,.42);
  border-bottom:1px solid rgba(201,162,74,.42);
  opacity:.9;
}
.sharp-card.dark-card::after, .package-card.featured::after, .route-card.dark-route::after { border-color: rgba(240,210,117,.52); }
.route-card { min-height: 290px; border-color: rgba(5,7,11,.22); }
.route-card h3 { font-size: clamp(1.75rem, 2.5vw, 2.45rem); }
.route-card.dark-route { background: linear-gradient(180deg, #0b111a, #05070b); }
.route-badge, .package-label { background: #f4e6bd; color: #5e4310; border-color: rgba(201,162,74,.42); }
.dark-route .route-badge, .package-card.featured .package-label { background: var(--gold-2); }
.system-note { border-left: 5px solid var(--gold); background: #f7efd9; }

.sharp-card { border-color: rgba(5,7,11,.16); min-height: 240px; }
.sharp-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px rgba(5,7,11,.14); }
.sharp-card.dark-card { background: linear-gradient(180deg, #111821, #0b1017); }
.card-number { background: #05070b; }
.card-grid.modules .sharp-card:nth-child(4n+2)::before,
.card-grid.modules .sharp-card:nth-child(4n+3)::before { background: var(--teal); }

.feature-band { border-color: rgba(5,7,11,.18); box-shadow: 0 24px 56px rgba(5,7,11,.10); }
.band-title { background: linear-gradient(180deg, #0b1018, #05070b); }
.mini-card { background: #fffefa; }

.pricing-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -12px 0 22px;
}
.pricing-strip div {
  position: relative;
  padding: 18px 18px 18px 20px;
  background: #fffefa;
  border: 1px solid rgba(5,7,11,.16);
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 30px rgba(5,7,11,.06);
}
.pricing-strip strong { display:block; color:var(--ink); font-size:.96rem; margin-bottom:4px; }
.pricing-strip span { display:block; color:var(--muted); font-size:.92rem; line-height:1.48; }
.package-grid { grid-template-columns: repeat(auto-fit, minmax(295px, 1fr)); gap: 20px; }
.package-card { border-color: rgba(5,7,11,.22); background: #fffefa; }
.package-card h3 { font-size: 1.28rem; letter-spacing: -.025em; }
.package-card.value-card { border-color: rgba(18,184,189,.42); }
.package-card.value-card::before { background: var(--teal); }
.package-card.featured { background: linear-gradient(180deg, #05070b, #0d121a); border-color: rgba(240,210,117,.74); }
.package-card.featured::before { background: linear-gradient(90deg, var(--gold-2), var(--teal)); }
.price { font-size: 3.25rem; }
.check-list li { color: #354156; }
.check-list li::before { top: .45em; }
.care-plan { background: linear-gradient(135deg, #fffefa, #f2e6ca); border-left: 5px solid var(--gold); box-shadow: 0 18px 42px rgba(5,7,11,.08); }
.care-plan h3 span { color: #7b5914; font-weight: 900; }

.contact-panel { background: linear-gradient(180deg, #0b111a, #05070b); box-shadow: 0 24px 60px rgba(5,7,11,.16); }
.form-card { background: #fffefa; }
input, select, textarea { background: #ffffff; border-color: rgba(5,7,11,.22); }
label { letter-spacing: -.01em; }
.faq-item { background: #fffefa; }
.site-footer { background: #05070b; }
.footer-logo { width: min(290px, 86vw); }

@media (max-width: 1100px) {
  .pricing-strip { grid-template-columns: 1fr; }
  .route-card { min-height: auto; }
}
@media (max-width: 820px) {
  .site-nav { top: 82px; }
  .site-nav a:not(.nav-cta)::after { display:none; }
  .pricing-strip { margin-top: 0; }
}
@media (max-width: 560px) {
  .container { width: min(1200px, calc(100% - 30px)); }
  .nav-wrap { min-height: 74px; }
  .site-nav { top: 74px; }
  .brand-logo { width: min(210px, 72vw); }
  .hero-grid { padding-top: 48px; }
  .pricing-strip div { padding: 16px; }
}


/* v6 hero polish: smaller headline, sharper preview image */
.hero-copy h1 {
  font-size: clamp(2.7rem, 5.6vw, 5.45rem);
  max-width: 820px;
  letter-spacing: -.052em;
}
.hero-copy .lead {
  font-size: clamp(1.02rem, 1.62vw, 1.2rem);
  max-width: 730px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  gap: clamp(30px, 4.6vw, 58px);
}
.process-visual {
  padding: clamp(18px, 2vw, 22px);
}
.visual-list {
  gap: 10px;
  margin-top: 16px;
}
.visual-row {
  grid-template-columns: 34px 1fr auto;
  gap: 11px;
  padding: 11px 12px;
}
.visual-row b {
  width: 30px;
  height: 30px;
  font-size: .72rem;
}
.visual-row strong { font-size: .92rem; }
.visual-row span { font-size: .78rem; }
.visual-note { padding: 15px 16px; }
.logo-showcase { display: none; }
@media (max-width: 980px) {
  .hero-copy h1 { font-size: clamp(2.45rem, 10vw, 4.8rem); }
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .visual-row { grid-template-columns: 32px 1fr; }
  .visual-tag { display: none; }
}

/* v7 hero fix: remove fake mockup, use clean branded panel */
.hero-copy h1 {
  font-size: clamp(2.65rem, 4.35vw, 4.7rem);
  max-width: 690px;
  line-height: .98;
  letter-spacing: -.052em;
}
.hero-copy .lead {
  font-size: clamp(1rem, 1.38vw, 1.15rem);
  max-width: 690px;
  line-height: 1.62;
}
.hero-grid {
  grid-template-columns: minmax(0, .96fr) minmax(370px, .74fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.process-visual {
  max-width: 520px;
  justify-self: end;
}
.hero-brand-card {
  margin-top: 18px;
  border: 1px solid rgba(240,210,117,.30);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    radial-gradient(circle at 92% 12%, rgba(18,184,189,.20), transparent 15rem);
  padding: clamp(20px, 2.4vw, 28px);
}
.hero-brand-card img {
  width: min(355px, 100%);
  height: auto;
  display: block;
}
.hero-brand-card p {
  margin-top: 18px;
  max-width: 390px;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
  font-size: .98rem;
}
.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}
.brand-card-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,7,11,.45);
  color: var(--gold-2);
  font-size: .68rem;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.visual-list.compact { margin-top: 14px; gap: 10px; }
.visual-list.compact .visual-row { padding: 13px 14px; }
.visual-note { font-size: .95rem; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .process-visual { justify-self: stretch; max-width: none; }
  .hero-copy h1 { font-size: clamp(2.55rem, 10vw, 4.55rem); }
}
@media (max-width: 640px) {
  .brand-card-grid { grid-template-columns: 1fr; }
  .hero-brand-card { padding: 18px; }
}
