/* ============================================
   SPS FITNESS - SHARED STYLES
   Bold athletic brand · Halesowen
   ============================================ */

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

:root {
  --blue: #2E5DFF;
  --blue-light: #4D7BFF;
  --blue-dark: #1A3FCC;
  --black: #0a0a0a;
  --black-pure: #000;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.65);
  --text-faint: rgba(255,255,255,0.45);
  --border-blue: rgba(46,93,255,0.35);
  --border-faint: rgba(255,255,255,0.1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- FONTS ---------- */
.display { font-family: 'Anton', 'Bebas Neue', Impact, sans-serif; font-style: italic; letter-spacing: -0.02em; font-weight: 400; }
.heading-italic { font-style: italic; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; }

/* ---------- LAYOUT ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 40px 0; position: relative; overflow: hidden; }
@media (min-width: 768px) { section { padding: 56px 0; } }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-blue);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; }
.brand-name { font-family: 'Anton', sans-serif; font-style: italic; font-size: 16px; letter-spacing: 2px; font-weight: 400; color: white; }
.brand-tag { font-size: 9px; letter-spacing: 3px; color: var(--blue); font-weight: 700; margin-top: 1px; }

.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-family: 'Anton', sans-serif; font-style: italic;
  font-size: 12px; letter-spacing: 2.5px;
  color: white; opacity: 0.65; transition: opacity 0.2s, color 0.2s;
}
.site-nav a:hover { opacity: 1; color: var(--blue-light); }
.site-nav a.active { opacity: 1; color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 10px 18px;
  font-family: 'Anton', sans-serif;
  font-style: italic; font-size: 11px; letter-spacing: 1.5px;
  font-weight: 400;
  transform: skewX(-8deg);
  border-radius: 3px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(46,93,255,0.4);
  opacity: 1 !important;
}
.nav-cta:hover { transform: skewX(-8deg) translateY(-2px); box-shadow: 0 8px 25px rgba(46,93,255,0.6); }
.nav-cta span { display: inline-block; transform: skewX(8deg); }

.mobile-menu-toggle { display: none; background: none; border: none; color: white; cursor: pointer; padding: 8px; }
.mobile-menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .site-nav, .nav-cta { display: none; }
  .mobile-menu-toggle { display: block; }
  .site-nav.mobile-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); padding: 24px;
    border-top: 1px solid var(--border-blue);
    gap: 20px;
  }
  .site-nav.mobile-open .nav-cta { display: inline-block; align-self: flex-start; }
  .site-nav.mobile-open + .nav-cta { display: inline-block; }
}

/* ---------- HERO ---------- */
.hero {
  text-align: center;
  padding: 56px 0 70px;
  position: relative;
  isolation: isolate;
}

/* Hero with photo background */
.hero-with-image .hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('images/gym-class.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: grayscale(0.2) contrast(1.05);
}
.hero-with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.85) 75%),
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.95) 100%);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background-image:
    radial-gradient(circle at 50% 40%, rgba(46,93,255,0.18) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent 0 49px, rgba(46,93,255,0.12) 49px 50px),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(46,93,255,0.12) 49px 50px);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(46,93,255,0.3) 1px, transparent 1.5px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at 50% 50%, transparent 30%, black 90%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 30%, black 90%);
  opacity: 0.4;
}

.hero-logo {
  width: 90px; height: 90px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 32px rgba(46,93,255,0.55));
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 8px 32px rgba(46,93,255,0.55)); }
  50% { filter: drop-shadow(0 8px 48px rgba(46,93,255,0.85)); }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,93,255,0.1);
  border: 1px solid rgba(46,93,255,0.5);
  color: var(--blue-light);
  padding: 7px 18px;
  font-family: 'Anton', sans-serif;
  font-size: 10px; letter-spacing: 3px; font-weight: 400;
  font-style: italic;
  transform: skewX(-8deg);
  margin-bottom: 26px;
}
.eyebrow span { display: inline-block; transform: skewX(8deg); }
.eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--blue);
  border-radius: 50%; box-shadow: 0 0 12px var(--blue);
  display: inline-block; transform: skewX(8deg);
}

