/* ============================================
   PASCAL COACHING — STYLES
   Dark / Yellow / Premium
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #181818;
  --black-4: #1f1f1f;
  --white: #ffffff;
  --grey: #a0a0a0;
  --grey-2: #6b6b6b;
  --yellow: #ffd60a;
  --yellow-2: #f5c400;
  --yellow-glow: rgba(255, 214, 10, 0.35);
  --green-wa: #25d366;

  --font-display: "Bebas Neue", "Anton", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  --shadow: 0 25px 60px -25px rgba(0, 0, 0, 0.8);
  --shadow-yellow: 0 25px 60px -25px var(--yellow-glow);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.accent { color: var(--yellow); }

/* ===== Typography ===== */
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  padding-left: 32px;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--yellow);
  transform: translateY(-50%);
}

.section { padding: clamp(80px, 12vw, 140px) 0; }
.section--dark { background: var(--black-2); }
.section__head { text-align: center; margin-bottom: clamp(40px, 6vw, 80px); max-width: 800px; margin-inline: auto; }
.section__lead { color: var(--grey); font-size: 1.1rem; margin-top: 1rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 30px -8px var(--yellow-glow);
}
.btn--primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--yellow-glow);
}

.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1eb958;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255, 214, 10, 0.05);
}

.btn--mega {
  background: var(--yellow);
  color: var(--black);
  font-size: 1.15rem;
  padding: 24px 48px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  font-weight: 400;
  box-shadow: 0 20px 60px -15px var(--yellow-glow);
}
.btn--mega:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 70px -10px var(--yellow-glow);
}

.btn--block { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s var(--ease);
  background: rgba(10, 10, 10, 0);
  backdrop-filter: blur(0);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1.5px;
}
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 8px;
  letter-spacing: 0;
}
.nav__logo-text { line-height: 1; }
.nav__logo-text span { color: var(--yellow); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
  border-radius: 8px;
}
.nav__links a:hover { color: var(--yellow); }

.nav__cta {
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  margin-left: 12px;
}
.nav__cta:hover { background: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px var(--gutter) 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255, 214, 10, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255, 214, 10, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* simulated athlete silhouette */
    radial-gradient(ellipse at 50% 70%, rgba(255, 214, 10, 0.06) 0%, transparent 40%);
}

/* Placeholder hero photo */
.hero::before {
  content: "PHOTO PASCAL EN ACTION";
  position: absolute;
  right: 5%;
  bottom: 10%;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 214, 10, 0.3);
  background: rgba(255, 214, 10, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--yellow);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--yellow-glow);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--grey);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__sub strong {
  color: var(--white);
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 70px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--white);
}
.hero__stat:nth-child(1) .hero__stat-num + .accent,
.hero__stat:nth-child(3) .hero__stat-num + .accent {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--grey);
  font-weight: 600;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--yellow));
  animation: scrollDown 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}
.placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%),
    radial-gradient(circle at 30% 30%, rgba(255, 214, 10, 0.1), transparent 70%);
  background-blend-mode: overlay;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.placeholder::after {
  content: "📷";
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  opacity: 0.3;
}
.placeholder--portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 214, 10, 0.15) 0%, transparent 30%);
}

.about__photo-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}
.about__photo-badge strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  display: block;
  letter-spacing: 1px;
}
.about__photo-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about__content p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.about__content p strong { color: var(--white); }
.about__content p em { color: var(--yellow); font-style: normal; font-weight: 600; }

.about__list {
  list-style: none;
  margin: 28px 0;
  display: grid;
  gap: 12px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 214, 10, 0.15);
  color: var(--yellow);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  padding: 36px 28px;
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 214, 10, 0.3);
  box-shadow: var(--shadow-yellow);
}

.card--featured {
  background:
    linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, transparent 60%),
    var(--black-3);
  border-color: rgba(255, 214, 10, 0.3);
}

.card__ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 214, 10, 0.1);
  color: var(--yellow);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.card__sub {
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.card__desc {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card__list {
  list-style: none;
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}
.card__list li {
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
  color: var(--grey);
}
.card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

.card__price {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}
.card__price-from {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey-2);
  margin-bottom: 4px;
}
.card__price-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 1px;
}
.card__price-num span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 4px;
}

