/* ==================================================
   VILLARREAL KOSOVA — Design System & Premium Styles
   ================================================== */

/* ---------- Phase 1: Design Tokens ---------- */
:root {
  --navy: #002A54;
  --yellow: #FCDF51;
  --white: #FFFFFF;
  --warm-neutral: #F6F4EE;
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-strong: rgba(0, 0, 0, 0.65);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-soft: 0 4px 20px rgba(0, 42, 84, 0.06);
  --shadow-medium: 0 10px 40px rgba(0, 42, 84, 0.1);
  --shadow-strong: 0 20px 60px rgba(0, 42, 84, 0.14);
  --shadow-premium: 0 12px 48px rgba(0, 42, 84, 0.12);

  --container: 1280px;
  --section-space: clamp(4rem, 6vw, 5.5rem);

  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-smooth: 280ms ease-out;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --top-bar-height: 38px;
  --navbar-main-min-height: 78px;
  --nav-desktop-min: 992px;
  --nav-surface: #faf9f6;
  --nav-border-subtle: rgba(0, 42, 84, 0.09);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--warm-neutral);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.section { padding-top: var(--section-space); padding-bottom: var(--section-space); }

/* ---------- Typography ---------- */
.font-heading { font-family: var(--font-heading); }

/* Homepage — unified section headings (elite sports identity) */
.hero-headline-line1,
.hero-headline-line2,
.urgency-title,
.urgency-card-title,
.coach-story-title,
.about-title,
.trust-title,
.experience-title,
.know-more-title,
.contact-enquiry-title {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.06;
}

/* ---------- Site header (sticky stack) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ---------- Header: utility bar (row 1) ---------- */
.top-bar {
  height: var(--top-bar-height);
  min-height: var(--top-bar-height);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: var(--yellow);
  color: var(--navy);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: var(--container);
  padding-top: 0;
  padding-bottom: 0;
}
.top-bar-email {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(100%, 14rem);
}
.top-bar-email:hover { opacity: 0.82; }
.top-bar-social { display: flex; align-items: center; gap: 0.5rem; }
.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  color: var(--navy);
  opacity: 0.88;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
}
.top-bar-social a:hover { opacity: 1; transform: translateY(-1px); }
.top-bar-social svg { width: 0.9rem; height: 0.9rem; pointer-events: none; }
.top-bar-social .top-bar-login-icon {
  margin-left: 0.1rem;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 42, 84, 0.3);
  background: rgba(255, 255, 255, 0.24);
  opacity: 1;
}
.top-bar-social .top-bar-login-icon svg {
  width: 0.92rem;
  height: 0.92rem;
}
.top-bar-social .top-bar-login-icon:hover {
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(0, 42, 84, 0.48);
}

/* ---------- Header: main navbar (row 2) ---------- */
.navbar {
  position: relative;
  z-index: 1;
  background: var(--nav-surface);
  border-bottom: 1px solid var(--nav-border-subtle);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 4px 24px rgba(0, 42, 84, 0.06);
  display: flex;
  align-items: stretch;
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}
.navbar.navbar-scrolled {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 8px 28px rgba(0, 42, 84, 0.08);
  border-bottom-color: rgba(0, 42, 84, 0.12);
}
.navbar-inner {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  width: 100%;
  max-width: var(--container);
  min-height: var(--navbar-main-min-height);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.navbar-nav-wrap {
  display: none;
  justify-content: center;
  min-width: 0;
}
.navbar-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.navbar-apply-mobile {
  display: none;
}
@media (min-width: 992px) {
  .navbar-nav-wrap { display: flex; }
  .navbar-actions { display: flex; }
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo { width: 52px; height: 64px; position: relative; flex-shrink: 0; }
.navbar-logo img { width: 100%; height: 100%; object-fit: contain; }
@media (min-width: 768px) {
  .navbar-logo { width: 60px; height: 72px; }
}
.navbar-brand-text { display: none; }
.navbar-brand-text span {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
}
.navbar-brand-text .line1 { font-size: 1.25rem; }
.navbar-brand-text .line2 { font-size: 0.875rem; }
@media (min-width: 768px) {
  .navbar-brand-text .line1 { font-size: 1.5rem; }
  .navbar-brand-text .line2 { font-size: 1rem; }
}

.navbar-brand--main-logos {
  gap: 0;
}
.navbar-brand--main-logos .navbar-logo {
  width: 170px;
  height: 78px;
}
.navbar-brand--main-logos .navbar-logo .navbar-logo-img {
  object-position: center;
}
@media (min-width: 768px) {
  .navbar-brand--main-logos .navbar-logo {
    width: 196px;
    height: 88px;
  }
}

.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  border-radius: 10px;
  transition: background var(--transition-fast), color var(--transition-fast);
  justify-self: end;
  grid-column: 3;
}
.navbar-toggle:hover { background: rgba(0, 42, 84, 0.06); }
.navbar-toggle svg { width: 1.35rem; height: 1.35rem; }

@media (max-width: 991px) {
  .navbar-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.5rem;
    min-height: 72px;
  }
  .navbar-brand {
    grid-column: 1;
    min-width: 0;
    gap: 0.4rem;
  }
  .navbar-apply-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    justify-self: end;
  }
  .navbar-toggle { display: flex; }
  .navbar-nav-wrap,
  .navbar-actions {
    display: none !important;
  }
  .navbar-brand--main-logos .navbar-logo {
    width: 142px;
    height: 68px;
  }
}

@media (min-width: 992px) {
  .navbar-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(0.65rem, 1.5vw, 1.25rem);
    align-items: center;
    min-height: var(--navbar-main-min-height);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .navbar-brand {
    justify-self: start;
    grid-column: 1;
  }
  .navbar-brand--main-logos {
    position: relative;
    left: -5%;
  }
  .navbar-nav-wrap {
    grid-column: 2;
    justify-self: center;
  }
  .navbar-actions {
    grid-column: 3;
    justify-self: end;
  }
  .navbar-toggle { display: none; }
  .navbar-apply-mobile { display: none !important; }
}

@media (max-width: 380px) {
  .top-bar-email { max-width: 9rem; font-size: 0.625rem; }
  .navbar-brand--main-logos .navbar-logo { width: 120px; }
}

/* Nav action buttons (Login / Apply) */
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.nav-btn--outline {
  color: var(--navy);
  background: transparent;
  border: 1.5px solid rgba(0, 42, 84, 0.28);
  box-shadow: none;
}
.nav-btn--outline:hover {
  border-color: var(--navy);
  background: rgba(0, 42, 84, 0.04);
}
.nav-btn--primary {
  color: var(--navy);
  background: var(--yellow);
  border: 1.5px solid rgba(0, 42, 84, 0.06);
  box-shadow: 0 2px 12px rgba(252, 223, 81, 0.35);
}
.nav-btn--primary:hover {
  background: #fde047;
  box-shadow: 0 4px 18px rgba(252, 223, 81, 0.45);
  transform: translateY(-1px);
}
.nav-btn--compact {
  padding: 0.42rem 0.75rem;
  font-size: 0.625rem;
  letter-spacing: 0.07em;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 1.5vw, 1.35rem);
}
@media (min-width: 992px) {
  .navbar-nav {
    flex-wrap: nowrap;
    gap: 1.125rem;
  }
}
.navbar-nav .navbar-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0.25rem 0;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.2;
  color: rgba(0, 42, 84, 0.82);
  position: relative;
  transition: color var(--transition-fast);
  min-height: 1em;
}
.navbar-nav a.navbar-nav-item {
  text-decoration: none;
}
.navbar-nav .nav-dropdown-trigger.navbar-nav-item {
  gap: 0.3rem;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  color: rgba(0, 42, 84, 0.82);
}
.navbar-nav .navbar-nav-item:hover {
  color: var(--navy);
}
.navbar-nav .navbar-nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--yellow);
  opacity: 0;
  transition: width var(--transition-smooth), opacity var(--transition-fast);
}
.navbar-nav .navbar-nav-item:hover::after {
  width: 100%;
  opacity: 1;
}
.navbar-nav a.navbar-nav-item.nav-link-active {
  color: var(--navy);
}
.navbar-nav a.navbar-nav-item.nav-link-active::after {
  width: 100%;
  opacity: 1;
}
.navbar-nav .nav-dropdown-trigger.navbar-nav-item.nav-link-active {
  color: var(--navy);
}
.navbar-nav .nav-dropdown-trigger.navbar-nav-item.nav-link-active::after {
  width: 100%;
  opacity: 1;
}

/* Nav dropdown (desktop: hover; mobile: .is-open + JS) */
.nav-dropdown {
  position: relative;
}
.navbar-nav .nav-dropdown {
  display: flex;
  align-items: center;
}
.navbar-nav .nav-dropdown:hover .nav-dropdown-trigger.navbar-nav-item::after,
.navbar-nav .nav-dropdown-trigger.navbar-nav-item:focus-visible::after {
  width: 100%;
  opacity: 1;
}
.navbar-nav .nav-dropdown-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  color: rgba(0, 42, 84, 0.55);
  transition: transform var(--transition-fast);
}
.navbar-nav .nav-dropdown:hover .nav-dropdown-chevron,
.navbar-nav .nav-dropdown:focus-within .nav-dropdown-chevron {
  color: var(--navy);
}
.navbar-nav .nav-dropdown-chevron svg {
  display: block;
}
.navbar-nav .nav-dropdown:hover .nav-dropdown-chevron,
.navbar-nav .nav-dropdown:focus-within .nav-dropdown-chevron {
  transform: rotate(180deg);
}
.navbar-nav .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: max-content;
  padding: 12px 16px;
  margin: 0;
  margin-top: 0.35rem;
  list-style: none;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 120;
}
.navbar-nav .nav-dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.navbar-nav .nav-dropdown:hover .nav-dropdown-menu,
.navbar-nav .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar-nav .nav-dropdown-item {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  border-radius: var(--radius-sm);
  margin: 0 -4px;
  padding-left: 8px;
  padding-right: 8px;
}
.navbar-nav .nav-dropdown-item:hover,
.navbar-nav .nav-dropdown-item:focus-visible {
  color: var(--navy);
  background-color: rgba(252, 223, 81, 0.25);
}

