/* ================= SCOUT VIDEOGRAPHY — MOBILE-FIRST ================= */
/* Teal + Green · Fun, energetic, youth-sports · Teens first, parents follow */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --teal: #0D4A7A;
  --teal-dark: #062840;
  --teal-mid: #0E6B9E;
  --teal-light: #E6F2FB;

  --green: #26C96F;
  --green-dark: #1DA85C;
  --green-light: #E0F9ED;

  --coral: #F43F5E;
  --coral-dark: #E11D48;

  --yellow: #FBBF24;

  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;

  --white: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --transition: 0.2s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

/* ================= GLOBAL ================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  background: var(--white);
  color: var(--slate-700);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Archivo Black', 'Arial Black', sans-serif;
  font-weight: 400;
  color: var(--slate-900);
  line-height: 1.1;
}

a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-mid); }
img { max-width: 100%; display: block; }

/* ================= LAYOUT ================= */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.section { padding: 48px 16px; }
.section-alt { background: var(--slate-50); }
.section-dark { background: var(--teal); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  color: var(--slate-900);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #062840 0%, #0D4A7A 50%, #1a6aa5 100%);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(6,40,64,0.25);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header-logo { height: 50px; border-radius: 8px; transition: var(--transition); }

.header-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Nav — hidden on mobile, dropdown via hamburger */
.nav-list {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  padding: 12px;
  width: 280px;
  background: var(--white);
  position: absolute;
  top: 100%;
  right: 12px;
  z-index: 1500;
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
}

.nav-list.show { display: flex; }
.nav-list li { width: 100%; }

.nav-list a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.nav-list a:hover {
  background: var(--teal-light);
  color: var(--teal);
}

/* Active page indicator — mobile dropdown */
.nav-list a.nav-active {
  color: var(--green);
  background: var(--green-light);
  border-left: 3px solid var(--green);
  padding-left: 13px;
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
  text-align: center;
  margin-top: 4px;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 2000;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover { background: var(--slate-100); }

.hamburger span {
  display: block;
  height: 2.5px;
  width: 22px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ================= CART ================= */
.cart-icon {
  position: relative;
  font-size: 20px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  padding: 8px;
  border-radius: var(--radius-sm);
}

.cart-icon:hover { color: var(--white); background: rgba(255,255,255,0.15); }

#cartCount {
  position: absolute;
  top: 2px; right: 0;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 50%;
  min-width: 16px;
  text-align: center;
  line-height: 14px;
}

.cart-dropdown {
  position: absolute;
  right: 12px; top: 65px;
  width: calc(100vw - 32px);
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 2000;
}

.cart-dropdown.show { display: block; opacity: 1; transform: translateY(0); }
.cart-dropdown h3 { text-align: center; color: var(--slate-900); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.cart-dropdown ul { list-style: none; padding: 0; margin-bottom: 12px; max-height: 280px; overflow-y: auto; }
.cart-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--slate-100); }
.cart-item-img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item-details { flex: 1; font-size: 14px; color: var(--slate-700); }
.removeBtn { background: none; border: none; color: var(--coral); font-size: 18px; cursor: pointer; }

#cartDropdown .btn {
  display: block; width: 100%; text-align: center;
  background: var(--teal); color: var(--white);
  font-weight: 700; font-size: 15px; border: none;
  border-radius: var(--radius-pill); padding: 14px;
  cursor: pointer; transition: var(--transition); margin-top: 8px;
}
#cartDropdown .btn:hover { background: var(--teal-dark); }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 48px;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }

.btn-secondary { background: var(--teal); color: var(--white); }
.btn-secondary:hover { background: var(--teal-dark); color: var(--white); }

.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }

.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--slate-50); color: var(--teal); }

/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: 56px 16px 48px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero-image {
  text-align: center;
  padding: 56px 16px 48px;
  position: relative;
  overflow: hidden;
}