.hero h1 {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(40px, 8vw, 84px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.hero h1 .accent {
  background: linear-gradient(180deg, #4D7BFF 0%, #2E5DFF 50%, #1A3FCC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(46,93,255,0.5));
}
.hero p.lead {
  color: var(--text-muted);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.65;
  max-width: 520px;
  margin: 24px auto 36px;
}
.hero p.lead a.lead-link {
  color: var(--blue-light);
  border-bottom: 1px dotted rgba(77,123,255,0.5);
  transition: color 0.2s, border-color 0.2s;
}
.hero p.lead a.lead-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }

.btn {
  font-family: 'Anton', sans-serif;
  font-style: italic; font-weight: 400;
  font-size: 13px; letter-spacing: 1.5px;
  padding: 17px 32px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  transform: skewX(-8deg);
  border: 1px solid transparent;
  display: inline-block;
}
.btn span { display: inline-block; transform: skewX(8deg); }
.btn-primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue-light);
  box-shadow: 0 10px 40px rgba(46,93,255,0.5);
}
.btn-primary:hover { transform: skewX(-8deg) translateY(-3px); box-shadow: 0 14px 50px rgba(46,93,255,0.7); }
.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.5); }
.btn-white { background: white; color: var(--blue-dark); border-color: white; box-shadow: 0 15px 50px rgba(0,0,0,0.4); }
.btn-white:hover { transform: skewX(-8deg) translateY(-3px); box-shadow: 0 18px 60px rgba(0,0,0,0.5); }

.hero-stats {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.stat {
  border: 1px solid rgba(46,93,255,0.4);
  background: rgba(46,93,255,0.05);
  padding: 14px 22px;
  min-width: 120px;
  text-align: center;
}
.stat-number {
  font-family: 'Anton', sans-serif; font-style: italic;
  color: var(--blue);
  font-size: 28px; line-height: 1; letter-spacing: -1px;
}
.stat-label {
  font-size: 9px; letter-spacing: 2px;
  color: var(--text-faint);
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
}

/* ---------- SECTION HEADINGS ---------- */
.section-eyebrow {
  color: var(--blue);
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 3.5px;
  font-weight: 400;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}
.section-eyebrow[style*="text-align: left"] {
  justify-content: flex-start;
}
.section-eyebrow[style*="text-align: left"]::before {
  display: none;
}
h2.section-title {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 12px;
}
h2.section-title .accent { color: var(--blue); }
.section-intro {
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ---------- PROGRAMS ---------- */
.programs-grid {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 720px) { .programs-grid { grid-template-columns: 1fr 1fr; } }

.program-card {
  position: relative;
  padding: 36px 28px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  transition: transform 0.3s;
  overflow: hidden;
}
.program-card:hover { transform: translateY(-6px); }
.program-card.ladies {
  background: linear-gradient(180deg, rgba(46,93,255,0.18) 0%, rgba(10,10,10,0.95) 100%);
  border: 1px solid rgba(46,93,255,0.35);
}
.program-card.guys {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  border: 1px solid var(--blue-light);
  box-shadow: 0 10px 40px rgba(46,93,255,0.3);
}
.program-badge {
  display: inline-block;
  padding: 5px 14px;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 9px;
  letter-spacing: 2.5px;
  font-weight: 400;
  margin-bottom: 18px;
  transform: skewX(-8deg);
}
.program-card.ladies .program-badge {
  background: rgba(46,93,255,0.25);
  color: var(--blue-light);
}
.program-card.guys .program-badge {
  background: rgba(0,0,0,0.35);
  color: white;
}
.program-badge span { display: inline-block; transform: skewX(8deg); }

.program-title-small {
  color: white;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.program-title-big {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-style: italic;
  font-size: 38px;
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.program-card.ladies .program-title-big { color: var(--blue); }
.program-card.guys .program-title-big { color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }

.program-card p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.program-card.ladies p { color: var(--text-muted); }

.program-features { margin-bottom: 26px; }
.program-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  font-weight: 500;
}
.program-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
}
.program-card.guys .program-features li::before { color: white; }

.program-link {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--blue);
  display: inline-block;
  transition: gap 0.2s, transform 0.2s;
}
.program-card.guys .program-link { color: white; }
.program-link:hover { transform: translateX(6px); }

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-card {
  background: rgba(46,93,255,0.06);
  border-left: 4px solid var(--blue);
  padding: 36px 32px;
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover { background: rgba(46,93,255,0.12); transform: translateX(4px); }
.why-card-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 16px;
}
.why-icon-tile {
  width: 56px; height: 56px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transform: skewX(-8deg);
  flex-shrink: 0;
}
.why-icon-tile svg {
  width: 28px; height: 28px;
  color: white;
  transform: skewX(8deg);
}
.why-card h3 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
}
.why-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- REVIEWS ---------- */
.reviews-section { background: var(--black); }
.review-card {
  background: linear-gradient(135deg, rgba(46,93,255,0.14) 0%, rgba(10,10,10,0.95) 100%);
  border: 1px solid rgba(46,93,255,0.35);
  padding: 40px 36px;
  max-width: 640px;
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  position: relative;
}
.review-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.review-stars span { color: var(--blue); font-size: 18px; }
.review-text {
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.55;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 24px;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(46,93,255,0.25);
}
.review-avatar {
  width: 42px; height: 42px;
  background: var(--blue);
  color: white;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transform: skewX(-8deg);
  flex-shrink: 0;
}
.review-avatar span { transform: skewX(8deg); }
.review-name {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 19px;
  letter-spacing: 0.5px;
}
.review-meta { font-size: 12px; letter-spacing: 1.8px; color: var(--blue); font-weight: 700; margin-top: 4px; }