/* Mobile dropdown (inline in mobile menu) */
.nav-dropdown--mobile {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-dropdown-trigger--mobile {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  padding: 0.75rem 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  text-align: left;
  transition: opacity var(--transition-fast);
}
.nav-dropdown-trigger--mobile:hover { opacity: 0.9; }
.nav-dropdown-chevron--mobile {
  display: inline-flex;
  color: var(--yellow);
  flex-shrink: 0;
  margin-left: auto;
  transition: transform var(--transition-fast);
}
.nav-dropdown--mobile.is-open .nav-dropdown-chevron--mobile {
  transform: rotate(180deg);
}
.nav-dropdown-menu--mobile {
  display: none;
  padding: 0 0 0.75rem 0.75rem;
}
.nav-dropdown--mobile.is-open .nav-dropdown-menu--mobile {
  display: block;
}
.nav-dropdown-menu--mobile .nav-dropdown-item {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  border-radius: var(--radius-sm);
}
.nav-dropdown-menu--mobile .nav-dropdown-item:hover,
.nav-dropdown-menu--mobile .nav-dropdown-item:focus-visible {
  color: var(--yellow);
  background-color: rgba(255, 255, 255, 0.06);
}
@media (max-width: 991px) {
  .navbar-nav .nav-dropdown-menu { display: none !important; }
}

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--nav-border-subtle);
  background: rgba(255, 255, 255, 0.85);
}
.lang-switcher--nav {
  box-shadow: 0 1px 2px rgba(0, 42, 84, 0.04);
}
.lang-switcher--mobile-menu {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
}
.lang-btn {
  padding: 0.28rem 0.55rem;
  min-width: 2.25rem;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  background: transparent;
  color: rgba(0, 42, 84, 0.45);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.lang-switcher--mobile-menu .lang-btn {
  color: rgba(255, 255, 255, 0.65);
}
.lang-btn:hover {
  background: rgba(0, 42, 84, 0.05);
  color: var(--navy);
}
.lang-switcher--mobile-menu .lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}
.lang-btn.lang-active {
  background: var(--yellow);
  color: var(--navy);
}
.lang-btn.lang-active:hover {
  background: var(--yellow);
  color: var(--navy);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu.is-open { display: block; }
@media (min-width: 992px) { .mobile-menu { display: none !important; } }
.mobile-menu-inner { padding: 1rem; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity var(--transition-fast);
}
.mobile-menu a:hover { opacity: 0.9; }
.mobile-menu a.nav-link-active { border-left: 3px solid var(--yellow); padding-left: 0.5rem; }
.mobile-menu .nav-dropdown-trigger--mobile.nav-link-active {
  border-left: 3px solid var(--yellow);
  padding-left: 0.5rem;
}
.mobile-menu a.mobile-menu-apply {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  text-align: center;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 20px rgba(252, 223, 81, 0.25);
}
.mobile-menu a.mobile-menu-apply:hover {
  opacity: 1;
  filter: brightness(1.03);
}
.mobile-menu a.mobile-menu-login {
  border: 1.5px solid rgba(252, 223, 81, 0.65);
  border-radius: 10px;
  margin-top: 0.65rem;
  text-align: center;
  background: transparent;
  color: var(--yellow);
  padding: 0.75rem 1rem;
}
.mobile-menu-lang { padding-top: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.mobile-menu-lang span { font-size: 12px; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; }

/* ---------- Admin ---------- */
body.admin-page {
  background: linear-gradient(180deg, #001b35 0%, #002a54 35%, #f1eee6 35%, #f1eee6 100%);
  color: var(--navy);
  min-height: 100vh;
}
.admin-main {
  min-height: 100vh;
  padding: 0;
}
.admin-auth-wrap {
  max-width: 560px;
  margin: 3rem auto;
}
.admin-auth-card {
  border-top: 6px solid var(--yellow);
}
.admin-dashboard-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.admin-sidebar {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.admin-sidebar-logo {
  width: 40px;
  height: 48px;
  object-fit: contain;
}
.admin-sidebar-brand-text span {
  display: block;
  color: var(--yellow);
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.1;
}
.admin-sidebar-nav {
  display: grid;
  gap: 0.65rem;
}
.admin-sidebar-link {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-sm);
  text-align: left;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
}
.admin-sidebar-link.is-active {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.admin-sidebar-footer {
  margin-top: auto;
}
.admin-dashboard-content {
  background: var(--warm-neutral);
  padding: 1.25rem;
}
.admin-dashboard-header {
  background: var(--white);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}
.admin-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.admin-subtitle {
  margin: 0 0 1rem;
  color: rgba(0, 42, 84, 0.75);
}
.admin-form {
  display: grid;
  gap: 0.75rem;
}
.admin-form .admin-row {
  margin-top: 0.15rem;
}
.admin-applicant-filters {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 0.75rem;
  margin-bottom: 0.55rem;
  align-items: end;
}
.admin-applicant-filters__field {
  min-width: 0;
}
.admin-applicant-filters__field > input,
.admin-applicant-filters__field > select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.admin-applicant-filters__field--search {
  grid-column: 1 / -1;
}
.admin-applicant-filters label {
  margin-bottom: 0.2rem;
  font-size: 0.73rem;
  letter-spacing: 0.045em;
}
.admin-applicant-filters input,
.admin-applicant-filters select {
  width: 82%;
  height: 42px;
  padding: 0.5rem 0.66rem;
}
.admin-applicant-filters__actions {
  grid-column: 1 / -1;
  justify-content: flex-end;
  margin-top: 0;
}
.admin-applicant-filters__actions .cta-btn {
  padding: 0.56rem 0.82rem;
  font-size: 0.75rem;
}
@media (min-width: 1200px) {
  .admin-applicant-filters {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.1fr);
    width: 100%;
    margin-left: 0;
  }
  .admin-applicant-filters__field--search {
    grid-column: span 2;
  }
  .admin-applicant-filters__actions {
    grid-column: span 1;
    justify-content: flex-end;
    align-self: end;
  }
}
@media (max-width: 860px) {
  .admin-applicant-filters {
    grid-template-columns: 1fr;
  }
  .admin-applicant-filters input,
  .admin-applicant-filters select {
    width: 100%;
  }
  .admin-applicant-filters__field--search,
  .admin-applicant-filters__actions {
    grid-column: span 1;
  }
  .admin-applicant-filters__actions {
    justify-content: stretch;
  }
  .admin-applicant-filters__actions .cta-btn {
    width: 100%;
  }
}
.admin-form label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 42, 84, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  font-family: var(--font-body);
}
.admin-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.admin-row .cta-btn {
  padding: 0.7rem 1rem;
}
.admin-list-actions {
  display: flex;
  justify-content: flex-end;
  margin: 0.35rem 0 0.6rem;
}
.admin-muted {
  color: rgba(0, 42, 84, 0.7);
  font-size: 0.9rem;
}
.admin-hidden {
  display: none !important;
}
.admin-list {
  display: grid;
  gap: 0.8rem;
  max-height: 56vh;
  overflow: auto;
}
.admin-list--table {
  display: block;
  max-height: none;
  overflow: visible;
}
.admin-table-wrap {
  width: 100%;
  max-height: 62vh;
  overflow: auto;
  border: 1px solid rgba(0, 42, 84, 0.14);
  border-radius: var(--radius-sm);
  background: #fff;
}
.admin-applicants-table {
  width: 100%;
  min-width: 1320px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  color: rgba(0, 42, 84, 0.9);
}
.admin-applicants-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fafc;
  color: rgba(0, 42, 84, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.82rem 0.8rem;
  border-bottom: 1px solid rgba(0, 42, 84, 0.16);
  text-align: left;
  white-space: nowrap;
}
.admin-table-sort-btn {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 700;
  color: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}
.admin-table-sort-btn:hover {
  opacity: 0.86;
}
.admin-applicants-table tbody td {
  padding: 0.92rem 0.8rem;
  border-bottom: 1px solid rgba(0, 42, 84, 0.08);
  vertical-align: middle;
  white-space: nowrap;
}
.admin-applicants-table tbody tr:hover td {
  background: rgba(0, 42, 84, 0.02);
}
.admin-applicants-table tbody tr.is-active td {
  background: rgba(252, 223, 81, 0.12);
}
.admin-player-cell {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  cursor: pointer;
  color: rgba(0, 42, 84, 0.9);
  transition: color var(--transition-fast);
}
.admin-applicants-table tbody td[data-action="view"]:hover .admin-player-cell {
  color: var(--navy);
}
.admin-applicants-table tbody td[data-action="view"]:hover .admin-player-cell span:first-child {
  text-decoration: none;
}
.admin-note-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 0.14rem 0.34rem;
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6e4f00;
  background: rgba(252, 223, 81, 0.28);
  border: 1px solid rgba(227, 180, 0, 0.35);
}
.admin-applicants-details-row td {
  padding: 0.9rem;
  background: #fff;
}
.admin-applicants-details {
  gap: 0.65rem;
  max-width: 680px;
}
.admin-applicants-details .admin-row {
  margin-top: 0.2rem;
}
.admin-applicants-table .cta-btn {
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  padding: 0.48rem 0.72rem;
  min-width: 82px;
  white-space: nowrap;
}
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 46, 0.55);
}
.admin-modal__panel {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid rgba(0, 42, 84, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(2, 22, 52, 0.22);
  padding: 1rem 1rem 0.95rem;
}
.admin-modal__panel .admin-title {
  margin-bottom: 0.35rem;
}
.admin-modal__panel .admin-subtitle {
  margin-bottom: 0.85rem;
}
.admin-modal__actions {
  justify-content: flex-end;
}
.admin-list-item {
  border: 1px solid rgba(0, 42, 84, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  background: #fff;
}
.admin-list-item.is-active {
  border-color: var(--navy);
  box-shadow: 0 0 0 1px rgba(0, 42, 84, 0.25);
}
.admin-list-item h4 {
  margin: 0 0 0.25rem;
}
.admin-chip {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.admin-chip--pending { background: rgba(255, 196, 0, 0.2); color: #6e4f00; }
.admin-chip--registered { background: rgba(25, 135, 84, 0.15); color: #0d5f38; }
.admin-chip--cancelled { background: rgba(220, 53, 69, 0.14); color: #8c1d2b; }
.admin-payment-summary {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.admin-payment-card {
  border: 1px solid rgba(0, 42, 84, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background: rgba(252, 223, 81, 0.12);
}
.admin-payment-card h4 {
  margin: 0 0 0.25rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.8rem;
}
.admin-payment-card p {
  margin: 0;
  font-weight: 700;
}
.admin-analytics-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.admin-kpi-card {
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  background: linear-gradient(140deg, var(--navy) 0%, #00386f 100%);
  color: var(--yellow);
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.admin-kpi-card h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(252, 223, 81, 0.9);
}
.admin-kpi-card p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
}
.admin-analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.admin-analytics-card {
  border: 1px solid rgba(0, 42, 84, 0.16);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 0.8rem;
}
.admin-analytics-card .admin-title {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.admin-analytics-card--full {
  grid-column: 1 / -1;
}
.admin-analytics-card canvas {
  width: 100% !important;
  height: 240px !important;
}
@media (max-width: 900px) {
  .admin-main {
    padding: 1rem 0.75rem;
  }
  .admin-dashboard-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    border-bottom: 3px solid var(--yellow);
    gap: 1rem;
  }
  .admin-sidebar-footer {
    margin-top: 0;
  }
  .admin-analytics-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 52rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 42, 84, 0.55) 0%, rgba(0, 26, 52, 0.78) 50%, rgba(0, 18, 40, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 42, 84, 0.92) 0%, rgba(0, 42, 84, 0.72) 38%, rgba(0, 42, 84, 0.35) 62%, rgba(0, 42, 84, 0.12) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: clamp(2.5rem, 7vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
}
.hero-content {
  max-width: 36.5rem;
  margin: 0;
  padding: 0;
}
.hero-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.hero-headline {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  animation: heroFadeIn 0.75s ease-out 0.15s both;
}
.hero-headline-line1 {
  display: block;
  font-size: clamp(1.85rem, 4.5vw, 3.35rem);
}
.hero-headline-line2 {
  display: block;
  font-size: clamp(1.35rem, 3.1vw, 2.05rem);
  color: rgba(255, 255, 255, 0.96);
}
.hero-supporting {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 1.25rem;
  max-width: 34rem;
  animation: heroFadeIn 0.65s ease-out 0.35s both;
}
.hero-meta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.75rem;
  line-height: 1.5;
  animation: heroFadeIn 0.6s ease-out 0.45s both;
}
.hero-cta-wrap {
  margin-bottom: 1.85rem;
  animation: heroFadeIn 0.6s ease-out 0.55s both;
}
.hero-trust-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: heroFadeIn 0.6s ease-out 0.7s both;
}
.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.hero-trust-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.12rem;
  color: var(--yellow);
}
.hero-trust-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-trust-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
}
.hero-microcopy {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  max-width: 28rem;
  letter-spacing: 0.02em;
  animation: heroFadeIn 0.55s ease-out 0.82s both;
}
@media (min-width: 600px) {
  .hero-trust-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem 1.75rem;
  }
  .hero-trust-item {
    flex: 1 1 calc(33.333% - 1.2rem);
    min-width: 9.5rem;
    max-width: 14rem;
  }
}
@media (max-width: 479px) {
  .hero-cta-single {
    width: 100%;
    max-width: 20rem;
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Camp info strip (under hero) ---------- */
.camp-info-strip {
  background: var(--navy);
  padding: 1.5rem 0;
}
.camp-info-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.camp-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.35rem 1rem;
  background: var(--navy);
}
.camp-info-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--yellow);
}
.camp-info-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.camp-info-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.camp-info-label {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.camp-info-value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .camp-info-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 479px) {
  .camp-info-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .camp-info-card {
    padding: 1.15rem 0.85rem;
  }
}

/* ---------- Urgency (limited spots) ---------- */
.urgency-section {
  --urgency-pct: 70%;
  background: linear-gradient(168deg, #000d1a 0%, #001a35 38%, var(--navy) 72%, #001228 100%);
  color: var(--white);
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}
.urgency-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.urgency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .urgency-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}
.urgency-copy {
  min-width: 0;
}
.urgency-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin: 0 0 0.65rem;
}
.urgency-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 1rem;
  max-width: 32rem;
}
.urgency-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.urgency-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}
.urgency-list-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2em;
  color: var(--yellow);
}
.urgency-list-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.urgency-visual {
  min-width: 0;
}
.urgency-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.urgency-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  color: var(--white);
  margin: 0 0 0.45rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.urgency-card-sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 0.5rem;
}
.urgency-card-trust {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252, 223, 81, 0.72);
  margin: 0 0 1.15rem;
  line-height: 1.35;
}
.urgency-progress-track {
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.55);
  margin-bottom: 1.35rem;
}
.urgency-cta-note {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin: 0.65rem 0 0;
  text-align: center;
  line-height: 1.35;
}
.urgency-progress-fill {
  height: 100%;
  width: 0;
  max-width: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      transparent calc(100% - 14px),
      rgba(255, 255, 255, 0.38) 100%
    ),
    linear-gradient(90deg, #e8c520 0%, var(--yellow) 42%, #fde047 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset -10px 0 14px -6px rgba(255, 255, 255, 0.35);
  transition: width 1.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
  will-change: width;
}
.urgency-section--visible .urgency-progress-fill {
  width: var(--urgency-pct, 70%);
  transition-delay: 0.12s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset -10px 0 14px -6px rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(252, 223, 81, 0.25),
    6px 0 18px rgba(252, 223, 81, 0.55);
}
.urgency-section--visible[data-urgency-nearly-full] .urgency-progress-fill {
  animation: urgencyGlowPulse 2.4s ease-in-out 1.35s infinite;
}
@keyframes urgencyGlowPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset -10px 0 14px -6px rgba(255, 255, 255, 0.35),
      0 0 0 1px rgba(252, 223, 81, 0.28),
      6px 0 18px rgba(252, 223, 81, 0.5);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.25),
      inset -10px 0 16px -6px rgba(255, 255, 255, 0.42),
      0 0 0 1px rgba(252, 223, 81, 0.35),
      8px 0 26px rgba(252, 223, 81, 0.72);
  }
}
@media (prefers-reduced-motion: reduce) {
  .urgency-progress-fill {
    width: var(--urgency-pct, 70%) !important;
    transition: none !important;
    transition-delay: 0s !important;
    animation: none !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset -10px 0 14px -6px rgba(255, 255, 255, 0.35),
      0 0 0 1px rgba(252, 223, 81, 0.25),
      6px 0 18px rgba(252, 223, 81, 0.5);
  }
  .urgency-section--visible .urgency-progress-fill {
    animation: none !important;
  }
}