/* Ken Burns zoom-and-pan layer (B3) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-2%); }
}

/* Darker overlay for legibility (B2) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13,74,122,0.68) 0%, rgba(6,40,64,0.7) 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero h2, .hero-image h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero h2 span, .hero-image h2 span { color: var(--green); }

.hero p, .hero-image p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.hero-btns .btn { width: 100%; max-width: 300px; }

/* ================= PRODUCT CARDS ================= */
.products-scroll {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  padding: 16px 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.products-scroll::-webkit-scrollbar { height: 4px; }
.products-scroll::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 10px; }

.products-grid {
  display: flex;
  gap: 14px;
  min-width: max-content;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  width: 200px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  scroll-snap-align: start;
}

.product-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }

.product-card img { width: 100%; height: 180px; object-fit: cover; }

.product-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--slate-900);
  padding: 12px 14px 4px; margin-bottom: 0;
}

.product-card p { font-size: 13px; color: var(--slate-500); padding: 0 14px; flex-grow: 1; margin: 4px 0; }

.product-price { font-size: 18px; font-weight: 700; color: var(--teal); padding: 0 14px; margin-bottom: 4px; }

.product-btn {
  margin: 8px 14px 14px;
  padding: 12px 16px;
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius-pill);
  background: var(--teal);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-height: 44px;
}

.product-card:hover .product-btn { background: var(--teal-dark); }

/* ================= INFO / ABOUT ================= */
.info-container { display: flex; gap: 16px; flex-direction: column; }

.info {
  flex: 1 1 280px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: 24px;
  border-radius: var(--radius);
}

.text-box {
  background: var(--slate-50);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
}

/* ================= TOASTS ================= */
.site-notification-container {
  position: fixed; top: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
  width: calc(100% - 32px); max-width: 400px;
  align-items: center;
}

.site-toast {
  min-width: 220px; max-width: 360px;
  background: var(--white); color: var(--slate-800);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px); opacity: 0;
  transition: all 0.28s ease;
  pointer-events: auto;
}

.site-toast.visible { transform: translateY(0); opacity: 1; }
.site-toast-title { display: block; font-weight: 700; margin-bottom: 2px; font-size: 15px; color: var(--slate-900); }
.site-toast-body { font-size: 14px; line-height: 1.5; color: var(--slate-500); }
.site-toast.success { border-left: 3px solid var(--green); }
.site-toast.success .site-toast-title { color: var(--green-dark); }

/* Cart add toast — green, slides in from top (G1) */
.site-toast.cart {
  background: var(--green);
  border: none;
}
.site-toast.cart .site-toast-title { color: var(--white); }
.cart-toast-link {
  display: inline-block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
}
.cart-toast-link:hover { color: var(--white); }

/* ================= FORMS ================= */
.contact-form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.contact-form input, .contact-form textarea, .checkout-form input {
  width: 100%; padding: 14px 16px;
  font-size: 16px; font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--white); color: var(--slate-800);
  outline: none; transition: var(--transition);
  -webkit-appearance: none;
}

.contact-form input::placeholder, .contact-form textarea::placeholder, .checkout-form input::placeholder { color: var(--slate-400); }

.contact-form input:focus, .contact-form textarea:focus, .checkout-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,74,122,0.1);
}

.contact-form button, .checkout-form button {
  padding: 16px; font-size: 16px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--white); background: var(--green);
  border: none; border-radius: var(--radius-pill);
  cursor: pointer; transition: var(--transition);
  min-height: 48px;
}

.contact-form button:hover, .checkout-form button:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ================= CHECKOUT ================= */
.checkout-form {
  max-width: 500px; margin: 2rem auto;
  padding: 1.5rem; background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
}

.checkout-form h1 { text-align: center; margin-bottom: 1rem; font-size: 24px; color: var(--slate-900); }

/* Trust badges near the pay button (G2) */
.checkout-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.checkout-trust-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-500);
}
.checkout-trust-badge i { color: var(--green-dark); margin-right: 4px; }
.checkout-cards {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  color: var(--slate-400);
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--slate-800);
  color: rgba(255,255,255,0.6);
  padding: 48px 16px 24px;
}

.footer-container {
  display: flex; flex-direction: column;
  gap: 32px; max-width: 1100px; margin: 0 auto;
}