.card__cta { width: 100%; padding: 14px; font-size: 0.9rem; }

/* ===== PROGRAM 90 DAYS ===== */
.program {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0;
  background:
    radial-gradient(ellipse at top right, rgba(255, 214, 10, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 214, 10, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a, #050505);
  overflow: hidden;
}
.program__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255, 214, 10, 0.02) 60px, rgba(255, 214, 10, 0.02) 61px);
  pointer-events: none;
}
.program > .container { position: relative; z-index: 2; }

.program__head { text-align: center; max-width: 900px; margin: 0 auto clamp(50px, 8vw, 80px); }
.program__badge {
  display: inline-block;
  padding: 10px 22px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px -10px var(--yellow-glow);
}
.program__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.program__lead {
  font-size: 1.15rem;
  color: var(--grey);
  line-height: 1.6;
}
.program__lead strong { color: var(--white); }

.program__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 60px;
}

.program__step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 214, 10, 0.15);
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
}
.program__step:hover {
  background: rgba(255, 214, 10, 0.04);
  border-color: rgba(255, 214, 10, 0.4);
  transform: translateY(-4px);
}

.program__step-num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px -10px var(--yellow-glow);
  letter-spacing: 1px;
}
.program__step-icon {
  margin: 16px auto 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}
.program__step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.program__step p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.5;
}

.program__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--yellow);
  font-weight: 700;
  opacity: 0.6;
}

.program__includes {
  background:
    linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, transparent 60%),
    rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 214, 10, 0.2);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 50px);
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
}
.program__includes-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  text-align: center;
  color: var(--white);
}
.program__includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.program__include {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  font-weight: 500;
}
.program__include-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.program__testimonial {
  position: relative;
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.08), rgba(255, 214, 10, 0.02));
  border: 1px solid rgba(255, 214, 10, 0.2);
  border-radius: var(--radius);
}
.program__testimonial-quote {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
  background: var(--black);
  padding: 0 20px;
}
.program__testimonial-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}
.program__big {
  font-family: var(--font-display);
  font-size: 3rem;
  display: inline-block;
  letter-spacing: 1px;
}
.program__testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.program__testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.program__testimonial-author strong { display: block; font-weight: 700; }
.program__testimonial-author span { font-size: 0.85rem; color: var(--grey); }

.program__cta { text-align: center; }
.program__price-note {
  color: var(--grey);
  margin-bottom: 24px;
  font-size: 1rem;
}
.program__price-note strong { color: var(--yellow); font-weight: 700; }
.program__guarantee {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--grey);
}