/* ---------- Coach story (full-bleed credibility + video) ---------- */
.coach-story {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: clamp(26rem, 68vh, 44rem);
  display: flex;
  align-items: stretch;
}
.coach-story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.coach-story:hover .coach-story-bg {
  transform: scale(1.045);
}
.coach-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.03);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.coach-story:hover .coach-story-img {
  transform: scale(1.09);
}
@media (prefers-reduced-motion: reduce) {
  .coach-story-bg,
  .coach-story:hover .coach-story-bg,
  .coach-story-img,
  .coach-story:hover .coach-story-img {
    transform: scale(1);
    transition: none;
  }
}
.coach-story-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 12, 28, 0.94) 0%,
    rgba(0, 26, 52, 0.78) 32%,
    rgba(0, 42, 84, 0.42) 58%,
    rgba(0, 42, 84, 0.08) 82%,
    transparent 100%
  );
}
.coach-story-video-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 85% 75% at 70% 50%,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.12) 45%,
    transparent 72%
  );
}
.coach-story-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  min-height: inherit;
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 900px) {
  .coach-story-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem 3rem;
  }
}
.coach-story-panel {
  max-width: 26.5rem;
  text-align: left;
}
.coach-story-video-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  justify-self: center;
  max-width: 20rem;
  width: 100%;
}
.coach-story-video-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.35;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.coach-story-play {
  display: grid;
  place-items: center;
  width: clamp(4.5rem, 12vw, 5.5rem);
  height: clamp(4.5rem, 12vw, 5.5rem);
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  line-height: 0;
  color: var(--navy);
  background: var(--yellow);
  box-shadow:
    0 6px 32px rgba(252, 223, 81, 0.45),
    0 2px 12px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}
.coach-story-play:hover {
  transform: scale(1.08);
  box-shadow:
    0 10px 40px rgba(252, 223, 81, 0.6),
    0 4px 16px rgba(0, 0, 0, 0.4);
  filter: brightness(1.04);
}
.coach-story-play:active {
  transform: scale(1.02);
}
.coach-story-play-icon {
  width: 44%;
  height: 44%;
  flex-shrink: 0;
  display: block;
  overflow: visible;
  pointer-events: none;
}
.coach-story[data-reveal="js"] .coach-story-panel,
.coach-story[data-reveal="js"] .coach-story-video-block {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.coach-story[data-reveal="js"] .coach-story-video-block {
  transform: translateY(18px) scale(0.94);
}
.coach-story[data-reveal="js"].coach-story--visible .coach-story-panel {
  opacity: 1;
  transform: translateY(0);
}
.coach-story[data-reveal="js"].coach-story--visible .coach-story-video-block {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}
.coach-story-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  color: var(--white);
  margin: 0 0 0.55rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.coach-story-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1rem;
}
.coach-story-list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.coach-story-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}
.coach-story-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}
@media (prefers-reduced-motion: reduce) {
  .coach-story[data-reveal="js"] .coach-story-panel,
  .coach-story[data-reveal="js"] .coach-story-video-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Video modal (YouTube embed) */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 20, 0.82);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.video-modal-box {
  position: relative;
  z-index: 1;
  width: min(96vw, 960px);
  transform: scale(0.96) translateY(12px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.video-modal.is-open .video-modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.video-modal-sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.video-modal-close {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}
.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow);
  transform: scale(1.06);
}
.video-modal-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  aspect-ratio: 16 / 9;
}
.video-modal-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  .video-modal,
  .video-modal-box {
    transition: none;
  }
  .video-modal.is-open .video-modal-box {
    transform: none;
    opacity: 1;
  }
}
body.video-modal-open {
  overflow: hidden;
}

/* Football kit size guide modal (checkout Step 1) */
.kit-size-modal {
  position: fixed;
  inset: 0;
  z-index: 460;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.kit-size-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.kit-size-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 22, 45, 0.58);
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.kit-size-modal-box {
  position: relative;
  z-index: 1;
  width: min(100%, 26.5rem);
  max-height: min(90vh, 36rem);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  color: var(--navy);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 42, 84, 0.08);
  box-shadow: 0 28px 72px rgba(0, 42, 84, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transform: scale(0.96) translateY(10px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  overflow: hidden;
}
.kit-size-modal.is-open .kit-size-modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.kit-size-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  background: rgba(0, 42, 84, 0.06);
  border: 1px solid rgba(0, 42, 84, 0.1);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.kit-size-modal-close:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: scale(1.05);
}
.kit-size-modal-close:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.kit-size-modal-body {
  padding: 2.35rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 0;
}
.kit-size-modal-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.25;
  padding-right: 2rem;
}
.kit-size-modal-intro {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(0, 42, 84, 0.88);
}
.kit-size-modal-table-scroll {
  overflow-x: auto;
  overflow-y: auto;
  max-height: min(42vh, 16rem);
  margin: 0.15rem 0 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 42, 84, 0.1);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.kit-size-modal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.kit-size-modal-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0.55rem 0.65rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(180deg, var(--yellow) 0%, #f5e055 100%);
  border-bottom: 2px solid rgba(0, 42, 84, 0.12);
}
.kit-size-modal-table tbody td {
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid rgba(0, 42, 84, 0.07);
  color: var(--navy);
  vertical-align: middle;
}
.kit-size-modal-table tbody tr:last-child td {
  border-bottom: none;
}
.kit-size-modal-table tbody tr:nth-child(even) td {
  background: rgba(0, 42, 84, 0.025);
}
.kit-size-modal-table tbody td:first-child {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.kit-size-modal-td-label {
  display: none;
}
.kit-size-modal-footnote {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(0, 42, 84, 0.65);
}
.kit-size-modal-cta {
  align-self: stretch;
  margin-top: 0.15rem;
  width: 100%;
}
.kit-size-modal-cta:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
@media (max-width: 639px) {
  .kit-size-modal-box {
    width: min(100%, 22rem);
    max-height: min(88vh, 40rem);
  }
  .kit-size-modal-table-scroll {
    max-height: none;
    overflow: visible;
    border: none;
    background: transparent;
  }
  .kit-size-modal-table thead {
    display: none;
  }
  .kit-size-modal-table,
  .kit-size-modal-table tbody,
  .kit-size-modal-table tr,
  .kit-size-modal-table td {
    display: block;
    width: 100%;
  }
  .kit-size-modal-table tbody tr {
    margin-bottom: 0.6rem;
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 42, 84, 0.1);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 42, 84, 0.06);
  }
  .kit-size-modal-table tbody tr:last-child {
    margin-bottom: 0;
  }
  .kit-size-modal-table tbody td {
    padding: 0.2rem 0;
    border: none;
    background: transparent !important;
  }
  .kit-size-modal-table tbody td:first-child {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(0, 42, 84, 0.1);
  }
  .kit-size-modal-td-label {
    display: inline;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(0, 42, 84, 0.55);
    margin-right: 0.35rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .kit-size-modal,
  .kit-size-modal-box {
    transition: none;
  }
  .kit-size-modal.is-open .kit-size-modal-box {
    transform: none;
    opacity: 1;
  }
}
body.kit-size-modal-open {
  overflow: hidden;
}

/* ---------- CTA Button ---------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--yellow);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 223, 81, 0.4);
}
.cta-btn--navy { background: var(--navy); color: var(--yellow); }
.cta-btn--navy:hover { box-shadow: 0 8px 24px rgba(0, 42, 84, 0.3); }

/* Hero primary CTA (overrides global .cta-btn; must follow .cta-btn) */
.hero .cta-btn.hero-cta-single {
  padding: 0.7rem 1.85rem;
  min-height: 2.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  border: 1.5px solid rgba(0, 42, 84, 0.08);
  box-shadow: 0 4px 20px rgba(252, 223, 81, 0.28);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast), background var(--transition-fast);
}
.hero .cta-btn.hero-cta-primary {
  background: var(--yellow);
  color: var(--navy);
}
.hero .cta-btn.hero-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(252, 223, 81, 0.42);
  filter: brightness(1.02);
}
.hero .cta-btn.hero-cta-primary:active {
  transform: translateY(0);
  filter: brightness(1);
}

/* Urgency card CTA (follows global .cta-btn) */
.urgency-card .cta-btn.urgency-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--yellow);
  border: 1px solid rgba(0, 42, 84, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 22px rgba(252, 223, 81, 0.3);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}
.urgency-card .cta-btn.urgency-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(252, 223, 81, 0.45);
  filter: brightness(1.03);
}
.urgency-card .cta-btn.urgency-cta:active {
  transform: translateY(0);
}
@media (min-width: 480px) {
  .urgency-card .cta-btn.urgency-cta {
    width: auto;
    min-width: 11rem;
  }
}

/* ---------- Experience Section ---------- */
.experience {
  padding: var(--section-space) 0;
  background: var(--warm-neutral);
}
.experience-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
  margin-top: 0;
}
.experience-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.experience-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: box-shadow var(--transition-smooth);
}
.experience-item:hover {
  box-shadow: 0 20px 56px rgba(0, 42, 84, 0.16);
}
.experience-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}
.experience-item:hover img {
  transform: scale(1.03);
}

/* ---------- ID Camp Section ---------- */
/* ======================================================================
   LANDING PAGE — Hero
   ====================================================================== */
.lp-hero {
  position: relative;
  min-height: clamp(520px, 85vh, 800px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
}

.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 18, 40, 0.95) 0%,
    rgba(0, 18, 40, 0.72) 35%,
    rgba(0, 18, 40, 0.35) 60%,
    rgba(0, 18, 40, 0.15) 100%
  );
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.lp-hero-content {
  max-width: 640px;
}

.lp-hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  background: var(--yellow);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-sm);
  margin: 0 0 1rem;
}

.lp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 0.85rem;
}

.lp-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.5rem;
  max-width: 480px;
}

.lp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.lp-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.lp-hero-meta-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--yellow);
}

.lp-hero-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.lp-hero-price-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.01em;
}

.lp-hero-price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-cta-primary {
  padding: 0.85rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-md);
}

