/* =========================================================
   HPX — Hybrid Performance Studio
   Bento design system (typeui.sh "Bento") re-themed to brand
   colors sampled from the HPX logo: navy #0A2344, red #EF1523.
   ========================================================= */

:root {
  /* ---- Brand colors (sampled from logo) ---- */
  --navy: #0A2344;
  --navy-light: #16345F;
  --red: #EF1523;
  --red-dark: #B80E19;
  --red-glow: rgba(239, 21, 35, 0.35);
  --navy-glow: rgba(10, 35, 68, 0.55);

  /* ---- Surface system (dark bento) ---- */
  --bg: #06070A;
  --bg-alt: #0B0D12;
  --surface: #111319;
  --surface-hover: #171A22;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* ---- Text ---- */
  --text: #F2F3F5;
  --text-muted: #9AA3AF;
  --text-faint: #868FA0; /* tinted toward brand navy hue; 6.2:1 on --bg, was 4.17:1 (AA fail) */

  /* ---- Semantic (bento tokens) ---- */
  --success: #16A34A;
  --warning: #D97706;
  --danger: #DC2626;

  /* ---- Spacing scale (bento: 4/8/12/16/24/32) ---- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-24: 96px;

  /* ---- Radius ---- */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* ---- Type ----
     Display: Anton, used sparingly for the single biggest moment per
     surface (hero headline). Sans + Condensed are one family (Barlow)
     in two widths: Condensed carries labels/eyebrows/numerals in place
     of a monospace face, which read as "developer tool" on a gym brand. */
  --font-display: 'Anton', 'Barlow Condensed', sans-serif;
  --font-sans: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-condensed: 'Barlow Condensed', var(--font-sans);

  /* ---- Type scale (rem-based, ~1.25 ratio) ---- */
  --text-2xs: 0.75rem;   /* 12px */
  --text-xs: 0.8125rem;  /* 13px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-md: 1.125rem;   /* 18px */
  --text-lg: 1.25rem;    /* 20px */
  --text-xl: 1.5rem;     /* 24px */

  /* Dark theme: elevation reads mainly from --surface/--surface-hover lightness,
     so shadows stay light-touch rather than the heavy light-mode drop-shadows
     this started with (0.45 opacity / 40px blur, repeated on 25+ cards). */
  --shadow-card: 0 1px 2px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
  --shadow-card-hover: 0 2px 6px rgba(0,0,0,0.3), 0 8px 20px rgba(0,0,0,0.25);

  --header-h: 76px;
}

/* ---------------------------------------------------------
   Reset
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }

section[id] {
  scroll-margin-top: calc(var(--header-h) + var(--sp-6));
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--sp-6); }
}

/* ---------------------------------------------------------
   Typography helpers
   --------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-3);
}
.eyebrow-light { color: #FF6B73; }

.section-head { max-width: 720px; margin-bottom: var(--sp-8); }
.section-head h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.section-lead {
  margin-top: var(--sp-3);
  color: var(--text-muted);
  font-size: var(--text-md);
  max-width: 60ch;
}
.section-lead.light { color: rgba(255,255,255,0.82); }

.text-accent { color: var(--red); }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  padding: var(--sp-3) var(--sp-6);
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 20px var(--red-glow);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); }
.btn-sm { padding: var(--sp-2) var(--sp-4); font-size: var(--text-xs); }

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  /* Solid, not translucent: the logo's navy needs a predictable near-black
     behind it. A blurred-through hero photo (or any lighter section
     scrolling underneath) washed out the navy letters and subtitle. */
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; }

.main-nav ul {
  display: flex;
  gap: var(--sp-8);
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red);
  border-radius: var(--r-pill);
}

.header-actions { display: flex; align-items: center; gap: var(--sp-4); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    display: grid;
    grid-template-rows: 0fr;
    background: #0A0C11;
    border-bottom: 1px solid var(--border);
    transition: grid-template-rows 0.3s ease;
  }
  .main-nav.is-open { grid-template-rows: 1fr; }
  .main-nav { view-transition-name: main-nav; }
  .main-nav ul { flex-direction: column; gap: 0; padding: var(--sp-4); overflow: hidden; min-height: 0; }
  .main-nav a { display: block; padding: var(--sp-4) var(--sp-2); border-bottom: 1px solid var(--border); font-size: var(--text-base); }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
}

@media (max-width: 480px) {
  .brand-logo { height: 38px; }
}

