/* ============================================
   GOODDOOFIT — Premium Fitness Coaching
   styles.css
   ============================================ */

/* ---------- IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F5F5;
  --color-bg-dark: #0A0A0A;
  --color-text-primary: #0A0A0A;
  --color-text-secondary: #444444;
  --color-text-muted: #888888;
  --color-accent: #25D366;
  --color-accent-hover: #1ebe5a;
  --color-border: #E5E5E5;
  --color-white: #FFFFFF;
  --color-black: #000000;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.16, 1, 0.3, 1);

  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.overline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  display: block;
}

.overline--light {
  color: rgba(255, 255, 255, 0.5);
}

.section-h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 40px;
  color: var(--color-text-primary);
}

.section-h2--white {
  color: var(--color-white);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 18px 36px;
  border-radius: 4px;
  transition: all 0.2s var(--ease-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-text-primary);
}

.btn--outline:hover {
  background-color: var(--color-text-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn--outline-white:hover {
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn--large {
  padding: 22px 48px;
  font-size: 14px;
}

/* ---------- ANIMATIONS ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }

/* Hero-specific animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { transform: scale(1.04); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s var(--ease-smooth);
  animation: fadeDown 0.5s ease both;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.navbar__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
  position: relative;
  transition: color 0.2s var(--ease-smooth);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-text-primary);
  transition: width 0.3s var(--ease-smooth);
}

.navbar__link:hover {
  color: var(--color-text-primary);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 24px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 4px;
  transition: all 0.2s var(--ease-smooth);
}

.navbar__cta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all 0.3s var(--ease-smooth);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background-color: var(--color-white);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  background-color: var(--color-white);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--color-white);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.active .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu__link:nth-child(6) { transition-delay: 0.35s; }

/* ============================================
   HERO
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 72px;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 110px 60px 60px 80px;
}

.hero__overline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-bounce) 0.3s both;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(64px, 7.5vw, 128px);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--color-text-primary);
  margin-bottom: 28px;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  animation: slideUp 0.8s var(--ease-bounce) both;
}

.hero__title .word:nth-child(1) { animation-delay: 0.2s; }
.hero__title .word:nth-child(2) { animation-delay: 0.3s; }
.hero__title .word:nth-child(3) { animation-delay: 0.4s; }
.hero__title .word:nth-child(4) { animation-delay: 0.55s; }
.hero__title .word:nth-child(5) { animation-delay: 0.65s; }
.hero__title .word:nth-child(6) { animation-delay: 0.75s; }

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-bounce) 0.8s both;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-bounce) 1s both;
}

.hero__trust {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-bounce) 1.2s both;
}

.hero__image {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  min-height: 600px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 1.4s ease both;
}

.hero__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100%;
  background: linear-gradient(to right, var(--color-bg) 10%, transparent);
  z-index: 2;
}

/* Coaching page hero (centered dark) */
.hero--coaching {
  grid-template-columns: 1fr;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.hero--coaching::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero--coaching .hero__content {
  position: relative;
  z-index: 2;
  align-items: center;
  padding: 120px 24px;
}

.hero--coaching .hero__overline {
  color: rgba(255, 255, 255, 0.5);
}

.hero--coaching .hero__title {
  color: var(--color-white);
  max-width: 800px;
}

.hero--coaching .hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* ============================================
   EL PROBLEMA
   ============================================ */
.problema {
  padding: var(--section-padding);
}

.problema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.problema__item {
  padding-left: 24px;
  border-left: 2px solid var(--color-text-primary);
}

.problema__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 48px;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 16px;
}

.problema__statement {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.problema__desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.problema__closing {
  text-align: center;
  font-family: var(--font-body);
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.2;
}

/* ============================================
   LA SOLUCIÓN
   ============================================ */
.solucion {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
}

.solucion__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.solucion__item {
  padding: 40px 32px;
}

.solucion__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solucion__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-text-primary);
  stroke-width: 1.5;
  fill: none;
}

.solucion__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.solucion__desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.solucion__quote {
  text-align: center;
  padding-top: 60px;
  border-top: 1px solid var(--color-border);
}

.solucion__quote-text {
  font-family: var(--font-body);
  font-size: 32px;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 16px;
}

.solucion__quote-author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
}

/* ============================================
   SOBRE LÁZARO
   ============================================ */
