:root {
  --navy: #071d49;
  --navy-2: #10285f;
  --teal: #0f9fa6;
  --teal-dark: #087b82;
  --teal-soft: #dff7f5;
  --pink: #ef2f75;
  --pink-dark: #c81f5c;
  --pink-soft: #fff0f6;
  --purple: #7a3e9d;
  --yellow: #fbbf24;
  --cream: #fffaf7;
  --paper: #ffffff;
  --ink: #182238;
  --muted: #5d667a;
  --line: #dce3eb;
  --success: #198754;
  --shadow: 0 18px 50px rgba(7, 29, 73, .12);
  --shadow-sm: 0 8px 24px rgba(7, 29, 73, .09);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-underline-offset: 3px; }
a:hover { color: var(--pink-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .8rem 1rem;
  border-radius: 0 0 10px 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title { max-width: 780px; margin-bottom: 2rem; }
.section-title.center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--pink-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  margin-bottom: .75rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--pink); border-radius: 9px; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.35rem, 6vw, 5rem); letter-spacing: -.045em; margin-bottom: 1.2rem; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.035em; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin-top: 0; }
.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); color: #35415a; max-width: 720px; }
.small { font-size: .92rem; }
.muted { color: var(--muted); }
.text-center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,29,73,.08);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; min-width: 0; }
.brand img { width: 52px; height: 52px; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--navy); font-size: 1.05rem; }
.brand-copy span { color: var(--teal-dark); font-weight: 800; font-size: .78rem; letter-spacing: .04em; margin-top: .25rem; }
.nav-toggle {
  display: none;
  border: 0;
  background: var(--teal-soft);
  color: var(--navy);
  border-radius: 12px;
  padding: .65rem .8rem;
  font-weight: 900;
}
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  padding: .62rem .72rem;
  border-radius: 10px;
  font-size: .94rem;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--teal-soft); color: var(--teal-dark); }
