*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ocean: #0F3D66;
  --seal-blue: #2E6F95;
  --aqua: #8FD3E8;
  --bubble: #D9F1F7;
  --white: #FFFFFF;
  --seal-red: #E63946;
  --seal-red-hover: #C92F3B;
  --navy-text: #1B263B;
  --soft-gray: #E5E7EB;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ───────── BUTTONS ───────── */

.btn-cta-red,
.btn-cta-aqua,
.btn-cta-ocean {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 3px solid #d0d0d0;
  border-radius: 50px;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.3) inset, 0 1px 3px rgba(0,0,0,0.1);
}

.btn-cta-red {
  background: var(--seal-red);
}

.btn-cta-aqua {
  background: var(--aqua);
}

.btn-cta-ocean {
  background: var(--ocean);
}

.btn-cta-red:hover,
.btn-cta-aqua:hover,
.btn-cta-ocean:hover {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8, #a8a8a8, #d8d8d8);
  color: #0a2440;
  border-color: #b0b0b0;
}

/* ───────── HEADER ───────── */

.header {
  position: relative;
  z-index: 50;
  width: 100%;
  background: var(--white);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ocean);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--seal-blue);
}

*:focus-visible {
  outline: 3px solid var(--seal-blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ocean);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  display: none;
}

.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 180px;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ocean);
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background: var(--bubble);
  color: var(--seal-blue);
}

.logo-wrapper {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(4px);
  z-index: 50;
}

.header-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.header-cta {
  font-size: 13px;
  padding: 10px 20px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ocean);
  cursor: pointer;
  z-index: 50;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link,
.mobile-menu .btn-cta-red {
  width: 100%;
  text-align: center;
  padding: 18px 16px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  letter-spacing: 1px;
}

.mobile-menu .nav-link:last-of-type {
  border-bottom: none;
}

