/* =====================================================
   RESET & ROOT
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:         #4A9EFF;
  --blue-light:   #7DBFFF;
  --blue-mid:     #2278D4;
  --blue-dark:    #144FA0;
  --blue-glow:    rgba(74,158,255,0.14);
  --blue-border:  rgba(74,158,255,0.25);
  --blue-tint:    rgba(74,158,255,0.08);

  --bg:           #080A0D;
  --bg-alt:       #0E1117;
  --card:         #141820;
  --card-hover:   #1A1F2B;
  --input-bg:     #1C2130;

  --border:       rgba(255,255,255,0.08);
  --border-blue:  rgba(74,158,255,0.28);

  --white:        #FFFFFF;
  --text:         #E2E8F4;
  --text-mid:     #A0ADBE;
  --text-muted:   #687486;

  --font-head:    'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r:            6px;
  --r-lg:         12px;
  --r-xl:         16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.1; letter-spacing: 0.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(74,158,255,0.3);
}
.btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,158,255,0.4); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 17px 38px; font-size: 17px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* =====================================================
   NAV — always solid dark, never transparent
===================================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #080A0D;  /* solid — no transparency, never bleeds */
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo img {
  height: 104px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active-link { color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-phone:hover { color: var(--blue-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #080A0D;
  z-index: 199;
  padding: 88px 32px 32px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .mnav-phone {
  font-size: 21px !important;
  color: var(--blue) !important;
  margin-top: 24px;
  border-bottom: none !important;
}

/* =====================================================
   SHARED SECTION ELEMENTS
===================================================== */
section { padding: 96px 0; }

.tag {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 400;
}
.section-hd { margin-bottom: 52px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-sub { margin: 0 auto; }

.hd-rule {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 18px;
}
.center .hd-rule { margin-left: auto; margin-right: auto; }

.bg-alt { background: var(--bg-alt); }

/* =====================================================
   STAR FIELD
===================================================== */
.star-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--d,3s) ease-in-out infinite var(--delay,0s);
  opacity: var(--op, 0.4);
}
@keyframes twinkle {
  0%,100% { opacity: var(--op,0.4); }
  50%      { opacity: calc(var(--op,0.4) * 0.2); }
}

/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 28px 90px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 72% 30%, rgba(74,158,255,0.07) 0%, transparent 58%),
    linear-gradient(180deg, #080A0D 0%, #0C1018 100%);
  z-index: 0;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,158,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,158,255,0.032) 1px, transparent 1px);
  background-size: 68px 68px;
  z-index: 0;
}
.hero-stars-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  top: 8%; right: -4%;
  width: 660px; height: 660px;
  background: radial-gradient(circle, rgba(74,158,255,0.07) 0%, transparent 65%);
  z-index: 0; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(0.75); }
}
.hero h1 {
  font-size: clamp(52px, 8.5vw, 96px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.96;
  margin-bottom: 26px;
  max-width: 840px;
  color: var(--white);
}
.hero h1 .blue-word {
  color: var(--blue);
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 42px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 62px; }
.hero-stats {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
  padding-top: 46px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 500;
}

/* =====================================================
   HOW IT WORKS
===================================================== */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.step {
  background: var(--card);
  padding: 44px 34px;
  position: relative;
}
.step-bg-num {
  font-family: var(--font-head);
  font-size: 88px;
  font-weight: 700;
  color: rgba(74,158,255,0.06);
  line-height: 1;
  position: absolute;
  top: 18px; right: 22px;
  user-select: none;
  pointer-events: none;
}
.step-icon-wrap {
  width: 46px; height: 46px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.step-icon-wrap svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; }
.step h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 11px;
}
.step p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

