/* ============================================================
   TALENT CENTER ALCOBENDAS — PREMIUM FITNESS WEBSITE
   Shared Stylesheet v2.0
   The Creative Marketing Collective
   ============================================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
  /* Colors */
  --orange: #FF7200;
  --orange-medium: #FF8B10;
  --orange-light: #FF9942;
  --orange-glow: rgba(255,114,0,0.15);
  --orange-gradient: linear-gradient(135deg, #FF7200 0%, #FF9942 100%);
  --gray-light: #B2B9C1;
  --gray-soft: #D8DCDF;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --white: #FFFFFF;
  --text-muted: rgba(255,255,255,0.55);

  /* Typography */
  --font-hero: 'Bebas Neue', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-headline: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1280px;
  --section-py: clamp(72px, 10vw, 120px);
  --nav-h: 80px;
}

/* ---- TYPOGRAPHY ---- */
.font-hero    { font-family: var(--font-hero); }
.font-hl      { font-family: var(--font-headline); }
.font-body    { font-family: var(--font-body); }

h1, h2, h3, h4 { font-family: var(--font-headline); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
}

section { position: relative; }

/* ---- ACCENT LINE ---- */
.accent-line {
  width: 50px;
  height: 4px;
  background: var(--orange-gradient);
  border-radius: 2px;
  margin-bottom: 20px;
}
.accent-line--center { margin-inline: auto; }

/* ---- SECTION LABEL ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ---- PILL BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,114,0,0.12);
  border: 1px solid rgba(255,114,0,0.3);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
  min-height: 56px;
  padding: 18px 52px;
  border-radius: var(--radius-pill);
}

.btn-primary {
  background: var(--orange-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(255,114,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 60px rgba(255,114,0,0.5), 0 20px 40px rgba(0,0,0,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 30px var(--orange-glow);
}

.btn-sm {
  font-size: 13px;
  padding: 14px 32px;
  min-height: 48px;
}

.btn-full { width: 100%; }

/* ---- GLASSMORPHISM CARD ---- */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 40px;
  transition: all 0.4s var(--ease-out);
}
.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,114,0,0.2);
  box-shadow: 0 30px 80px rgba(255,114,0,0.15), 0 0 0 1px rgba(255,114,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.glass-card--orange-top { border-top: 2px solid var(--orange); }

/* ---- IMAGE ZOOM WRAPPER ---- */
.img-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.img-wrap img { transition: transform 0.6s var(--ease-out); width: 100%; height: 100%; object-fit: cover; }
.img-wrap:hover img { transform: scale(1.08); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06) !important;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  gap: 32px;
}

.navbar__logo img {
  height: 240px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar__links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.3s ease;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.navbar__links a:hover { color: var(--white); }
.navbar__links a:hover::after { transform: scaleX(1); }
.navbar__links a.active { color: var(--orange); }
.navbar__links a.active::after { transform: scaleX(1); }

.navbar__cta { flex-shrink: 0; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
}
.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1002;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 80px 40px 40px;
}
.navbar__mobile-menu.open { display: flex; }
.navbar__mobile-menu a {
  font-family: var(--font-headline);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 24px;
  transition: color 0.3s ease;
  text-align: center;
}
.navbar__mobile-menu a:hover, .navbar__mobile-menu a.active { color: var(--orange); }
.navbar__mobile-menu .btn { margin-top: 16px; font-size: 16px; padding: 14px 32px; }
.navbar__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: var(--white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  transition: background 0.2s ease;
  z-index: 1003;
  flex-shrink: 0;
}
.navbar__mobile-close:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero--medium { min-height: 60vh; }
.hero--small  { min-height: 50vh; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 100%);
  z-index: 1;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero__shape {
  position: absolute;
  border-radius: var(--radius-xl);
  background: var(--orange);
}
.hero__shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  opacity: 0.06;
  animation: float1 7s ease-in-out infinite;
}
.hero__shape--2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 5%;
  opacity: 0.08;
  animation: float2 10s ease-in-out infinite;
  border-radius: 50%;
}
.hero__shape--3 {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 15%;
  opacity: 0.12;
  animation: float3 13s ease-in-out infinite;
  transform: rotate(45deg);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: var(--nav-h);
}

.hero__inner {
  padding-block: clamp(80px, 12vw, 140px);
}