/* ---------------------------------------------------------
   Bento grid system
   --------------------------------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-4);
}
[class*="span-"] { grid-column: span 12; }

@media (min-width: 768px) {
  .span-3 { grid-column: span 6; }
  .span-4 { grid-column: span 6; }
  .span-5 { grid-column: span 6; }
  .span-6 { grid-column: span 6; }
  .span-7 { grid-column: span 6; }
  .span-8 { grid-column: span 8; }
  .span-12 { grid-column: span 12; }
}
@media (min-width: 1024px) {
  .bento-grid { gap: var(--sp-6); }
  .span-3 { grid-column: span 3; }
  .span-4 { grid-column: span 4; }
  .span-5 { grid-column: span 5; }
  .span-6 { grid-column: span 6; }
  .span-7 { grid-column: span 7; }
  .span-8 { grid-column: span 8; }
  .span-12 { grid-column: span 12; }
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
a.bento-card:hover, .bento-card.is-interactive:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
  background: var(--surface-hover);
}

.bento-icon { font-size: 26px; margin-bottom: var(--sp-4); }
.bento-card h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--sp-2); }
.bento-card p { color: var(--text-muted); font-size: var(--text-sm); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + var(--sp-12));
  padding-bottom: var(--sp-16);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 15% 20%, var(--navy-glow), transparent 60%),
    radial-gradient(ellipse 900px 700px at 90% 30%, var(--red-glow), transparent 60%),
    linear-gradient(180deg, rgba(6,7,10,0.55) 0%, rgba(6,7,10,0.75) 55%, #06070A 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.375rem, 7vw, 4.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: var(--sp-6);
  text-wrap: balance;
}
.kinetic-line { display: inline-block; will-change: transform, opacity; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.82);
  max-width: 58ch;
  margin-bottom: var(--sp-8);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

.hero-chips {
  position: relative;
  z-index: 1;
  margin-top: var(--sp-16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.chip-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-4);
  background: rgba(17, 19, 25, 0.7);
  backdrop-filter: blur(10px);
}
.chip-num { font-family: var(--font-condensed); font-weight: 700; font-size: var(--text-xl); font-variant-numeric: tabular-nums; color: var(--red); }
.chip-label { font-family: var(--font-condensed); font-size: var(--text-2xs); color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 640px) {
  .hero { padding-top: calc(var(--header-h) + var(--sp-8)); }
  .hero-chips { grid-template-columns: 1fr; margin-top: var(--sp-8); }
  .hero-cta .btn { flex: 1 1 auto; }
}

/* ---------------------------------------------------------
   Marquee
   --------------------------------------------------------- */
.marquee {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: var(--sp-4) 0;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: var(--sp-4);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: #fff;
  animation: marquee 26s linear infinite;
}
.marquee-track .dot { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */
.section { padding: var(--sp-24) 0; }
.section-alt { background: var(--bg-alt); }
.section-tight { padding: var(--sp-16) 0; }

@media (max-width: 640px) {
  .section { padding: var(--sp-16) 0; }
  .section-tight { padding: var(--sp-12) 0; }
}

/* Why HPX grid: one featured claim + one compact list, not four identical cards */
.why-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(155deg, var(--surface) 0%, var(--navy) 160%);
}
.why-feature .bento-icon { font-size: 40px; }
.why-feature h3 { font-size: var(--text-xl); margin-bottom: var(--sp-3); }
.why-feature p { font-size: var(--text-md); color: rgba(255,255,255,0.82); max-width: 42ch; }

.why-list { display: flex; flex-direction: column; gap: 0; }
.why-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
}
.why-list-item:not(:last-child) { border-bottom: 1px solid var(--border); }
.why-list-item .bento-icon { font-size: 22px; margin-bottom: 0; flex-shrink: 0; }
.why-list-item h3 { font-size: var(--text-base); margin-bottom: 2px; }
.why-list-item p { font-size: var(--text-sm); color: var(--text-muted); }

/* ---------------------------------------------------------
   Program overview cards
   --------------------------------------------------------- */
.program-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.program-card.has-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 25%;
}
.program-card-body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.program-card .tag {
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
}
.program-card h3 { font-size: var(--text-lg); }
.program-card p:not(.tag) { color: var(--text-muted); font-size: var(--text-sm); flex: 1; }
.card-link {
  margin-top: var(--sp-2);
  font-weight: 700;
  font-size: var(--text-sm);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .program-card.span-8 { display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
  .program-card.span-8 img { height: 100%; }
  .program-card.span-8 h3 { font-size: var(--text-xl); }
}

/* ---------------------------------------------------------
   Detail sections
   --------------------------------------------------------- */
.detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 900px) {
  .detail-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
  .detail-inner.reverse .detail-media { order: 2; }
  .detail-inner.reverse .detail-copy { order: 1; }
}