.sobre {
  padding: var(--section-padding);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre__image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.sobre__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sobre__content {
  max-width: 520px;
}

.sobre__text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.sobre__stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 42px;
  color: var(--color-text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.sobre__stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ============================================
   BEFORE / AFTER COMPARISON SLIDER
   ============================================ */
.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  line-height: 0;
}

.ba-slider__after {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.ba-slider__before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
}

.ba-slider__before img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Make before img match the after img's rendered width */
  min-width: 0;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.ba-slider__handle-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  pointer-events: auto;
  cursor: col-resize;
  transition: transform 200ms ease;
}

.ba-slider__handle-arrows:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.ba-slider__label {
  position: absolute;
  bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 5;
  pointer-events: none;
  line-height: 1.4;
}

.ba-slider__label--antes {
  left: 16px;
}

.ba-slider__label--ahora {
  right: 16px;
}

/* Nudge intro animation */
@keyframes ba-nudge {
  0%   { left: 50%; }
  40%  { left: 30%; }
  100% { left: 50%; }
}

.ba-slider--nudge .ba-slider__handle {
  animation: ba-nudge 1.2s cubic-bezier(0.42,0,0.58,1) forwards;
}

.ba-slider--nudge .ba-slider__before {
  animation: ba-nudge-clip 1.2s cubic-bezier(0.42,0,0.58,1) forwards;
}

@keyframes ba-nudge-clip {
  0%   { width: 50%; }
  40%  { width: 30%; }
  100% { width: 50%; }
}

/* ============================================
   SERVICIOS — PREMIUM PRICING
   ============================================ */
.servicios {
  padding: var(--section-padding);
  background-color: var(--color-bg);
}

.servicios__sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 32px;
}

.servicios .section-h2 {
  font-size: 64px;
}

.servicios__scarcity {
  margin-bottom: 64px;
  text-align: center;
}

.servicios__scarcity-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 20px;
  color: var(--color-text-secondary);
}

.scarcity-icon {
  flex-shrink: 0;
}

.servicios__grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 64px;
}

.servicios__trust {
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: #666666;
  letter-spacing: 0.3px;
}

/* ---------- PRICING CARD — BASE ---------- */
.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 48px 36px 40px;
  position: relative;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

/* Stagger entrance delays */
.servicios__grid .pricing-card:nth-child(1) { transition-delay: 0s; }
.servicios__grid .pricing-card:nth-child(2) { transition-delay: 0.1s; }
.servicios__grid .pricing-card:nth-child(3) { transition-delay: 0.2s; }

/* Hero card entrance: scale 0.97 → 1.0 */
.pricing-card--hero.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
}

.pricing-card--hero.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Duration pill */
.pricing-card__duration {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* Plan name */
.pricing-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}

/* Price */
.pricing-card__price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 56px;
  color: var(--color-text-primary);
  line-height: 1;
  margin-bottom: 20px;
}

.pricing-card__price--app {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* Intro paragraph */
.pricing-card__intro {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Pull quote — Tier 3 */
.pricing-card__quote {
  font-family: var(--font-body);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.5;
  margin: 0 0 28px 0;
  padding: 0 0 0 20px;
  border-left: 2px solid var(--color-accent);
}

/* Divider */
.pricing-card__divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin-bottom: 28px;
}

/* Features list */
.pricing-card__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.pricing-card__feature svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke: var(--color-accent);
  stroke-width: 2.5;
  fill: none;
}

.pricing-card__feature-sub {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
  line-height: 1.5;
}

/* Scarcity line — Tier 3 */
.pricing-card__scarcity-line {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-primary);
  text-align: center;
  padding: 16px 0;
  margin-bottom: 8px;
  border-top: 1px solid var(--color-border);
  letter-spacing: 0.5px;
}

/* CTA button — base */
.pricing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 24px;
  border: 2px solid var(--color-text-primary);
  border-radius: 4px;
  color: var(--color-text-primary);
  background: transparent;
  transition: all 0.2s var(--ease-smooth);
}

.pricing-card__cta:hover {
  background: var(--color-text-primary);
  color: var(--color-white);
  transform: scale(1.03);
}

/* ---------- HERO CARD (TIER 2) ---------- */
.pricing-card--hero {
  background: var(--color-bg-dark);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 12px;
  padding: 56px 40px 48px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.pricing-card--hero:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35), 0 0 60px rgba(37, 211, 102, 0.06);
}