/* Footer brand column */
.footer-brand { max-width: 320px; }
.footer-logo { height: 56px; border-radius: 8px; margin-bottom: 14px; }
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); }

.footer-powered {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  margin-top: 8px;
  text-transform: uppercase;
}

.footer-section h4 {
  color: var(--green);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400; font-size: 15px;
  margin-bottom: 14px;
}

.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 10px; }

.footer-section ul li a {
  color: rgba(255,255,255,0.6); font-size: 15px;
  text-decoration: none; transition: var(--transition);
}

.footer-section ul li a:hover { color: var(--white); }

.footer-bottom {
  text-align: center; padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* WhatsApp float was replaced by the expandable .contact-fab (see partials/whatsapp.html) */

/* ================= MOBILE PRICE ================= */
.product-btn::after { content: " $" attr(data-price); font-weight: 700; }
.product-price { display: none; }

/* ================= STRIPE ================= */
#payment-form input[type="text"], #payment-form input[type="email"], #card-element {
  width: 100%; padding: 14px 16px; margin-bottom: 12px;
  font-size: 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--slate-200); background: var(--white);
  -webkit-appearance: none;
}

#payment-form button {
  width: 100%; padding: 16px;
  background: var(--green); color: var(--white);
  font-weight: 700; font-size: 16px; border: none;
  border-radius: var(--radius-pill); cursor: pointer;
  transition: var(--transition); min-height: 48px;
}

#payment-form button:hover { background: var(--green-dark); }

/* ================= ABOUT — DEVELOPMENT LOOP ================= */
.dev-loop {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 32px auto 0;
  position: relative;
}

.dev-loop::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: var(--slate-200);
  z-index: 0;
}

.dev-loop-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}

.dev-loop-step:last-child { padding-bottom: 0; }

.dev-loop-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dev-loop-icon--teal   { background: var(--teal-light); color: var(--teal); }
.dev-loop-icon--green  { background: var(--green-light); color: var(--green-dark); }
.dev-loop-icon--purple { background: #EDE9FE; color: #7C3AED; }
.dev-loop-icon--amber  { background: #FFFBEB; color: #D97706; }

.dev-loop-text { padding-top: 8px; }

.dev-loop-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 4px;
}

.dev-loop-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.dev-loop-body {
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.65;
  margin: 0;
}

/* ================= ABOUT — HIGHLIGHTS ================= */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 24px auto 0;
}

.highlight-card {
  position: relative;
  background: #111;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,40,64,0.35);
}

.highlight-play {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 3px;
}

.highlight-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: var(--white);
  pointer-events: none;
}

.highlight-card-overlay strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  margin-bottom: 2px;
}

.highlight-card-overlay span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* ================= ABOUT — VR TEASER ================= */
.vr-teaser-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.vr-teaser-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vr-teaser-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.vr-teaser-feature-text strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.vr-teaser-feature-text p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0;
}

/* ================= ABOUT — TEAM ================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 24px auto 0;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s ease;
}

.team-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }

.team-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--teal-light);
}

.team-card-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.4;
}

/* ================= HOMEPAGE — VR STRIP ================= */
.vr-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 48px 16px;
  text-align: center;
}

.vr-strip .section-label { color: var(--green); }
.vr-strip h2 { color: var(--white); margin-bottom: 12px; }
.vr-strip p { color: rgba(255,255,255,0.82); font-size: 16px; max-width: 520px; margin: 0 auto 24px; line-height: 1.7; }

.vr-strip-btns {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
}

.vr-strip-btns .btn { width: 100%; max-width: 300px; }

/* ================= ABOUT — DEV CYCLE CARDS ================= */
.dev-cycle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 32px auto 0;
}

.dev-cycle-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.dev-cycle-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.dev-cycle-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dev-cycle-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-400);
  white-space: nowrap;
}

.dev-cycle-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.dev-cycle-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  color: var(--slate-900);
  line-height: 1.2;
}

.dev-cycle-body {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
  margin: 0;
  padding-left: 0;
}

