/* ============================================
   STRENGTH FOR ATHLETES — PREMIUM LIGHT THEME
   ============================================ */


/* ===== CSS VARIABLES ===== */
:root {
  --gold:          #f0a500;
  --gold-light:    #fbbf24;
  --gold-dark:     #c47f00;
  --gold-glow:     rgba(240, 165, 0, 0.2);
  --gold-gradient: linear-gradient(135deg, #f0a500 0%, #fbbf24 60%, #f0a500 100%);

  /* Backgrounds */
  --bg-white:  #ffffff;
  --bg-light:  #fafbfc;
  --bg-gray:   #f4f5f7;
  --bg-soft:   #eef0f3;

  /* Text */
  --text-dark:   #111827;
  --text-medium: #374151;
  --text-light:  #6b7280;
  --text-muted:  #9ca3af;

  /* Borders */
  --border-light:  #e5e7eb;
  --border-medium: #d1d5db;

  /* Dark accent (for hero, services bg, footer) */
  --ink:   #111827;
  --ink-2: #1f2937;

  --green: #16a34a;
  --red:   #dc2626;

  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 0 32px rgba(240,165,0,0.25);

  --nav-h: 64px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }
ul { list-style: none; }

/* Respuesta táctil instantánea: sin flash gris de iOS/Android
   y sin los 300ms de retardo del doble-tap */
a, button, [role="button"], .nav-toggle, label, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Los anclajes paran justo debajo del nav fijo */
section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

/* Accesibilidad: sin animaciones para quien las desactiva */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::selection { background: var(--gold); color: #fff; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-line { width: 56px; height: 3px; background: var(--gold-gradient); border-radius: 2px; margin: 1rem auto 0; }
.gold-line.left { margin-left: 0; }


/* ====================================================
   NAVIGATION
   ==================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--text-dark);
  transition: color 0.2s;
}
.nav-logo i { color: var(--gold); font-size: 1.2rem; }
.nav-logo:hover { color: var(--gold); }

.nav-menu { display: flex; align-items: center; gap: 0.15rem; }

.nav-link {
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--gold); background: rgba(240,165,0,0.06); }
.nav-link.is-current { color: var(--gold); }

.btn-nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  transition: all 0.2s;
  margin-left: 0.5rem;
  box-shadow: 0 2px 12px rgba(240,165,0,0.3);
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease-out-expo);
  text-transform: uppercase;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--gold-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(240,165,0,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,165,0,0.4); }

/* Feedback inmediato al pulsar: el botón "responde" al dedo/click */
.btn:active,
.btn-nav-cta:active,
.includes-tab:active,
.result-seg-btn:active,
.pricing-card .btn:active {
  transform: scale(0.965);
  transition-duration: 0.06s;
}
.result-preview-card:active,
.transform-mini:active,
.faq-question:active {
  transform: scale(0.985);
  transition-duration: 0.08s;
}
.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-medium);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,165,0,0.04); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: #fff; box-shadow: var(--shadow-gold); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 2px solid rgba(17,24,39,0.35); }
.btn-outline-dark:hover { background: rgba(17,24,39,0.06); border-color: var(--ink); }
.btn-large { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; }


/* ====================================================
   HERO — fullscreen, dark overlay on image
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/img/hero-image.webp') center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  will-change: transform;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-20px) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 2rem;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out-expo) 0.2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: 0.5; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out-expo) 0.35s forwards;
}
.hero-title .line-gold {
  display: block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out-expo) 0.5s forwards;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out-expo) 0.65s forwards;
}
.hero-cta .btn-secondary { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-cta .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out-expo) 0.95s forwards;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 1px;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.4rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-in 1s ease 1.5s forwards;
}
.scroll-mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-wheel { width: 3px; height: 6px; background: var(--gold); border-radius: 2px; animation: scroll-anim 1.5s ease infinite; }
@keyframes scroll-anim { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(8px); opacity: 0; } }
.scroll-text { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }


/* ====================================================
   MARQUEE
   ==================================================== */