.review-dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 28px;
}
.review-dots span {
  height: 4px; background: rgba(255,255,255,0.2);
  width: 12px;
}
.review-dots .active { background: var(--blue); width: 32px; }

/* ---------- FEATURE STRIP (Ladies / Guys pages) ---------- */
.feature-strip {
  position: relative;
  padding: 0;
  min-height: 480px;
  overflow: hidden;
  isolation: isolate;
}
.feature-strip-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -2;
  filter: contrast(1.05) saturate(1.05);
}
.feature-strip-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.55) 38%, rgba(10,10,10,0) 65%, transparent 100%),
    linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.25) 100%);
  display: flex;
  align-items: center;
  min-height: 480px;
}
.feature-strip-content {
  max-width: 520px;
  padding: 60px 0;
}
.feature-strip-title {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: white;
  -webkit-text-stroke: 1.5px #0a0a0a;
  paint-order: stroke fill;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}
.feature-strip-title .accent {
  background: linear-gradient(180deg, #4D7BFF, #2E5DFF, #1A3FCC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: 0;
}
.feature-strip-content p {
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  line-height: 1.65;
  max-width: 440px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

@media (max-width: 700px) {
  .feature-strip { min-height: 420px; }
  .feature-strip-overlay {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.88) 100%);
    align-items: flex-end;
  }
  .feature-strip-content {
    padding: 40px 0;
    max-width: 100%;
  }
}

/* ---------- PHOTO BREAK (visual pause, no overlay) ---------- */
.photo-break {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  background: var(--black-pure);
}
.photo-break img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (min-width: 880px) {
  .photo-break {
    max-height: 520px;
  }
  .photo-break img {
    max-height: 520px;
    object-fit: cover;
  }
}

/* ---------- PAGE BANNER PHOTOS ---------- */
.page-banner-with-image .page-banner-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--banner-image);
  background-size: cover;
  background-position: center 25%;
  opacity: 0.3;
  filter: grayscale(0.25) contrast(1.1);
}
.page-banner-with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.85) 75%),
    linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.95) 100%);
}
.review-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.carousel-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0; /* allow flex shrinking */
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0 !important; /* override .review-card max-width */
  max-width: none !important;
}