.hero__label {
  animation: heroIn 0.8s var(--ease-out) 0.1s both;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-hero);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
  text-transform: uppercase;
  animation: heroIn 1s var(--ease-out) 0.3s both;
}
.hero__title span { color: var(--orange); }
.hero__title--line2 { animation-delay: 0.5s; }

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 16px;
  animation: heroIn 0.8s var(--ease-out) 0.7s both;
}

.hero__support {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: heroIn 0.8s var(--ease-out) 0.75s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  animation: heroIn 0.8s var(--ease-out) 0.9s both;
}

.hero__micro {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  animation: heroIn 0.6s var(--ease-out) 1.1s both;
}

.hero__scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-arrow svg { width: 24px; height: 24px; }

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.section-dark    { background: var(--dark); }
.section-dark-2  { background: var(--dark-2); }
.section-dark-3  { background: var(--dark-3); }
.section-padded  { padding-block: var(--section-py); }

.section__header { margin-bottom: 60px; }
.section__header--center { text-align: center; }
.section__header--center .accent-line { margin-inline: auto; }

.section__title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.section__title span { color: var(--orange); }

.section__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
}
.section__sub--center { margin-inline: auto; text-align: center; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  border-top: 2px solid rgba(255,114,0,0.3);
  border-bottom: 2px solid rgba(255,114,0,0.3);
  background: var(--dark-2);
  padding-block: 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-family: var(--font-hero);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   PAIN POINTS GRID
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.pain-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,114,0,0.15);
  border: 1px solid rgba(255,114,0,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.pain-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  padding-top: 6px;
}

/* ============================================================
   ARROW BULLETS
   ============================================================ */
.arrow-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.arrow-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.arrow-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   STEPS (HOW IT WORKS)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px);
  opacity: 0.4;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hero);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(255,114,0,0.3);
}
.step-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.4s var(--ease-out);
}
.benefit-card:hover {
  border-color: rgba(255,114,0,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255,114,0,0.1);
}
.benefit-icon {
  font-size: 28px;
  display: block;
}
.benefit-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   EMOTIONAL SECTION
   ============================================================ */
.emotional-section {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: var(--section-py);
}
.emotional-section .hero__bg { z-index: 0; }
.emotional-section .hero__overlay { z-index: 1; }
.emotional-section .container { position: relative; z-index: 2; }
.emotional-title {
  font-family: var(--font-hero);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1;
  max-width: 800px;
  margin-inline: auto;
}

/* ============================================================
   AUTHORITY PILLS
   ============================================================ */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.pill-tag {
  background: rgba(255,114,0,0.12);
  border: 1px solid rgba(255,114,0,0.25);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.carousel-section { overflow: hidden; }

.carousel-wrapper {
  position: relative;
}

.carousel-track-outer {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: border-color 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(255,114,0,0.2); }

.testimonial-stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}
.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.carousel-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   OFFER / CTA BOX
   ============================================================ */
.offer-box {
  background: linear-gradient(135deg, rgba(255,114,0,0.06) 0%, rgba(255,153,66,0.03) 100%);
  border: 1px solid rgba(255,114,0,0.2);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  box-shadow: 0 0 80px rgba(255,114,0,0.08);
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin: 32px 0;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.check-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
}