.detail-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.program-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--red);
  background: rgba(239, 21, 35, 0.1);
  border: 1px solid rgba(239, 21, 35, 0.3);
  border-radius: var(--r-pill);
  padding: var(--sp-1) var(--sp-3);
  margin-bottom: var(--sp-4);
}
.detail-copy h2 { font-size: clamp(1.625rem, 4vw, 2.25rem); font-weight: 800; margin-bottom: var(--sp-4); }
.detail-who { font-size: var(--text-md); color: rgba(255,255,255,0.9); margin-bottom: var(--sp-6); line-height: 1.65; }
.detail-who strong { color: #fff; }

.detail-label {
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.chip-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.pill-list li {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-pill);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
}

.detail-sports-band {
  margin-top: var(--sp-16);
  padding-top: var(--sp-12);
  border-top: 1px solid var(--border);
  text-align: center;
}
.pill-list-lg {
  justify-content: center;
  margin-bottom: var(--sp-8);
}
.pill-list-lg li { font-size: var(--text-sm); padding: var(--sp-2) var(--sp-4); }

.detail-meta { display: flex; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.meta-badge {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-badge-label {
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.meta-badge-value { font-family: var(--font-condensed); font-weight: 700; font-size: var(--text-base); color: var(--red); }

.detail-ideal { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: var(--sp-6); }
.detail-ideal strong { color: #fff; }

/* ---------------------------------------------------------
   Find your fit
   --------------------------------------------------------- */
.fit-list { padding: var(--sp-2) var(--sp-6); }
.fit-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  transition: transform 0.2s ease;
}
.fit-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.fit-row:hover { transform: translateX(var(--sp-2)); }
.fit-goal { font-weight: 700; font-size: var(--text-md); }
.fit-arrow { color: var(--red); font-size: var(--text-md); font-weight: 700; text-align: center; }
.fit-rec { color: var(--text-muted); font-size: var(--text-sm); text-align: right; }
.fit-rec em { color: var(--red); font-weight: 700; font-style: normal; }

@media (max-width: 640px) {
  .fit-row { grid-template-columns: 1fr; gap: var(--sp-1); text-align: left; }
  .fit-arrow { display: none; }
  .fit-rec { text-align: left; }
}

.fit-card-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1a30 100%);
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.fit-card-cta p { color: rgba(255,255,255,0.75); font-size: var(--text-sm); }
.fit-card-cta h3 { font-size: clamp(1.25rem, 3vw, 1.625rem); max-width: 640px; margin-bottom: var(--sp-3); }

/* ---------------------------------------------------------
   Pricing
   --------------------------------------------------------- */
.pricing-grid { margin-bottom: var(--sp-6); }

.offer-banner {
  background: linear-gradient(120deg, var(--navy) 0%, #0d1a30 55%, #3a0d12 130%);
  border: 1px solid rgba(239, 21, 35, 0.35);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-card);
}
.offer-flag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: var(--r-pill);
  padding: var(--sp-1) var(--sp-3);
  margin-bottom: var(--sp-4);
}
.offer-banner h3 {
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 800;
  margin-bottom: var(--sp-3);
  max-width: 640px;
}
.offer-banner > p {
  color: rgba(255,255,255,0.78);
  font-size: var(--text-sm);
  max-width: 60ch;
  margin-bottom: var(--sp-6);
}
.offer-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.offer-highlights li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-pill);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.9);
}
.offer-highlights strong { color: #fff; }

.pricing-table-card { padding: var(--sp-6); }
.pricing-table-title { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--sp-2); }
.pricing-swipe-hint {
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: var(--sp-4);
}
@media (min-width: 900px) { .pricing-swipe-hint { display: none; } }

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.pricing-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.pricing-table thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  padding: var(--sp-4);
  white-space: nowrap;
}
.pricing-table tbody td {
  padding: var(--sp-4);
  border-top: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.pricing-table tbody tr:hover { background: var(--surface-hover); }

.pkg-sub {
  display: block;
  font-size: var(--text-2xs);
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.savings-note { color: var(--success); font-weight: 600; }

.fee-cell {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-cell { white-space: nowrap; }
.price-strike {
  display: block;
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  font-variant-numeric: tabular-nums;
  color: var(--text-faint);
  text-decoration: line-through;
}
.price-final {
  display: block;
  font-family: var(--font-condensed);
  font-size: var(--text-md);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--red);
}

.pricing-note {
  margin-top: var(--sp-4);
  font-size: var(--text-xs);
  color: var(--text-faint);
}

.pricing-footnote {
  font-size: var(--text-xs);
  color: var(--text-faint);
  max-width: 70ch;
  margin-top: var(--sp-6);
}

.pricing-cta { margin-top: var(--sp-8); text-align: center; }

/* ---------------------------------------------------------
   Stats band
   --------------------------------------------------------- */
.stats-band {
  background: var(--red);
  padding: var(--sp-12) 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8) var(--sp-4);
  text-align: center;
}
@media (min-width: 768px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }
.stat-num { display: block; font-family: var(--font-display); font-weight: 400; font-variant-numeric: tabular-nums; font-size: clamp(2rem, 6vw, 3.25rem); color: #fff; }
.stat-label { font-family: var(--font-condensed); font-size: var(--text-xs); font-weight: 600; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------------------------------------------------------
   Gallery
   --------------------------------------------------------- */
.gallery-item { padding: 0; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ---------------------------------------------------------
   CTA band
   --------------------------------------------------------- */
.cta-band { position: relative; padding: var(--sp-24) 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 6vw, 3.5rem); line-height: 1.05; margin-bottom: var(--sp-4); }
.cta-inner .hero-cta { justify-content: center; margin-top: var(--sp-8); }

/* ---------------------------------------------------------
   Contact
   --------------------------------------------------------- */
.contact-primary {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background: linear-gradient(120deg, #114d2e 0%, #0f3a25 100%);
  border-color: color-mix(in srgb, var(--success) 40%, transparent);
  flex-wrap: wrap;
}
.contact-primary-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.contact-primary h3 { font-size: var(--text-lg); margin-bottom: 4px; }
.contact-primary p { color: rgba(255,255,255,0.75); }
.contact-primary .card-link { margin-left: auto; }

.contact-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
@media (min-width: 768px) {
  .contact-info-list { grid-template-columns: repeat(4, 1fr); }
}
.contact-info-item:nth-child(n+3) { padding-top: var(--sp-6); border-top: 1px solid var(--border); }
@media (min-width: 768px) {
  .contact-info-item { padding-left: var(--sp-6); border-left: 1px solid var(--border); }
  .contact-info-item:first-child { padding-left: 0; border-left: none; }
  .contact-info-item:nth-child(n+3) { padding-top: 0; border-top: none; }
}

.contact-label {
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: var(--sp-2);
}
.contact-value { font-weight: 600; font-size: var(--text-sm); margin-top: 2px; }
.contact-value a { text-decoration: none; display: inline-block; padding: var(--sp-2) 0; margin: calc(var(--sp-2) * -1) 0; }
.contact-value a:hover { color: var(--red); }
.contact-value-sub { color: var(--text-muted); font-weight: 500; font-size: var(--text-xs); margin-top: 4px; }

.placeholder-text {
  color: #FBBF24;
  border: 1px dashed rgba(251, 191, 36, 0.5);
  border-radius: var(--r-sm);
  padding: 4px 8px;
  display: inline-block;
  font-size: var(--text-xs) !important;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: var(--sp-16) 0 var(--sp-8); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer-brand img { height: 40px; width: auto; margin-bottom: var(--sp-3); }
.footer-brand p { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: var(--sp-4); }
.footer-social { display: flex; gap: var(--sp-4); }
.footer-social a { font-size: var(--text-xs); font-weight: 600; color: var(--text-muted); }
.footer-social a:hover { color: #fff; }

.footer-heading {
  font-family: var(--font-condensed);
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a { font-size: var(--text-sm); color: var(--text-muted); }
.footer-col a:hover { color: #fff; }
.footer-col li.placeholder-text { color: #FBBF24; font-size: var(--text-xs) !important; }

.footer-bottom {
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* ---------------------------------------------------------
   Floating WhatsApp button
   --------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: max(var(--sp-4), env(safe-area-inset-right) + var(--sp-2));
  bottom: max(var(--sp-4), env(safe-area-inset-bottom) + var(--sp-2));
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

@media (min-width: 900px) {
  .whatsapp-float {
    right: max(var(--sp-8), env(safe-area-inset-right) + var(--sp-4));
    bottom: max(var(--sp-8), env(safe-area-inset-bottom) + var(--sp-4));
  }
}