/* Carousel cards re-use .review-card styling */

.carousel-arrow {
  width: 44px;
  height: 44px;
  background: rgba(46,93,255,0.1);
  border: 1px solid rgba(46,93,255,0.4);
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
}
.carousel-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: scale(1.05);
}
.carousel-arrow svg { width: 22px; height: 22px; }

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.carousel-dots .dot {
  height: 4px;
  width: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, width 0.3s;
  padding: 0;
}
.carousel-dots .dot:hover { background: rgba(255,255,255,0.4); }
.carousel-dots .dot.active {
  background: var(--blue);
  width: 36px;
}

@media (max-width: 640px) {
  .carousel-arrow {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
  }
  .carousel-prev { left: -8px; }
  .carousel-next { right: -8px; }
  .review-carousel { gap: 0; }
}

.google-link {
  display: block; text-align: center; margin-top: 32px;
}
.google-link a {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 2px;
  transform: skewX(-8deg);
  transition: background 0.2s;
}
.google-link a:hover { background: rgba(46,93,255,0.1); }
.google-link a span { display: inline-block; transform: skewX(8deg); }

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.team-member { text-align: center; }
.team-photo-wrap {
  position: relative;
  width: 160px; height: 160px;
  margin: 0 auto 14px;
}
.team-photo-wrap::before {
  content: ''; position: absolute; inset: -6px;
  background: radial-gradient(circle, rgba(46,93,255,0.4), transparent 65%);
  filter: blur(14px);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
}
.team-member:hover .team-photo-wrap::before { opacity: 1; }
.team-photo {
  position: relative;
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(46,93,255,0.6);
  background: var(--black);
  transition: border-color 0.3s, transform 0.3s;
}
.team-member:hover .team-photo { border-color: var(--blue); transform: scale(1.04); }
.team-member.founder .team-photo {
  border: 3px solid var(--blue);
  box-shadow: 0 10px 32px rgba(46,93,255,0.45);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-badge {
  position: absolute; bottom: -8px; left: 50%;
  transform: translateX(-50%) skewX(-8deg);
  background: var(--blue);
  color: white;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 5px 14px;
  box-shadow: 0 4px 14px rgba(46,93,255,0.5);
  white-space: nowrap;
}
.founder-badge span { display: inline-block; transform: skewX(8deg); }
.team-name {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: 18px;
}
.team-role {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-top: 3px;
}
.team-member:not(.founder) .team-role { color: var(--text-faint); }

.team-bio {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FINAL CTA ---------- */
.cta-section {
  background: var(--blue);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 49px, rgba(255,255,255,0.08) 49px 50px),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(255,255,255,0.08) 49px 50px),
    radial-gradient(circle at 0 0, rgba(0,212,255,0.3), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(0,212,255,0.3), transparent 40%);
}
.cta-section .container { text-align: center; position: relative; }
.cta-section .section-eyebrow { color: rgba(255,255,255,0.85); }
.cta-section h2 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color: white;
  -webkit-text-stroke: 2px #0a0a0a;
  paint-order: stroke fill;
  text-shadow:
    3px 3px 0 rgba(10,10,10,0.4),
    0 4px 18px rgba(0,0,0,0.35);
}
.cta-section p {
  color: rgba(255,255,255,0.92);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 15px;
  font-weight: 500;
}
.cta-foot {
  margin-top: 22px;
  color: rgba(255,255,255,0.85);
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 2px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black-pure);
  border-top: 1px solid var(--border-blue);
  padding: 36px 0 20px;
}
.footer-grid {
  display: grid;
  gap: 24px 20px;
  margin-bottom: 24px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-col h4 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer-col p, .footer-col a {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--blue-light); }

/* On mobile, brand spans full width at top */
@media (max-width: 639px) {
  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(46,93,255,0.15);
  }
  .footer-col:first-child .footer-brand {
    justify-content: center;
  }
}