/* =====================================================
   SPECIALTY SERVICES
===================================================== */
.services-wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc-card {
  background: var(--card);
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover { background: var(--card-hover); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 40px; height: 40px; margin-bottom: 18px; }
.svc-icon svg { width: 40px; height: 40px; stroke: var(--blue); fill: none; }
.svc-card h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 9px;
  letter-spacing: 0.04em;
}
.svc-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.svc-price {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  color: var(--blue-light);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 13px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* =====================================================
   PACKAGES
===================================================== */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  align-items: start;
}
.tier {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  position: relative;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(74,158,255,0.32);
  box-shadow: 0 10px 36px rgba(0,0,0,0.3);
}
.tier.featured {
  border-color: var(--blue);
  transform: translateY(-10px);
  box-shadow: 0 0 50px rgba(74,158,255,0.14), 0 14px 44px rgba(0,0,0,0.4);
}
.tier.featured:hover { transform: translateY(-14px); }
.tier-popular {
  position: absolute;
  top: 17px; right: 17px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}
.tier-head {
  padding: 30px 26px 20px;
  border-bottom: 1px solid var(--border);
}
.tier-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 5px;
}
.tier-name {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.tier-from {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.tier-big-price {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}
.featured .tier-big-price { color: var(--blue); }
.tier-prices {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 5px;
  column-gap: 18px;
  font-size: 13px;
  padding-top: 2px;
}
.tp-row-label { color: var(--text-mid); font-weight: 400; }
.tp-row-val {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-light);
  text-align: right;
  letter-spacing: 0.02em;
}
.tier-body { padding: 20px 26px 28px; }
.tier-list { list-style: none; margin-bottom: 24px; }
.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.045);
  line-height: 1.5;
}
.tier-list li:last-child { border-bottom: none; }
.chk-svg { flex-shrink: 0; margin-top: 1px; width: 15px; height: 15px; }

/* =====================================================
   MEMBERSHIP
===================================================== */
.mem-banner {
  position: relative;
  border: 1px solid var(--border-blue);
  border-radius: var(--r-xl);
  background: var(--card);
  overflow: hidden;
}
.mem-top-bar {
  background: var(--blue-dark);
  padding: 10px 24px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 54px 60px;
  align-items: start;
}
.mem-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
}
.mem-title em { font-style: normal; color: var(--blue); }
.mem-desc { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 30px; }
.perk-list { list-style: none; margin-bottom: 38px; }
.perk-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.perk-list li:last-child { border-bottom: none; }
.perk-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-dot svg { width: 9px; height: 9px; }
.plan-stack { display: flex; flex-direction: column; gap: 13px; }
.plan-tile {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.plan-tile:hover { border-color: var(--blue-border); }
.plan-tile.active { border-color: var(--blue); background: rgba(74,158,255,0.06); }
.plan-tile-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}
.plan-tile-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}
.plan-tile-price {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}
.plan-tile-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.plan-tile-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.plan-save {
  display: inline-block;
  background: rgba(74,158,255,0.12);
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
  font-family: var(--font-head);
}
.mem-apply-note { font-size: 13px; color: var(--text-mid); margin-top: 14px; text-align: center; }
.mem-apply-note a { color: var(--blue); text-decoration: underline; cursor: pointer; }

/* =====================================================
   REVIEWS / ABOUT
===================================================== */
.g-badge {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 32px;
  max-width: 440px;
  margin: 0 auto 50px;
}
.g-score-big {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  flex-shrink: 0;
}
.g-stars { display: flex; gap: 3px; margin-bottom: 5px; }
.star { color: #F5A623; font-size: 17px; }
.g-label { font-size: 13px; color: var(--text-mid); margin-bottom: 5px; }
.g-source { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: var(--blue-border); transform: translateY(-2px); }
.r-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.r-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-light);
  flex-shrink: 0;
}
.r-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--white); }
.r-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* =====================================================
   BOOKING FORM
===================================================== */
.booking-bg {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.booking-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,158,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,158,255,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
}
.booking-hd {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  z-index: 1;
}
.booking-hd h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.booking-hd h2 em { font-style: normal; color: var(--blue); }
.booking-hd p { font-size: 16px; color: var(--text-mid); }
.form-card {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  max-width: 620px;
  margin: 46px auto 0;
}
.form-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
  margin-bottom: 28px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.f-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.f-input {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px 15px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.f-input::placeholder { color: var(--text-muted); }
.f-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(74,158,255,0.12); }
select.f-input option { background: #1C2130; color: var(--white); }
textarea.f-input { resize: vertical; min-height: 86px; }
.form-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 13px; }