.leagues-marquee {
  background: var(--gold);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-content { display: flex; flex-shrink: 0; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 1.75rem;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.marquee-label { display: none; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.leagues-marquee::before, .leagues-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.leagues-marquee::before { left: 0;  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%); }
.leagues-marquee::after  { right: 0; background: linear-gradient(270deg, var(--gold) 0%, transparent 100%); }


/* ====================================================
   SERVICES — dark background (accent section)
   ==================================================== */
.services { background: var(--ink); padding: 100px 0; }

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.service-card {
  background: var(--ink);
  padding: 2rem 1.75rem;
  transition: background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold-gradient);
  transition: width 0.35s var(--ease-out-expo);
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: rgba(255,255,255,0.04); }

.card-icon {
  width: 46px; height: 46px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.25s;
}
.service-card:hover .card-icon { background: rgba(240,165,0,0.18); border-color: var(--gold); }
.card-icon i { font-size: 1.1rem; color: var(--gold); }

.card-title {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.card-best-for { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 0.5rem; }
.card-description { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1rem; }

.btn-service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 0.9rem; border-radius: var(--radius-full);
  transition: all 0.25s; letter-spacing: 0.5px; text-transform: uppercase;
}
.btn-service-link:hover { color: var(--gold); border-color: var(--gold); gap: 0.75rem; }
.btn-service-link i { font-size: 0.7rem; transition: transform 0.2s; }
.btn-service-link:hover i { transform: translateX(3px); }

.services-image { position: relative; overflow: hidden; }
.services-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-out-expo); }
.services-image:hover img { transform: scale(1.03); }
.services-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%); z-index: 1; }
.services-image-label { position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2; font-family: var(--font-cond); font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: 2px; text-transform: uppercase; }
.services-image-label span { display: block; font-size: 2rem; line-height: 1; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }


/* ====================================================
   SECTION HEADERS
   ==================================================== */
.section-header { margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-cond); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 18px; height: 1px; background: var(--gold); opacity: 0.5; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 1px; line-height: 1;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 520px; margin: 0 auto; line-height: 1.7; }


/* ====================================================
   RESULTS — light bg
   ==================================================== */
.results { background: var(--bg-gray); padding: 100px 0; }

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

.result-preview-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}
.result-preview-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-lg); transform: translateY(-8px); }

.result-preview-img { position: relative; width: 100%; height: 280px; overflow: hidden; }
.result-preview-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out-expo); }
.result-preview-card:hover .result-preview-img img { transform: scale(1.08); }