@media (min-width: 640px) {
  .dev-cycle-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .dev-cycle-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================= DESKTOP SCALE UP ================= */
@media (min-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 60px 24px; }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 36px; }
  .header-logo { height: 66px; }
  .hero, .hero-image { padding: 80px 24px 60px; }
  .hero h2, .hero-image h2 { font-size: 48px; }
  .hero-btns { flex-direction: row; }
  .hero-btns .btn { width: auto; }
  .info-container { flex-direction: row; }
  .footer-container { flex-direction: row; flex-wrap: wrap; gap: 40px; }
  .footer-section { flex: 1 1 180px; }
  .checkout-form { padding: 2rem; margin: 2rem auto; }
  .product-price { display: block; }
  .product-btn::after { content: none; }

  /* Dev loop — horizontal on tablet+ */
  .dev-loop { flex-direction: row; align-items: flex-start; }
  .dev-loop::before { display: none; }
  .dev-loop-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 12px;
    position: relative;
  }
  .dev-loop-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: var(--slate-200);
    z-index: 0;
  }
  .dev-loop-text { padding-top: 0; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .vr-teaser-features { flex-direction: row; gap: 24px; }
  .vr-teaser-feature { flex-direction: column; align-items: center; text-align: center; flex: 1; }
  .vr-teaser-feature-icon { margin-bottom: 4px; }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .vr-strip { padding: 60px 24px; }
  .vr-strip-btns { flex-direction: row; justify-content: center; }
  .vr-strip-btns .btn { width: auto; }
}

@media (min-width: 1024px) {
  .about-pillars { grid-template-columns: repeat(3, 1fr); }
  .nav-list {
    display: flex !important;
    flex-direction: row; align-items: center;
    gap: 2px; padding: 0; width: auto;
    background: none; position: static;
    border: none; box-shadow: none;
  }
  .nav-list li { width: auto; }
  .nav-list a { padding: 8px 10px; font-size: 13px; color: rgba(255,255,255,0.9); }
  .nav-list a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
  .nav-list a.nav-active { background: none; border-left: none; padding-left: 10px; color: var(--green); border-bottom: 2px solid var(--green); border-radius: 0; }
  .nav-cta { padding: 10px 20px !important; border-radius: var(--radius-pill) !important; margin-top: 0 !important; }
  .hamburger { display: none !important; }
  .header-inner { padding: 12px 24px; }
  .hero h2, .hero-image h2 { font-size: 56px; }
  .section-title { font-size: 40px; }
  .cart-dropdown { width: 340px; right: 20px; }
}

/* ================= SCROLL FADE-IN (H1) ================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
}

/* ================= ATHLETES / HAPPY FACES BAND ================= */
.faces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.face-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--slate-100);
  box-shadow: var(--shadow-sm);
}

.face-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.face-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,40,64,0.25) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.face-card:hover img { transform: scale(1.07); }
.face-card:hover::after { opacity: 1; }