/* Badge */
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 8px 24px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-radius: 999px;
  white-space: nowrap;
}

/* Hero overrides — light-on-dark */
.pricing-card__duration--hero {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card--hero .pricing-card__name {
  color: var(--color-white);
}

.pricing-card--hero .pricing-card__price {
  color: var(--color-white);
}

.pricing-card--hero .pricing-card__intro {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-card--hero .pricing-card__divider {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-card--hero .pricing-card__feature {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-card__feature-sub--hero {
  color: rgba(255, 255, 255, 0.35);
}

/* Hero CTA — full accent green */
.pricing-card__cta--hero {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
  padding: 22px 24px;
  font-size: 14px;
}

.pricing-card__cta--hero:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-bg-dark);
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

/* ---------- EXCLUSIVE CARD (TIER 3) ---------- */
.pricing-card--exclusive {
  border-color: var(--color-border);
}

/* Detail links below CTAs */
.pricing-card__details {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: #666666;
  transition: color 0.2s var(--ease-smooth);
}

.pricing-card__details:hover {
  color: var(--color-text-primary);
}

.pricing-card__details--hero {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card__details--hero:hover {
  color: var(--color-white);
}

/* ============================================
   TRANSFORMACIONES — EDITORIAL CASE STUDIES
   ============================================ */
.transformaciones {
  padding: 120px 0 100px;
  background-color: var(--color-bg-dark);
  background-image: url('../assets/images/dark-texture.png');
  background-size: cover;
  background-blend-mode: overlay;
  overflow: hidden;
}

.transformaciones > .container {
  text-align: center;
  margin-bottom: 100px;
}

.transformaciones__intro {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ---------- STORY EDITORIAL LAYOUT ---------- */
.story {
  max-width: 1300px;
  margin: 0 auto 140px;
  padding: 0 24px;
}

/* Override default animate-on-scroll transform for stories —
   the story wrapper stays in place; children animate independently */
article.story.animate-on-scroll {
  transform: none;
}

article.story.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.story__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.story--reverse .story__inner {
  grid-template-columns: 1fr 1.2fr;
}

.story--reverse .story__media {
  order: 2;
}

.story--reverse .story__content {
  order: 1;
}

/* ---------- STORY MEDIA ---------- */
.story__media {
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-smooth) 0.1s, transform 0.9s var(--ease-smooth) 0.1s;
}

.story.is-visible .story__media {
  opacity: 1;
  transform: translateX(0);
}

.story--reverse .story__media {
  transform: translateX(60px);
}

.story--reverse.is-visible .story__media {
  transform: translateX(0);
}

.story__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.6s var(--ease-smooth);
}

.story:hover .story__media img {
  transform: scale(1.02);
}

/* Dual images for Lázaro + hijo */
.story__media--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: 0;
}

.story__media--dual img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}

/* ---------- STORY CONTENT ---------- */
.story__content {
  padding: 20px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth) 0.3s, transform 0.8s var(--ease-smooth) 0.3s;
}

.story.is-visible .story__content {
  opacity: 1;
  transform: translateY(0);
}

.story__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  display: block;
  margin-bottom: -20px;
  user-select: none;
}

.story__name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 52px;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.story__name-accent {
  color: rgba(255, 255, 255, 0.35);
}

.story__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  display: block;
  margin-bottom: 20px;
  margin-top: 4px;
}

.story__text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 24px;
}

/* ---------- STORY DIVIDER ---------- */
.story + .story::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 140px;
}

/* Reset margin-bottom on story when followed by divider */
.story + .story {
  margin-top: -60px;
}

/* ---------- FINALE STORY ACCENT ---------- */
.story--finale .story__content {
  border-left: 2px solid var(--color-accent);
  padding-left: 32px;
}

.story--finale .story__text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- SECTION CTA ---------- */
.transformaciones__cta {
  text-align: center;
  padding: 40px 24px 0;
  max-width: 800px;
  margin: 0 auto;
}

.transformaciones__cta-question {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 64px;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.btn--whatsapp {
  background-color: var(--color-accent);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn--whatsapp:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.35);
}

.btn__wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   CÓMO FUNCIONA
   ============================================ */
.proceso {
  padding: var(--section-padding);
}

.proceso__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
  position: relative;
}

.proceso__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--color-border);
}

.proceso__step {
  text-align: center;
  position: relative;
}