.result-preview-overlay {
  position: absolute; inset: 0; background: rgba(17,24,39,0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.result-preview-card:hover .result-preview-overlay { opacity: 1; }
.result-preview-overlay i { font-size: 2rem; color: var(--gold); }
.result-preview-overlay span { color: #fff; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

.result-preview-info { padding: 1.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.result-preview-info h3 { font-family: var(--font-cond); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.5px; width: 100%; }
.result-preview-sport { font-size: 0.82rem; color: var(--text-light); }
.result-preview-duration {
  margin-left: auto; background: var(--gold-gradient); color: #fff;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
}


/* ====================================================
   WHAT'S INCLUDED — pestañas (tema oscuro)
   ==================================================== */
.includes { background: var(--ink); padding: 100px 0; }
.includes .section-title { color: #fff; }
.includes .section-subtitle { color: rgba(255,255,255,0.55); }

.includes-layout {
  display: grid; grid-template-columns: 340px 1fr; gap: 2.5rem;
  align-items: start; max-width: 1100px; margin: 0 auto;
}

.includes-tabs { display: flex; flex-direction: column; gap: 0.4rem; }
.includes-tab {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.95rem 1.2rem;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem; font-weight: 600; text-align: left;
  transition: all 0.25s;
}
.includes-tab i { color: rgba(255,255,255,0.3); width: 22px; text-align: center; font-size: 1rem; transition: color 0.25s; }
.includes-tab:hover { color: #fff; background: rgba(255,255,255,0.04); }
.includes-tab.active { color: #fff; border-color: var(--gold); background: rgba(255,255,255,0.03); box-shadow: 0 0 24px rgba(240,165,0,0.12); }
.includes-tab.active i { color: var(--gold); }

.includes-panel {
  display: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  min-height: 340px;
}
.includes-panel::before {
  content: ''; position: absolute; top: -2px; left: -2px;
  width: 56px; height: 56px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
  border-top-left-radius: var(--radius-lg);
  pointer-events: none;
}
.includes-panel.active {
  display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: center;
  animation: fade-up 0.4s var(--ease-out-expo);
}
.includes-panel h3 { font-family: var(--font-cond); font-size: 1.7rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.includes-panel p { color: rgba(255,255,255,0.6); line-height: 1.85; font-size: 0.98rem; margin-bottom: 0.75rem; }
.includes-panel-hint { display: flex; align-items: center; gap: 0.5rem; color: var(--gold-light) !important; font-size: 0.85rem !important; font-weight: 600; margin-top: 1.25rem; }
.includes-panel-hint i { color: var(--gold); }



.phone-mockup-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.phone-mockup {
  width: 230px;
  background: #000;
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 34px;
  padding: 9px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 48px rgba(240,165,0,0.1);
}
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 16px; background: #000;
  border-radius: 0 0 12px 12px; z-index: 2;
}
.phone-mockup video {
  width: 100%; aspect-ratio: 9 / 19; object-fit: cover;
  border-radius: 26px; display: block; background: #0a0a0a;
}
/* Mini-visuales de los paneles */
.mini-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.mv-title {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-cond); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.85);
  padding-bottom: 0.85rem; margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mv-title i { color: var(--gold); font-size: 0.8rem; }
.mv-foot {
  display: flex; align-items: center; gap: 0.45rem;
  margin-top: 1rem; padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4);
}
.mv-foot i { color: var(--gold); font-size: 0.7rem; }

/* filas con barra (evaluación) */
.mv-row { display: grid; grid-template-columns: 78px 1fr 46px; align-items: center; gap: 0.6rem; padding: 0.4rem 0; }
.mv-row span { font-size: 0.74rem; color: rgba(255,255,255,0.5); }
.mv-row b { font-size: 0.74rem; color: #fff; text-align: right; font-weight: 700; }
.mv-bar { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.mv-bar div { height: 100%; background: var(--gold-gradient); border-radius: 3px; }

/* días de programa */
.mv-day {
  display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0.6rem; border-radius: var(--radius-sm); margin-bottom: 0.25rem;
}
.mv-day b { font-family: var(--font-cond); font-size: 0.78rem; color: var(--gold); letter-spacing: 1px; }
.mv-day span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.mv-day em { font-style: normal; font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.35); }
.mv-day-active { background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.35); }
.mv-day-active em { color: var(--gold-light); }

/* tiles de datos */
.mv-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.mv-tile {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 0.85rem 0.5rem; text-align: center;
}
.mv-tile b {
  display: block; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1px;
  background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mv-tile span { font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.4); }

/* feedback técnico */
.mv-videoframe {
  position: relative; aspect-ratio: 16/10; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #1f2937 0%, #0d1117 100%);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem; overflow: hidden;
}
.mv-videoframe > i {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(240,165,0,0.9); color: #fff; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; padding-left: 3px;
}
.mv-timestamp { position: absolute; bottom: 8px; right: 10px; font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.6); background: rgba(0,0,0,0.5); padding: 2px 7px; border-radius: 4px; }
.mv-annotation {
  position: absolute; bottom: 18%; left: 22%;
  width: 42px; height: 42px; border: 2.5px solid var(--gold);
  border-radius: 50%; box-shadow: 0 0 16px rgba(240,165,0,0.5);
  animation: blink-annotation 1.6s ease-in-out infinite;
}
@keyframes blink-annotation { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.mv-comment {
  background: rgba(240,165,0,0.08); border: 1px solid rgba(240,165,0,0.25);
  border-radius: var(--radius-sm); padding: 0.75rem 0.9rem;
}
.mv-comment b { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-light); margin-bottom: 0.3rem; }
.mv-comment p { font-size: 0.8rem !important; color: rgba(255,255,255,0.75) !important; line-height: 1.55 !important; margin: 0 !important; }

/* lecciones educación */
.mv-lesson { display: flex; align-items: center; gap: 0.65rem; padding: 0.5rem 0.2rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.mv-lesson i { font-size: 0.85rem; color: rgba(255,255,255,0.2); width: 16px; }
.mv-lesson.done { color: rgba(255,255,255,0.7); }
.mv-lesson.done i { color: var(--green); }
.mv-lesson.current { color: #fff; font-weight: 600; }
.mv-lesson.current i { color: var(--gold); }

.phone-caption { font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); }


/* Mini transformaciones (estilo tarjeta oscura) */
.transform-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }

.transform-mini {
  cursor: pointer;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  transition: all 0.3s var(--ease-out-expo);
}
.transform-mini:hover { transform: translateY(-5px); border-color: rgba(240,165,0,0.45); box-shadow: var(--shadow-lg); }

.transform-mini-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.1rem; }
.transform-mini-head img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold); flex-shrink: 0;
}
.transform-mini-head h4 { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 0.1rem; }
.transform-mini-head span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.transform-mini-metric { font-size: 1.15rem; font-weight: 600; color: #fff; line-height: 1.5; }
.transform-mini-metric i { color: var(--gold); font-size: 0.85rem; margin: 0 0.25rem; }

.transform-more { text-align: center; margin-top: 2.25rem; }

/* Página transformaciones.html */
.transform-page { padding: calc(var(--nav-h) + 60px) 0 90px; background: var(--ink); min-height: 100vh; }
.transform-page .section-title { color: #fff; }
.transform-page .section-subtitle { color: rgba(255,255,255,0.55); }
.transform-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }
.transform-page .transform-mini { background: rgba(255,255,255,0.03); }
.transform-mini-duration {
  display: inline-block; margin-top: 0.9rem;
  background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.3); color: var(--gold-light);
  padding: 0.22rem 0.75rem; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.transform-page-cta { text-align: center; margin-top: 3.5rem; }
.transform-page-cta p { color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; font-size: 1rem; }


/* ====================================================
   RESULT MODALS
   ==================================================== */
.result-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(17,24,39,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.result-modal-overlay.active { opacity: 1; visibility: visible; }

.result-modal {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 900px; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  transform: scale(0.92) translateY(20px); opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
}
.result-modal-overlay.active .result-modal { transform: scale(1) translateY(0); opacity: 1; }
.result-modal::-webkit-scrollbar { width: 4px; }
.result-modal::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.result-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border-medium);
  background: var(--bg-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-light); font-size: 0.9rem; transition: all 0.2s;
}
.result-modal-close:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(90deg); }