/* =====================================================
   MEMBERSHIP APPLICATION
===================================================== */
.memapp-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 64px 28px 52px;
  text-align: center;
}
.memapp-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.memapp-hero h1 em { font-style: normal; color: var(--blue); }
.memapp-hero p { font-size: 17px; color: var(--text-mid); max-width: 540px; margin: 0 auto; }
.memapp-body { padding: 72px 28px; }
.memapp-inner { max-width: 900px; margin: 0 auto; }
.memapp-plans {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 52px;
}
.ap-plan {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
  position: relative;
}
.ap-plan:hover { border-color: var(--blue-border); }
.ap-plan.selected { border-color: var(--blue); background: rgba(74,158,255,0.07); }
.ap-plan-check {
  position: absolute;
  top: 12px; right: 12px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.ap-plan.selected .ap-plan-check { background: var(--blue); border-color: var(--blue); }
.ap-plan.selected .ap-plan-check::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(0, -1px);
}
.ap-plan-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.ap-plan-price { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.ap-plan-price small { font-size: 14px; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.ap-plan-includes { font-size: 12px; color: var(--text-mid); line-height: 1.6; }
.app-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  margin-bottom: 32px;
}
.app-form-section-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-form-section-title span {
  width: 22px; height: 22px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--blue);
  font-family: var(--font-head);
  flex-shrink: 0;
}
.app-terms {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.app-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  cursor: pointer;
}
.app-checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.app-checkbox-label { font-size: 14px; color: var(--text); line-height: 1.6; cursor: pointer; }
.app-success {
  display: none;
  text-align: center;
  padding: 52px 32px;
  background: var(--card);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-xl);
}
.app-success.show { display: block; }
.app-success-icon {
  width: 60px; height: 60px;
  background: var(--blue-tint);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.app-success-icon svg { width: 28px; height: 28px; stroke: var(--blue); }
.app-success h3 { font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.app-success p { font-size: 15px; color: var(--text-mid); max-width: 420px; margin: 0 auto; }

/* =====================================================
   FOOTER
===================================================== */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand { font-family: var(--font-head); font-size: 19px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-brand span { color: var(--blue); }
.footer-desc { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.footer-phone {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  color: var(--blue); margin-bottom: 7px;
  text-decoration: none; transition: color 0.2s;
}
.footer-phone:hover { color: var(--blue-light); }
.footer-area { font-size: 13px; color: var(--text-muted); }
.footer-col-title { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li a { font-size: 14px; color: var(--text-mid); transition: color 0.2s; text-decoration: none; }
.footer-links li a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-muted);
  flex-wrap: wrap; gap: 8px;
}
.footer-tagline { font-family: var(--font-head); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); }

/* Sticky mobile call bar */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--blue-mid);
  padding: 14px 20px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.sticky-call:hover { background: var(--blue); }

/* Page top padding to clear fixed nav */
.page-top { padding-top: 66px; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 980px) {
  .steps-wrap { grid-template-columns: 1fr; }
  .services-wrap { grid-template-columns: repeat(2,1fr); }
  .tiers-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tier.featured { transform: none; }
  .tier.featured:hover { transform: translateY(-4px); }
  .mem-grid { grid-template-columns: 1fr; padding: 38px 30px; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .f-row { grid-template-columns: 1fr; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .sticky-call { display: block; }
  section { padding: 72px 0; }
  .hero-stats { gap: 30px; }
  .memapp-plans { grid-template-columns: 1fr; max-width: 360px; }
  .app-form-card { padding: 28px 22px; }
}
@media (max-width: 620px) {
  .services-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mem-grid { padding: 28px 20px; }
  .form-card { padding: 28px 20px; }
  .g-badge { flex-direction: column; text-align: center; padding: 20px; gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: clamp(44px, 10vw, 80px); }
}
