:root {
  --navy: #0a2a4a;
  --blue: #2e6bff;
  --blue-hover: #1f58e8;
  --mist: #eef5fc;
  --white: #ffffff;
  --muted: #4a6076;
  --line: #d7e3f0;
  --max: 1100px;
  --nav-h: 64px;
  --font: "IBM Plex Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(155, 183, 212, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 183, 212, 0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 10%, #000 20%, transparent 75%);
}
img { max-width: 100%; display: block; }
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: rgba(238, 245, 252, 0.94);
  backdrop-filter: blur(12px);
}
.nav .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { margin-right: auto; }
.brand img { width: 128px; height: auto; }
.nav-links {
  display: flex;
  gap: 20px;
  margin-right: 8px;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--blue); }

.cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.cta:hover { background: var(--blue-hover); }
.cta-lg {
  min-height: 54px;
  min-width: 240px;
  padding: 14px 32px;
  font-size: 16px;
  margin-top: 20px;
}

.hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 16px 0 40px;
  text-align: center;
}
h1 {
  margin: 0 auto;
  max-width: 18em;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.lead {
  margin: 12px auto 0;
  max-width: 38em;
  color: var(--muted);
  font-size: 17px;
}
.proof {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.vsl {
  position: relative;
  margin: 20px auto 0;
  width: 100%;
  max-height: min(64svh, 680px);
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(10, 42, 74, 0.22);
}
.vsl img { width: 100%; height: 100%; object-fit: cover; }
.vsl-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.vsl-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--navy);
  transform: translate(-40%, -50%);
}
.vsl.is-on .vsl-play { display: none; }
.vsl-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
}
.vsl-bar-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
}
.vsl-time { font-size: 11px; opacity: 0.9; }
.vsl-scrub {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}
.vsl-scrub-fill { display: block; width: 2%; height: 100%; background: var(--blue); }
.vsl.is-on .vsl-scrub-fill { width: 6%; }
.vsl-vol, .vsl-fs {
  width: 14px;
  height: 14px;
  border: 1.5px solid #fff;
  opacity: 0.9;
}
.vsl-vol { border-radius: 2px 8px 8px 2px; }
.vsl-fs { border-radius: 2px; }

.foot {
  padding: 20px 0 36px;
  color: var(--muted);
  font-size: 13px;
}
.foot .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.foot p { margin: 0; }
.foot nav { display: flex; gap: 16px; }
.foot a { color: var(--muted); }

.band {
  padding: 72px 0 64px;
  text-align: center;
}
.band-alt { background: rgba(255, 255, 255, 0.62); }
.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.band h2, .final h2 {
  margin: 0 auto;
  max-width: 18em;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.band .lead { margin-top: 10px; }
.band .cta-lg { margin-top: 28px; }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  text-align: left;
  counter-reset: step;
}
.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.steps img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}
.steps h3 {
  margin: 14px 16px 6px;
  font-size: 16px;
}
.steps h3::before {
  counter-increment: step;
  content: "0" counter(step) " · ";
  color: var(--blue);
}
.steps p {
  margin: 0 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  gap: 36px;
  text-align: left;
  align-items: start;
}
.faq-intro { text-align: left; }
.faq-intro .lead { margin: 10px 0 18px; max-width: none; }
.faq-list { display: grid; gap: 8px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 16px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  font-size: 15px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 700;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.final { padding-bottom: 80px; }

.sk-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 42, 74, 0.55);
}
body.is-booking .nav { visibility: hidden; }
.sk-modal[hidden] { display: none; }
.sk-card {
  position: relative;
  width: min(960px, 100%);
  height: min(720px, 92svh);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 42, 74, 0.28);
}
.sk-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
.sk-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  border: 0;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}

section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

@media (max-width: 720px) {
  h1 { font-size: 28px; }
  .cta-lg { width: 100%; }
  .vsl { max-height: none; }
  .sk-card { height: 100svh; border-radius: 0; width: 100%; }
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 20px; }
  .faq-intro { text-align: center; }
  .faq-intro .cta { width: 100%; }
}