.urgency-text {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form-container {
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 64px);
  max-width: 720px;
  margin-inline: auto;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-grid--full { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,114,0,0.05);
  box-shadow: 0 0 0 3px rgba(255,114,0,0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B2B9C1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-full { grid-column: 1 / -1; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open {
  border-color: rgba(255,114,0,0.3);
  border-left: 3px solid var(--orange);
}
.faq-item.open .faq-question { color: var(--white); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  user-select: none;
}
.faq-question:hover { color: var(--white); }

.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
  font-size: 14px;
  color: var(--gray-light);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(255,114,0,0.15);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  padding-block: var(--section-py);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.final-cta__title {
  font-family: var(--font-hero);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
}
.final-cta__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 3px solid var(--orange);
  box-shadow: 0 -4px 40px rgba(255,114,0,0.12);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-block: 72px;
}

.footer__logo { height: 36px; width: auto; margin-bottom: 20px; }
.footer__tagline { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer__social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 4px 0;
}
.footer__nav a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer__contact-item span:first-child { flex-shrink: 0; font-size: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  gap: 16px;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */

/* WhatsApp */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
}
.wa-float__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  animation: waPulse 2s infinite;
  transition: transform 0.3s ease;
  position: relative;
}
.wa-float__btn:hover { transform: scale(1.1); }
.wa-float__btn:hover .wa-tooltip { opacity: 1; transform: translateX(-110%) translateY(-50%); }

.wa-tooltip {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(-100%) translateY(-50%);
  background: var(--dark-3);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-right: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 108px;
  right: 32px;
  z-index: 9998;
  width: 48px;
  height: 48px;
  background: var(--orange-gradient);
  border-radius: var(--radius-sm);
  border: none;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(255,114,0,0.3);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   CARDS GRID LAYOUTS
   ============================================================ */
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.cards-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.card-title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.card-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Service card with image */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,114,0,0.2);
  box-shadow: 0 30px 80px rgba(255,114,0,0.12);
}
.service-card__img {
  height: 220px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__body { padding: 28px; }
.service-card__tag {
  display: inline-block;
  background: rgba(255,114,0,0.12);
  border: 1px solid rgba(255,114,0,0.2);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

/* Instructor card */
.instructor-card {
  text-align: center;
  padding: 40px 28px;
}
.instructor-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid rgba(255,114,0,0.3);
}
.instructor-name {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.instructor-role {
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.instructor-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact card */
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(255,114,0,0.12);
  border: 1px solid rgba(255,114,0,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.contact-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.contact-card__value {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Split layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-layout--reverse .split-layout__img { order: -1; }

.split-layout__img {
  aspect-ratio: 4/3;
}
.split-layout__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-grid .img-wrap {
  aspect-ratio: 4/3;
}

/* Map placeholder */
.map-placeholder {
  height: 400px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--text-muted);
  font-size: 15px;
  overflow: hidden;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  filter: grayscale(80%) invert(90%);
}

/* Direct CTA cards */
.cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cta-action-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.cta-action-card:hover {
  border-color: rgba(255,114,0,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,114,0,0.1);
}
.cta-action-card__icon { font-size: 40px; margin-bottom: 16px; display: block; }
.cta-action-card__title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-action-card__text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Value proposition cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   ANIMATIONS / KEYFRAMES
   ============================================================ */

@keyframes heroIn {
  0%   { opacity: 0; transform: translateY(40px) skewY(2deg); }
  100% { opacity: 1; transform: translateY(0)     skewY(0deg); }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  50%       { transform: translateY(-30px) rotate(8deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0)   rotate(0deg); }
  50%       { transform: translateY(25px) rotate(-6deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50%       { transform: translateY(-15px) rotate(53deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- 1024px Tablet ---- */
@media (max-width: 1024px) {
  .navbar__links { display: none; }
  .navbar__cta   { display: none; }
  .navbar__hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split-layout { gap: 40px; }
  .steps-grid::before { display: none; }
}

/* ---- Navbar logo responsive ---- */
@media (max-width: 1024px) {
  .navbar__logo img { height: 100px; }
}
@media (max-width: 768px) {
  .navbar__logo img { height: 72px; }
}
@media (max-width: 480px) {
  .navbar__logo img { height: 56px; }
}

/* ---- 768px Mobile ---- */
@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .hero__title { font-size: clamp(42px, 11vw, 64px); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 16px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .pain-grid        { grid-template-columns: 1fr; }
  .cards-grid-2     { grid-template-columns: 1fr; }
  .cards-grid-3     { grid-template-columns: 1fr; }
  .cards-grid-4     { grid-template-columns: 1fr; }
  .benefits-grid    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .steps-grid       { grid-template-columns: 1fr; gap: 20px; }
  .values-grid      { grid-template-columns: 1fr; }
  .cta-cards-grid   { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: 1fr; }
  .split-layout     { grid-template-columns: 1fr; gap: 32px; }
  .split-layout--reverse .split-layout__img { order: unset; }
  .form-grid        { grid-template-columns: 1fr; }
  .pill-row         { justify-content: center; }
  .hero__ctas       { flex-direction: column; align-items: flex-start; }

  .testimonial-card { flex: 0 0 calc(100% - 0px); min-width: calc(100%); }

  .footer__main  { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

  .glass-card { padding: 24px 20px; }
  .lead-form-container { padding: 28px 20px; }
  .offer-box { padding: 32px 20px; border-radius: var(--radius-lg); }

  .wa-float   { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 96px; right: 20px; }
}

/* ---- 480px Small Mobile ---- */
@media (max-width: 480px) {
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .check-list { flex-direction: column; align-items: flex-start; padding-inline: 20px; }
  .stat-number { font-size: 48px; }
  .benefits-grid { grid-template-columns: 1fr; }
}