.lp-cta-secondary {
  padding: 0.85rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.lp-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ======================================================================
   LANDING PAGE — Section Titles (shared)
   ====================================================================== */
.lp-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin: 0 0 0.5rem;
  text-align: center;
}

.lp-section-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(0, 42, 84, 0.6);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.55;
}

/* ======================================================================
   LANDING PAGE — What's Included
   ====================================================================== */
.lp-included {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--white);
}

.lp-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .lp-included-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .lp-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lp-included-card {
  background: #f8f9fb;
  border: 1px solid rgba(0, 42, 84, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.lp-included-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 42, 84, 0.08);
  border-color: rgba(252, 223, 81, 0.4);
}

.lp-included-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 223, 81, 0.12);
  border-radius: var(--radius-md);
  color: var(--navy);
}

.lp-included-icon svg {
  width: 24px;
  height: 24px;
}

.lp-included-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

/* ======================================================================
   LANDING PAGE — Gallery Strip
   ====================================================================== */
.lp-gallery {
  overflow: hidden;
  background: var(--navy);
  padding: 0;
}

.lp-gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.lp-gallery-track img {
  width: 100%;
  height: clamp(180px, 22vw, 320px);
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .lp-gallery-track {
    grid-template-columns: 1fr;
  }

  .lp-gallery-track img {
    height: 200px;
  }
}

/* ======================================================================
   LANDING PAGE — Details (Accordion)
   ====================================================================== */
.lp-details {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: linear-gradient(175deg, #f8f9fb 0%, #ffffff 100%);
}

.lp-accordion {
  max-width: 720px;
  margin: 0 auto;
}

.lp-accordion-item {
  border-bottom: 1px solid rgba(0, 42, 84, 0.08);
}

.lp-accordion-item:first-child {
  border-top: 1px solid rgba(0, 42, 84, 0.08);
}

.lp-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.6vw, 1.0625rem);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-fast);
}

.lp-accordion-trigger::-webkit-details-marker {
  display: none;
}

.lp-accordion-trigger::marker {
  content: '';
}

.lp-accordion-trigger:hover {
  color: rgba(0, 42, 84, 0.7);
}

.lp-accordion-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 42, 84, 0.05);
  transition: transform var(--transition-fast), background var(--transition-fast);
  color: var(--navy);
}

.lp-accordion-item[open] .lp-accordion-chevron {
  transform: rotate(180deg);
  background: rgba(252, 223, 81, 0.18);
}

.lp-accordion-body {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(0, 42, 84, 0.7);
}

.lp-accordion-body p {
  margin: 0;
  white-space: pre-line;
}

.lp-accordion-body ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-accordion-body ul li {
  line-height: 1.55;
  color: rgba(0, 42, 84, 0.7);
}

.lp-accordion-body ul li::marker {
  color: var(--yellow);
}

/* ======================================================================
   LANDING PAGE — Final CTA
   ====================================================================== */
.lp-final-cta {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: linear-gradient(168deg, #001228 0%, var(--navy) 40%, #001a38 100%);
  text-align: center;
}

.lp-final-cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.lp-final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.lp-final-cta-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0 0 2rem;
}

.lp-final-cta .lp-cta-primary {
  display: inline-block;
}

/* ---------- About Section ---------- */
.about {
  position: relative;
  padding: var(--section-space) 0;
  background: linear-gradient(165deg, #001f45 0%, var(--navy) 42%, #001838 100%);
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 85% 20%, rgba(252, 223, 81, 0.07) 0%, transparent 55%);
  pointer-events: none;
}
.about > .container {
  position: relative;
  z-index: 1;
}
.about-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.75rem, 5vw, 4.5rem);
    align-items: center;
  }
}
.about-content {
  max-width: 36rem;
}
.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.15rem;
  max-width: 26ch;
}
.about-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  max-width: 38rem;
}
.about-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (min-width: 480px) {
  .about-features {
    gap: 1rem;
  }
}
.about-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.05rem 1.15rem 1.1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.about-feature:hover {
  border-color: rgba(252, 223, 81, 0.28);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}
@media (prefers-reduced-motion: reduce) {
  .about-feature {
    transition: none;
  }
}
.about-feature-icon {
  flex-shrink: 0;
  width: 2.875rem;
  height: 2.875rem;
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(252, 223, 81, 0.2) 0%, rgba(252, 223, 81, 0.06) 100%);
  border: 1px solid rgba(252, 223, 81, 0.28);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.about-feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}
.about-feature-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  padding-top: 0.15rem;
}
.about-feature-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}
.about-feature-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
}
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 0;
}
.about-visual-stack {
  position: relative;
  border-radius: calc(var(--radius-xl) + 2px);
  padding: 3px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(252, 223, 81, 0.08) 100%);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 24px 56px rgba(0, 0, 0, 0.28);
}
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.about-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.about-badge-row--end {
  justify-content: flex-start;
}
@media (min-width: 900px) {
  .about-badge-row--end {
    justify-content: flex-end;
  }
  .about-badges {
    position: absolute;
    z-index: 2;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    margin-bottom: 0;
    pointer-events: none;
  }
}
.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 26, 58, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.about-card {
  position: relative;
  z-index: 2;
  margin-top: -2.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 22rem;
  width: calc(100% - 1.5rem);
  padding: 1.2rem 1.35rem 1.35rem;
  background: rgba(253, 252, 248, 0.97);
  border: 1px solid rgba(0, 42, 84, 0.08);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--yellow);
  box-shadow:
    0 2px 4px rgba(0, 42, 84, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.22);
}
@media (min-width: 900px) {
  .about-card {
    margin-top: -2.75rem;
    margin-right: 0.75rem;
    margin-left: auto;
    max-width: min(100%, 19.5rem);
    width: auto;
    padding: 1.15rem 1.4rem 1.3rem;
  }
}
.about-card-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin: 0 0 0.55rem;
  line-height: 1.35;
}
.about-card-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.58;
  font-weight: 400;
  color: rgba(0, 42, 84, 0.72);
  margin: 0;
}

/* ---------- Trust & parent reassurance ---------- */
.trust-section {
  padding: var(--section-space) 0;
  background: linear-gradient(180deg, #fdfcfa 0%, #f4f1ea 48%, #faf9f6 100%);
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.trust-header {
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}
.trust-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.08;
  color: var(--navy);
  margin: 0 auto 1.15rem;
  max-width: 32ch;
}
.trust-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(0, 42, 84, 0.68);
  margin: 0 auto;
  max-width: 40rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  text-align: left;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
@media (min-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
  }
}
.trust-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.65rem, 3vw, 2.15rem) clamp(1.5rem, 3vw, 1.85rem);
  box-shadow:
    0 2px 4px rgba(0, 42, 84, 0.04),
    0 12px 40px rgba(0, 42, 84, 0.07);
  border: 1px solid rgba(0, 42, 84, 0.07);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 8px rgba(0, 42, 84, 0.06),
    0 20px 48px rgba(0, 42, 84, 0.1);
  border-color: rgba(252, 223, 81, 0.4);
}
.trust-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.35rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(252, 223, 81, 0.38) 0%, rgba(252, 223, 81, 0.14) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(252, 223, 81, 0.35);
  box-shadow: 0 4px 14px rgba(252, 223, 81, 0.15);
}
.trust-card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}
.trust-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.85rem;
  line-height: 1.28;
}
.trust-card-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.62;
  color: rgba(0, 42, 84, 0.72);
  margin: 0;
  max-width: 38ch;
}
@media (min-width: 700px) {
  .trust-card-text {
    max-width: none;
  }
}
.trust-chip-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 0.75rem;
  margin-bottom: clamp(2.25rem, 4.5vw, 3rem);
  padding: 0 0.25rem;
  list-style: none;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(0, 42, 84, 0.12);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 42, 84, 0.05);
}
.trust-testimonial {
  margin: 0 auto;
  max-width: 38rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
}
.trust-testimonial-inner {
  position: relative;
  padding: clamp(1.85rem, 4vw, 2.5rem) clamp(1.75rem, 4vw, 2.75rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 42, 84, 0.08);
  box-shadow:
    0 2px 6px rgba(0, 42, 84, 0.04),
    0 20px 48px rgba(0, 42, 84, 0.08);
  text-align: center;
}
.trust-testimonial-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.75rem, 6vw, 3.5rem);
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 16px rgba(252, 223, 81, 0.35);
  opacity: 0.95;
}
.trust-quote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.65;
  font-style: normal;
  font-weight: 500;
  color: rgba(0, 42, 84, 0.8);
}
.trust-quote p {
  margin: 0;
}
.trust-quote-source {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 42, 84, 0.48);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 42, 84, 0.08);
}

/* ---------- Know More Section ---------- */
.know-more {
  padding: var(--section-space) 0;
  background: var(--warm-neutral);
  border-top: 1px solid rgba(0, 42, 84, 0.06);
}
.know-more-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
  margin-top: 0;
}
.know-more-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .know-more-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.know-more-card {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background: var(--white);
  text-decoration: none;
  transition: box-shadow var(--transition-smooth);
}
.know-more-card:hover {
  box-shadow: 0 20px 56px rgba(0, 42, 84, 0.14);
}
.know-more-card:hover img {
  transform: scale(1.03);
}
.know-more-card:hover .know-more-card-caption {
  transform: translateX(2px);
}
.know-more-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}
.know-more-card-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.15rem 1.5rem;
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  transition: transform var(--transition-smooth);
}
.know-more-card-caption::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002A54' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.7;
}