.result-modal-top { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2rem; }
.result-modal-media { display: flex; flex-direction: column; gap: 0.75rem; }
.result-video-placeholder { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-gray); transition: opacity 0.18s ease; }
.result-video-placeholder.switching { opacity: 0; }
.result-video-placeholder img,
.result-video-placeholder video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Vídeos de tests: el marco toma la proporción real del vídeo (la fija el JS)
   y se limita en alto para que los verticales no desborden el modal */
.result-video-placeholder.has-video { background: #000; max-height: min(62vh, 560px); }
.result-video-placeholder.has-video video { object-fit: contain; max-height: inherit; margin: 0 auto; }

/* Segmented control — tests (Abalakov, Hop, COD, Sprint 30m) */
.result-seg-wrap { padding: 2rem 2rem 0; }
.result-seg {
  display: flex; gap: 4px; padding: 4px;
  background: var(--bg-gray); border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
}
.result-seg-wrap + .result-modal-top { padding-top: 1.25rem; }
.result-seg-btn {
  flex: 1; min-width: 0; border: none; background: transparent; cursor: pointer;
  padding: 0.6rem 0.5rem; border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: all 0.25s var(--ease-out-expo);
}
.result-seg-btn:hover { color: var(--text-dark); background: rgba(240,165,0,0.08); }
.result-seg-btn.active {
  background: var(--gold-gradient); color: #fff;
  box-shadow: 0 2px 10px rgba(240,165,0,0.35);
}
.result-video-soon {
  position: absolute; bottom: 0.75rem; left: 50%; transform: translateX(-50%);
  background: rgba(17,24,39,0.8); color: #fff; padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 600;
  white-space: nowrap; backdrop-filter: blur(4px);
}
.result-video-soon i { color: var(--gold); margin-right: 0.35rem; }
.result-video-labels { position: absolute; top: 0; left: 0; right: 0; display: flex; }
.label-before, .label-after { flex: 1; text-align: center; padding: 0.4rem 0; font-family: var(--font-cond); font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.label-before { background: rgba(220,38,38,0.85); color: #fff; }
.label-after  { background: rgba(22,163,74,0.85); color: #fff; }
.result-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,0,0,0.55); border: 2px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s;
}
.result-play-btn i { color: #fff; font-size: 1.1rem; margin-left: 3px; }
.result-play-btn:hover { background: var(--gold); border-color: var(--gold); transform: translate(-50%,-50%) scale(1.1); }
.result-video-caption {
  font-family: var(--font-cond); font-weight: 700; font-size: 0.9rem; color: var(--gold);
  text-align: center; padding: 0.5rem; background: rgba(240,165,0,0.07);
  border-radius: var(--radius-sm); letter-spacing: 0.5px; text-transform: uppercase;
}
.result-modal-info { display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; padding-right: 1rem; }
.result-modal-info h3 { font-family: var(--font-display); font-size: 2.2rem; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; }
.result-modal-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge-sport { background: var(--bg-gray); color: var(--text-dark); border: 1px solid var(--border-medium); padding: 0.3rem 0.85rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-duration { background: var(--gold-gradient); color: #fff; padding: 0.3rem 0.85rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
.result-modal-info p { font-size: 0.9rem; line-height: 1.7; color: var(--text-medium); }

.result-modal-report { margin: 0 2rem 2rem; border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
.report-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--bg-gray); border-bottom: 1px solid var(--border-light); }
.report-header h4 { font-family: var(--font-cond); font-size: 1rem; color: var(--text-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.report-dates { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.report-metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 0; }
.report-metric { padding: 1rem 1.25rem; border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 0.6rem; }
.report-metric:last-child { border-right: none; }
.report-metric-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.report-metric-values { display: flex; gap: 1.5rem; }
.report-val { display: flex; flex-direction: column; gap: 0.15rem; }
.report-val-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.3px; }
.report-val-number { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-dark); letter-spacing: 0.5px; }
.report-val-after { color: var(--green); }
.report-progress { height: 4px; background: var(--bg-soft); border-radius: 2px; overflow: hidden; }
.report-progress-fill { height: 100%; background: linear-gradient(90deg, var(--green), #22c55e); border-radius: 2px; width: 0; transition: width 1s ease-out 0.3s; }

.report-chart { border-top: 1px solid var(--border-light); }
.report-chart-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem 0.5rem; }
.report-chart-header h4 { font-family: var(--font-cond); font-size: 1rem; color: var(--text-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 0.5rem; }
.report-chart-header h4 i { color: var(--gold); font-size: 0.85rem; }
.report-chart-metric { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.report-chart-canvas { position: relative; height: 220px; padding: 0.5rem 1.25rem 1.25rem; }


/* ====================================================
   PRICING — dark bg, tabla comparativa grande
   ==================================================== */
.pricing { background: var(--ink); padding: 100px 0; }
.pricing .container { max-width: 1300px; }
.pricing .section-title { color: #fff; }
.pricing .section-subtitle { color: rgba(255,255,255,0.55); }

.btn-full { width: 100%; }
.stripe-pay-btn { margin-bottom: 0.6rem; }

.stripe-trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stripe-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.55); }
.stripe-trust-item i { color: rgba(255,255,255,0.55); font-size: 1rem; }
.stripe-trust-item i.fa-stripe { color: #635BFF; }

.pricing-footer { margin-top: 2rem; padding: 1.5rem; background: rgba(240,165,0,0.08); border: 1px solid rgba(240,165,0,0.25); border-radius: var(--radius-md); text-align: center; }
.pricing-footer p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* Botón WhatsApp (plan Consulta) */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  margin-bottom: 0.6rem;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); color: #fff; }

/* Tabla comparativa (grande, tema oscuro) */
.compare-table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  margin-bottom: 3rem;
}

.compare-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.compare-table th, .compare-table td {
  padding: 1.1rem 1.25rem; text-align: center; font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td { color: rgba(255,255,255,0.65); }
.compare-table td:first-child { text-align: left; font-weight: 600; color: rgba(255,255,255,0.9); max-width: 280px; }
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table tbody tr:hover td.compare-featured { background: rgba(240,165,0,0.12); }

.compare-table thead th { background: rgba(255,255,255,0.03); padding: 1.5rem 1.25rem; vertical-align: bottom; }
.th-plan {
  display: block;
  font-family: var(--font-cond); font-size: 1.35rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: #fff;
}
.th-price {
  display: block; margin-top: 0.35rem;
  font-family: var(--font-display); font-size: 2rem; letter-spacing: 1px;
  background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.th-price em { font-style: normal; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; -webkit-text-fill-color: rgba(255,255,255,0.4); }
.th-badge {
  display: inline-block; margin-bottom: 0.6rem;
  background: var(--gold-gradient); color: #fff;
  padding: 0.28rem 0.9rem; border-radius: var(--radius-full);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
}

.compare-table .compare-featured { background: rgba(240,165,0,0.08); }
.compare-table thead .compare-featured { background: rgba(240,165,0,0.14); border-top: 3px solid var(--gold); }
.compare-table .yes { color: var(--gold); font-size: 1.05rem; }
.compare-table .no  { color: rgba(255,255,255,0.25); font-size: 1rem; }

.compare-cta-row td { padding: 1.5rem 1rem; }
.compare-cta-row .btn { padding: 0.7rem 1.4rem; font-size: 0.8rem; white-space: nowrap; margin-bottom: 0; }


/* ====================================================
   ABOUT — light gray bg
   ==================================================== */
.about { background: var(--bg-gray); padding: 100px 0; }

.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-image-wrap { position: relative; }
.about-image-accent { position: absolute; top: -18px; right: -18px; width: 60%; height: 60%; border: 2px solid var(--gold); border-radius: var(--radius-xl); z-index: 0; opacity: 0.25; }
.about-image { border-radius: var(--radius-xl); overflow: hidden; position: relative; z-index: 1; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: auto; display: block; }

.about-text .section-header { margin-bottom: 1.5rem; text-align: left; }
.about-text .section-eyebrow::before, .about-text .section-eyebrow::after { display: none; }
.about-text p { font-size: 1rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 1rem; }

.about-credentials {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin: 1.75rem 0; padding: 1.5rem;
  background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.credential-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--text-medium); font-weight: 500; }
.credential-item i { color: var(--gold); font-size: 0.9rem; }

.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.about-stat h3 { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 1px; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.3rem; }
.about-stat p { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }


/* ====================================================
   CTA STRIP — gold bg
   ==================================================== */
.cta-strip { background: var(--gold-gradient); padding: 70px 0; position: relative; overflow: hidden; }
.cta-strip::before {
  content: 'ACTÚA'; position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 14rem; color: rgba(255,255,255,0.12);
  line-height: 1; pointer-events: none; user-select: none;
}
.cta-strip-content { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip-text h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.5rem); color: #fff; text-transform: uppercase; letter-spacing: 2px; line-height: 1; }
.cta-strip-text p { font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 0.5rem; }
.cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ====================================================
   CONTACT — white bg
   ==================================================== */
.contact { background: var(--bg-white); padding: 100px 0; }

.contact-content { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info .section-header { text-align: left; margin-bottom: 1.5rem; }
.contact-info .section-eyebrow::before, .contact-info .section-eyebrow::after { display: none; }
.contact-info > p { font-size: 0.95rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 2rem; }

.contact-benefits { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-benefits li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-medium); font-weight: 500; }
.contact-benefits i { color: var(--gold); font-size: 0.85rem; }

.contact-cta-container { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.contact-cta-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  transition: all 0.35s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}
.contact-cta-card:hover { border-color: var(--gold-light); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 2rem; color: #fff; }
.whatsapp-icon  { background: linear-gradient(135deg, #25D366, #128C7E); }
.instagram-icon { background: linear-gradient(135deg, #E1306C, #833AB4); }
.contact-cta-card h3 { font-family: var(--font-cond); font-size: 1.4rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.contact-cta-card p { color: var(--text-light); margin-bottom: 1.25rem; font-size: 0.88rem; }


/* ====================================================
   TESTIMONIALS — light gray bg
   ==================================================== */
.testimonials { background: var(--bg-gray); padding: 100px 0; }

.testimonials-showcase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3.5rem 2rem; padding-top: 1rem; }

.testimonial-styled { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }

.testimonial-img-wrapper {
  width: 220px; height: 220px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gold); margin-bottom: -28px;
  position: relative; z-index: 10; transition: transform 0.3s ease;
  box-shadow: 0 0 0 8px rgba(240,165,0,0.1), var(--shadow-md);
}
.testimonial-styled:hover .testimonial-img-wrapper { transform: scale(1.04); }
.testimonial-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-info-box { position: relative; z-index: 20; width: 100%; display: flex; flex-direction: column; align-items: center; margin-bottom: 0.35rem; }
.testimonial-name-badge { background: var(--ink); color: #fff; padding: 8px 28px; font-family: var(--font-cond); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1.5px; }
.testimonial-role-badge { color: var(--gold-dark); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem; margin-top: 0.2rem; }

.testimonial-quote-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 1.75rem 1.5rem 2rem;
  border-radius: var(--radius-lg);
  position: relative; margin-top: -18px; z-index: 5;
  border-top: 3px solid var(--gold); width: 100%;
  transition: all 0.3s ease; box-shadow: var(--shadow-sm);
}
.testimonial-styled:hover .testimonial-quote-box { box-shadow: var(--shadow-lg); }
.testimonial-quote-box::before {
  content: '"'; position: absolute; top: 0.5rem; left: 1rem;
  font-family: var(--font-display); font-size: 4rem; color: rgba(240,165,0,0.15);
  line-height: 1; pointer-events: none;
}
.testimonial-text { font-size: 0.92rem; line-height: 1.7; color: var(--text-medium); font-style: italic; margin: 0; }


/* ====================================================
   FAQ — white bg
   ==================================================== */
.faq { background: var(--bg-white); padding: 100px 0; }
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item { margin-bottom: 0.75rem; border: 1.5px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.25s; box-shadow: var(--shadow-sm); }
.faq-item:hover { border-color: rgba(240,165,0,0.4); }
.faq-item.active { border-color: var(--gold); }

.faq-question { width: 100%; padding: 1.25rem 1.5rem; background: var(--bg-white); border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); text-align: left; transition: background 0.2s; }
.faq-question:hover { background: var(--bg-light); }
.faq-question i { color: var(--gold); transition: transform 0.3s var(--ease-out-expo); font-size: 0.85rem; flex-shrink: 0; margin-left: 1rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; background: var(--bg-light); }
.faq-item.active .faq-answer { max-height: 500px; padding: 1.25rem 1.5rem; }
.faq-answer p { color: var(--text-medium); line-height: 1.75; font-size: 0.9rem; }


/* ====================================================
   FOOTER — dark bg
   ==================================================== */
.footer { background: var(--ink); padding: 4rem 0 2rem; }

.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-brand h3 { font-family: var(--font-cond); font-size: 1.15rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-brand h3 i { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 0.6rem; }
.social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.4); transition: all 0.25s; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }

.footer-section h3 { font-family: var(--font-cond); font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.footer-bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }


/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in  { from { opacity: 0; } to { opacity: 1; } }

.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo); }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }


/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1100px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .services-layout { grid-template-columns: 1fr; }
  .includes-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .includes-tabs { flex-direction: row; flex-wrap: wrap; }
  .includes-tab { flex: 1 1 45%; padding: 0.8rem 1rem; font-size: 0.85rem; }
  .includes-panel.active { grid-template-columns: 1fr; justify-items: stretch; }
  .includes-panel .phone-mockup-wrap { justify-self: center; }
  .services-image { height: 320px; order: -1; }
  .about-content, .contact-content { grid-template-columns: 1fr; gap: 3rem; }
  .results-preview-grid { grid-template-columns: 1fr 1fr; }
  .transform-mini-grid, .transform-page-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-showcase-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip-content { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 1.25rem; }

  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 1.5rem;
    transform: translateY(-110%); opacity: 0;
    transition: all 0.35s var(--ease-out-expo);
    border-bottom: 1px solid var(--border-light); gap: 0.25rem;
  }
  .nav-menu.active { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }

  .hero-stats { flex-wrap: wrap; gap: 2rem 3rem; }
  .hero-stat-number { font-size: 2rem; }

  .result-modal-top { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
  .result-seg-wrap { padding: 1.5rem 1.5rem 0; }
  .result-seg-wrap + .result-modal-top { padding-top: 1rem; }
  .result-seg { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-md); }
  .result-seg-btn { border-radius: var(--radius-sm); padding: 0.55rem 0.4rem; font-size: 0.75rem; }
  .result-modal-info { padding-right: 0; }
  .result-modal-info h3 { font-size: 1.6rem; }
  .result-modal-report { margin: 0 1.5rem 1.5rem; }
  .report-metrics-grid { grid-template-columns: 1fr 1fr; }

  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .results-preview-grid { grid-template-columns: 1fr; }
  .transform-mini-grid, .transform-page-grid { grid-template-columns: 1fr; }
  .testimonials-showcase-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .report-chart-canvas { height: 180px; }
}

@media (max-width: 480px) {
  .services-cards { grid-template-columns: 1fr; }
  .result-modal-overlay { padding: 0; }
  .result-modal { max-height: 100vh; border-radius: 0; }
  .report-metrics-grid { grid-template-columns: 1fr; }
  .report-metric { border-right: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ====================================================
   LEGAL PAGES
   ==================================================== */
.legal-page { padding: calc(var(--nav-h) + 60px) 0 80px; background: var(--bg-white); }
.legal-page .container { max-width: 800px; }
.legal-page .section-header { margin-bottom: 2.5rem; }
.legal-page .section-eyebrow::before, .legal-page .section-eyebrow::after { display: none; }
.legal-updated { font-size: 0.82rem; color: var(--text-muted); margin-top: 1.25rem; }
.legal-page h2 { font-family: var(--font-cond); font-size: 1.35rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; margin: 2.25rem 0 0.85rem; }
.legal-page p { font-size: 0.95rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 0.85rem; }
.legal-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.85rem; }
.legal-page li { font-size: 0.95rem; color: var(--text-medium); line-height: 1.8; }
.legal-page a { color: var(--gold-dark); text-decoration: underline; }
.legal-page a.btn { text-decoration: none; color: #fff; }
.legal-back { margin-top: 3rem; }

/* Notification */
.notification { position: fixed; top: 90px; right: 20px; padding: 1rem 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); z-index: 10000; font-weight: 600; font-size: 0.9rem; animation: slideInRight 0.3s var(--ease-out-expo); max-width: 380px; cursor: pointer; display: flex; align-items: center; gap: 0.75rem; }
.notification-success { background: var(--green); color: #fff; }
.notification-error   { background: var(--red);   color: #fff; }
@keyframes slideInRight  { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(120%); opacity: 0; } }