.proceso__step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 96px;
  color: var(--color-bg-alt);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}

.proceso__step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.proceso__step-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.proceso__cta {
  text-align: center;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s var(--ease-smooth);
}

.faq__question:hover {
  color: var(--color-text-secondary);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-smooth);
  stroke: var(--color-text-muted);
  stroke-width: 2;
  fill: none;
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

.faq__answer-inner {
  padding-bottom: 28px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 120px 0;
  background-color: var(--color-bg-dark);
  background-image: url('../assets/images/dark-texture.png');
  background-size: cover;
  background-blend-mode: overlay;
  text-align: center;
}

/* ---------- VIDEO BACKGROUND CTA ---------- */
.cta-final--video {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  background-image: none;
}

.cta-final--video .container {
  position: relative;
  z-index: 2;
}

.cta-final__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-final__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
}

.cta-final__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(42px, 5vw, 80px);
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 20px;
}

.cta-final__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.cta-final__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
  text-align: center;
}

.contact-form__intro {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: -16px auto 56px;
  line-height: 1.7;
}

.contact-form__form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__field {
  margin-bottom: 24px;
}

.contact-form__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.contact-form__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form__input::placeholder {
  color: var(--color-text-muted);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
}

.contact-form__input.is-invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select {
  cursor: pointer;
  padding-right: 44px;
}

.contact-form__select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: color 0.2s var(--ease-smooth);
}

.contact-form__select:focus ~ .contact-form__select-arrow {
  color: var(--color-accent);
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  border: none;
}

.contact-form__disclaimer {
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 20px;
}

/* -- Success state -- */
.contact-form__success {
  display: none;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.6s var(--ease-bounce) forwards;
}

.contact-form__success.is-visible {
  display: block;
}

.contact-form__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.contact-form__success-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.contact-form__success-text {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-black);
  padding: 80px 0 40px;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-white);
  letter-spacing: 3px;
  margin-bottom: 32px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s var(--ease-smooth);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.2s var(--ease-smooth);
}

.footer__social-link:hover {
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link--ig svg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 1.5;
}

.footer__social-link--wa svg {
  fill: rgba(255, 255, 255, 0.6);
}

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease-smooth);
}

.footer__credit:hover {
  opacity: 1;
}

.footer__credit span {
  font-size: 11px;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer__credit img {
  height: 80px;
  width: auto;
  display: block;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
}

.whatsapp-float__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.2s var(--ease-smooth);
  animation: pulseRing 2s infinite;
}

.whatsapp-float__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__btn svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.whatsapp-float__tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--color-white);
  color: var(--color-text-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-smooth);
  pointer-events: none;
}

.whatsapp-float__tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: var(--color-white);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth), visibility 0.3s, background-color 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

.scroll-top svg {
  pointer-events: none;
}

/* ============================================
   COACHING PAGES — CP DESIGN SYSTEM
   ============================================ */

/* --- CP HERO --- */
.cp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0A0A0A;
  overflow: hidden;
  padding: 160px 24px 100px;
}

.cp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.25;
}

.cp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.95) 100%);
}

.cp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cp-hero__overline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 24px;
  display: block;
}

.cp-hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 28px;
}

.cp-hero__sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cp-hero__cta {
  display: inline-flex;
}

/* --- CP FEATURES --- */
.cp-features {
  padding: var(--section-padding);
}

.cp-features .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.cp-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  margin-top: 60px;
}

.cp-features__item {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.cp-features__item--highlight {
  border-bottom-color: var(--color-accent);
  position: relative;
}

.cp-features__item--highlight .cp-features__number {
  font-size: 48px;
}

.cp-features__item--highlight .cp-features__title {
  font-size: 20px;
  color: var(--color-accent);
}

.cp-features__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 42px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.cp-features__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-primary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cp-features__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* --- CP TIMELINE --- */
.cp-timeline {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
}

.cp-timeline .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.cp-timeline__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.cp-timeline__phase {
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: 4px;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.cp-timeline__phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.cp-timeline__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
}

.cp-timeline__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cp-timeline__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* --- CP AUDIENCE --- */
.cp-audience {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
}

.cp-audience .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.cp-audience__list {
  margin-top: 60px;
  max-width: 760px;
}

.cp-audience__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.cp-audience__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.cp-audience__icon svg {
  width: 32px;
  height: 32px;
}

.cp-audience__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-text-primary);
  line-height: 1.5;
}