.mobile-menu .btn-cta-red {
  margin: 16px 24px;
  width: auto;
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-logo {
    width: 100px;
    height: 100px;
  }

  .logo-wrapper {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ───────── HERO ───────── */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 25%;
  transform: scale(1.863);
  transform-origin: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(15, 61, 102, 0.80) 0%, rgba(15, 61, 102, 0.45) 40%, rgba(15, 61, 102, 0.15) 75%, rgba(15, 61, 102, 0.05) 100%),
    linear-gradient(to bottom, rgba(15, 61, 102, 0.0) 60%, rgba(15, 61, 102, 0.40) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 16px 48px;
  text-align: center;
}

.bubble-divider {
  width: 100%;
  height: 80px;
  background: url('divider-bubbles.webp') center / contain repeat-x;
  background-color: transparent;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(
    90deg,
    #d8d8d8 0%,
    #e8e8e8 10%,
    #f0f0f0 20%,
    #dcdcdc 30%,
    #ececec 38%,
    #ffffff 42%,
    #fffef5 45%,
    #ffffff 48%,
    #ececec 52%,
    #dcdcdc 60%,
    #f0f0f0 70%,
    #e4e4e4 80%,
    #f0f0f0 90%,
    #d8d8d8 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.15);
  animation: metallicShine 5s linear infinite;
}

@keyframes metallicShine {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.hero-subheadline {
  max-width: 640px;
  margin: 24px auto 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (min-width: 769px) {
  .hero-image {
    object-position: 30% 25%;
    transform-origin: 20% 30%;
  }

  .hero-content {
    text-align: left;
    align-items: flex-start;
    margin-left: 0;
    margin-right: auto;
    padding-left: 100px;
    max-width: 55%;
  }

  .hero-subheadline {
    margin-left: 0;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero-image {
    object-position: 30% 25%;
  }

  .hero {
    min-height: 520px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ───────── HERO SEAL MASCOT ───────── */

.hero-seal {
  position: absolute;
  bottom: -20px;
  right: 5%;
  width: 180px;
  z-index: 3;
  opacity: 0;
  transform: translateY(0);
  animation: sealEntrance 1s ease-out 0.5s forwards, sealFloat 3s ease-in-out 1.5s infinite;
  pointer-events: none;
}


@keyframes sealEntrance {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  60% {
    opacity: 1;
    transform: translateY(-15px);
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.membership-seal {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 180px;
  z-index: 3;
  opacity: 0;
  transform: translateY(0);
  animation: sealEntrance 1s ease-out 0.5s forwards, sealFloat 3s ease-in-out 1.5s infinite;
  pointer-events: none;
}

.membership-section {
  overflow: visible !important;
}

/* ───────── HIGHLIGHT BANNER ───────── */

.highlight-banner {
  background: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  overflow: hidden;
}

.banner-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: max-content;
  animation: bannerScroll 14s linear infinite;
}

.banner-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  flex-shrink: 0;
}

@keyframes bannerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .highlight-banner {
    padding: 16px 0;
  }

  .banner-track {
    animation-duration: 10s;
  }

  .banner-item {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

/* ───────── EXPERIENCE SECTION ───────── */

.experience-section {
  position: relative;
  padding: 64px 24px 48px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bubble) 50%, var(--white) 100%);
  overflow: hidden;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.vs-col {
  padding: 40px 36px;
  border-radius: 20px;
  position: relative;
  animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 40%, 100% {
    transform: scale(1);
    box-shadow: none;
  }
  20% {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
}

.vs-old {
  background: rgba(230, 57, 70, 0.06);
  border: 2px solid rgba(230, 57, 70, 0.15);
  animation-delay: 0s;
}

.vs-shine {
  background: rgba(42, 110, 165, 0.06);
  border: 2px solid rgba(42, 110, 165, 0.15);
  animation-delay: 2s;
}

.vs-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.vs-badge-old {
  background: var(--seal-red);
  color: var(--white);
}

.vs-badge-shine {
  background: var(--seal-blue);
  color: var(--white);
}

.vs-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.vs-title-old {
  color: var(--seal-red);
}

.vs-title-shine {
  color: var(--seal-blue);
}

.vs-body {
  padding: 0;
}

.vs-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-text);
  margin-bottom: 14px;
}

.vs-text:last-child {
  margin-bottom: 0;
}

.vs-emphasis {
  font-weight: 600;
  font-style: italic;
  color: var(--seal-red);
  margin-top: 8px;
}

.vs-strong-red {
  color: var(--seal-red);
  font-weight: 600;
}

.vs-strong-blue {
  color: var(--seal-blue);
  font-weight: 600;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.vs-vs {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--ocean);
  background: var(--white);
  border: 3px solid var(--ocean);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15, 61, 102, 0.15);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .vs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vs-col {
    padding: 28px 24px;
  }

  .vs-divider {
    padding: 0;
    justify-content: center;
  }

  .vs-title {
    font-size: 20px;
  }
}

/* ───────── SHARED SECTION STYLES ───────── */

.section-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 48px;
  color: var(--ocean);
  text-transform: uppercase;
}

/* ───────── BUBBLES ───────── */

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(217, 241, 247, 0.7), rgba(143, 211, 232, 0.25));
  border: 1.5px solid rgba(143, 211, 232, 0.3);
  pointer-events: none;
  z-index: 0;
}

.bubble-1 { width: 120px; height: 120px; top: -30px; left: 5%; animation: floatBubble 8s ease-in-out infinite; }
.bubble-2 { width: 80px; height: 80px; top: 60%; right: 3%; animation: floatBubble 6s ease-in-out infinite 1s; }
.bubble-3 { width: 50px; height: 50px; bottom: 10%; left: 15%; animation: floatBubble 7s ease-in-out infinite 0.5s; }
.bubble-4 { width: 35px; height: 35px; top: 40%; left: 55%; animation: floatBubble 9s ease-in-out infinite 2s; }
.bubble-5 { width: 65px; height: 65px; bottom: -20px; right: 20%; animation: floatBubble 7s ease-in-out infinite 1.5s; }
.bubble-6 { width: 90px; height: 90px; top: -20px; right: 8%; animation: floatBubble 8s ease-in-out infinite 0.8s; }
.bubble-7 { width: 55px; height: 55px; bottom: 15%; left: 4%; animation: floatBubble 6s ease-in-out infinite 1.2s; }
.bubble-8 { width: 100px; height: 100px; top: 10%; left: 2%; animation: floatBubble 9s ease-in-out infinite; }
.bubble-9 { width: 45px; height: 45px; bottom: 5%; right: 6%; animation: floatBubble 7s ease-in-out infinite 2s; }
.bubble-10 { width: 130px; height: 130px; top: -40px; right: 5%; animation: floatBubble 8s ease-in-out infinite; }
.bubble-11 { width: 70px; height: 70px; bottom: 20%; left: 8%; animation: floatBubble 6s ease-in-out infinite 1s; }
.bubble-12 { width: 40px; height: 40px; top: 50%; left: 45%; animation: floatBubble 10s ease-in-out infinite 0.5s; }
.bubble-15 { width: 120px; height: 120px; top: -30px; right: 40px; left: auto; animation: floatBubble 13s ease-in-out infinite; }
.bubble-16 { width: 70px; height: 70px; top: 60%; left: -20px; animation: floatBubble 11s ease-in-out infinite 1s; }
.bubble-17 { width: 50px; height: 50px; top: 30%; right: 15%; left: auto; animation: floatBubble 9s ease-in-out infinite 2s; }
.bubble-18 { width: 90px; height: 90px; bottom: 10%; left: 10%; top: auto; animation: floatBubble 14s ease-in-out infinite 0.5s; }
.bubble-19 { width: 35px; height: 35px; top: 20%; left: 80%; animation: floatBubble 10s ease-in-out infinite 3s; }

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-18px) scale(1.08); opacity: 0.9; }
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  border-radius: 12px;
  border: 2px dashed var(--aqua);
  background: var(--bubble);
  color: var(--seal-blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.image-placeholder.light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.95);
  height: 100%;
  min-height: 300px;
}