/* ---------- Contact / enquiry (parents) ---------- */
.contact-enquiry {
  position: relative;
  padding: var(--section-space) 0;
  background: linear-gradient(180deg, #fde45c 0%, var(--yellow) 35%, #f5d030 100%);
  overflow: hidden;
}
.contact-enquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 15% 50%, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.contact-enquiry > .container {
  position: relative;
  z-index: 1;
}
.contact-enquiry-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-enquiry-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: stretch;
  }
}
.contact-enquiry-copy {
  text-align: left;
  max-width: 36rem;
}
@media (max-width: 899px) {
  .contact-enquiry-copy {
    margin: 0 auto;
    text-align: center;
  }
  .contact-enquiry-points {
    align-items: center;
  }
  .contact-enquiry-point {
    justify-content: center;
  }
}
.contact-enquiry-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 1rem;
  max-width: 28ch;
}
@media (max-width: 899px) {
  .contact-enquiry-title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact-enquiry-intro {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(0, 42, 84, 0.76);
  margin: 0 0 1.5rem;
}
.contact-enquiry-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-enquiry-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(0, 42, 84, 0.82);
  text-align: left;
}
.contact-enquiry-point-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  color: var(--navy);
  opacity: 0.9;
}
.contact-enquiry-point-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.contact-enquiry-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 42, 84, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow:
    0 2px 4px rgba(0, 42, 84, 0.04),
    0 20px 48px rgba(0, 42, 84, 0.1);
}
.contact-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-enquiry-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-enquiry-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}
.contact-enquiry-input,
.contact-enquiry-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.8125rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--navy);
  background: #fafbfc;
  border: 1px solid rgba(0, 42, 84, 0.14);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-enquiry-input {
  min-height: 3rem;
}
.contact-enquiry-textarea {
  min-height: 9.5rem;
  resize: vertical;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.contact-enquiry-input::placeholder,
.contact-enquiry-textarea::placeholder {
  color: rgba(0, 42, 84, 0.42);
}
.contact-enquiry-input:hover,
.contact-enquiry-textarea:hover {
  border-color: rgba(0, 42, 84, 0.22);
}
.contact-enquiry-input:focus,
.contact-enquiry-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 42, 84, 0.12);
}
.contact-enquiry-submit {
  margin-top: 0.35rem;
  width: 100%;
  min-height: 3.125rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(180deg, #ffea7a 0%, var(--yellow) 45%, #f0ca28 100%);
  border: 1px solid rgba(0, 42, 84, 0.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow:
    0 2px 4px rgba(0, 42, 84, 0.06),
    0 8px 24px rgba(252, 223, 81, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.contact-enquiry-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(0, 42, 84, 0.08),
    0 12px 32px rgba(252, 223, 81, 0.5);
  filter: brightness(1.02);
}
.contact-enquiry-submit:active {
  transform: translateY(0);
}
@media (min-width: 900px) {
  .contact-enquiry-submit {
    width: auto;
    align-self: flex-start;
    min-width: 13rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-enquiry-submit {
    transition: none;
  }
  .contact-enquiry-submit:hover {
    transform: none;
  }
}

/* ---------- Contact Modal ---------- */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 22, 45, 0.6);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.contact-modal-box {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  color: var(--navy);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 42, 84, 0.08);
  box-shadow: 0 28px 72px rgba(0, 42, 84, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transform: scale(0.96) translateY(12px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  overflow-y: auto;
}
.contact-modal.is-open .contact-modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.contact-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(0, 42, 84, 0.1);
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  background: rgba(0, 42, 84, 0.06);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.contact-modal-close:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: scale(1.05);
}
.contact-modal-close:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.contact-modal-body {
  padding: 2.25rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-modal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 0.15rem;
  padding-right: 2.5rem;
}
.contact-modal-intro {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(0, 42, 84, 0.7);
  margin: 0 0 0.75rem;
}
.contact-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-modal-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}
.contact-modal-input,
.contact-modal-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--navy);
  background: #fafbfc;
  border: 1px solid rgba(0, 42, 84, 0.14);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-modal-input {
  min-height: 2.75rem;
}
.contact-modal-textarea {
  min-height: 6.5rem;
  resize: vertical;
}
.contact-modal-input::placeholder,
.contact-modal-textarea::placeholder {
  color: rgba(0, 42, 84, 0.42);
}
.contact-modal-input:hover,
.contact-modal-textarea:hover {
  border-color: rgba(0, 42, 84, 0.22);
}
.contact-modal-input:focus,
.contact-modal-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 42, 84, 0.12);
}
.contact-modal-submit {
  margin-top: 0.25rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(180deg, #ffea7a 0%, var(--yellow) 45%, #f0ca28 100%);
  border: 1px solid rgba(0, 42, 84, 0.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 42, 84, 0.06), 0 8px 24px rgba(252, 223, 81, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.contact-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 42, 84, 0.08), 0 12px 32px rgba(252, 223, 81, 0.5);
  filter: brightness(1.02);
}
.contact-modal-submit:active {
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .contact-modal,
  .contact-modal-box {
    transition: none;
  }
  .contact-modal-submit {
    transition: none;
  }
  .contact-modal-submit:hover {
    transform: none;
  }
}

/* ---------- Legal pages (Privacy, Refund, Terms, Cookies) ---------- */
.legal-page {
  background: #f4f6f9;
}
.legal-page main {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
  padding-left: 0;
  padding-right: 0;
}
.legal-doc {
  box-sizing: border-box;
  max-width: 56rem;
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}
.legal-doc h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 0.5rem;
  line-height: 1.18;
}
.legal-doc .legal-doc-meta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(0, 42, 84, 0.48);
  margin: 0 0 clamp(2.25rem, 5vw, 3rem);
  padding-bottom: 0;
}
.legal-doc section {
  margin: 0;
  padding: 0;
}
.legal-doc section + section {
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
  padding-top: clamp(2.5rem, 5vw, 3.25rem);
  border-top: 1px solid rgba(0, 42, 84, 0.1);
}
.legal-doc h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.28;
}
.legal-doc p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.78;
  color: rgba(0, 42, 84, 0.9);
  margin: 0 0 1.125rem;
  max-width: 65ch;
}
.legal-doc p:last-child {
  margin-bottom: 0;
}
.legal-doc ul {
  margin: 0 0 1.125rem;
  padding-left: 1.5rem;
  max-width: 65ch;
}
.legal-doc li {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(0, 42, 84, 0.9);
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}
.legal-doc li:last-child {
  margin-bottom: 0;
}
.legal-doc a {
  color: #002a54;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.15s ease;
}
.legal-doc a:hover {
  color: #001428;
}

/* ---------- Partner strip (Agimi) ---------- */
.partner-strip {
  background: linear-gradient(180deg, #0c2744 0%, #081c30 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(3rem, 7vw, 4.75rem);
}
.partner-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.35rem, 3.5vw, 1.85rem);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.partner-strip-label {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}
.partner-strip-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.1rem 2.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  line-height: 0;
}
.partner-strip-logo {
  display: block;
  width: min(200px, 58vw);
  height: auto;
  aspect-ratio: 1428.82 / 348.22;
}
@media (hover: hover) and (pointer: fine) {
  .partner-strip-logo-wrap:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.26);
    transform: translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .partner-strip-logo-wrap {
    transition: none;
  }
  .partner-strip-logo-wrap:hover {
    transform: none;
  }
}
.partner-strip-tagline {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  max-width: 26rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  padding-top: 3rem;
  padding-bottom: 0;
}
.footer-inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: auto 1fr auto; align-items: center; gap: 3rem; }
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.footer-logo { width: 40px; height: 48px; flex-shrink: 0; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-text span {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
}
.footer-brand-text .line1 { font-size: 1.125rem; letter-spacing: 0.04em; }
.footer-brand-text .line2 { font-size: 0.6875rem; letter-spacing: 0.06em; color: rgba(252, 223, 81, 0.65); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--yellow);
  transition: background var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}
.footer-social a:hover {
  background: rgba(252, 223, 81, 0.12);
  border-color: rgba(252, 223, 81, 0.3);
}
.footer-social svg { width: 1rem; height: 1rem; pointer-events: none; }
.footer-bar {
  background: var(--yellow);
  padding: 1rem 1.5rem;
  text-align: center;
  margin-top: 1.75rem;
}
.footer-bar p {
  font-size: 0.625rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin: 0;
}
.footer-bar .copyright { font-weight: 700; }
.footer-developer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  color: rgba(0, 42, 84, 0.58);
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer-developer:hover {
  color: rgba(0, 42, 84, 0.78);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.footer-developer-logo {
  flex-shrink: 0;
  height: 22px;
  width: auto;
  max-height: 24px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.88;
}
.footer-developer:hover .footer-developer-logo {
  opacity: 1;
}
.footer-developer:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Product Detail Page ---------- */
body.product-detail-page {
  background: var(--navy);
  color: var(--white);
}

body.product-detail-page .product-detail-main {
  padding: var(--section-space) 0;
  min-height: 50vh;
  color: var(--white);
}

.product-breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.product-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.product-breadcrumb a:hover {
  color: var(--yellow);
}

.product-breadcrumb .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.5);
}

.product-breadcrumb .breadcrumb-current {
  color: var(--white);
}

/* Step 1 guided flow — centered single-column experience */
.step1-flow {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.step1-hero-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

@media (min-width: 540px) {
  .step1-hero-card {
    grid-template-columns: 0.55fr 1fr;
    gap: 1.65rem;
    align-items: center;
    padding: 1.35rem 1.5rem;
  }
}

.step1-hero-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-main-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  aspect-ratio: 4 / 3;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-thumb {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  transition: border-color var(--transition-fast), opacity var(--transition-fast);
}

.product-thumb:hover {
  opacity: 0.9;
}

.product-thumb.active {
  border-color: var(--yellow);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step1-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.step1-info-card {
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
}

.step1-info-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 0.85rem;
}

.step1-info-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.step1-info-schedule {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.step1-info-schedule-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.4rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.product-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  margin: 0;
}

.product-price-microcopy {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.product-step1-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.product-step1-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.6875rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(252, 223, 81, 0.45);
  border-radius: 999px;
  line-height: 1.2;
}

.product-step1-trust-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-step1-trust-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.product-whats-included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-whats-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

.product-whats-included-check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-whats-included-check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.product-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.product-schedule-ranges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
}

.product-schedule-range {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.15;
}

.product-schedule-range-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(252, 223, 81, 0.45);
  flex-shrink: 0;
}

.product-schedule-note {
  margin: 0.4rem 0 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.45);
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-option-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.35rem;
}

.product-option-label-row label {
  margin-bottom: 0;
}

.product-size-guide-link {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.product-size-guide-link:hover {
  opacity: 0.88;
}

.product-option-label,
.product-option label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.35rem;
}

.required-label::after {
  content: ' *';
  color: var(--yellow);
  font-weight: 800;
}