/* --- CP CTA FINAL --- */
.cp-cta-final {
  padding: 120px 24px;
  background-color: #0A0A0A;
  text-align: center;
}

.cp-cta-final__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 40px;
}

.cp-cta-final__note {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 24px;
  letter-spacing: 0.5px;
}

/* --- CP COMPARISON (6-month page) --- */
.cp-comparison {
  padding: var(--section-padding);
  text-align: center;
}

.cp-comparison .container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.cp-comparison__reasons {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cp-comparison__reason {
  text-align: left;
}

.cp-comparison__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 56px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.cp-comparison__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.cp-comparison__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ============================================
   GOODDOO GRIND PAGE — MANIFESTO DESIGN
   ============================================ */

/* --- GRIND HERO --- */
.grind-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0A0A0A;
  overflow: hidden;
  padding: 160px 24px 120px;
}

.grind-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.15;
}

.grind-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.98) 100%);
}

.grind-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.grind-hero__overline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 48px;
  display: block;
}

.grind-hero__quote {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(52px, 8vw, 120px);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--color-white);
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.grind-hero__quote em {
  font-style: normal;
  color: var(--color-accent);
}

.grind-hero__sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin: 0 auto;
}

/* --- GRIND QUALIFY --- */
.grind-qualify {
  padding: var(--section-padding);
  background-color: #0A0A0A;
}

.grind-qualify .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.grind-qualify .section-h2 {
  color: var(--color-white);
}

.grind-qualify .overline {
  color: var(--color-accent);
}

.grind-qualify__list {
  margin-top: 56px;
  max-width: 720px;
}

.grind-qualify__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.grind-qualify__item:last-child {
  border-bottom: none;
}

.grind-qualify__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
  min-width: 40px;
}

.grind-qualify__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* --- GRIND PRIVILEGES --- */
.grind-privileges {
  padding: var(--section-padding);
  background-color: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.grind-privileges .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.grind-privileges .section-h2 {
  color: var(--color-white);
}

.grind-privileges .overline {
  color: var(--color-accent);
}

.grind-privileges__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  margin-top: 60px;
}