.footer-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img { width: 36px; height: 36px; }
.footer-brand span {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-faint);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.social {
  display: flex; gap: 10px;
}
.social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(46,93,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.social a:hover { background: rgba(46,93,255,0.15); border-color: var(--blue); }
.social svg { width: 15px; height: 15px; color: var(--blue); }

/* ---------- PAGE BANNER (for non-home pages) ---------- */
.page-banner {
  text-align: center;
  padding: 70px 0 80px;
  position: relative;
  isolation: isolate;
}
.page-banner-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(46,93,255,0.18), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 49px, rgba(46,93,255,0.1) 49px 50px),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(46,93,255,0.1) 49px 50px);
}
.page-banner h1 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 14px;
}
.page-banner h1 .accent {
  background: linear-gradient(180deg, #4D7BFF, #2E5DFF, #1A3FCC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-banner p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- LADIES / GUYS PAGES ---------- */
.session-grid {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 40px auto 0;
}
@media (min-width: 700px) { .session-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }

.session-card {
  background: rgba(46,93,255,0.06);
  border: 1px solid rgba(46,93,255,0.25);
  padding: 22px 20px;
  transition: background 0.2s, border-color 0.2s;
}
.session-card:hover { background: rgba(46,93,255,0.12); border-color: var(--blue); }
.session-day {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.session-times { color: var(--white); font-size: 14px; line-height: 1.8; }

.process-list {
  display: grid;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  counter-reset: step;
}
.process-step {
  display: flex;
  gap: 20px;
  padding: 22px;
  background: rgba(46,93,255,0.05);
  border-left: 3px solid var(--blue);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.process-step h3 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: rgba(46,93,255,0.06);
  border: 1px solid rgba(46,93,255,0.25);
  padding: 32px 28px;
}
.contact-card h3 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--blue);
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.contact-icon {
  width: 38px; height: 38px;
  background: rgba(46,93,255,0.15);
  border: 1px solid rgba(46,93,255,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--blue); }
.contact-detail-label {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 4px;
}
.contact-detail-value {
  color: white;
  font-size: 14px;
  line-height: 1.5;
}
.contact-detail-value a:hover { color: var(--blue-light); }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(46,93,255,0.3);
  color: white;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(46,93,255,0.08);
}
.form-row textarea { min-height: 110px; resize: vertical; }

/* ---------- "BOTH PROGRAMMES INCLUDE" UNIFIED TILE ---------- */
.both-include-tile {
  margin: 30px auto 0;
  max-width: 880px;
  padding: 24px 26px;
  background: linear-gradient(135deg, rgba(46,93,255,0.08) 0%, rgba(46,93,255,0.02) 100%);
  border: 1px solid rgba(46,93,255,0.3);
  border-top: 3px solid var(--blue);
  position: relative;
}
.both-include-header {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 18px;
}
.both-include-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 26px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) {
  .both-include-list { grid-template-columns: 1fr 1fr; }
}
.both-include-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: white;
  font-weight: 500;
}
.both-include-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: white;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  transform: skewX(-8deg);
}

/* ---------- INLINE PHOTO STRIPS (programme pages) ---------- */
.inline-photo-strip {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.inline-photo-strip .container {
  max-width: 880px;
}
.inline-photo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .inline-photo-row.two-up { grid-template-columns: 1fr 1fr; }
}
.inline-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  width: 100%;
  background: linear-gradient(135deg, rgba(46,93,255,0.1) 0%, rgba(10,10,10,0.5) 100%);
  border: 1px solid rgba(46,93,255,0.35);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.inline-photo:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(46,93,255,0.3);
}
.inline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.4s;
}
.inline-photo:hover img {
  transform: scale(1.03);
}
.inline-photo-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--blue);
  color: white;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 12px;
  transform: skewX(-8deg);
  z-index: 2;
}
/* Specific positioning overrides */
.inline-photo.pos-top img { object-position: center 15%; }
.inline-photo.pos-center img { object-position: center 35%; }

