:root {
  --bg-dark: #09111b;
  --bg-soft-blue: #dbe9ff;
  --text-dark: #0f1723;
  --text-soft: #516177;
  --footer-bg: #0b121b;
  --footer-link: #8e98a6;
  --gold: #e7ba58;
  --gold-deep: #bb8f35;
  --line: #dbe6f3;
  --card: rgba(255, 255, 255, 0.72);
  --card-border: rgba(14, 34, 57, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 8% -10%, #f4d79d 0%, transparent 30%),
    radial-gradient(circle at 90% 10%, #b6cced 0%, transparent 26%),
    linear-gradient(180deg, var(--bg-soft-blue) 0%, #edf3fb 48%, #f8fbff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1366px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(244, 248, 255, 0.68);
  border-bottom: 1px solid rgba(19, 28, 41, 0.06);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.page-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* Glass while scrolling (still on hero): dark frost + light nav */
.page-home .site-header.is-glass {
  background: rgba(12, 22, 38, 0.48);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* Past hero: light glass + dark nav for light sections */
.page-home .site-header.is-glass.is-past-hero {
  background: rgba(252, 253, 255, 0.72);
  border-bottom-color: rgba(19, 28, 41, 0.08);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset, 0 4px 24px rgba(15, 28, 44, 0.08);
}

.page-home .site-header:not(.is-past-hero) .logo,
.page-home .site-header:not(.is-past-hero) .nav-links {
  color: #f4f7fd;
}

.page-home .site-header:not(.is-past-hero) .nav-links a:hover {
  color: #f0c56f;
}

.page-home .site-header.is-past-hero .logo,
.page-home .site-header.is-past-hero .nav-links {
  color: #223247;
}

.page-home .site-header.is-past-hero .nav-links a:hover {
  color: #1a4a7a;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #223247;
  font-weight: 500;
}

.header-cta {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: #1a1f28;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(172, 126, 29, 0.28);
  position: relative;
  overflow: hidden;
}

.header-cta::after,
.hero-btn-primary::after,
.booking-submit::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 45%;
  height: 140%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
  transform: translate3d(-120%, 0, 0) skewX(-18deg);
  animation: btn-shine-sweep 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine-sweep {
  0% {
    transform: translate3d(-120%, 0, 0) skewX(-18deg);
  }
  100% {
    transform: translate3d(320%, 0, 0) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta::after,
  .hero-btn-primary::after,
  .booking-submit::after {
    animation: none;
  }
}

.section {
  padding: 80px 0;
}

.hero.section {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-fullbleed {
  width: 100%;
  background:
    linear-gradient(92deg, rgba(5, 18, 35, 0.52) 35%, rgba(7, 28, 56, 0.32) 68%, rgba(11, 30, 54, 0.18)),
    url("./images/hero-web.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(48px, 7vw, 96px) 0;
  min-height: min(92vh, 860px);
  color: #f4f7fd;
}

.page-home .hero-fullbleed {
  padding-top: calc(78px + clamp(48px, 7vw, 96px));
  min-height: min(92vh, 860px);
}

.hero-inner {
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(243, 200, 110, 0.45);
  color: #f5d188;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-main-title {
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 5.8vw, 4.7rem);
  max-width: min(28ch, 100%);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-main-title span {
  color: #f0c56f;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}

h3 {
  margin: 0 0 12px;
}

p {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.7;
}

.hero-copy {
  max-width: 55ch;
  font-size: 1.28rem;
  color: #dce7f8;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
}

.hero-btn-primary {
  background: linear-gradient(180deg, #f2cc7d, #d8a845);
  color: #0f1b2f;
  position: relative;
  overflow: hidden;
}

.booking-submit {
  position: relative;
  overflow: hidden;
}

.hero-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ecf2ff;
  background: rgba(5, 15, 26, 0.42);
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #0f1928 0%, #09111b 100%);
  color: #f4f8ff;
  font-weight: 700;
  padding: 15px 30px;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(10, 16, 26, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pill-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(10, 16, 26, 0.4);
}

.text-btn {
  color: #1e4a7b;
  font-weight: 600;
}

.section-content {
  border-top: 1px solid var(--line);
  background: #f3f4f6;
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 44px;
  align-items: flex-start;
}

.steps-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.steps-title span {
  color: #8f949d;
}

.steps-btn {
  padding: 12px 22px;
  font-size: 0.94rem;
}

.steps-label {
  font-size: 2rem;
  line-height: 1;
  color: #0f1723;
  margin-bottom: 18px;
  font-weight: 600;
}

.step-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid #dfe3e8;
  padding: 16px 0;
}

.step-row:last-child {
  border-bottom: 1px solid #dfe3e8;
}

.step-no {
  color: #9aa0a9;
  font-size: 0.85rem;
  font-weight: 600;
}

.step-row p {
  color: #9ea3ab;
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.step-row strong {
  color: #121a25;
  font-weight: 650;
}

.vsl-page {
  min-height: 100vh;
}

.vsl-hero {
  padding-top: 50px;
}

.vsl-head {
  text-align: center;
  margin-bottom: 26px;
}

.vsl-step {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #5b6f89;
  margin-bottom: 12px;
}

.vsl-title {
  max-width: none;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.vsl-subtitle {
  margin-top: 14px;
  color: #1a2a40;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.vsl-media {
  margin-top: 34px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 34, 56, 0.14);
  box-shadow: 0 22px 42px rgba(15, 28, 44, 0.16);
}

.vsl-media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}

.video-fallback {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #5f6f85;
}

.video-fallback a {
  color: #1f4d80;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vsl-copy {
  margin: 32px auto 0;
  width: min(1120px, 100%);
}

.vsl-copy p {
  font-size: clamp(1.35rem, 2.8vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #8f96a1;
  font-weight: 500;
}

.vsl-copy strong {
  color: #111925;
}

.vsl-timer {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 16px 18px;
}

.small {
  font-size: 0.95rem;
}

.vsl-cta {
  margin-top: 20px;
}

.hidden {
  display: none;
}

.confirmation-page {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
}

.confirmation-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
  border: 1px solid var(--card-border);
  border-radius: 28px;
  box-shadow: 0 26px 50px rgba(12, 23, 38, 0.12);
  padding: clamp(24px, 4vw, 42px);
  animation: fadeUp 680ms ease both;
}

.confirm-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 28% 24%, #88efac, #22b15e);
  box-shadow: 0 14px 28px rgba(28, 157, 83, 0.34);
  margin-bottom: 14px;
  animation: popIn 600ms ease 80ms both;
}

.confirm-icon {
  width: 40px;
  height: 40px;
  fill: #ffffff;
}

.confirmation-step {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #5a6f8a;
  margin-bottom: 10px;
}

.confirmation-title {
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  margin: 0 0 12px;
}

.confirmation-subtitle {
  font-size: 1.08rem;
  color: #365274;
  margin-bottom: 24px;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.confirmation-panel {
  background: rgba(248, 251, 255, 0.9);
  border: 1px solid #d8e4f2;
  border-radius: 18px;
  padding: 18px;
}

.confirmation-panel h3 {
  margin-bottom: 8px;
}

.confirmation-panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.confirmation-panel li {
  margin: 8px 0;
  color: #3e536f;
}

.confirmation-note {
  margin-top: 16px;
  background: #eaf9ef;
  border: 1px solid #b8e9c6;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.confirmation-note span {
  color: #4e6a5d;
  font-size: 0.9rem;
}

.confirmation-note strong {
  color: #18884a;
}

.confirmation-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.video-intro {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 8px;
}

.video-intro h2 {
  margin-bottom: 8px;
}

.video-intro p {
  margin: 0 auto;
}

.video-frame {
  margin-top: 20px;
  border-radius: 22px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(10, 18, 29, 0.12);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}

.section-form {
  border-top: none;
}

.booking-section {
  position: relative;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.booking-section-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 12, 22, 0.92) 0%, rgba(12, 22, 38, 0.88) 45%, rgba(18, 32, 52, 0.82) 100%),
    url("./images/hero-web.png") center / cover no-repeat;
  filter: brightness(0.45);
  z-index: 0;
}

.booking-section .shell {
  position: relative;
  z-index: 1;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.booking-copy {
  color: #f0f4fc;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: #e8c76b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-badge-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.booking-title {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}

.booking-title-em {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 500;
  color: #e5c49f;
}

.booking-lead {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(240, 244, 252, 0.88);
  max-width: 42ch;
}

.booking-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.booking-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.booking-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.booking-features strong {
  display: block;
  font-size: 0.92rem;
  color: #e8c76b;
  margin-bottom: 2px;
}

.booking-features span {
  font-size: 0.82rem;
  color: rgba(240, 244, 252, 0.75);
  line-height: 1.35;
}

.refund-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px 14px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #e8d5b8, #d4bc96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 22px;
  max-width: 100%;
}

.refund-seal {
  flex-shrink: 0;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff8e8, #c9a66b);
  border: 2px solid rgba(90, 70, 40, 0.35);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 7px;
  color: #3d2e18;
}

.refund-seal-pct {
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.refund-seal-label {
  display: block;
  margin-top: 4px;
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 100%;
}

.refund-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.refund-banner-text strong {
  font-size: 1.05rem;
  color: #1a1410;
}

.refund-banner-text span {
  font-size: 0.82rem;
  color: #3d3428;
  line-height: 1.4;
}

.booking-card {
  background: rgba(16, 24, 40, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 18px;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.booking-form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.booking-form-head-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4af37, #a67c2e);
  color: #1a1410;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.booking-form-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.booking-form-sub {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: rgba(200, 210, 230, 0.75);
}

.booking-field {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(8, 14, 26, 0.65);
  padding: 0 4px 0 12px;
  transition: border-color 0.2s ease;
}

.booking-field:focus-within {
  border-color: rgba(212, 175, 55, 0.45);
}

.booking-field-icon {
  flex-shrink: 0;
  color: rgba(180, 195, 220, 0.55);
  display: grid;
  place-items: center;
  margin-right: 8px;
}

.booking-form .booking-input,
.booking-form .booking-select {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 10px;
  padding: 14px 12px 14px 0;
  background: transparent;
  color: #f0f4fc;
  font: inherit;
}

.booking-form .booking-input::placeholder {
  color: rgba(180, 195, 220, 0.45);
}

.booking-form .booking-input:focus {
  outline: none;
  border: none;
}

.booking-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='rgba(180,195,220,0.7)'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.booking-form .booking-select option {
  color: #1a1410;
  background: #fff;
}

.booking-submit {
  margin-top: 6px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 12px;
  padding: 16px 22px;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: linear-gradient(90deg, #d4af37, #e5c49f, #c9a24d);
  color: #1a1410;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.booking-submit span {
  font-size: 1.15rem;
  line-height: 1;
}

.booking-trust-line {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(240, 244, 252, 0.9);
}

.booking-trust-check {
  color: #4ade80;
  font-weight: 700;
}

.booking-disclaimer {
  margin: 10px 0 0;
  text-align: center;
  color: rgba(180, 195, 220, 0.55);
}

.booking-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: rgba(6, 10, 20, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-footer-icon {
  flex-shrink: 0;
  color: rgba(212, 175, 55, 0.85);
  display: grid;
  place-items: center;
}

.booking-card-footer p {
  flex: 1;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(220, 228, 245, 0.85);
}

.booking-footer-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}

.booking-footer-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
}

.booking-modal {
  padding: 0;
  border: none;
  background: transparent;
  max-width: calc(100vw - 32px);
  width: min(440px, 100vw - 32px);
  margin: auto;
  color: inherit;
}

.booking-modal::backdrop {
  background: rgba(4, 8, 16, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal-panel {
  position: relative;
  max-height: min(90vh, 880px);
  overflow-y: auto;
  border-radius: 22px;
  -webkit-overflow-scrolling: touch;
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 12, 22, 0.75);
  color: #e8ecf5;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.booking-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.booking-card--modal {
  margin: 0;
}

.input {
  width: 100%;
  border: 1px solid #c3d3e4;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  color: #152233;
  background: #f7fbff;
}

.input:focus {
  outline: none;
  border-color: #7f96b4;
}

.tiny {
  font-size: 0.82rem;
}

.site-footer {
  color: var(--footer-link);
  background:
    linear-gradient(180deg, rgba(8, 12, 22, 0.85) 0%, rgba(6, 10, 18, 0.92) 100%),
    url("./images/footer-cta.png") center / cover no-repeat;
  background-color: var(--footer-bg);
}

.footer-grid {
  padding: 56px 0 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-logo {
  color: #dfe5ef;
}

.footer-grid h3 {
  color: #d7dfe9;
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--footer-link);
  margin: 0 0 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(218, 227, 242, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0 26px;
  font-size: 0.88rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.18s;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-glow-left {
  background: #eec56e;
  left: -120px;
  top: 70px;
}

.hero-glow-right {
  background: #8aafe0;
  right: -140px;
  bottom: 40px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .steps-layout,
  .confirmation-grid,
  .booking-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-features {
    grid-template-columns: 1fr;
  }

  .hero-fullbleed {
    min-height: auto;
    padding-top: clamp(40px, 10vw, 72px);
    padding-bottom: clamp(40px, 10vw, 72px);
  }

  .page-home .hero-fullbleed {
    padding-top: calc(78px + clamp(40px, 10vw, 72px));
  }

  .hero-main-title {
    max-width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .section {
    padding: 56px 0;
  }

  .step-row p {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .vsl-copy p {
    font-size: clamp(1.2rem, 7vw, 1.75rem);
  }

  .confirmation-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