/* ───────── BENEFITS SECTION ───────── */

.benefits-section {
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bubble) 100%);
  overflow: hidden;
}

.benefits-headline {
  position: relative;
  z-index: 1;
}

.benefits-subtitle {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--navy-text);
  max-width: 650px;
  margin: -24px auto 20px;
  line-height: 1.6;
}

.benefits-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.benefits-image-col {
  position: relative;
}

.benefits-image-slot {
  width: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: visible;
}

.benefits-image-slot .image-placeholder {
  height: 500px;
}

.benefits-img {
  width: 130%;
  max-width: none;
  margin-left: -15%;
  object-fit: contain;
  animation: zoomInBenefit 1s ease-out forwards;
}

@keyframes zoomInBenefit {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.benefits-list-col {
  display: flex;
  flex-direction: column;
}

.benefits-list {
  list-style: none;
  margin-bottom: 36px;
}

.benefit-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: none;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-list-item.benefit-visible {
  opacity: 1;
  transform: translateX(0);
}

.benefit-list-item:last-child {
  border-bottom: none;
}

.benefit-list-item:nth-child(1) { transition-delay: 0s; }
.benefit-list-item:nth-child(2) { transition-delay: 0.15s; }
.benefit-list-item:nth-child(3) { transition-delay: 0.15s; }
.benefit-list-item:nth-child(4) { transition-delay: 0.3s; }
.benefit-list-item:nth-child(5) { transition-delay: 0.3s; }
.benefit-list-item:nth-child(6) { transition-delay: 0.45s; }
.benefit-list-item:nth-child(7) { transition-delay: 0.45s; }
.benefit-list-item:nth-child(8) { transition-delay: 0.6s; }

.benefit-check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--seal-blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ocean);
}

.benefits-cta {
  align-self: flex-start;
  font-size: 15px;
  padding: 14px 32px;
}

/* ───────── 3 EASY STEPS SECTION ───────── */

.steps-section {
  position: relative;
  overflow: hidden;
  background: url('steps-bg.webp') center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 36, 64, 0.75) 0%, rgba(10, 36, 64, 0.85) 100%);
  z-index: 1;
}

.steps-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.steps-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.step-card {
  text-align: center;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(143, 211, 232, 0.2);
  border-radius: 16px;
  transition: background 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: stepFadeIn 0.6s ease forwards, stepPulse 6s ease-in-out 1s infinite;
}

.step-card:nth-child(1) { animation-delay: 0.1s, 1s; }
.step-card:nth-child(2) { animation-delay: 0.3s, 3s; }
.step-card:nth-child(3) { animation-delay: 0.5s, 5s; }

@keyframes stepFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stepPulse {
  0%, 27%, 100% {
    transform: scale(1);
    box-shadow: none;
  }
  13% {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
}

.step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.step-card:hover .step-number {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 20px rgba(143, 211, 232, 0.5);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ocean);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
}

/* ───────── SERVICE MENU SECTION ───────── */

.service-menu-section {
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--bubble) 0%, var(--white) 100%);
  overflow: hidden;
}

.menu-subtitle {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--navy-text);
  max-width: 600px;
  margin: -24px auto 48px;
  line-height: 1.6;
}