/* Mobile: just tighten gap */
@media (max-width: 720px) {
  .inline-photo-row {
    gap: 14px;
  }
}

/* ---------- GOOGLE VERIFIED BADGE ---------- */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(46,93,255,0.06);
  border: 1px solid rgba(46,93,255,0.3);
  padding: 10px 18px;
  margin: 0 auto 36px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.google-badge svg {
  flex-shrink: 0;
}
.google-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.google-badge-stars {
  color: #FFC107;
  font-size: 14px;
  letter-spacing: 2px;
}
.google-badge-label {
  color: var(--text-muted);
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

/* ---------- CONTACT PAGE WARM PHOTO ---------- */
.contact-photo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 880px) {
  .contact-photo-row {
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 48px;
  }
}
.contact-warm-photo {
  aspect-ratio: 3 / 4;
  max-width: 380px;
  margin: 0 auto;
}
.contact-warm-photo img {
  object-position: center 30%;
}
.contact-warm-text h2 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 18px;
}
@media (max-width: 880px) {
  .contact-warm-text {
    text-align: center;
  }
}

/* ---------- ACCESSIBILITY: SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--blue);
  color: white;
  padding: 14px 22px;
  z-index: 99999;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid white;
}

/* ---------- ACCESSIBILITY: FOCUS-VISIBLE OUTLINES ---------- */
/* Keyboard users get a clear focus ring, mouse users don't */
*:focus { outline: none; }
*:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
input:focus-visible,
textarea:focus-visible {
  outline-offset: 1px;
}

/* ---------- MOBILE MENU POLISH ---------- */
.site-nav.mobile-open {
  display: flex;
  animation: slideDown 0.25s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  transform: skewX(-8deg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.back-to-top.visible {
  opacity: 0.9;
  visibility: visible;
}
.back-to-top:hover {
  opacity: 1;
  transform: skewX(-8deg) scale(1.1);
}
@media (max-width: 880px) {
  .back-to-top {
    bottom: 84px;
    left: 16px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

/* ---------- EXIT INTENT POPUP ---------- */
.exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s;
}
.exit-intent-overlay.show {
  display: flex;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.exit-intent-modal {
  background: var(--black);
  border: 1px solid var(--blue);
  max-width: 480px;
  width: 100%;
  padding: 48px 32px 40px;
  text-align: center;
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1.2);
  background:
    radial-gradient(ellipse at top, rgba(46,93,255,0.18) 0%, rgba(10,10,10,1) 70%);
}
@keyframes popIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 36px;
  height: 36px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.exit-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.exit-icon {
  width: 64px;
  height: 64px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transform: skewX(-8deg);
}
.exit-icon svg {
  width: 32px;
  height: 32px;
  color: white;
  transform: skewX(8deg);
}

.exit-eyebrow {
  color: var(--blue);
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.exit-title {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.exit-title .accent {
  color: var(--blue);
}
.exit-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.exit-cta {
  display: inline-block;
  margin-bottom: 14px;
}
.exit-alt {
  display: block;
  color: var(--text-faint);
  font-size: 13px;
  margin-top: 14px;
}
.exit-alt a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}
.exit-alt a:hover {
  color: var(--blue-light);
}

/* ---------- FOOTER AREAS LIST ---------- */
.footer-areas {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-areas li {
  margin-bottom: 4px;
}
.footer-areas a {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-areas a:hover {
  color: var(--blue);
}

/* ---------- FORM LOADING STATE ---------- */
button[type="submit"]:disabled,
.btn.is-loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}
.btn.is-loading::after {
  content: '...';
  animation: dots 1.4s steps(4, end) infinite;
}
@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   SALES SECTIONS (programme pages)
   ============================================ */

/* ---------- SALES GRID ---------- */
.sales-section { background: var(--black); }
.sales-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 640px) { .sales-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .sales-grid { grid-template-columns: repeat(3, 1fr); } }

.sales-feature {
  background: rgba(46,93,255,0.05);
  border: 1px solid rgba(46,93,255,0.25);
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
}
.sales-feature:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: rgba(46,93,255,0.1);
}
.sales-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transform: skewX(-8deg);
}
.sales-icon svg {
  width: 24px;
  height: 24px;
  color: white;
  transform: skewX(8deg);
}
.sales-feature h3 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sales-feature p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ---------- 3D SCAN SECTION ---------- */
.scan-section {
  background: var(--black);
  position: relative;
  isolation: isolate;
}
.scan-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 100% 50%, rgba(46,93,255,0.12) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 49px, rgba(46,93,255,0.06) 49px 50px);
}
.scan-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 880px) {
  .scan-grid { grid-template-columns: 1fr 1fr; }
}
.scan-text .section-eyebrow {
  justify-content: flex-start;
}
.scan-title {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.scan-title .accent {
  background: linear-gradient(180deg, #4D7BFF, #2E5DFF, #1A3FCC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.scan-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.scan-text strong {
  color: white;
  font-weight: 700;
}
.scan-list {
  margin: 18px 0;
  padding-left: 0;
  list-style: none;
}
.scan-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.scan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
  font-size: 15px;
}
.scan-list li strong { 
  color: white; 
  display: inline;
  margin-right: 6px;
}
.scan-quote {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue) !important;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-left: 3px solid var(--blue);
  padding-left: 14px;
  margin-top: 22px !important;
}
.scan-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(46,93,255,0.1) 0%, rgba(10,10,10,0.5) 100%);
  border: 1px solid rgba(46,93,255,0.35);
  padding: 12px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.scan-image:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(46,93,255,0.3);
}
.scan-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}
.scan-image:hover img {
  transform: scale(1.02);
}
.scan-image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--blue);
  color: white;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 12px;
  transform: skewX(-8deg);
  z-index: 2;
}