@media (min-width: 768px) {
  .faces-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (min-width: 1024px) {
  .faces-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ================= WORLD CUP FAN ZONE PROMO ================= */
.wcpromo {
  position: relative;
  text-align: center;
  padding: 40px 16px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 90% at 15% 0, rgba(38,201,111,0.22), transparent 55%),
    radial-gradient(120% 90% at 85% 0, rgba(255,215,0,0.14), transparent 55%),
    linear-gradient(135deg, #0a1628 0%, #0d2138 100%);
}
.wcpromo-inner { position: relative; z-index: 1; max-width: 760px; }
.wcpromo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 6px 14px; margin-bottom: 14px;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: #FFD700;
}
.wcpromo-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #e11d2a;
  animation: wcpromoPulse 1.1s ease-out infinite;
}
@keyframes wcpromoPulse {
  0% { box-shadow: 0 0 0 0 rgba(225,29,42,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(225,29,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,29,42,0); }
}
.wcpromo-title { font-family: 'Archivo Black', sans-serif; font-size: 28px; color: #fff; margin-bottom: 8px; line-height: 1.1; }
.wcpromo-title span { color: var(--green); }
.wcpromo-sub { color: rgba(255,255,255,0.8); font-size: 15px; max-width: 520px; margin: 0 auto 18px; line-height: 1.6; }
.wcpromo-cd { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.wcpromo-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 10px 12px; min-width: 62px;
}
.wcpromo-box b { display: block; font-family: 'Archivo Black', sans-serif; font-size: 26px; color: #FFD700; line-height: 1; }
.wcpromo-box span { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.wcpromo-live { font-family: 'Archivo Black', sans-serif; font-size: 18px; color: #fff; padding: 8px 0; }
.wcpromo-btn { background: var(--green); color: #06231a; }
.wcpromo-btn:hover { background: #2ee07c; color: #06231a; }
@media (prefers-reduced-motion: reduce) { .wcpromo-dot { animation: none; } }
@media (min-width: 768px) {
  .wcpromo { padding: 56px 24px; }
  .wcpromo-title { font-size: 40px; }
  .wcpromo-box { min-width: 76px; padding: 12px 16px; }
  .wcpromo-box b { font-size: 34px; }
}

/* ================= C1 — TECH PARTNERS MARQUEE ================= */
.tech-marquee {
  background: var(--teal-dark);
  padding: 28px 0;
  overflow: hidden;
}

.tech-marquee-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

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

.marquee-item {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.marquee-dot { color: var(--green); font-size: 18px; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ================= C2 — DEVELOPMENT CYCLE ================= */
.cycle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.cycle-step {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cycle-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  transform: translateY(-4px);
}

.cycle-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px;
}

.cycle-icon--teal   { background: var(--teal-light); color: var(--teal); }
.cycle-icon--green  { background: var(--green-light); color: var(--green-dark); }
.cycle-icon--purple { background: #EDE9FE; color: #7C3AED; }
.cycle-icon--amber  { background: #FFFBEB; color: #D97706; }

.cycle-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 6px;
}

.cycle-step-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.cycle-step-body {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
  margin: 0;
}

/* Connecting arrows between steps on desktop */
@media (min-width: 1024px) {
  .cycle-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .cycle-step:not(:last-child)::after {
    content: '\f061'; /* fa-arrow-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
    color: var(--slate-300);
    font-size: 16px;
    z-index: 2;
  }
}

/* ================= C3 — STATS COUNTERS ================= */
.stats-section { background: var(--teal-light); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-number {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--slate-500);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-number { font-size: 48px; }
}

/* ================= C5 / C8 — CTA BANNERS ================= */
.cta-banner { padding: 44px 16px; text-align: center; }
.cta-banner--green { background: var(--green); }
.cta-banner--dark  { background: var(--teal-dark); }

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-banner-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  line-height: 1.25;
  color: var(--white);
  margin: 0;
  max-width: 720px;
}

.cta-banner--green .cta-banner-btn {
  background: var(--teal-dark);
  color: var(--white);
}
.cta-banner--green .cta-banner-btn:hover { background: #04202f; color: var(--white); }

.cta-banner-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

@media (min-width: 1024px) {
  .cta-banner-text { font-size: 30px; }
}

/* ================= C6 — TESTIMONIALS ================= */
.testimonial-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  margin-top: 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-grid::-webkit-scrollbar { height: 4px; }
.testimonial-grid::-webkit-scrollbar-thumb { background: var(--green); border-radius: 10px; }

.testimonial-card {
  position: relative;
  flex: 0 0 86%;
  max-width: 380px;
  scroll-snap-align: center;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 46px;
  color: var(--green);
  opacity: 0.12;
}

.testimonial-text {
  position: relative;
  font-style: italic;
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.7;
  margin: 0 0 16px;
}

.testimonial-stars {
  color: var(--green);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: var(--slate-900);
}

.testimonial-role {
  font-size: 13px;
  color: var(--slate-500);
}

.testimonial-cta { margin-top: 28px; }
.testimonial-cta p {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--slate-900);
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
  .testimonial-card { flex: none; max-width: none; }
}

/* ================= C9 — INSTAGRAM FEED ================= */
.ig-section { background: var(--teal-dark); padding: 48px 16px; }

.ig-subtitle {
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 28px;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto 28px;
}

.ig-card {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 26px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.ig-card:hover { transform: scale(1.03); color: var(--white); }

.ig-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ig-card:hover .ig-caption { opacity: 1; }

@media (min-width: 1024px) {
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ================= D2 — SERVICES ADD-ONS ================= */
.addons-wrap {
  max-width: 1100px;
  margin: 40px auto 0;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.addon-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.addon-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.addon-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: var(--slate-900);
}

.addon-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--green-dark);
}

.addon-desc {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0;
}

.addon-note {
  text-align: center;
  font-size: 14px;
  color: var(--slate-500);
  margin-top: 20px;
}

@media (min-width: 768px) {
  .addon-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .addon-card-head { flex-direction: row; align-items: baseline; justify-content: space-between; }
}

/* ================= ANNOUNCEMENT TICKER (1) ================= */
.announce-bar {
  position: relative;
  display: flex;
  align-items: center;
  height: 36px;
  background: var(--green);
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.announce-hidden { height: 0; opacity: 0; }

.announce-marquee {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.announce-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  animation: announceMarquee 36s linear infinite;
}

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

.announce-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.announce-sep { color: rgba(255,255,255,0.55); font-size: 12px; }

.announce-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0,0,0,0.08);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.announce-close:hover { background: rgba(0,0,0,0.2); }

@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; }
}

/* ================= AUDIENCE SELECTOR (2) ================= */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-top: 4px solid var(--teal);
  color: var(--slate-700);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  opacity: 0.08;
  pointer-events: none;
}

.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.audience-card--green { border-top-color: var(--green); }
.audience-card--green::before { background: radial-gradient(circle at 50% 0, var(--green), transparent 70%); }
.audience-card--teal  { border-top-color: var(--teal); }
.audience-card--teal::before { background: radial-gradient(circle at 50% 0, var(--teal), transparent 70%); }
.audience-card--gold  { border-top-color: #D97706; }
.audience-card--gold::before { background: radial-gradient(circle at 50% 0, #D97706, transparent 70%); }

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.audience-card--green .audience-icon { background: var(--green-light); color: var(--green-dark); }
.audience-card--teal  .audience-icon { background: var(--teal-light); color: var(--teal); }
.audience-card--gold  .audience-icon { background: #FFF7ED; color: #D97706; }

.audience-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.audience-sub {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0 0 18px;
  flex-grow: 1;
}

.audience-cta {
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.audience-card--green .audience-cta { color: var(--green-dark); }
.audience-card--teal  .audience-cta { color: var(--teal); }
.audience-card--gold  .audience-cta { color: #D97706; }
.audience-card:hover .audience-cta i { transform: translateX(4px); transition: transform 0.2s ease; }

.quiz-cta { margin-top: 32px; }

@media (min-width: 768px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================= ATHLETE SPOTLIGHT (3) ================= */
.spotlight-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 920px;
  margin: 28px auto 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-lg);
}

.spotlight-photo {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(38,201,111,0.25), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 12px, transparent 12px 24px),
    #04202f;
}

.spotlight-silhouette { font-size: 96px; color: rgba(255,255,255,0.18); }

.spotlight-number {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 44px;
  color: rgba(38,201,111,0.9);
  line-height: 1;
}

.spotlight-body { padding: 28px 24px; position: relative; }

.spotlight-quote-icon {
  font-size: 30px;
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 12px;
}

.spotlight-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin: 0 0 18px;
}

.spotlight-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  color: var(--white);
}

.spotlight-details {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}

.spotlight-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.spotlight-stat { flex: 1 1 auto; min-width: 90px; }
.spotlight-stat strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  color: var(--green);
  line-height: 1;
}
.spotlight-stat span {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.mini-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 18px auto 0;
}

.mini-spotlight {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px;
  text-align: left;
}

.mini-spotlight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mini-spotlight-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: var(--slate-900);
}

.mini-spotlight-pos {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.mini-spotlight-quote {
  font-size: 13px;
  font-style: italic;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .spotlight-card { grid-template-columns: 0.9fr 1.1fr; }
  .spotlight-photo { min-height: 100%; }
  .spotlight-body { padding: 36px 32px; }
  .mini-spotlight-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================= ACTIVITY FEED (4) ================= */
.activity-feed { list-style: none; padding: 0; margin: 0; }

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.activity-item:hover { box-shadow: var(--shadow-sm); transform: translateX(3px); }

.activity-emoji { font-size: 20px; line-height: 1.4; flex-shrink: 0; }

.activity-body { display: flex; flex-direction: column; gap: 2px; }
.activity-text { font-size: 14px; font-weight: 600; color: var(--slate-800); line-height: 1.4; }
.activity-time { font-size: 12px; color: var(--slate-400); }

/* ================= FIND YOUR PACKAGE QUIZ (5) ================= */
.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* When closed, the hidden attribute must win over display:flex above —
   otherwise the invisible overlay covers the page and blocks all clicks. */
.quiz-modal[hidden] { display: none; }

.quiz-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,40,64,0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.quiz-modal.open .quiz-overlay { opacity: 1; }

.quiz-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px 24px;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.quiz-modal.open .quiz-dialog { transform: translateY(0) scale(1); opacity: 1; }

.quiz-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 36px; height: 36px;
  border: none; background: none;
  font-size: 26px; line-height: 1;
  color: var(--slate-400);
  cursor: pointer;
}
.quiz-close:hover { color: var(--slate-700); }

.quiz-progress {
  height: 5px;
  background: var(--slate-100);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin: 6px 0 22px;
}
.quiz-progress-bar {
  height: 100%;
  width: 0;
  background: var(--green);
  border-radius: var(--radius-pill);
  transition: width 0.3s ease;
}

.quiz-step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.quiz-question {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--slate-900);
  margin-bottom: 20px;
}

.quiz-options { display: flex; flex-direction: column; gap: 10px; }

.quiz-option {
  text-align: left;
  padding: 15px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-700);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 48px;
  transition: all 0.18s ease;
}
.quiz-option:hover {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.quiz-back {
  margin-top: 18px;
  background: none;
  border: none;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.quiz-back:hover { color: var(--teal); }

.quiz-result { text-align: center; }
.quiz-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.quiz-result-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.quiz-result-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--teal);
  margin-bottom: 12px;
}
.quiz-result-desc {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 340px;
}
.quiz-result-cta { width: 100%; }
.quiz-retake {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: var(--slate-400);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}
.quiz-retake:hover { color: var(--slate-700); }

/* ================= FLOATING CONTACT MENU (6) ================= */
.contact-fab {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  /* The container box (and closed options that still take layout space) must
     not intercept clicks meant for links underneath it. */
  pointer-events: none;
}

.contact-fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.contact-fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-fab.open .contact-fab-option {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.contact-fab.open .contact-fab-option:nth-child(1) { transition-delay: 0.02s; }
.contact-fab.open .contact-fab-option:nth-child(2) { transition-delay: 0.06s; }
.contact-fab.open .contact-fab-option:nth-child(3) { transition-delay: 0.10s; }

.contact-fab-label {
  background: var(--slate-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.contact-fab-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.contact-fab-icon--wa { background: #25D366; }
.contact-fab-icon--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-fab-icon--ai { background: var(--teal); }

.contact-fab-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-fab-toggle:hover { transform: scale(1.08); }
.contact-fab.open .contact-fab-toggle { background: var(--slate-800); transform: rotate(90deg); }

.contact-fab-toggle-close { display: none; }
.contact-fab.open .contact-fab-toggle-open { display: none; }
.contact-fab.open .contact-fab-toggle-close { display: block; }

/* ================= COACH SCOUT AVATAR ================= */
.coach-scout-avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #26C96F;
  box-shadow: 0 0 12px rgba(38, 201, 111, 0.3);
  display: block;
  flex-shrink: 0;
}
.coach-scout-avatar.sm { width: 32px; height: 32px; }
.coach-scout-avatar.md { width: 48px; height: 48px; }
.coach-scout-avatar.lg { width: 64px; height: 64px; }