.menu-packages-slot {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-placeholder-card {
  position: relative;
  border-radius: 16px;
  border: 2px dashed var(--aqua);
  background: var(--white);
  padding: 60px 32px;
  text-align: center;
  overflow: hidden;
}

.placeholder-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(143, 211, 232, 0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.placeholder-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--seal-blue);
  letter-spacing: 0.05em;
}

/* ───────── MEMBERSHIP SECTION ───────── */

.membership-section {
  position: relative;
  overflow: hidden;
  background: url('membership-bg.webp') center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 36, 64, 0.75) 0%, rgba(10, 36, 64, 0.85) 100%);
  z-index: 1;
}

.membership-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
}

.membership-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 16px;
}

.membership-headline-big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.membership-underline {
  width: 80px;
  height: 4px;
  background: var(--aqua);
  border-radius: 2px;
  margin: 0 auto 28px;
}

.membership-lead {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--aqua);
  margin-bottom: 12px;
  line-height: 1.5;
}

.membership-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
}

.membership-perks {
  list-style: none;
  margin-bottom: 36px;
  text-align: left;
  display: inline-block;
}

.membership-perks .perk-item {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.membership-perks .perk-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ocean);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.membership-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.15em;
  padding: 16px 36px;
  background: var(--aqua);
  color: var(--white);
  border: 3px solid #d0d0d0;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease;
  position: relative;
}

.membership-cta:hover {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8, #a8a8a8, #d8d8d8);
  color: #0a2440;
}

/* ───────── FINAL CTA SECTION ───────── */

.final-cta-section {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bubble) 50%, var(--white) 100%);
  text-align: center;
  overflow: hidden;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-headline {
  font-size: 44px;
  margin-bottom: 24px;
}

.final-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy-text);
  margin-bottom: 16px;
}

.final-cta-btn {
  margin-top: 32px;
  font-size: 16px;
  padding: 18px 40px;
}

/* ───────── LOCATION SECTION ───────── */

.location-section {
  padding: 80px 24px;
  background: var(--white);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.location-headline {
  text-align: left;
  margin-bottom: 32px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--navy-text);
}

.location-icon {
  color: var(--seal-blue);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.location-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--seal-blue);
  font-style: italic;
}

.map-slot {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 61, 102, 0.1);
}

/* ───────── FOOTER ───────── */

/* ───────── FAQ SECTION ───────── */

.faq-section {
  position: relative;
  padding: 80px 24px;
  background: var(--white);
  overflow: hidden;
}

.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.faq-item {
  border-bottom: 1px solid rgba(143, 211, 232, 0.3);
}

.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ocean);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 700;
  color: var(--seal-blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: "\2212";
  transform: rotate(180deg);
}

.faq-answer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy-text);
  padding: 0 0 20px;
  margin: 0;
}

/* ───────── FOOTER ───────── */

.site-footer {
  background: var(--white);
  padding: 48px 24px 0;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ocean);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: var(--aqua);
}

.footer-nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(143, 211, 232, 0.3);
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(15, 61, 102, 0.5);
  margin-bottom: 4px;
}

.footer-policy-link {
  color: rgba(15, 61, 102, 0.5);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-policy-link:hover {
  color: var(--seal-blue);
}

/* ───────── RESPONSIVE — ALL NEW SECTIONS ───────── */

@media (max-width: 768px) {
  .section-headline {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefits-image-slot,
  .benefits-image-slot .image-placeholder {
    min-height: 280px;
    height: 280px;
  }

  .benefits-img {
    width: 110%;
    margin-left: -5%;
  }

  .benefits-cta {
    align-self: center;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .membership-content {
    grid-template-columns: 1fr;
    padding: 48px 16px;
  }

  .membership-headline {
    text-align: center;
  }

  .membership-image-col {
    order: -1;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .location-headline {
    text-align: center;
  }

  .final-headline {
    font-size: 32px;
  }
}

.perk-item {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.perk-item.perk-visible {
  opacity: 1;
  transform: translateX(0);
}

.perk-item:nth-child(1) { transition-delay: 0s; }
.perk-item:nth-child(2) { transition-delay: 0.15s; }
.perk-item:nth-child(3) { transition-delay: 0.3s; }
.perk-item:nth-child(4) { transition-delay: 0.45s; }

@media (max-width: 768px) {
  .logo-wrapper {
    padding-top: 12px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .hero {
    padding-bottom: 120px;
  }

  .membership-section {
    padding-bottom: 120px;
  }
}
