/* =====================================================
   SBELT GYM — style.css 
   Palette: charcoal #111417 · accent vibrant-red #ff1a2e
   ===================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #111417;
  color: #e8e8e8;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ---------- VARIABLES ---------- */
:root {
  --accent: #ff1a2e;
  --accent-dim: #cc0020;
  --accent-glow: rgba(255, 26, 46, .25);
  --bg-0: #0d1012;
  --bg-1: #111417;
  --bg-2: #181c20;
  --bg-3: #1f2429;
  --bg-4: #252b32;
  --white: #ffffff;
  --text: #e8e8e8;
  --text-muted: #8a9099;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0, 0, 0, .6);
  --tr: .35s cubic-bezier(.4, 0, .2, 1);
  --font-display: 'Bebas Neue', sans-serif;
}

/* ---------- GLOBAL UTILITIES ---------- */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  opacity: .6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 18px;
}

.section-sub {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #0d1012;
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #0d1012;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  border-color: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: .95rem;
}

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

/* ================================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--tr), box-shadow var(--tr);
}

.navbar.scrolled {
  background: rgba(13, 16, 18, .96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 36px;
  transition: padding var(--tr);
}

.navbar.scrolled .nav-container {
  padding: 14px 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: .08em;
  color: var(--white);
  flex-shrink: 0;
}

.logo-s {
  color: var(--accent);
  font-size: 2.1rem;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--tr);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--tr);
}

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

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link--active {
  color: var(--accent);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--tr);
}

/* Burger abierto: animacion X delegada al CSS */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 10s ease-out;
}

.hero:hover .hero-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg,
      rgba(13, 16, 18, .94) 0%,
      rgba(13, 16, 18, .78) 55%,
      rgba(13, 16, 18, .55) 100%);
}

/* neon green corner glow */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 26, 46, .1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 32px 90px;
  width: 100%;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .35em;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: .9;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 28px;
  text-shadow: 0 0 80px rgba(0, 0, 0, .8);
}

.hero-title-accent {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow), 0 0 80px var(--accent-glow);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(232, 232, 232, .75);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 20px 28px;
  width: fit-content;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: .7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  letter-spacing: .04em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-cue span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
  animation: scueBounce 2s infinite;
}

@keyframes scueBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(12px);
    opacity: .3;
  }
}

/* ================================================
   CLASSES (Section 2)
   ============================================= */
.classes-section {
  padding: 100px 0;
  background: var(--bg-1);
  position: relative;
}

.classes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .25;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.class-card {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow), 0 0 36px rgba(255, 26, 46, .1);
  border-color: rgba(255, 26, 46, .3);
}

.card-img-wrap {
  position: relative;
  height: 216px;
  overflow: hidden;
}

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

.class-card:hover .card-img {
  transform: scale(1.08);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 16, 18, .92) 0%, rgba(13, 16, 18, .1) 60%);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #0d1012;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .07em;
  padding: 4px 11px;
  border-radius: 50px;
  text-transform: uppercase;
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-time {
  font-size: .75rem;
  color: var(--text-muted);
}

.pill {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 50px;
}

.pill-mid {
  background: rgba(255, 170, 0, .12);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, .3);
}

.pill-high {
  background: rgba(255, 60, 60, .12);
  color: #ff6060;
  border: 1px solid rgba(255, 60, 60, .3);
}

.card-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--white);
  letter-spacing: .04em;
}

.card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.btn-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 50px;
  padding: 9px 20px;
  width: fit-content;
  transition: all var(--tr);
  letter-spacing: .05em;
}

.btn-card-link:hover {
  background: var(--accent);
  color: #0d1012;
  box-shadow: 0 0 18px var(--accent-glow);
}

/* ================================================
   TESTIMONIALS (Section 3)
   ============================================= */
.testimonials-section {
  padding: 100px 0 80px;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}

/* giant decorative text */
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30vw;
  color: rgba(255, 26, 46, .025);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.testimonials-track-wrapper {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 16px 32px 32px;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.tcard {
  flex: 0 0 calc(25% - 18px);
  min-width: 280px;
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--tr), transform var(--tr);
}

.tcard:hover {
  border-color: rgba(255, 26, 46, .35);
  transform: translateY(-4px);
}

.tcard-quote {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: .8;
  color: var(--accent);
  opacity: .7;
}

.tcard-text {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
  color: #0d1012;
  font-weight: 900;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcard-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.tcard-role {
  font-size: .72rem;
  color: var(--text-muted);
}

.tcard-stars {
  margin-left: auto;
  color: var(--accent);
  font-size: .9rem;
  white-space: nowrap;
}

/* dots */
.tcard-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .2);
  transition: background var(--tr), width var(--tr);
}

.dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ================================================
   LOCATION (Section 4)
   ============================================= */
.location-section {
  padding: 100px 0;
  background: var(--bg-1);
  position: relative;
}

.location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .2;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 26, 46, .15);
}

.location-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.location-photo-wrap:hover .location-photo {
  transform: scale(1.04);
}

.location-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13, 16, 18, .88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 26, 46, .35);
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
}

.badge-icon {
  font-size: 1rem;
}

/* Map + info */
.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
  filter: invert(1) hue-rotate(200deg) saturate(.7) brightness(.85);
}

.map-overlay-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 16, 18, .9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 26, 46, .4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-pin {
  font-size: 1rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color var(--tr);
}

.location-detail-row:hover {
  border-color: rgba(255, 26, 46, .25);
}

.detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.detail-value {
  font-size: .9rem;
  color: var(--text);
}

.detail-link {
  color: var(--text);
  transition: color var(--tr);
}

.detail-link:hover {
  color: var(--accent);
}

/* ================================================
   FREE PASS (Anchor section)
   ============================================= */
.freepass-section {
  padding: 100px 0;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}

.fp-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 26, 46, .07) 0%, transparent 70%);
  top: 50%;
  left: -250px;
  transform: translateY(-50%);
  pointer-events: none;
}

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

.fp-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: .95;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 18px;
  margin-top: 8px;
}

.fp-subtitle {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.fp-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fp-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(232, 232, 232, .85);
  font-weight: 500;
}

.perk-check {
  color: var(--accent);
  font-weight: 900;
  font-size: 1rem;
}

.fp-form {
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: .05em;
}

.fp-input {
  width: 100%;
  background: var(--bg-4);
  border: 1.5px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .95rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}

.fp-input::placeholder {
  color: var(--text-muted);
}

.fp-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 26, 46, .12);
}

.fp-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff1a2e' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.fp-select option {
  background: var(--bg-4);
  color: var(--white);
}

.fp-disclaimer {
  font-size: .72rem;
  color: var(--text-muted);
  text-align: center;
}

/* ================================================
   FOOTER (Section 5)
   ============================================= */
.footer {
  background: #080a0c;
  border-top: 1px solid rgba(255, 26, 46, .12);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 48px;
}

/* Brand col */
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: .78rem;
  color: var(--text-muted);
}

/* All footer cols */
.footer-col-heading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: var(--text-muted);
}

.f-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.f-link {
  color: var(--text-muted);
  transition: color var(--tr);
}

.f-link:hover {
  color: var(--accent);
}

.footer-nav-list li {
  font-size: .85rem;
}

.footer-nav-list li::before {
  content: '→';
  color: var(--accent);
  margin-right: 8px;
  font-size: .7rem;
  opacity: 0;
  transition: opacity var(--tr), transform var(--tr);
  display: inline-block;
  transform: translateX(-4px);
}

.footer-nav-list li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Social grid */
.footer-social-tagline {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--tr);
}

.social-btn:hover {
  background: var(--accent);
  color: #0d1012;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 16px var(--accent-glow);
}

.social-btn svg {
  flex-shrink: 0;
}

/* App badges */
.footer-app-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 10px 16px;
  transition: all var(--tr);
  color: var(--text-muted);
}

.app-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.app-badge-icon {
  font-size: 1.3rem;
}

.app-badge-sub {
  font-size: .62rem;
  color: var(--text-muted);
}

.app-badge-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: .78rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal-link {
  font-size: .75rem;
  color: var(--text-muted);
  transition: color var(--tr);
}

.footer-legal-link:hover {
  color: var(--accent);
}

.footer-legal-sep {
  color: rgba(255, 255, 255, .15);
}

/* ================================================
   SCROLL REVEAL
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-photo {
    height: 360px;
  }

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

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(13, 16, 18, .98);
    backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }

  .nav-links.open .nav-link {
    font-size: 1.4rem;
  }

  .hero-content {
    padding: 120px 20px 80px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 20px;
    gap: 20px;
  }

  .stat {
    align-items: center;
    padding: 0;
  }

  .stat-divider {
    display: none;
  }

  .classes-grid {
    grid-template-columns: 1fr;
  }

  .tcard {
    flex: 0 0 calc(85vw);
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .section-container {
    padding: 0 20px;
  }

  .testimonials-track {
    padding: 16px 20px 32px;
  }
}

@media (max-width: 480px) {
  .fp-form {
    padding: 28px 20px;
  }

  .nav-container {
    padding: 16px 20px;
  }

  .location-photo {
    height: 260px;
  }

  .footer-social-grid {
    grid-template-columns: 1fr;
  }
}