.grind-privileges__item {
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.grind-privileges__item:hover {
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateY(-4px);
}

.grind-privileges__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.grind-privileges__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* --- GRIND PROOF --- */
.grind-proof {
  padding: var(--section-padding);
  background-color: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.grind-proof .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.grind-proof .section-h2 {
  color: var(--color-white);
}

.grind-proof .overline {
  color: var(--color-accent);
}

.grind-proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 60px;
  align-items: start;
}

.grind-proof__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.grind-proof__image {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.grind-proof__video {
  width: 100%;
  display: block;
  border-radius: 4px;
  background: #000;
}

.grind-proof__caption {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* --- GRIND SCARCITY --- */
.grind-scarcity {
  padding: 120px 24px;
  background-color: #0A0A0A;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.grind-scarcity__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(80px, 12vw, 180px);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 24px;
}

.grind-scarcity__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.grind-scarcity__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- GRIND APPLY --- */
.grind-apply {
  padding: 120px 24px;
  background-color: #0A0A0A;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.grind-apply__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 24px;
}

.grind-apply__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.grind-apply__note {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   TEAM LAZZ — COMUNIDAD
   ============================================ */
.team-lazz {
  padding: 120px 0;
  background-color: var(--color-bg-alt);
}

.team-lazz__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.team-lazz__image-col {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.team-lazz__image-col.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.team-lazz__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 2 / 3;
  width: 100%;
}

.team-lazz__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-lazz__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.45), transparent);
  pointer-events: none;
}

.team-lazz__content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-lazz__content .animate-on-scroll {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.team-lazz__content .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.team-lazz__tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-text-secondary);
  margin-top: -24px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.team-lazz__body {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.team-lazz__benefits {
  margin-bottom: 32px;
}

.team-lazz__benefit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-text-primary);
  line-height: 1.6;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.team-lazz__benefit:first-child {
  border-top: 1px solid var(--color-border);
}

.team-lazz__closing {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 32px;
  margin-top: 32px;
}

.team-lazz__closing em {
  font-style: normal;
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .section-h2 {
    font-size: 42px;
  }

  /* -- Hero: full-bleed bg on tablet/mobile -- */
  .hero {
    display: block;
    position: relative;
    min-height: 100vh;
  }

  .hero__image {
    position: absolute;
    top: 73px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
  }

  .hero__image img {
    object-position: top center;
  }

  .hero__image::before {
    display: none;
  }

  .hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.52) 45%,
      rgba(0, 0, 0, 0.90) 100%
    );
    z-index: 1;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 28px 72px;
    order: unset;
  }

  .hero__overline {
    color: rgba(255, 255, 255, 0.55);
  }

  .hero__title {
    font-size: 64px;
    color: var(--color-white);
  }

  .hero__subtitle {
    color: rgba(255, 255, 255, 0.80);
  }

  .hero__ctas .btn--outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.45);
  }

  .hero__trust {
    color: rgba(255, 255, 255, 0.45);
  }

  .problema__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problema__closing {
    font-size: 32px;
  }

  .solucion__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solucion__quote-text {
    font-size: 24px;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .servicios .section-h2 {
    font-size: 48px;
  }

  .servicios__scarcity {
    text-align: center;
  }

  .servicios__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
  }

  .pricing-card--hero {
    padding: 48px 36px 40px;
  }

  .pricing-card__badge {
    top: -13px;
  }

  /* Remove stagger delay on tablet — cards stack */
  .servicios__grid .pricing-card:nth-child(1),
  .servicios__grid .pricing-card:nth-child(2),
  .servicios__grid .pricing-card:nth-child(3) {
    transition-delay: 0s;
  }

  .pricing-card--hero:hover {
    transform: scale(1.01);
  }

  /* -- Stories: tablet -- */
  .story {
    margin-bottom: 80px;
  }

  .story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story--reverse .story__inner {
    grid-template-columns: 1fr;
  }

  .story--reverse .story__media,
  .story--reverse .story__content {
    order: unset;
  }

  .story__media {
    transform: translateY(30px) !important;
  }

  .story.is-visible .story__media {
    transform: translateY(0) !important;
  }

  .story__number {
    font-size: 64px;
    margin-bottom: -14px;
  }

  .story__name {
    font-size: 42px;
  }

  .story__text {
    font-size: 16px;
  }

  .story--finale .story__content {
    padding-left: 24px;
  }

  .story + .story::before {
    margin-bottom: 80px;
  }

  .story + .story {
    margin-top: -30px;
  }

  .transformaciones > .container {
    margin-bottom: 64px;
  }

  .transformaciones__cta-question {
    font-size: 44px;
  }

  .proceso__steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .proceso__steps::before {
    display: none;
  }

  .navbar__links {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero--coaching .hero__title {
    font-size: 48px;
  }

  .cta-final--video {
    padding: 120px 0;
  }

  /* -- Contact form: tablet -- */
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* -- CP coaching pages: tablet -- */
  .cp-hero {
    min-height: 70vh;
    padding: 140px 20px 80px;
  }

  .cp-hero__sub {
    font-size: 16px;
  }

  .cp-features__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cp-timeline__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cp-audience__text {
    font-size: 17px;
  }

  .cp-cta-final {
    padding: 80px 20px;
  }

  .cp-comparison__reasons {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* -- Grind page: tablet -- */
  .grind-hero {
    min-height: 80vh;
    padding: 140px 20px 100px;
  }

  .grind-qualify__text {
    font-size: 17px;
  }

  .grind-privileges__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .grind-proof__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grind-scarcity {
    padding: 80px 20px;
  }

  .grind-apply {
    padding: 80px 20px;
  }

  /* -- Team Lazz: tablet -- */
  .team-lazz {
    padding: 80px 0;
  }

  .team-lazz__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .team-lazz__image-col,
  .team-lazz__image-col.is-visible {
    transform: translateX(0);
  }

  .team-lazz__content .animate-on-scroll,
  .team-lazz__content .animate-on-scroll.is-visible {
    transform: translateX(0);
  }

  .team-lazz__closing {
    font-size: 24px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (375px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --section-padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }

  .section-h2 {
    font-size: 34px;
    margin-bottom: 28px;
  }

  .hero__content {
    padding: 100px 20px 60px;
  }

  .hero__title {
    font-size: 52px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .problema__closing {
    font-size: 26px;
  }

  .solucion__quote-text {
    font-size: 20px;
  }

  .servicios__grid {
    max-width: 100%;
    gap: 28px;
  }

  .pricing-card {
    padding: 40px 24px 32px;
  }

  .pricing-card--hero {
    padding: 48px 28px 40px;
  }

  .pricing-card__name {
    font-size: 28px;
  }

  .pricing-card__price:not(.pricing-card__price--app) {
    font-size: 44px;
  }

  .pricing-card__intro {
    font-size: 14px;
  }

  .pricing-card__feature {
    font-size: 13px;
  }

  .pricing-card__quote {
    font-size: 18px;
  }

  .servicios .section-h2 {
    font-size: 38px;
  }

  .sobre__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobre__stats {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  /* -- Stories: mobile -- */
  .story {
    margin-bottom: 64px;
    padding: 0 20px;
  }

  .story__inner {
    gap: 24px;
  }

  .story__number {
    font-size: 52px;
    margin-bottom: -10px;
  }

  .story__name {
    font-size: 34px;
  }

  .story__text {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 18px;
  }

  .story__media--dual {
    gap: 8px;
  }

  .story--finale .story__content {
    padding-left: 20px;
  }

  .story + .story::before {
    margin-bottom: 64px;
  }

  .story + .story {
    margin-top: -24px;
  }

  .transformaciones {
    padding: 80px 0 64px;
  }

  .transformaciones > .container {
    margin-bottom: 48px;
  }

  .transformaciones__intro {
    font-size: 15px;
  }

  .transformaciones__cta-question {
    font-size: 34px;
  }

  .transformaciones__cta {
    padding: 20px 20px 0;
  }

  .proceso__step-number {
    font-size: 72px;
  }

  .btn {
    padding: 16px 28px;
    font-size: 12px;
  }

  .btn--large {
    padding: 18px 32px;
    font-size: 13px;
  }

  .servicio-card {
    padding: 32px 24px;
  }

  .cta-final__title {
    font-size: 36px;
  }

  /* -- Contact form: mobile -- */
  .contact-form__intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .contact-form__form {
    max-width: 100%;
  }

  .contact-form__submit {
    padding: 18px 24px;
    font-size: 12px;
  }

  .hero--coaching .hero__title {
    font-size: 38px;
  }

  .cta-final--video {
    padding: 80px 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float__btn {
    width: 54px;
    height: 54px;
  }

  .scroll-top {
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
  }

  /* -- CP coaching pages: mobile -- */
  .cp-hero {
    min-height: 60vh;
    padding: 120px 20px 64px;
  }

  .cp-hero__sub {
    font-size: 15px;
  }

  .cp-features__number {
    font-size: 36px;
  }

  .cp-features__title {
    font-size: 16px;
  }

  .cp-timeline__title {
    font-size: 22px;
  }

  .cp-audience__text {
    font-size: 16px;
  }

  .cp-audience__item {
    gap: 16px;
    margin-bottom: 28px;
  }

  .cp-audience__icon {
    width: 24px;
    height: 24px;
  }

  .cp-audience__icon svg {
    width: 24px;
    height: 24px;
  }

  .cp-cta-final {
    padding: 64px 20px;
  }

  .cp-comparison__number {
    font-size: 42px;
  }

  /* -- Grind page: mobile -- */
  .grind-hero {
    min-height: 70vh;
    padding: 120px 20px 80px;
  }

  .grind-hero__overline {
    letter-spacing: 4px;
    font-size: 10px;
    margin-bottom: 32px;
  }

  .grind-qualify__item {
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  .grind-qualify__number {
    font-size: 24px;
    min-width: 32px;
  }

  .grind-qualify__text {
    font-size: 16px;
  }

  .grind-privileges__item {
    padding: 28px 24px;
  }

  .grind-privileges__title {
    font-size: 16px;
  }

  .grind-scarcity {
    padding: 64px 20px;
  }

  .grind-apply {
    padding: 64px 20px;
  }

  /* -- Team Lazz: mobile -- */
  .team-lazz {
    padding: 64px 0;
  }

  .team-lazz__grid {
    gap: 32px;
  }

  .team-lazz__tagline {
    font-size: 18px;
    margin-top: -20px;
  }

  .team-lazz__body {
    font-size: 15px;
  }

  .team-lazz__benefit {
    font-size: 15px;
    padding: 14px 0;
  }

  .team-lazz__closing {
    font-size: 22px;
    margin-bottom: 28px;
  }
}