/* ===== RESULTS ===== */
.results__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.ba-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.ba-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 214, 10, 0.3);
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 2 / 1.5;
}
.ba-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
}
.ba-img--before {
  background:
    linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-right: 2px solid var(--yellow);
}
.ba-img--after {
  background:
    linear-gradient(135deg, rgba(255, 214, 10, 0.15), #1a1a1a);
  color: var(--yellow);
}
.ba-img span {
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.ba-card__info {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ba-card__info strong { font-weight: 700; }
.ba-card__info .accent { font-size: 0.9rem; font-weight: 600; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial {
  padding: 32px;
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  position: relative;
}
.testimonial__stars {
  color: var(--yellow);
  letter-spacing: 4px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.testimonial p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.testimonial__author strong { display: block; font-size: 0.95rem; }
.testimonial__author span { font-size: 0.8rem; color: var(--grey-2); }

/* ===== METHOD ===== */
.method__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.method__step {
  position: relative;
  padding: 36px 24px;
  text-align: center;
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.method__step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 214, 10, 0.3);
}

.method__num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: rgba(255, 214, 10, 0.15);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.method__icon {
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.method__step h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.method__step p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 60px;
  align-items: start;
}

.contact__intro p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.contact__intro p strong { color: var(--yellow); }

.contact__perks {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  gap: 12px;
}
.contact__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.contact__quick {
  display: grid;
  gap: 12px;
}
.contact__quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  color: var(--white);
}
.contact__quick-item:hover {
  border-color: var(--yellow);
  background: rgba(255, 214, 10, 0.04);
}
.contact__quick-item svg { color: var(--yellow); flex-shrink: 0; }
.contact__quick-item strong { display: block; font-size: 0.9rem; }
.contact__quick-item span { font-size: 0.85rem; color: var(--grey); }

/* ===== FORM ===== */
.form {
  padding: clamp(28px, 4vw, 40px);
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form__field {
  display: block;
  margin-bottom: 16px;
}
.form__field span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: all 0.2s;
  font-family: inherit;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.15);
}
.form__field textarea { resize: vertical; min-height: 80px; }
.form__field select { cursor: pointer; }

.form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 20px;
  cursor: pointer;
}
.form__check input { accent-color: var(--yellow); cursor: pointer; }

.form__success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--green-wa);
  border-radius: var(--radius-sm);
  color: var(--green-wa);
  text-align: center;
  font-weight: 600;
}
.form__success.is-visible { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.map-wrap {
  margin-top: 40px;
  filter: invert(0.85) hue-rotate(180deg) brightness(0.95);
}

/* ===== BLOG ===== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.post {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.post:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 214, 10, 0.3);
}
.post__img {
  aspect-ratio: 16 / 10;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
}
.post__img--1 { background: linear-gradient(135deg, #1f1f1f, #0a0a0a), radial-gradient(circle at 30% 30%, rgba(255, 214, 10, 0.2), transparent 60%); background-blend-mode: overlay; }
.post__img--2 { background: linear-gradient(135deg, #1a1a1a, #2a2a2a), radial-gradient(circle at 70% 50%, rgba(255, 214, 10, 0.15), transparent 60%); background-blend-mode: overlay; }
.post__img--3 { background: linear-gradient(135deg, #0f0f0f, #1f1f1f), radial-gradient(circle at 50% 80%, rgba(255, 214, 10, 0.18), transparent 60%); background-blend-mode: overlay; }

.post__tag {
  background: var(--yellow);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.post__body { padding: 24px; }
.post__date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey-2);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.post__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.post__body p {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.post__link {
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.post__link:hover { color: var(--white); }

/* ===== INSTAGRAM ===== */
.ig__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin-bottom: 40px;
}
.ig__tile {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, #1f1f1f, #0a0a0a),
    radial-gradient(circle at 50% 50%, rgba(255, 214, 10, 0.15), transparent 70%);
  background-blend-mode: overlay;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.ig__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 214, 10, 0) 0%, rgba(255, 214, 10, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.ig__tile:hover { transform: scale(1.05); }
.ig__tile:hover::after { opacity: 1; }
.ig__cta { text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer__brand p {
  color: var(--grey);
  font-size: 0.92rem;
  margin: 16px 0 20px;
  line-height: 1.7;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s;
}
.footer__socials a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: var(--yellow);
}
.footer__col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer__col ul li {
  color: var(--grey);
  font-size: 0.9rem;
}
.footer__col ul a {
  color: var(--grey);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--yellow); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--grey-2);
  font-size: 0.85rem;
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-wa);
  opacity: 0.6;
  animation: waPulse 2s infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav__links {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 30px var(--gutter);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
    gap: 4px;
    align-items: stretch;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    padding: 14px 18px;
    width: 100%;
    text-align: left;
  }
  .nav__cta { margin-left: 0; margin-top: 12px; text-align: center; }
  .nav__burger { display: flex; }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .program__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .program__arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }
  .hero__stat { flex-direction: row; gap: 10px; }
  .hero__stat-num + .accent { font-size: inherit !important; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ba-card__images { aspect-ratio: 2 / 1.2; }
  .hero::before { display: none; }
  .program__big { font-size: 2.2rem; }
  .program__testimonial-text { font-size: 1.15rem; }
  .btn { padding: 16px 24px; font-size: 0.9rem; }
  .btn--mega { padding: 20px 32px; font-size: 1rem; }
  .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
