:root {
  --ink: #0b2030;
  --navy: #061f32;
  --navy-2: #0b3448;
  --teal: #0aa8a6;
  --teal-dark: #087d80;
  --mint: #73db9e;
  --aqua: #e8f8f6;
  --gold: #f2be62;
  --paper: #f5f8f8;
  --white: #fff;
  --muted: #5c6d76;
  --line: #d8e4e4;
  --shadow: 0 22px 60px rgba(6, 31, 50, .13);
  --soft-shadow: 0 12px 32px rgba(6, 31, 50, .09);
  --radius: 24px;
  --radius-sm: 15px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .018;
  background-image: radial-gradient(#071f31 1px, transparent 1px);
  background-size: 5px 5px;
  z-index: 50;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow.light { color: #82e4d8; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1, h2 { font-family: var(--serif); letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 5.35vw, 5rem); max-width: 900px; margin-bottom: 24px; }
h2 { font-size: clamp(2.15rem, 4vw, 3.65rem); margin-bottom: 18px; }
h3 { font-size: 1.18rem; margin-bottom: 10px; }
p { margin-top: 0; }
.lead { max-width: 780px; color: var(--muted); font-size: 1.15rem; }
.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}
.brand { display: flex; align-items: center; gap: 13px; font-weight: 850; letter-spacing: .01em; }
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 13px; background: #fff; padding: 5px; }
.top-tag { padding: 9px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #d7e7eb; font-size: .82rem; }
.dmx { white-space: nowrap; }
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(12, 168, 166, .2), transparent 32%),
    linear-gradient(128deg, var(--navy) 0%, #07324a 70%, #07545e 140%);
  padding-bottom: 96px;
}
.hero::after {
  content: '';
  position: absolute;
  left: -5%; right: -5%; bottom: -66px;
  height: 115px;
  transform: rotate(-2deg);
  background: var(--paper);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.55fr .8fr; gap: 52px; align-items: center; padding: 52px 0 30px; }
.hero h1 { line-height: 1.01; text-wrap: balance; }
.hero-accent { color: var(--gold); }
.hero p { color: #d2e1e5; font-size: 1.13rem; max-width: 760px; }
.hero-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 70px rgba(0,0,0,.16);
  backdrop-filter: blur(16px);
}
.hero-card h3 { font-size: 1.26rem; }
.hero-card p { font-size: .96rem; color: #c9dadd; }
.mini-list { display: grid; gap: 0; margin-top: 18px; }
.mini-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.13); font-size: .9rem; }
.mini-row strong { color: #fff; }
.mini-row span { color: #bdd0d5; text-align: right; }
.actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #062735; background: linear-gradient(100deg, #13bcb8, #73dc9d); box-shadow: 0 12px 30px rgba(20, 192, 176, .25); }
.button.ghost { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); }
.button.ghost.gold { color: var(--gold); border-color: rgba(242,190,98,.55); }
.button.dark { color: #fff; background: var(--navy); }
.button.outline { color: var(--ink); border-color: var(--line); background: #fff; }
.button.small { min-height: 40px; padding: 8px 13px; font-size: .84rem; }
.ribbon { position: relative; z-index: 4; margin-top: -44px; }
.ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.ribbon-item { padding: 24px; border-right: 1px solid var(--line); }
.ribbon-item:last-child { border-right: 0; }
.ribbon-item strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.ribbon-item span { display: block; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.sticky-nav { position: sticky; top: 0; z-index: 30; margin-top: 26px; border-bottom: 1px solid var(--line); background: rgba(245,248,248,.93); backdrop-filter: blur(14px); }
.nav-scroll { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0; scrollbar-width: none; }
.nav-scroll::-webkit-scrollbar { display: none; }
.nav-scroll a { flex: 0 0 auto; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: #344b56; background: #fff; font-size: .8rem; font-weight: 760; text-decoration: none; }
.section { padding: 96px 0; scroll-margin-top: 70px; }
.section.compact { padding: 70px 0; }
.section.tint { background: #eaf5f4; }
.section.dark { color: #fff; background: var(--navy); }
.section-head { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: end; margin-bottom: 38px; }
.section-head p { margin-bottom: 7px; color: var(--muted); }
.section.dark .section-head p { color: #bdd0d5; }
.intro-panel { display: grid; grid-template-columns: 1.15fr .85fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--soft-shadow); }
.intro-panel > div { padding: 34px; }
.intro-panel .accent { background: var(--aqua); }
.quote { font-family: var(--serif); font-size: 1.7rem; line-height: 1.32; color: var(--navy); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { position: relative; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; box-shadow: 0 9px 22px rgba(6,31,50,.045); }
.card p, .card li { color: var(--muted); font-size: .93rem; }
.card ul { margin: 12px 0 0; padding-left: 18px; }
.card .tag { display: inline-block; margin-bottom: 14px; padding: 5px 9px; border-radius: 999px; color: var(--teal-dark); background: var(--aqua); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.card.selected { border-color: var(--teal); box-shadow: 0 14px 30px rgba(10,168,166,.13); }
.icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--teal), #3dc890); font-size: 1.15rem; font-weight: 900; }
.stat { padding: 25px; border-radius: var(--radius-sm); background: #fff; box-shadow: var(--soft-shadow); }
.stat strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 2.4rem; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .85rem; }
.package { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border-radius: var(--radius); color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.package-price { display: grid; place-items: center; padding: 42px; text-align: center; background: linear-gradient(145deg, #067b82, #0ab5a5); }
.package-price .old { opacity: .75; text-decoration: line-through; }
.package-price strong { display: block; font-family: var(--serif); font-size: 4.4rem; line-height: 1; }
.package-price b { display: inline-block; margin-top: 13px; padding: 7px 12px; border-radius: 999px; color: var(--navy); background: var(--gold); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.package-copy { padding: 42px; }
.package-copy p, .package-copy li { color: #c8dade; }
.package-copy ul { padding-left: 18px; }
.path-card { cursor: pointer; transition: transform .18s, border .18s; }
.path-card:hover { transform: translateY(-3px); border-color: #95cbc8; }
.path-card input { position: absolute; opacity: 0; pointer-events: none; }
.path-card .check { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 25px; height: 25px; border: 2px solid var(--line); border-radius: 50%; color: transparent; }
.path-card input:checked ~ .check { color: #fff; border-color: var(--teal); background: var(--teal); }
.result-panel { display: none; margin-top: 24px; padding: 27px; border: 1px solid #a4d8d3; border-radius: var(--radius-sm); background: #f0fbf9; }
.result-panel.show { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(7px); } }
.steps { counter-reset: steps; display: grid; gap: 16px; }
.step { counter-increment: steps; display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.step::before { content: counter(steps, decimal-leading-zero); display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; color: #fff; background: var(--navy); font-weight: 900; }
.step h3 { margin: 3px 0 6px; }
.step p { margin-bottom: 0; color: var(--muted); }
.commitments { display: grid; gap: 10px; }
.commitment { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.07); }
.commitment span:first-child { color: #77dfac; font-weight: 900; }
.form-panel { display: grid; grid-template-columns: 1.3fr .7fr; gap: 0; overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-main { padding: 38px; }
.form-side { padding: 38px; color: #fff; background: var(--navy); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 13px; color: var(--ink); background: #fbfdfd; outline: none; }
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,168,166,.12); }
.checkline { display: flex; gap: 10px; align-items: flex-start; margin: 12px 0; font-size: .86rem; color: var(--muted); }
.form-side p, .form-side li { color: #c6d7dc; font-size: .91rem; }
.form-side ul { padding-left: 18px; }
.notice { padding: 17px 19px; border-left: 4px solid var(--teal); border-radius: 0 12px 12px 0; background: var(--aqua); color: #24434c; font-size: .9rem; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.phase { position: relative; padding: 26px 23px; border-radius: 18px; background: #fff; box-shadow: var(--soft-shadow); }
.phase .days { display: inline-block; margin-bottom: 14px; color: var(--teal-dark); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.phase ul { padding-left: 18px; color: var(--muted); font-size: .88rem; }
.tool-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.checklist { padding: 28px; border-radius: var(--radius-sm); background: #fff; box-shadow: var(--soft-shadow); }
.task { display: flex; gap: 11px; padding: 11px 0; border-bottom: 1px solid #e7eeee; color: #314750; font-size: .91rem; }
.task:last-child { border-bottom: 0; }
.task input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--teal); }
.progress-track { height: 10px; overflow: hidden; border-radius: 999px; background: #dfe9e9; }
.progress-fill { width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal), var(--mint)); transition: width .25s; }
.progress-copy { display: flex; justify-content: space-between; margin: 10px 0 7px; font-size: .8rem; font-weight: 800; }
.script { margin-bottom: 13px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.script summary { display: flex; justify-content: space-between; gap: 15px; padding: 18px 20px; cursor: pointer; font-weight: 850; list-style: none; }
.script summary::-webkit-details-marker { display: none; }
.script summary::after { content: '+'; color: var(--teal-dark); font-size: 1.25rem; }
.script[open] summary::after { content: '−'; }
.script-body { padding: 0 20px 20px; }
.script-copy { padding: 17px; border-radius: 12px; color: #344a54; background: #f0f6f6; font-size: .93rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 15px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .88rem; }
th { color: var(--navy); background: #eaf5f4; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
.footer { padding: 55px 0; color: #bed0d5; background: #051a29; }
.footer-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; }
.footer a { color: #8de1d5; }
.footer small { display: block; margin-top: 18px; color: #8ea5ac; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 80; padding: 13px 17px; border-radius: 11px; color: #fff; background: var(--navy); box-shadow: var(--shadow); transform: translateY(30px); opacity: 0; pointer-events: none; transition: .22s; }
.toast.show { transform: translateY(0); opacity: 1; }
.hide-print { display: initial; }

@media (max-width: 900px) {
  .hero-grid, .section-head, .intro-panel, .package, .form-panel, .tool-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 25px; padding-top: 28px; }
  .ribbon-grid, .grid-4, .timeline { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-card { max-width: 650px; }
  .section-head { gap: 5px; }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 26px, 1160px); }
  .topbar { align-items: flex-start; }
  .top-tag { display: none; }
  .brand { font-size: .88rem; }
  .brand img { width: 42px; height: 42px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  h2 { font-size: 2.25rem; }
  .hero { padding-bottom: 75px; }
  .ribbon { margin-top: -32px; }
  .ribbon-grid, .grid-2, .grid-3, .grid-4, .timeline, .field-grid { grid-template-columns: 1fr; }
  .ribbon-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .ribbon-item:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .package-price, .package-copy, .form-main, .form-side { padding: 28px; }
  .package-price strong { font-size: 3.7rem; }
  .actions .button { width: 100%; }
  .step { grid-template-columns: 44px 1fr; padding: 18px; }
  .step::before { width: 40px; height: 40px; }
}

@media print {
  body { background: #fff; }
  body::before, .sticky-nav, .hide-print, .toast { display: none !important; }
  .hero { padding-bottom: 30px; }
  .hero::after { display: none; }
  .section { padding: 42px 0; break-inside: avoid; }
  .card, .phase, .checklist, .intro-panel, .package { box-shadow: none; break-inside: avoid; }
  .wrap { width: 94%; }
}