/* ---------- WHO IT'S FOR SECTION ---------- */
.who-section { background: var(--black); }
.who-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 760px) { .who-grid { grid-template-columns: 1fr 1fr; } }

.who-card {
  padding: 30px 26px;
  border: 1px solid rgba(46,93,255,0.3);
  background: rgba(46,93,255,0.04);
}
.who-card-yes {
  border-color: rgba(46,93,255,0.5);
  background: rgba(46,93,255,0.08);
}
.who-card-no {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.02);
  opacity: 0.85;
}
.who-card h3 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.who-card-yes h3 { color: var(--blue); }
.who-card-no h3 { color: rgba(255,255,255,0.7); }
.who-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.who-card-yes ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}
.who-card-no ul li::before {
  content: '✕';
  color: rgba(255,255,255,0.4);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

/* ---------- SEO CONTENT BLOCK ---------- */
.seo-content {
  background: var(--black-pure);
  padding: 60px 0;
  border-top: 1px solid rgba(46,93,255,0.15);
}
.seo-content-inner {
  max-width: 760px;
  margin: 0 auto;
}
.seo-heading {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: white;
}
.seo-content-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.seo-content-inner a {
  color: var(--blue-light);
  border-bottom: 1px dotted rgba(77,123,255,0.5);
  transition: color 0.2s, border-color 0.2s;
}
.seo-content-inner a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* ---------- URGENCY BAR ---------- */
.urgency-bar {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--blue-dark));
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  position: relative;
  z-index: 50;
  box-shadow: 0 4px 24px rgba(46,93,255,0.4);
}
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 0;
  flex-wrap: wrap;
  text-align: center;
}
.urgency-dot {
  width: 12px; height: 12px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,255,136,0.9), 0 0 14px rgba(0,255,136,0.9);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
}
.urgency-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #00ff88;
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.urgency-text {
  color: white;
  font-size: 15px;
  letter-spacing: 0.3px;
  font-weight: 500;
}
.urgency-text strong {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 4px;
}
.urgency-link {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  background: white;
  color: var(--blue-dark) !important;
  padding: 9px 22px;
  font-size: 14px;
  letter-spacing: 2px;
  border: 2px solid white;
  transition: all 0.2s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.urgency-link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.25s;
}
.urgency-link:hover {
  background: var(--black);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.urgency-link:hover::after {
  transform: translateX(4px);
}
@media (max-width: 640px) {
  .urgency-text { font-size: 13px; }
  .urgency-text strong { font-size: 14px; letter-spacing: 1.5px; }
  .urgency-content { gap: 12px; padding: 14px 0; }
  .urgency-link { font-size: 12px; padding: 7px 16px; }
}

/* ---------- TRANSFORMATIONS ---------- */
.transformation-single {
  display: flex;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
}

/* Side-by-side, centered, identical cards */
.transformation-grid-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}

