:root {
  --navy: #061b3a;
  --navy-2: #0b2b57;
  --steel: #607793;
  --steel-2: #8799ad;
  --ink: #172234;
  --muted: #5a687a;
  --line: #d8e1ea;
  --soft: #f4f7fb;
  --white: #ffffff;
  --accent: #b89962;
  --shadow: 0 20px 55px rgba(6, 27, 58, .12);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(850px, calc(100% - 40px)); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus { left: 10px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216,225,234,.75);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 290px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 24px; font-weight: 700; color: var(--navy); font-size: 15px; }
.primary-nav a { opacity: .88; }
.primary-nav a:hover { opacity: 1; color: var(--navy-2); }
.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
  opacity: 1 !important;
}
.nav-toggle { display: none; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
  background:
    radial-gradient(circle at 10% 5%, rgba(96,119,147,.18), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -220px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 70px solid rgba(6, 27, 58, .05);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr .75fr; gap: 54px; align-items: center; }
.eyebrow, .section-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--steel);
  font-weight: 900;
  font-size: 13px;
  margin: 0 0 12px;
}
h1, h2, h3 { color: var(--navy); line-height: 1.08; margin: 0; }
h1 { font-size: clamp(38px, 5.2vw, 68px); letter-spacing: -.04em; max-width: 870px; }
h2 { font-size: clamp(30px, 3.3vw, 46px); letter-spacing: -.035em; }
h3 { font-size: 22px; letter-spacing: -.02em; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 760px; margin: 24px 0 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 14px 30px rgba(6,27,58,.22); }
.btn-primary:hover { background: #09264f; }
.btn-secondary { background: white; color: var(--navy); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--steel-2); }
.trust-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-line span { background: white; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; color: var(--muted); font-size: 14px; font-weight: 700; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 28px; }
ul { padding-left: 22px; margin: 20px 0 0; }
.hero-card li { margin: 10px 0; color: var(--muted); font-weight: 700; }
.section { padding: 82px 0; }
.two-col { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.rich-text p { margin: 0 0 18px; color: var(--muted); font-size: 18px; }
.section-heading { margin-bottom: 34px; }
.section-heading.centered { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-heading p:not(.section-label) { color: var(--muted); font-size: 18px; margin: 14px auto 0; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card, .price-card, .path-card, .step, .question-item, .panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(6,27,58,.06);
}
.card { padding: 28px; }
.card p, .path-card p, .step p, .price-card p { color: var(--muted); margin: 14px 0 0; }
.service, .packages, .faq { background: var(--soft); }
.question-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.question-item { display: grid; grid-template-columns: 54px 1fr; gap: 12px; padding: 20px; align-items: start; }
.question-item span { color: var(--accent); font-weight: 1000; font-size: 20px; line-height: 1; }
.question-item p { margin: 0; color: var(--ink); font-weight: 700; }
.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { padding: 34px; }
.panel-positive { background: linear-gradient(180deg, #fff, #f7fbff); }
.panel-neutral { background: linear-gradient(180deg, #fff, #f7f8fa); }
.check-list, .minus-list { list-style: none; padding: 0; }
.check-list li, .minus-list li { margin: 14px 0; padding-left: 34px; position: relative; color: var(--muted); font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #237a57; font-weight: 1000; }
.minus-list li::before { content: "—"; position: absolute; left: 0; color: var(--steel); font-weight: 1000; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { padding: 30px; position: relative; }
.price-card.featured { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-8px); }
.badge { display: inline-flex; background: var(--navy); color: #fff; padding: 6px 10px; border-radius: 999px; font-weight: 900; font-size: 12px; margin-bottom: 14px; }
.price { color: var(--navy) !important; font-size: 38px !important; font-weight: 1000; letter-spacing: -.05em; margin: 18px 0 0 !important; }
.note { text-align: center; margin: 24px auto 0; color: var(--muted); font-size: 15px; }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { padding: 24px; }
.step span { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 1000; margin-bottom: 16px; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.path-card { padding: 28px; background: linear-gradient(180deg, #fff, #f8fafc); }
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}
.accordion-trigger::after { content: "+"; float: right; }
.accordion-trigger[aria-expanded="true"]::after { content: "–"; }
.accordion-panel { display: none; padding: 0 22px 20px; border-bottom: 1px solid var(--line); color: var(--muted); }
.accordion-panel.open { display: block; }
.contact { background: linear-gradient(135deg, var(--navy) 0%, #0b2b57 100%); color: #fff; }
.contact h2, .contact .section-label { color: #fff; }
.contact .section-label { opacity: .72; }
.contact p { color: rgba(255,255,255,.82); font-size: 18px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-form { background: white; color: var(--ink); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.contact-form label { display: block; font-weight: 850; color: var(--navy); margin-bottom: 14px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  margin-top: 6px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfe;
}
input:focus, textarea:focus { outline: 3px solid rgba(96,119,147,.22); border-color: var(--steel); }
.form-note, .small-note { font-size: 13px !important; color: rgba(255,255,255,.68) !important; }
.contact-form .form-note { color: var(--muted) !important; margin: 14px 0 0; }
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.site-footer p { margin: 4px 0 0; color: var(--muted); }
.footer-links { display: flex; gap: 18px; color: var(--navy); font-weight: 800; }
@media (max-width: 940px) {
  .brand img { width: 220px; }
  .nav-toggle { display: inline-flex; background: var(--navy); color: white; border: 0; border-radius: 999px; padding: 10px 14px; font-weight: 900; }
  .primary-nav { position: absolute; top: 84px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 18px 20px; background: white; border-bottom: 1px solid var(--line); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 10px 0; }
  .nav-cta { text-align: center; padding: 12px; }
  .hero-grid, .two-col, .split-panel, .contact-grid { grid-template-columns: 1fr; }
  .cards.three, .pricing-grid, .path-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 54px 0; }
  .section { padding: 58px 0; }
  .question-grid, .timeline { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 40px; }
}
