:root {
  --ink: #06235f;
  --ink-2: #0a367a;
  --teal: #14bebf;
  --teal-dark: #099fa7;
  --sky: #eaf7fb;
  --cream: #fffaf3;
  --paper: #ffffff;
  --muted: #66758f;
  --line: rgba(6, 35, 95, 0.12);
  --shadow: 0 24px 70px rgba(6, 35, 95, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(20, 190, 191, 0.18), transparent 32rem),
    linear-gradient(180deg, #f7fdff 0%, #fff 34%, #fffaf4 100%);
  line-height: 1.55;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.section-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(170px, 22vw, 280px);
  overflow: hidden;
}

.brand img {
  width: 100%;
  border-radius: 14px;
  mix-blend-mode: multiply;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
  color: rgba(6, 35, 95, 0.82);
}

nav a:hover { color: var(--teal-dark); }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  padding: clamp(46px, 7vw, 92px) 0;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--ink-2));
}

h1, h2, h3, p { text-wrap: pretty; }
h1 {
  margin: 0;
  max-width: 13.5ch;
  font-size: clamp(3rem, 5.7vw, 5.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
  color: #041b52;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.lead {
  margin: 28px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 21px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 12px 26px rgba(6, 35, 95, 0.10);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(6, 35, 95, 0.16);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink-2), #0067df 48%, var(--teal));
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button.large {
  white-space: nowrap;
  padding-inline: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-strip span {
  border: 1px solid rgba(20, 190, 191, 0.25);
  background: rgba(255, 255, 255, 0.7);
  color: #295077;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  padding: clamp(8px, 1.2vw, 14px);
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(20,190,191,0.22));
  box-shadow: var(--shadow);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-media::before {
  width: 110px;
  height: 110px;
  background: rgba(20, 190, 191, 0.28);
  top: -30px;
  right: 12%;
  filter: blur(3px);
}

.hero-media::after {
  width: 170px;
  height: 170px;
  border: 24px solid rgba(6, 103, 223, 0.13);
  bottom: -54px;
  left: -54px;
}

.hero-media img {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 70px);
  padding: 90px 0;
}

.split-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards {
  display: grid;
  gap: 16px;
}

.card,
.package-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(6, 35, 95, 0.07);
}

.card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.card p,
.package-card p:not(.price) { margin: 0; color: var(--muted); }

.band {
  margin: 30px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 25%, rgba(20, 190, 191, 0.45), transparent 26rem),
    linear-gradient(135deg, #041b52, #073d8d 62%, #05a9b2);
}

.band-inner {
  padding: clamp(58px, 8vw, 96px) 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: end;
}

.band h2 { color: #fff; }
.band p { margin: 0; color: rgba(255,255,255,0.82); font-size: 1.15rem; }

.packages { padding: 90px 0; }
.packages > h2 { max-width: 720px; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.package-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.price {
  margin: -2px 0 16px;
  color: #041b52;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.package-card ul {
  margin-bottom: 24px;
}

.package-link {
  margin-top: auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink-2), #0072df 58%, var(--teal));
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(6, 35, 95, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.package-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(6, 35, 95, 0.18);
}

.package-card.featured {
  background: linear-gradient(180deg, rgba(234, 247, 251, 0.96), #fff);
  border-color: rgba(20, 190, 191, 0.38);
  transform: translateY(-12px);
}

.tag {
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(20, 190, 191, 0.12);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

ul {
  padding-left: 20px;
  margin: 22px 0 0;
  color: #244774;
}

li + li { margin-top: 8px; }

.final-cta {
  margin-bottom: 78px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: calc(var(--radius) + 10px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.final-cta h2 { max-width: 760px; }
.final-cta p:not(.eyebrow) { max-width: 680px; color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; justify-content: space-between; }
  .hero,
  .split-section,
  .band-inner,
  .package-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-copy { max-width: none; }
  .hero-media { order: -1; }
  .package-card.featured { transform: none; }
  .final-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .section-wrap { width: min(100% - 28px, 1120px); }
  .site-header { padding-inline: 14px; }
  .brand { width: 210px; }
  nav { font-size: 0.84rem; gap: 10px; }
  h1 { max-width: 10.5ch; font-size: clamp(2.8rem, 13.5vw, 4.5rem); }
  .button { width: 100%; }
  .hero-media::before, .hero-media::after { display: none; }
  .split-section, .packages { padding: 62px 0; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; }
}

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