.site-nav .nav-cta { background: var(--pink); color: #fff; margin-left: .35rem; }
.site-nav .nav-cta:hover { background: var(--pink-dark); color: #fff; }

.hero { position: relative; overflow: hidden; padding: 4.8rem 0 4.5rem; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 999px; filter: blur(2px); z-index: -1; }
.hero::before { width: 420px; height: 420px; background: #dff7f5; right: -120px; top: -120px; }
.hero::after { width: 300px; height: 300px; background: #fff0f6; left: -130px; bottom: -130px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 3rem; align-items: center; }
.hero-copy .tagline {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  border: 1px solid #bbe7e4;
  background: #fff;
  color: var(--teal-dark);
  padding: .55rem .8rem;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.hero-copy h1 .pink { color: var(--pink); }
.hero-copy h1 .teal { color: var(--teal-dark); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.6rem 0 1.25rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .75rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-dark); color: #fff; }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-2); color: #fff; }
.btn-outline { background: #fff; color: var(--navy); border-color: #cbd6e3; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.trust-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.trust-chip { display: inline-flex; gap: .4rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .45rem .7rem; font-weight: 750; font-size: .9rem; }
.hero-visual { position: relative; }
.hero-card { background: #fff; border-radius: 34px; padding: 1rem; box-shadow: var(--shadow); transform: rotate(1deg); border: 1px solid rgba(7,29,73,.08); }
.hero-card img { border-radius: 24px; width: 100%; }
.hero-note {
  position: absolute;
  right: -1rem;
  bottom: 1.25rem;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 16px;
  padding: .85rem 1rem;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
}

.ribbon { background: var(--navy); color: #fff; }
.ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.18); }
.ribbon-item { background: var(--navy); padding: 1.05rem; text-align: center; font-weight: 850; }
.ribbon-item span { color: var(--yellow); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.card .icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; font-size: 1.65rem; margin-bottom: 1rem; background: var(--teal-soft); }
.card:nth-child(3n+2) .icon { background: var(--pink-soft); }
.card:nth-child(3n+3) .icon { background: #f4ebff; }
.card p:last-child { margin-bottom: 0; }
.card-link { color: var(--pink-dark); font-weight: 900; text-decoration: none; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li { position: relative; padding-left: 1.8rem; margin: .7rem 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 1000; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.35rem; }
.step::before { counter-increment: step; content: counter(step); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: #fff; font-weight: 1000; margin-bottom: .9rem; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.package { background: #fff; border: 2px solid #d8e5ec; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.package.featured { border-color: var(--teal); transform: translateY(-7px); }
.package-head { padding: 1.35rem; background: var(--pink-soft); }
.package:nth-child(2) .package-head { background: var(--teal-soft); }
.package:nth-child(3) .package-head { background: #f4ebff; }
.price { display: flex; align-items: baseline; gap: .3rem; color: var(--navy); font-weight: 1000; font-size: 2.3rem; }
.price small { font-size: .9rem; color: var(--muted); }
.package-body { padding: 1.35rem; }

.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { text-align: left; padding: 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { background: var(--navy); color: #fff; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { font-weight: 900; color: var(--pink-dark); white-space: nowrap; }
.table-wrap { overflow-x: auto; border-radius: 18px; }

.notice { border-left: 5px solid var(--teal); background: var(--teal-soft); padding: 1rem 1.2rem; border-radius: 0 14px 14px 0; }
.notice.pink { border-left-color: var(--pink); background: var(--pink-soft); }
.quote-strip { background: linear-gradient(135deg, var(--navy), #132f70); color: #fff; border-radius: 28px; padding: clamp(1.5rem, 4vw, 3rem); display: flex; justify-content: space-between; align-items: center; gap: 2rem; box-shadow: var(--shadow); }
.quote-strip h2, .quote-strip h3, .quote-strip p { color: #fff; }
.quote-strip p { margin-bottom: 0; }

.page-hero { padding: 3.8rem 0 3rem; background: linear-gradient(160deg, #fff, #eafafa); border-bottom: 1px solid var(--line); }
.breadcrumbs { font-size: .9rem; margin-bottom: 1rem; color: var(--muted); }
.breadcrumbs a { color: var(--teal-dark); font-weight: 800; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); }

.poster-frame { background: #fff; padding: .8rem; border-radius: 28px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.poster-frame img { border-radius: 20px; }

.faq-list { display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: #fff; color: var(--navy); text-align: left; padding: 1rem 1.1rem; font-weight: 900; display: flex; justify-content: space-between; gap: 1rem; }
.faq-question::after { content: "+"; color: var(--pink); font-size: 1.3rem; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { padding: 0 1.1rem 1rem; color: #3c465c; }
.faq-answer[hidden] { display: none; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: start; }
.contact-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-card h2, .contact-card h3, .contact-card a { color: #fff; }
.contact-method { display: grid; grid-template-columns: 44px 1fr; gap: .8rem; align-items: center; margin: 1rem 0; }
.contact-method .bubble { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.13); display: grid; place-items: center; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy); font-weight: 850; }
input, select, textarea { width: 100%; border: 1px solid #bfcbd9; border-radius: 11px; padding: .8rem .9rem; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(15,159,166,.2); border-color: var(--teal); }
textarea { min-height: 150px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.form-status { margin-top: .8rem; font-weight: 750; color: var(--teal-dark); }

.legal h2 { margin-top: 2.4rem; font-size: 1.7rem; }
.legal h3 { margin-top: 1.6rem; font-size: 1.25rem; }
.legal ul { padding-left: 1.25rem; }

.site-footer { background: var(--navy); color: #e8edf8; padding: 3.5rem 0 1.25rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 2rem; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1.05rem; }
.site-footer a { color: #e8edf8; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.footer-brand img { width: 54px; height: 54px; background: #fff; border-radius: 14px; padding: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 2.2rem; padding-top: 1rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .9rem; }

.mobile-actions { display: none; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 18px; padding: .7rem; display: none; flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .8rem; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 650px; margin-inline: auto; }
  .cards, .package-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  body { padding-bottom: 70px; }
  .container, .narrow { width: min(calc(100% - 1.2rem), var(--max)); }
  .section { padding: 3.5rem 0; }
  .header-inner { min-height: 70px; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: .92rem; }
  .brand-copy span { font-size: .7rem; }
  .hero { padding-top: 2.8rem; }
  .hero-grid { gap: 2rem; }
  .hero-note { right: .3rem; bottom: .4rem; font-size: .82rem; }
  .cards, .package-grid, .steps, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .package.featured { transform: none; }
  .ribbon-grid { grid-template-columns: 1fr; }
  .quote-strip { align-items: flex-start; flex-direction: column; }
  .price-table th, .price-table td { padding: .78rem; }
  .mobile-actions { position: fixed; z-index: 999; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(7,29,73,.12); }
  .mobile-actions a { display: grid; place-items: center; min-height: 62px; color: var(--navy); text-decoration: none; font-weight: 900; font-size: .82rem; }
  .mobile-actions a:nth-child(2) { background: var(--pink); color: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .site-footer, .mobile-actions, .hero-actions, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .page-hero { padding: 1.5rem 0; }
  .card, .panel, .package, .price-table { box-shadow: none; }
}