/* Card – fixed width, NOT width:100% */
.transformation-card,
.transformation-featured {
  display: flex;
  flex-direction: column;
  width: 340px;
  max-width: 100%;
  background: linear-gradient(135deg, rgba(46,93,255,0.1) 0%, rgba(10,10,10,0.5) 100%);
  border: 1px solid rgba(46,93,255,0.35);
  overflow: hidden;
  margin: 0;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.transformation-card:hover,
.transformation-featured:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(46,93,255,0.3);
}

/* Photo – fixed 340 x 453, image forced to fill it */
.transformation-photo {
  width: 100%;
  height: 453px;
  overflow: hidden;
  position: relative;
  background: var(--black-pure);
  flex-shrink: 0;
}
.transformation-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Only collapse to fluid when the card genuinely cannot fit */
@media (max-width: 379px) {
  .transformation-card,
  .transformation-featured {
    width: 100%;
  }
  .transformation-photo {
    height: auto;
    aspect-ratio: 3 / 4;
  }
}

/* Info section below photo */
.transformation-info {
  padding: 28px 24px;
  flex: 1;
}
.transformation-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(46,93,255,0.2);
}
.transformation-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.transformation-stat .stat-big {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.5px;
}
.transformation-stat .stat-small {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.8px;
  font-weight: 700;
}
.transformation-quote {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
}
.transformation-name {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 1.8px;
  margin-top: 12px;
}


/* ---------- CALL STEPS ---------- */
.call-process { background: var(--black); }
.call-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
  counter-reset: callstep;
}
@media (min-width: 760px) {
  .call-steps { grid-template-columns: repeat(4, 1fr); }
}
.call-step {
  background: rgba(46,93,255,0.05);
  border: 1px solid rgba(46,93,255,0.2);
  padding: 26px 22px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.call-step:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: rgba(46,93,255,0.1);
}
.call-step-number {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 12px;
  opacity: 0.85;
}
.call-step h3 {
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.call-step p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--black); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(46,93,255,0.04);
  border: 1px solid rgba(46,93,255,0.2);
  transition: border-color 0.2s, background 0.2s;
}
.faq-item:hover { border-color: rgba(46,93,255,0.45); }
.faq-item[open] {
  border-color: var(--blue);
  background: rgba(46,93,255,0.08);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.5px;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue-light); }
.faq-toggle {
  font-size: 24px;
  color: var(--blue);
  transition: transform 0.3s;
  font-style: normal;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px 20px 22px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 99;
  background: var(--blue);
  color: white !important;
  padding: 14px 20px;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 2px;
  border: 1px solid var(--blue-light);
  box-shadow: 0 10px 30px rgba(46,93,255,0.5), 0 4px 12px rgba(0,0,0,0.4);
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  isolation: isolate;
  overflow: hidden;
}
.sticky-mobile-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.sticky-mobile-cta-arrow {
  font-style: normal;
  font-size: 16px;
}
.sticky-mobile-cta-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: cta-shine 3s ease-in-out infinite;
  z-index: -1;
}
@keyframes cta-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
@media (max-width: 880px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 80px; } /* space so footer isn't covered */
}