.product-options-required-note {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.product-option-hint {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

.product-card-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-age-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.product-age-card {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.product-age-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 5.25rem;
  padding: 1rem 0.75rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-age-card-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.product-age-card-caption {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.3;
}

.product-age-card:hover .product-age-card-inner {
  border-color: rgba(252, 223, 81, 0.42);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.product-age-card .product-card-input:focus-visible + .product-age-card-inner {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.product-age-card .product-card-input:checked + .product-age-card-inner {
  border: 2px solid var(--yellow);
  background: linear-gradient(
    165deg,
    rgba(252, 223, 81, 0.44) 0%,
    rgba(252, 223, 81, 0.22) 42%,
    rgba(0, 0, 0, 0.14) 100%
  );
  box-shadow:
    0 0 0 1px rgba(252, 223, 81, 0.95),
    0 0 0 5px rgba(252, 223, 81, 0.2),
    0 10px 36px rgba(252, 223, 81, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.product-age-card .product-card-input:checked + .product-age-card-inner .product-age-card-value {
  color: var(--yellow);
}

.product-age-card .product-card-input:checked + .product-age-card-inner .product-age-card-caption {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.product-age-card:hover .product-card-input:checked + .product-age-card-inner {
  background: linear-gradient(
    165deg,
    rgba(252, 223, 81, 0.5) 0%,
    rgba(252, 223, 81, 0.28) 45%,
    rgba(0, 0, 0, 0.12) 100%
  );
  border-color: var(--yellow);
  box-shadow:
    0 0 0 1px rgba(255, 248, 200, 0.55),
    0 0 0 5px rgba(252, 223, 81, 0.26),
    0 12px 40px rgba(252, 223, 81, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.product-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-radio-pill {
  position: relative;
  display: inline-flex;
  margin: 0;
  cursor: pointer;
}

.product-radio-pill-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-radio-pill:hover .product-radio-pill-text {
  border-color: rgba(252, 223, 81, 0.42);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.product-radio-pill .product-card-input:focus-visible + .product-radio-pill-text {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.product-radio-pill .product-card-input:checked + .product-radio-pill-text {
  border: 2px solid rgba(0, 42, 84, 0.42);
  background: linear-gradient(180deg, #fffef2 0%, var(--yellow) 48%, #f5d73a 100%);
  color: var(--navy);
  font-weight: 800;
  box-shadow:
    0 0 0 2px rgba(252, 223, 81, 0.75),
    0 0 0 5px rgba(252, 223, 81, 0.18),
    0 8px 30px rgba(252, 223, 81, 0.48),
    0 0 52px rgba(252, 223, 81, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.product-radio-pill .product-card-input:checked + .product-radio-pill-text:hover {
  background: linear-gradient(180deg, #fffce8 0%, #ffea66 52%, #f0d030 100%);
  border-color: rgba(0, 42, 84, 0.48);
  box-shadow:
    0 0 0 2px rgba(252, 223, 81, 0.85),
    0 0 0 5px rgba(252, 223, 81, 0.22),
    0 10px 34px rgba(252, 223, 81, 0.52),
    0 0 56px rgba(252, 223, 81, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.checkout-field--invalid .product-age-card-inner,
.checkout-field--invalid .product-radio-pill-text {
  border-color: #e85d5d;
}

.checkout-field--invalid .product-age-card .product-card-input:checked + .product-age-card-inner,
.checkout-field--invalid .product-radio-pill .product-card-input:checked + .product-radio-pill-text {
  border-color: #e85d5d;
  background: rgba(55, 18, 18, 0.55);
  color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(232, 93, 93, 0.55),
    0 0 0 4px rgba(232, 93, 93, 0.12),
    0 6px 20px rgba(232, 93, 93, 0.2);
  transform: none;
}

.checkout-field--invalid .product-radio-pill .product-card-input:checked + .product-radio-pill-text {
  font-weight: 700;
}

.checkout-field--invalid .product-age-card .product-card-input:checked + .product-age-card-inner .product-age-card-value {
  color: #ffb3b3;
}

.checkout-field--invalid .product-age-card .product-card-input:checked + .product-age-card-inner .product-age-card-caption {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.checkout-field--invalid .product-radio-pill .product-card-input:checked + .product-radio-pill-text:hover {
  background: rgba(70, 22, 22, 0.65);
  box-shadow: 0 0 0 2px rgba(232, 93, 93, 0.45);
}

.checkout-field--invalid .product-age-card:hover .product-card-input:checked + .product-age-card-inner {
  border-color: #e85d5d;
  background: rgba(55, 18, 18, 0.62);
  box-shadow: 0 0 0 2px rgba(232, 93, 93, 0.45);
}

@media (max-width: 380px) {
  .product-age-cards {
    grid-template-columns: 1fr;
  }
}

/* Kit size & camp position — same visual language as age cards / gender pills */
.product-option select.product-select-control {
  width: 100%;
  max-width: 100%;
  padding: 0.875rem 2.65rem 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  background-color: rgba(0, 0, 0, 0.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23FCDF51' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1.125rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color-scheme: dark;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-option select.product-select-control::-ms-expand {
  display: none;
}

.product-option select.product-select-control:required:invalid {
  color: rgba(255, 255, 255, 0.48);
}

.product-option select.product-select-control:hover {
  border-color: rgba(252, 223, 81, 0.5);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}

.product-option select.product-select-control:valid {
  border-color: var(--yellow);
  background-color: rgba(252, 223, 81, 0.16);
  color: var(--yellow);
  box-shadow:
    0 0 0 2px rgba(252, 223, 81, 0.45),
    0 4px 22px rgba(252, 223, 81, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-option select.product-select-control:valid:hover {
  background-color: rgba(252, 223, 81, 0.22);
  box-shadow:
    0 0 0 2px rgba(252, 223, 81, 0.55),
    0 6px 26px rgba(252, 223, 81, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.product-option select.product-select-control:focus {
  outline: none;
}

.product-option select.product-select-control:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.product-option select.product-select-control:valid:focus {
  border-color: var(--yellow);
}

.product-option input[type="date"],
.product-option input[type="number"] {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

/* Date of birth: text + calendar (see js/dob-picker.js) — one surface with kit/select styling */
.product-dob {
  position: relative;
  width: 100%;
}

.product-dob-control {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
  color-scheme: dark;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.product-option:not(.checkout-field--invalid) .product-dob-control:hover:not(:focus-within) {
  border-color: rgba(252, 223, 81, 0.48);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.product-dob-control:focus-within {
  border-color: var(--yellow);
  background: rgba(0, 0, 0, 0.26);
  box-shadow:
    0 0 0 1px rgba(252, 223, 81, 0.55),
    0 0 0 5px rgba(252, 223, 81, 0.14),
    0 6px 28px rgba(252, 223, 81, 0.18);
}

.product-dob-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.875rem 0.75rem 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  border: none;
  border-radius: 0;
  transition: color var(--transition-fast);
}

.product-dob-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

.product-dob-input:focus,
.product-dob-input:focus-visible {
  outline: none;
}

.product-dob-calendar-btn {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  margin: 0;
  padding: 0;
  border: none;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(252, 223, 81, 0.12) 42%,
    rgba(252, 223, 81, 0.2) 100%
  );
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.product-dob-calendar-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 35%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.16) 65%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0.85;
}

.product-dob-control:focus-within .product-dob-calendar-btn {
  background: linear-gradient(
    105deg,
    rgba(252, 223, 81, 0.08) 0%,
    rgba(252, 223, 81, 0.22) 45%,
    rgba(252, 223, 81, 0.32) 100%
  );
  color: var(--yellow);
}

.product-dob-calendar-btn:hover {
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(252, 223, 81, 0.22) 40%,
    rgba(252, 223, 81, 0.34) 100%
  );
  color: var(--yellow);
}

.product-dob-control:focus-within .product-dob-calendar-btn:hover {
  background: linear-gradient(
    105deg,
    rgba(252, 223, 81, 0.14) 0%,
    rgba(252, 223, 81, 0.3) 45%,
    rgba(252, 223, 81, 0.42) 100%
  );
}

.product-dob-calendar-btn:focus {
  outline: none;
}

.product-dob-calendar-btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(252, 223, 81, 0.75);
  z-index: 1;
}

.product-dob-calendar-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  opacity: 0.95;
}

.product-dob-popover {
  position: absolute;
  left: 0;
  top: calc(100% + 0.45rem);
  z-index: 40;
  width: min(100%, 20.5rem);
  padding: 0.85rem 0.9rem 1rem;
  background: #f4f7fb;
  border: 1px solid rgba(0, 42, 84, 0.1);
  border-radius: 14px;
  box-shadow:
    0 4px 6px rgba(0, 42, 84, 0.04),
    0 16px 36px rgba(0, 42, 84, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.product-dob-popover-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.dob-custom-select {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.dob-custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  padding: 0.5rem 0.55rem 0.5rem 0.65rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(0, 42, 84, 0.14);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.dob-custom-select__trigger:hover {
  border-color: rgba(0, 42, 84, 0.3);
  box-shadow: 0 2px 8px rgba(0, 42, 84, 0.08);
}

.dob-custom-select--open .dob-custom-select__trigger {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(252, 223, 81, 0.35);
}

.dob-custom-select__trigger:focus {
  outline: none;
}

.dob-custom-select__trigger:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.dob-custom-select__text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dob-custom-select__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  opacity: 0.55;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.dob-custom-select--open .dob-custom-select__chevron {
  transform: rotate(180deg);
  opacity: 0.85;
}

.dob-custom-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.3rem);
  z-index: 45;
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 42, 84, 0.12);
  background: #fff;
  box-shadow:
    0 4px 6px rgba(0, 42, 84, 0.06),
    0 12px 28px rgba(0, 42, 84, 0.14);
  max-height: 11rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dob-custom-select__option {
  margin: 0;
  padding: 0.42rem 0.65rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
  user-select: none;
}

.dob-custom-select__option + .dob-custom-select__option {
  margin-top: 0.15rem;
}

.dob-custom-select__option:hover {
  background: rgba(252, 223, 81, 0.22);
}

.dob-custom-select__option--active {
  background: rgba(252, 223, 81, 0.3);
  color: var(--navy);
}

.dob-custom-select__option--selected {
  background: rgba(252, 223, 81, 0.14);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(252, 223, 81, 0.5);
}

.dob-custom-select__option--selected:hover,
.dob-custom-select__option--selected.dob-custom-select__option--active {
  background: rgba(252, 223, 81, 0.36);
}

@media (prefers-reduced-motion: reduce) {
  .dob-custom-select__chevron {
    transition: none;
  }
}

.product-dob-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.35rem;
}

.product-dob-wd {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 42, 84, 0.45);
  line-height: 1.2;
}

.product-dob-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.28rem;
}

.product-dob-day {
  aspect-ratio: 1;
  min-height: 2.15rem;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(0, 42, 84, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.product-dob-day:hover:not(:disabled) {
  background: rgba(252, 223, 81, 0.35);
  border-color: rgba(252, 223, 81, 0.55);
  color: var(--navy);
}

.product-dob-day--selected {
  background: rgba(252, 223, 81, 0.92);
  border-color: var(--yellow);
  color: var(--navy);
  box-shadow: 0 0 0 2px rgba(252, 223, 81, 0.45);
}

.product-dob-day--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  color: rgba(0, 42, 84, 0.28);
  background: rgba(0, 42, 84, 0.03);
}

.product-dob-day--pad {
  visibility: hidden;
  pointer-events: none;
  border: none;
  background: transparent;
}

.checkout-field--invalid .product-dob-control {
  border-color: #e74c3c;
  background: rgba(40, 12, 12, 0.48);
  box-shadow:
    0 0 0 1px rgba(231, 76, 60, 0.45),
    0 0 0 4px rgba(231, 76, 60, 0.12);
}

.checkout-field--invalid .product-dob-control:hover {
  border-color: #e95d4e;
  box-shadow:
    0 0 0 1px rgba(231, 76, 60, 0.5),
    0 0 0 4px rgba(231, 76, 60, 0.14);
}

.checkout-field--invalid .product-dob-calendar-btn {
  background: linear-gradient(
    105deg,
    rgba(80, 28, 28, 0.4) 0%,
    rgba(55, 18, 18, 0.55) 100%
  );
  color: rgba(255, 255, 255, 0.85);
}

.checkout-field--invalid .product-dob-calendar-btn::before {
  opacity: 0.35;
}

.checkout-field--invalid .product-dob-control:focus-within .product-dob-calendar-btn {
  background: linear-gradient(
    105deg,
    rgba(90, 32, 32, 0.5) 0%,
    rgba(65, 22, 22, 0.62) 100%
  );
  color: rgba(255, 240, 240, 0.95);
}

.product-option input:focus {
  outline: none;
  border-color: var(--yellow);
}

/* Quantity stepper (Step 1) — matches dark glass + yellow checkout controls */
.product-quantity-stepper {
  display: inline-flex;
  align-items: stretch;
  max-width: 100%;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  vertical-align: middle;
}

.product-quantity-btn {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  min-width: 3rem;
  min-height: 2.9rem;
  padding: 0;
  margin: 0;
  border: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.04) 100%);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.14s ease;
  -webkit-tap-highlight-color: transparent;
}

.product-quantity-btn--dec::after,
.product-quantity-btn--inc::before {
  content: '';
  position: absolute;
  top: 22%;
  bottom: 22%;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 40%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.14) 60%,
    transparent 100%
  );
}

.product-quantity-btn--dec::after {
  right: 0;
}

.product-quantity-btn--inc::before {
  left: 0;
}

.product-quantity-btn:hover:not(:disabled) {
  background: linear-gradient(180deg, rgba(252, 223, 81, 0.32) 0%, rgba(252, 223, 81, 0.14) 100%);
  color: #fffce8;
  box-shadow:
    inset 0 0 0 1px rgba(252, 223, 81, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-quantity-btn:focus {
  outline: none;
}

.product-quantity-btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  z-index: 1;
}

.product-quantity-btn:active:not(:disabled) {
  background: linear-gradient(180deg, rgba(252, 223, 81, 0.22) 0%, rgba(252, 223, 81, 0.1) 100%);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.28);
  transform: scale(0.94);
}

.product-quantity-btn:disabled {
  opacity: 1;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  transform: none;
}

.product-quantity-btn:disabled::after,
.product-quantity-btn:disabled::before {
  opacity: 0.35;
}

.product-quantity-value {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.32);
  border: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  user-select: none;
  text-shadow: 0 0 20px rgba(252, 223, 81, 0.22);
}

.checkout-field--invalid .product-quantity-stepper {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .product-quantity-btn:active:not(:disabled) {
    transform: none;
  }
}

@media (min-width: 480px) {
  .product-quantity-btn {
    width: 3.25rem;
    min-width: 3.25rem;
    min-height: 3.1rem;
    font-size: 1.6rem;
  }

  .product-quantity-value {
    min-width: 3.75rem;
    font-size: 1.5rem;
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }
}

/* Kit size — custom combobox (Step 1), matches dark glass selects */
.product-kit-select {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.product-kit-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.875rem 0.85rem 0.875rem 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  cursor: pointer;
  color-scheme: dark;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.product-kit-select__trigger:hover {
  border-color: rgba(252, 223, 81, 0.48);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.product-kit-select--has-value .product-kit-select__trigger {
  border-color: var(--yellow);
  background: rgba(252, 223, 81, 0.14);
  box-shadow:
    0 0 0 1px rgba(252, 223, 81, 0.35),
    0 4px 20px rgba(252, 223, 81, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-kit-select--has-value .product-kit-select__trigger:hover {
  background: rgba(252, 223, 81, 0.2);
  box-shadow:
    0 0 0 1px rgba(252, 223, 81, 0.45),
    0 6px 24px rgba(252, 223, 81, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-kit-select--open .product-kit-select__trigger {
  border-color: var(--yellow);
  box-shadow:
    0 0 0 1px rgba(252, 223, 81, 0.55),
    0 0 0 5px rgba(252, 223, 81, 0.12),
    0 6px 28px rgba(252, 223, 81, 0.16);
}

.product-kit-select__trigger:focus {
  outline: none;
}

.product-kit-select__trigger:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.product-kit-select__value-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
}

.product-kit-select__placeholder {
  color: rgba(255, 255, 255, 0.46);
  font-weight: 500;
}

.product-kit-select__chosen {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
}

.product-kit-select__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  opacity: 0.92;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.product-kit-select--open .product-kit-select__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.product-kit-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.4rem);
  z-index: 38;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  border-radius: var(--radius-md);
  border: 1px solid rgba(252, 223, 81, 0.2);
  background: linear-gradient(180deg, rgba(14, 22, 38, 0.98) 0%, rgba(8, 14, 28, 0.99) 100%);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.15),
    0 18px 42px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  max-height: min(50vh, 22rem);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.product-kit-select__option {
  margin: 0;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
  user-select: none;
}

.product-kit-select__option + .product-kit-select__option {
  margin-top: 0.2rem;
}

.product-kit-select__option:hover {
  background: rgba(252, 223, 81, 0.16);
  color: var(--yellow);
}

.product-kit-select__option--active {
  background: rgba(252, 223, 81, 0.22);
  color: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(252, 223, 81, 0.35);
}

.product-kit-select__option--selected {
  background: rgba(252, 223, 81, 0.1);
  box-shadow: inset 0 0 0 1px rgba(252, 223, 81, 0.42);
}

.product-kit-select__option--selected:hover,
.product-kit-select__option--selected.product-kit-select__option--active {
  background: rgba(252, 223, 81, 0.26);
  color: var(--yellow);
}

.product-option.checkout-field--invalid .product-kit-select__trigger {
  border-color: #e74c3c;
  background: rgba(40, 12, 12, 0.45);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.35);
}

.product-option.checkout-field--invalid .product-kit-select--has-value .product-kit-select__trigger {
  border-color: #e74c3c;
  background: rgba(40, 12, 12, 0.5);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.38);
}

.product-option.checkout-field--invalid .product-kit-select__chosen {
  color: #ffb3b3;
}

@media (prefers-reduced-motion: reduce) {
  .product-kit-select__chevron {
    transition: none;
  }
}

.product-add-to-cart {
  margin-top: 0.75rem;
}

.cta-btn--full {
  width: 100%;
  padding: 1rem 2rem;
}

/* Step 1 Continue — strong primary CTA */
.product-add-to-cart .cta-btn--checkout-step1 {
  padding: 1.2rem 1.5rem;
  min-height: 3.35rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18),
    0 10px 32px rgba(252, 223, 81, 0.48),
    0 2px 0 rgba(255, 255, 255, 0.35) inset;
}

.product-add-to-cart .cta-btn--checkout-step1:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 14px 40px rgba(252, 223, 81, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.product-add-to-cart .cta-btn--checkout-step1:active {
  transform: translateY(0);
}

.product-validation-message {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.product-validation-message:not(.product-validation-success) {
  color: #ffb3b3;
}

.product-validation-success {
  color: var(--yellow);
}

/* Step 1 — form section header */
.step1-form-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step1-form-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.step1-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.step1-form-intro {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* Step 1 guided flow — form vertical rhythm */
.step1-flow form.product-options {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.step1-flow form.product-options .product-option + .product-option {
  padding-top: 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.step1-flow form.product-options .product-add-to-cart {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.step1-flow form.product-options .product-option-label-row {
  margin-bottom: 0.3rem;
}

.step1-flow form.product-options .product-option-label,
.step1-flow form.product-options .product-option label {
  margin-bottom: 0.3rem;
}

.step1-flow form.product-options .product-option-hint {
  margin: 0 0 0.55rem;
  line-height: 1.42;
}

.step1-flow form.product-options .product-age-cards {
  gap: 0.65rem;
}

.step1-flow form.product-options .product-age-card-inner {
  min-height: 4.85rem;
  padding: 0.88rem 0.65rem;
  gap: 0.3rem;
}

.step1-flow form.product-options .product-radio-group {
  gap: 0.55rem;
}

.step1-flow form.product-options .product-radio-group--camp-position {
  display: flex;
  flex-wrap: nowrap;
}

.step1-flow form.product-options .product-radio-group--camp-position .product-radio-pill {
  flex: 1 1 0;
  min-width: 0;
}

.step1-flow form.product-options .product-radio-group--camp-position .product-radio-pill-text {
  width: 100%;
  min-width: 0;
}

.step1-flow form.product-options .product-radio-pill-text {
  min-width: 6.25rem;
  padding: 0.72rem 1.1rem;
}

.step1-flow form.product-options .product-option select.product-select-control {
  padding: 0.82rem 2.5rem 0.82rem 0.95rem;
}

.step1-flow form.product-options .product-kit-select__trigger {
  min-height: 2.85rem;
  padding: 0.82rem 0.75rem 0.82rem 0.95rem;
}

.step1-flow form.product-options .product-option input[type='date'],
.step1-flow form.product-options .product-option input[type='number'] {
  padding: 0.82rem 0.95rem;
}

.step1-flow form.product-options .product-dob-input {
  padding: 0.82rem 0.65rem 0.82rem 0.95rem;
}

.step1-flow form.product-options .product-add-to-cart {
  margin-top: 0;
}

.step1-flow form.product-options .product-validation-message {
  margin-top: 0.55rem;
}

/* ───────────────────────────────────────
   Step 2 guided flow — mirrors Step 1
   ─────────────────────────────────────── */
.step2-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.step2-form-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.step2-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.step2-form-intro {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.step2-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step2-field + .step2-field {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.step2-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.4rem;
}

.step2-field .checkout-field-control input {
  width: 100%;
  padding: 0.85rem 2.5rem 0.85rem 0.95rem;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.step2-field .checkout-field-control input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.step2-field .checkout-field-control input:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.065);
}

.step2-field .checkout-field-control input:focus {
  outline: none;
  border-color: rgba(252, 223, 81, 0.6);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(252, 223, 81, 0.1);
}

.step2-field.checkout-field--valid .checkout-field-control input {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}

.step2-field.checkout-field--invalid .checkout-field-control input {
  border-color: rgba(231, 76, 60, 0.65);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.step2-field .checkout-field-status-success {
  color: #22c55e;
}

.step2-field .checkout-field-status-error {
  color: #e74c3c;
}

.step2-actions {
  display: flex;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.step2-actions .cta-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.step2-actions .cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

@media (max-width: 639px) {
  .step2-actions {
    flex-direction: column-reverse;
  }
  .step2-actions .cta-btn {
    width: 100%;
  }
}

/* Product tabs */
.product-tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
}

.product-tabs-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-tab-btn {
  padding: 0.625rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.product-tab-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.product-tab-btn.active {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

.product-tab-panel {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}

.product-description-intro {
  margin-bottom: 1.5rem;
}

/* .product-faq styles removed — replaced by .lp-accordion */

.product-info-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-info-table th,
.product-info-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.product-info-table tr:last-child th,
.product-info-table tr:last-child td {
  border-bottom: none;
}

.product-info-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.2);
  width: 40%;
}

.product-info-table td {
  color: rgba(255, 255, 255, 0.9);
}

.product-reviews-empty {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-reviews-prompt {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.product-review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

.product-review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-review-rating-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
}

.product-review-stars {
  color: var(--yellow);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.product-review-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.35rem;
}

.product-review-field input,
.product-review-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

.product-review-field textarea {
  resize: vertical;
  min-height: 100px;
}

.product-review-field input:focus,
.product-review-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

/* ---------- Checkout Flow ---------- */
.checkout-stepper {
  margin-bottom: 2.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  padding: 1.25rem 1.35rem 1.35rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.checkout-stepper-meta {
  margin: 0.65rem 0 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.5);
}

.checkout-stepper-progress {
  margin-top: 0.85rem;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}

.checkout-stepper-progress-fill {
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e8c520 0%, var(--yellow) 55%, #fff59a 100%);
  box-shadow: 0 0 12px rgba(252, 223, 81, 0.28);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.checkout-stepper-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-stepper-item {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.36);
  padding: 0.4rem 0.5rem;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.checkout-stepper-item::after {
  content: '';
  flex: 0 0 12px;
  width: 12px;
  max-width: 28px;
  height: 1px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.14);
  align-self: center;
}

.checkout-stepper-item:last-child::after {
  display: none;
}

@media (min-width: 640px) {
  .checkout-stepper-list {
    gap: 0.5rem;
  }
  .checkout-stepper-item {
    font-size: 0.78125rem;
    gap: 0.55rem;
    padding: 0.45rem 0.65rem;
  }
  .checkout-stepper-item::after {
    flex: 1 1 20px;
    width: auto;
    min-width: 16px;
    max-width: 40px;
  }
}

.checkout-stepper-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.checkout-stepper-item--active {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(252, 223, 81, 0.14);
  box-shadow: 0 0 0 1px rgba(252, 223, 81, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.checkout-stepper-item--active .checkout-stepper-number {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 0 0 2px rgba(252, 223, 81, 0.45), 0 4px 14px rgba(252, 223, 81, 0.35);
  transform: scale(1.05);
}

.checkout-stepper-item--active .checkout-stepper-label {
  color: var(--yellow);
  font-weight: 800;
}

.checkout-stepper-item--completed {
  color: rgba(255, 255, 255, 0.52);
}

.checkout-stepper-item--completed .checkout-stepper-number {
  background: rgba(252, 223, 81, 0.22);
  color: rgba(0, 42, 84, 0.75);
}

.checkout-stepper-item--completed .checkout-stepper-label {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 600;
}

.checkout-stepper-item--completed::after {
  background: rgba(252, 223, 81, 0.2);
}

@media (max-width: 639px) {
  .checkout-stepper {
    padding: 1rem 0.85rem 1.15rem;
  }
  .checkout-stepper-label {
    display: none;
  }
  .checkout-stepper-item {
    flex: 1;
    padding: 0.35rem 0.25rem;
  }
  .checkout-stepper-item::after {
    flex: 0 0 8px;
    width: 8px;
    min-width: 0;
    max-width: 16px;
  }
  .checkout-stepper-number {
    width: 32px;
    height: 32px;
  }
}

.checkout-step {
  display: none;
}

.checkout-step.is-active {
  display: block;
}

.checkout-step[hidden] {
  display: none !important;
}

.checkout-form {
  max-width: 580px;
}

/* Step 2 field labels & inputs inherit from .step2-field rules above */

.checkout-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.45rem;
}

.checkout-field-control {
  position: relative;
  display: block;
}

.checkout-field-control input {
  width: 100%;
  padding: 0.95rem 2.75rem 0.95rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.checkout-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

.checkout-field-control + .checkout-field-error,
.checkout-field > .checkout-field-error {
  margin-top: 0.45rem;
}

.checkout-field select:focus,
.checkout-field-control input:focus {
  outline: none;
  border-color: var(--yellow);
}

.checkout-field--valid .checkout-field-control input {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
}

.checkout-field--invalid .checkout-field-control input,
.checkout-field--invalid select {
  border-color: #e74c3c;
  box-shadow: 0 0 0 1px rgba(231, 76, 60, 0.2);
}

.checkout-field-status {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35rem;
  height: 1.35rem;
  pointer-events: none;
}

.checkout-field-status-success,
.checkout-field-status-error {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}

.checkout-field-status-success svg,
.checkout-field-status-error svg {
  width: 100%;
  height: 100%;
  display: block;
}

.checkout-field-status-success {
  color: #16a34a;
}

.checkout-field-status-error {
  color: #e74c3c;
}

.checkout-field--valid .checkout-field-status-success {
  display: flex;
}

.checkout-field--invalid .checkout-field-status-error {
  display: flex;
}

.checkout-field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ff8a80;
  line-height: 1.35;
}

.checkout-field-error[hidden] {
  display: none !important;
}

.product-option.checkout-field--invalid select.product-select-control {
  border-color: #e74c3c;
  background-color: rgba(40, 12, 12, 0.45);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.35);
}

.product-option.checkout-field--invalid input:not([type='hidden']) {
  border-color: #e74c3c;
}

.product-option .checkout-field-error {
  margin-top: 0.35rem;
}

/* ───────────────────────────────────────
   Step 3 — Order Summary (guided flow)
   ─────────────────────────────────────── */
.step3-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.step3-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.step3-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.step3-intro {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.step3-card {
  padding: 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step3-card-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.step3-card-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(252, 223, 81, 0.45);
}

.step3-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step3-section--product {
  padding-top: 0.85rem;
}

.step3-section-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
}

.step3-section-value {
  font-weight: 600;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: right;
}

.step3-section--product .step3-section-value {
  color: var(--white);
  font-weight: 700;
}

.step3-options {
  display: flex;
  flex-direction: column;
}

.step3-total-panel {
  margin-top: 0.85rem;
  padding: 1.1rem 1.15rem 1.15rem;
  background: linear-gradient(165deg, rgba(252, 223, 81, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 1.5px solid rgba(252, 223, 81, 0.45);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.step3-no-fees {
  margin: 0 0 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.step3-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
}

.step3-total-value {
  color: var(--yellow);
  font-size: clamp(1.45rem, 3.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-shadow: 0 1px 16px rgba(252, 223, 81, 0.3);
}

.step3-actions {
  display: flex;
  gap: 1rem;
  padding-top: 0.25rem;
}

.step3-actions .cta-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.step3-actions .cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

@media (max-width: 639px) {
  .step3-actions {
    flex-direction: column-reverse;
  }
  .step3-actions .cta-btn {
    width: 100%;
  }
}

/* ───────────────────────────────────────
   Step 4 — Payment (guided flow)
   ─────────────────────────────────────── */
.step4-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.step4-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.step4-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.step4-intro {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.step4-card {
  padding: 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.step4-bank-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.step4-bank-logo {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: lighten;
}

.step4-bank-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.step4-trust-strip {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.step4-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.step4-trust-icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step4-trust-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.step4-brands {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.step4-brand-img {
  display: block;
  height: 30px;
  width: auto;
  object-fit: contain;
  padding: 0.4rem 0.65rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.step4-faq {
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.step4-faq dt {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 0.35rem;
}

.step4-faq dd {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.step4-legal {
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

.step4-actions {
  display: flex;
  gap: 1rem;
  padding-top: 0.25rem;
}

.step4-actions .cta-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.step4-actions .cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

@media (max-width: 639px) {
  .step4-actions {
    flex-direction: column-reverse;
  }
  .step4-actions .cta-btn {
    width: 100%;
  }
}

.checkout-summary-price {
  color: rgba(255, 255, 255, 0.9);
}

.checkout-summary-options {
  margin-bottom: 0.75rem;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-summary-row span:first-child {
  color: rgba(255, 255, 255, 0.7);
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}

.checkout-summary-total-value {
  color: var(--yellow);
  font-size: 1.25rem;
}

.checkout-payment-container {
  max-width: 560px;
}

.checkout-payment-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow);
  margin: 0 0 1rem;
}

.checkout-payment-status {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.checkout-payment-placeholder {
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 2rem;
}

.checkout-payment-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.checkout-payment-intro,
.checkout-payment-note {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0 0 1rem;
}

.checkout-payment-card-brands {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.checkout-payment-consent {
  margin: 0 0 1rem;
}

.checkout-payment-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.checkout-payment-consent-label input[type='checkbox'] {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.checkout-payment-consent-label a {
  color: var(--yellow);
  text-decoration: underline;
}

.checkout-payment-brand-img {
  display: block;
  height: 36px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.checkout-step-actions {
  display: flex;
  gap: 1rem;
  padding-top: 0.25rem;
}

.checkout-step-actions .cta-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.checkout-step-actions .cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

@media (max-width: 639px) {
  .checkout-step-actions {
    flex-direction: column-reverse;
  }
  .checkout-step-actions .cta-btn {
    width: 100%;
  }
}

.checkout-btn-pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 1.5rem;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.checkout-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Accessibility */
.product-size-guide-link:focus-visible,
.cta-btn--checkout-step1:focus-visible,
.urgency-card .cta-btn.urgency-cta:focus-visible,
.coach-story-play:focus-visible,
.video-modal-close:focus-visible,
.cta-btn:focus-visible,
.lp-cta-primary:focus-visible,
.lp-cta-secondary:focus-visible,
.lp-accordion-trigger:focus-visible,
.lang-btn:focus-visible,
.contact-enquiry-input:focus-visible,
.contact-enquiry-textarea:focus-visible,
.contact-enquiry-submit:focus-visible,
.top-bar-social a:focus-visible,
.navbar-toggle:focus-visible,
.nav-btn:focus-visible,
.navbar-nav .navbar-nav-item:focus-visible,
.nav-dropdown-trigger--mobile:focus-visible,
.product-tab-btn:focus-visible,
.product-thumb:focus-visible,
.product-option select:focus-visible,
.product-option input:focus-visible,
.product-review-field input:focus-visible,
.product-review-field textarea:focus-visible,
.checkout-field input:focus-visible,
.checkout-field select:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* DOB composite: single control focus ring on wrapper, not inner pieces */
.checkout-field .product-dob-input:focus-visible,
.product-option .product-dob-input:focus-visible {
  outline: none;
}

.checkout-field .product-dob-calendar-btn:focus-visible {
  outline: none;
}

/* Standalone info pages */
.info-page {
  background: var(--navy);
}

/* ======================================================================
   DID YOU KNOW — Hero
   ====================================================================== */
.dyk-hero {
  position: relative;
  min-height: clamp(420px, 65vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.dyk-hero-bg {
  position: absolute;
  inset: 0;
}

.dyk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.dyk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 14, 32, 0.95) 0%,
    rgba(0, 24, 56, 0.7) 35%,
    rgba(0, 24, 56, 0.3) 70%,
    rgba(0, 18, 40, 0.15) 100%
  );
}

.dyk-hero-watermark {
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.dyk-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 640px;
}

.dyk-hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  background: var(--yellow);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-sm);
  margin: 0 0 1rem;
}

.dyk-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.dyk-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 520px;
}

/* ======================================================================
   DID YOU KNOW — The Idea
   ====================================================================== */
.dyk-idea {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: linear-gradient(175deg, #001228 0%, var(--navy) 50%, #001a38 100%);
}

.dyk-idea-inner {
  max-width: 680px;
  margin: 0 auto;
}

.dyk-idea-lead {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.4vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

.dyk-idea-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 1.5rem;
}

.dyk-idea-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 0.75rem;
  background: var(--yellow);
  border-radius: 2px;
}

.dyk-idea-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.15rem;
}

.dyk-idea-body p:last-child {
  margin-bottom: 0;
}

/* ======================================================================
   DID YOU KNOW — Credibility Cards
   ====================================================================== */
.dyk-cred {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--white);
}

.dyk-cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .dyk-cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .dyk-cred-grid {
    grid-template-columns: 1fr;
  }
}

.dyk-cred-card {
  background: #f8f9fb;
  border: 1px solid rgba(0, 42, 84, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.dyk-cred-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 42, 84, 0.08);
  border-color: rgba(252, 223, 81, 0.4);
}

.dyk-cred-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 223, 81, 0.12);
  border-radius: var(--radius-md);
  color: var(--navy);
}

.dyk-cred-icon svg {
  width: 24px;
  height: 24px;
}

.dyk-cred-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.dyk-cred-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(0, 42, 84, 0.6);
  margin: 0;
}

/* ======================================================================
   DID YOU KNOW — Visual Story Block
   ====================================================================== */
.dyk-story {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
}

.dyk-story-bg {
  position: absolute;
  inset: 0;
}

.dyk-story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.dyk-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 14, 32, 0.9) 0%,
    rgba(0, 42, 84, 0.82) 100%
  );
}

.dyk-story-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.dyk-story-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.dyk-story-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2rem;
  line-height: 1.5;
}

.dyk-story-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
}

.dyk-story-point {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.dyk-story-point-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--yellow);
  border-radius: 50%;
}

/* ======================================================================
   DID YOU KNOW — Why This Matters
   ====================================================================== */
.dyk-why {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: linear-gradient(175deg, #f8f9fb 0%, #ffffff 100%);
  text-align: center;
}

.dyk-why-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin: 0 0 2.5rem;
}

.dyk-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .dyk-why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 380px;
  }
}

.dyk-why-item {
  text-align: center;
}

.dyk-why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 223, 81, 0.12);
  border-radius: var(--radius-md);
  color: var(--navy);
}

.dyk-why-icon svg {
  width: 24px;
  height: 24px;
}

.dyk-why-item h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 0.4rem;
}

.dyk-why-item p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(0, 42, 84, 0.6);
  margin: 0;
}

/* ======================================================================
   DID YOU KNOW — CTA
   ====================================================================== */
.dyk-page-cta {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: linear-gradient(168deg, #001228 0%, var(--navy) 40%, #001a38 100%);
  text-align: center;
}

.dyk-page-cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.dyk-page-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 1.75rem;
  line-height: 1.2;
}

.dyk-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ======================================================================
   WHO WE ARE — Hero
   ====================================================================== */
.wwa-hero {
  position: relative;
  min-height: clamp(420px, 65vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.wwa-hero-bg {
  position: absolute;
  inset: 0;
}

.wwa-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.wwa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 18, 40, 0.92) 0%,
    rgba(0, 18, 40, 0.6) 40%,
    rgba(0, 18, 40, 0.25) 100%
  );
}

.wwa-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 640px;
}

.wwa-hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  background: var(--yellow);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-sm);
  margin: 0 0 1rem;
}

.wwa-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.wwa-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 500px;
}

/* ======================================================================
   WHO WE ARE — About + Academy (2 columns)
   ====================================================================== */
.wwa-about {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--white);
}

.wwa-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

@media (max-width: 767px) {
  .wwa-about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.wwa-about-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.wwa-about-heading::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 0.65rem;
  background: var(--yellow);
  border-radius: 2px;
}

.wwa-about-col p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: rgba(0, 42, 84, 0.72);
  margin: 0 0 0.85rem;
}

.wwa-about-motto {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.wwa-about-motto strong {
  font-weight: 700;
}

/* ======================================================================
   WHO WE ARE — Achievements
   ====================================================================== */
.wwa-achievements {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.wwa-achievements-bg {
  position: absolute;
  inset: 0;
}

.wwa-achievements-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.wwa-achievements-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 18, 40, 0.88) 0%,
    rgba(0, 42, 84, 0.82) 100%
  );
}

.wwa-achievements-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.wwa-achievements-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 1.75rem;
}

.wwa-achievements-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 0.75rem;
  background: var(--yellow);
  border-radius: 2px;
}

.wwa-achievements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wwa-achievements-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.wwa-achievements-list li::before {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ======================================================================
   WHO WE ARE — Philosophy
   ====================================================================== */
.wwa-philosophy {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: linear-gradient(175deg, #f8f9fb 0%, #ffffff 100%);
}

.wwa-philosophy-inner {
  text-align: center;
}

.wwa-philosophy-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.wwa-philosophy-intro {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(0, 42, 84, 0.6);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.55;
}

.wwa-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 991px) {
  .wwa-philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .wwa-philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.wwa-philosophy-card {
  background: var(--white);
  border: 1px solid rgba(0, 42, 84, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.wwa-philosophy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 42, 84, 0.08);
  border-color: rgba(252, 223, 81, 0.4);
}

.wwa-philosophy-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 223, 81, 0.12);
  border-radius: var(--radius-md);
  color: var(--navy);
}

.wwa-philosophy-icon svg {
  width: 24px;
  height: 24px;
}

.wwa-philosophy-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.wwa-philosophy-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(0, 42, 84, 0.6);
  margin: 0;
}

/* ======================================================================
   WHO WE ARE — Global Impact
   ====================================================================== */
.wwa-global {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--white);
}

.wwa-global-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (max-width: 767px) {
  .wwa-global-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.wwa-global-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.wwa-global-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 0.65rem;
  background: var(--yellow);
  border-radius: 2px;
}

.wwa-global-content p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: rgba(0, 42, 84, 0.72);
  margin: 0 0 0.85rem;
}

.wwa-global-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.wwa-global-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

/* ======================================================================
   WHO WE ARE — CTA
   ====================================================================== */
.wwa-cta {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: linear-gradient(168deg, #001228 0%, var(--navy) 40%, #001a38 100%);
  text-align: center;
}

.wwa-cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.wwa-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 1.75rem;
  line-height: 1.2;
}

.wwa-cta .lp-cta-primary {
  display: inline-block;
}

/* ---------- Did You Know: Q&A Cards ---------- */
/* ======================================================================
   DID YOU KNOW — Explore More (Photo Gallery)
   ====================================================================== */
.dyk-explore {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: var(--white);
}

.dyk-explore-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin: 0 0 0.5rem;
  text-align: center;
}

.dyk-explore-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(0, 42, 84, 0.6);
  text-align: center;
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

.dyk-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.dyk-explore-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dyk-explore-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.dyk-explore-item:hover img {
  transform: scale(1.04);
}

.dyk-explore-item--wide {
  grid-column: span 2;
}

.dyk-explore-item--tall {
  grid-row: span 2;
}

@media (max-width: 767px) {
  .dyk-explore-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .dyk-explore-item--tall {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .dyk-explore-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .dyk-explore-item--wide {
    grid-column: span 1;
  }
}
