/* ═══════════════════════════════════════
   FITVISION — GLOBAL STYLES
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --neon: #ff6a1a;
  --neon-dim: #e05510;
  --black: #000000;
  --dark: #0a0a0a;
  --dark2: #111111;
  --white: #ffffff;
  --gray: #888888;
  --blue: #1a6fb5;
  --orange: #e55d1a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor { position: fixed; width: 12px; height: 12px; background: var(--neon); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s; }
.cursor-follower { position: fixed; width: 40px; height: 40px; border: 1px solid rgba(255,106,26,0.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform 0.15s, width 0.3s, height 0.3s; }
body:hover .cursor { display: block; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(212,240,0,0.15);
}
.nav-logo .logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--neon);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--neon); color: var(--white);
  padding: 12px 24px; font-weight: 700; font-size: 13px;
  text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--neon-dim); transform: translateX(3px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 20px 0; }
.mobile-menu ul li a { font-family: var(--font-display); font-size: clamp(32px,6vw,56px); color: var(--white); text-decoration: none; transition: color 0.2s; }
.mobile-menu ul li a:hover { color: var(--neon); }
.mobile-cta { background: var(--neon) !important; color: var(--white) !important; padding: 16px 40px !important; display: inline-block; margin-top: 10px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; display: flex; }
.hero-split { flex: 1; overflow: hidden; position: relative; }
.hero-split img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 8s ease; }
.hero:hover .hero-split img { transform: scale(1); }
.hero-overlay-left {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,111,181,0.5) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-overlay-right {
  position: absolute; inset: 0;
  background: linear-gradient(225deg, rgba(229,93,26,0.5) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; z-index: 2;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.88;
  letter-spacing: -2px;
  color: var(--white);
  display: flex; flex-direction: column;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .accent { color: var(--neon); -webkit-text-stroke: 0; }

.hero-badge {
  position: absolute; bottom: 60px; right: 60px; z-index: 2;
  background: var(--neon); color: var(--white);
  padding: 24px 28px; max-width: 320px;
}
.hero-badge p { font-weight: 600; font-size: 14px; margin-bottom: 16px; line-height: 1.5; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--neon); color: var(--white);
  padding: 14px 24px; font-weight: 700; font-size: 13px;
  text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s, gap 0.2s;
}
.btn-primary:hover { background: var(--neon-dim); gap: 16px; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 16px 32px; font-weight: 700; font-size: 14px;
  text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  transition: gap 0.2s;
}
.btn-dark:hover { gap: 16px; }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 2px; height: 60px;
  background: linear-gradient(var(--neon), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-indicator span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--neon); writing-mode: vertical-rl; }
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.7)} }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-wrapper {
  background: var(--neon); overflow: hidden;
  padding: 14px 0; white-space: nowrap;
}
.marquee-alt { background: var(--black); border-top: 2px solid var(--neon); border-bottom: 2px solid var(--neon); }
.marquee-alt .marquee-track { color: var(--neon); }
.marquee-track { display: inline-flex; animation: marquee 20s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 3px; color: var(--black);
  padding-right: 0; white-space: nowrap;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════
   STATEMENT
═══════════════════════════════════════ */
.statement { background: var(--black); padding: 100px 60px; }
.statement-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  line-height: 0.9; letter-spacing: -1px;
  color: var(--white);
}
.outline-text {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

/* ═══════════════════════════════════════
   DIFFERENCE
═══════════════════════════════════════ */
.difference { background: var(--black); padding: 0 40px 80px; }
.diff-header { padding: 80px 20px 40px; }
.diff-header h2 { font-family: var(--font-display); font-size: clamp(40px,7vw,96px); letter-spacing: -1px; }
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.diff-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  background: var(--bg, #333);
}
.diff-card img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: 0.8; transition: transform 0.5s, opacity 0.3s; }
.diff-card:hover img { transform: scale(1.06); opacity: 0.5; }
.diff-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); transition: background 0.3s; }
.diff-card:hover .diff-overlay { background: rgba(0,0,0,0.1); }
.diff-card p {
  position: absolute; bottom: 24px; left: 20px; right: 20px;
  font-family: var(--font-display); font-size: clamp(18px,2.5vw,26px);
  color: var(--neon); letter-spacing: 1px; line-height: 1.1;
  z-index: 2;
}

/* ═══════════════════════════════════════
   PROGRAMS
═══════════════════════════════════════ */
.programs { background: var(--dark); padding: 80px 60px; }
.prog-header { margin-bottom: 60px; }
.prog-header h2 { font-family: var(--font-display); font-size: clamp(48px,8vw,110px); line-height: 0.9; letter-spacing: -1px; }
.prog-header p { margin-top: 16px; font-size: 16px; color: var(--gray); max-width: 400px; line-height: 1.6; }
.prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.prog-card { background: var(--dark2); overflow: hidden; cursor: pointer; }
.prog-img { overflow: hidden; aspect-ratio: 4/5; }
.prog-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.4s, transform 0.5s; }
.prog-card:hover .prog-img img { filter: grayscale(0%); transform: scale(1.05); }
.prog-info { padding: 24px 20px; }
.prog-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--neon); font-weight: 700; }
.prog-info h3 { font-family: var(--font-display); font-size: 28px; margin: 8px 0; letter-spacing: 1px; }
.prog-info p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.prog-link { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--neon); text-decoration: none; transition: letter-spacing 0.2s; }
.prog-link:hover { letter-spacing: 4px; }

/* ═══════════════════════════════════════
   SPACE SECTION
═══════════════════════════════════════ */
.space-section { position: relative; overflow: hidden; }
.space-img-wrap { position: relative; height: 70vh; min-height: 560px; overflow: hidden; }
.space-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%); }
.space-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.95) 45%, rgba(0,0,0,0.3) 100%);
}
.space-content {
  position: absolute; top: 50%; left: 60px;
  transform: translateY(-50%);
  max-width: 520px;
  z-index: 2;
}
.space-content h2 { font-family: var(--font-display); font-size: clamp(36px,5vw,90px); line-height: 0.9; letter-spacing: -1px; margin-bottom: 20px; }
.space-content p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 28px; max-width: 420px; }

/* ═══════════════════════════════════════
   TRAINERS
═══════════════════════════════════════ */
.trainers { background: var(--black); padding: 80px 60px; }
.trainers-header { margin-bottom: 60px; }
.trainers-header h2 { font-family: var(--font-display); font-size: clamp(48px,7vw,90px); letter-spacing: -1px; }
.trainers-header p { margin-top: 12px; color: var(--gray); font-size: 16px; }
.trainers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.trainer-card { position: relative; overflow: hidden; cursor: pointer; }
.trainer-img { aspect-ratio: 3/4; overflow: hidden; }
.trainer-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: brightness(0.75) saturate(0.9); transition: filter 0.4s ease, transform 0.5s ease; }
.trainer-card:hover .trainer-img img { filter: brightness(1.1) saturate(1.3) contrast(1.05); transform: scale(1.06); }
.trainer-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 60px 24px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  transition: background 0.4s ease;
}
.trainer-card:hover .trainer-info { background: linear-gradient(transparent, rgba(0,0,0,0.4)); }
.trainer-info h3 { font-family: var(--font-display); font-size: 32px; letter-spacing: 1px; transform: translateY(4px); transition: transform 0.3s ease; }
.trainer-card:hover .trainer-info h3 { transform: translateY(0); }
.trainer-info span { font-size: 12px; color: var(--neon); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; opacity: 0.8; transition: opacity 0.3s ease; }
.trainer-card:hover .trainer-info span { opacity: 1; }

/* ═══════════════════════════════════════
   FREE CLASS CTA
═══════════════════════════════════════ */
.free-class { position: relative; height: 80vh; min-height: 500px; display: flex; align-items: center; justify-content: center; }
.free-bg { position: absolute; inset: 0; }
.free-bg img { width: 100%; height: 100%; object-fit: cover; }
.free-overlay { position: absolute; inset: 0; background: rgba(26,111,181,0.75); }
.free-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.free-box {
  background: var(--neon); color: var(--white);
  padding: 48px 56px; max-width: 680px; width: 90%;
}
.free-box h2 { font-family: var(--font-display); font-size: clamp(40px,7vw,80px); line-height: 0.9; letter-spacing: -1px; margin-bottom: 16px; }
.free-box p { font-size: 16px; font-weight: 500; margin-bottom: 28px; opacity: 0.9; }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats { background: var(--black); border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.stats-inner { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; padding: 60px 80px; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(56px,7vw,96px); color: var(--neon); line-height: 1; }
.stat-sym { font-family: var(--font-display); font-size: clamp(40px,5vw,70px); color: var(--neon); }
.stat p { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-top: 8px; }
.stat-divider { width: 1px; height: 80px; background: #222; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing { background: var(--dark); padding: 100px 60px; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header h2 { font-family: var(--font-display); font-size: clamp(48px,7vw,90px); letter-spacing: -1px; }
.pricing-header p { color: var(--gray); font-size: 16px; margin-top: 12px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; max-width: 960px; margin: 0 auto; }
.price-card {
  background: var(--dark2); padding: 40px 32px;
  position: relative; transition: transform 0.3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { background: var(--neon); color: var(--white); }
.price-badge { font-family: var(--font-display); font-size: 13px; letter-spacing: 4px; color: var(--gray); margin-bottom: 12px; }
.price-card.featured .price-badge { color: rgba(255,255,255,0.6); }
.popular-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--white); color: var(--neon);
  font-size: 10px; letter-spacing: 3px; font-weight: 700;
  padding: 6px 12px; text-transform: uppercase;
}
.price-amount { font-family: var(--font-display); font-size: 64px; line-height: 1; margin-bottom: 28px; }
.price-amount span:first-child { font-size: 28px; vertical-align: top; margin-top: 12px; display: inline-block; }
.price-amount span:last-child { font-size: 18px; color: var(--gray); }
.price-card.featured .price-amount span:last-child { color: rgba(255,255,255,0.6); }
.price-card ul { list-style: none; margin-bottom: 32px; }
.price-card ul li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.price-card ul li.muted { opacity: 0.35; }
.price-card.featured ul li { border-bottom-color: rgba(255,255,255,0.2); }
.price-monthly-eq {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
  padding: 6px 12px; margin-bottom: 20px;
  letter-spacing: 0.5px;
  display: inline-block;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  border: 1px solid var(--white);
  padding: 14px 28px; font-weight: 700; font-size: 13px;
  text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.2s, color 0.2s, gap 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--black); gap: 16px; }

/* ═══════════════════════════════════════
   APP SECTION
═══════════════════════════════════════ */
.app-section {
  background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 600px;
  overflow: hidden;
}
.app-visual {
  position: relative; overflow: hidden;
  min-height: 560px;
}
.app-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.app-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black) 100%);
}
.app-visual-tag {
  position: absolute; bottom: 40px; left: 40px;
  background: var(--neon); color: var(--black);
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 2px; padding: 10px 20px;
}

.app-content {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--white);
}
.app-content h2 { font-family: var(--font-display); font-size: clamp(48px,5vw,80px); line-height: 0.9; letter-spacing: -1px; margin-bottom: 24px; }
.app-content p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 380px; margin-bottom: 40px; }
.app-features { list-style: none; margin-bottom: 40px; }
.app-features li {
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  padding: 12px 0; border-bottom: 1px solid #1a1a1a;
  color: var(--white); display: flex; align-items: center; gap: 12px;
}
.app-features li::before {
  content: ''; width: 8px; height: 8px;
  background: var(--neon); border-radius: 50%; flex-shrink: 0;
}
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: #111; color: var(--white); border: 1px solid #333;
  padding: 14px 22px; border-radius: 10px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.store-btn:hover { background: #1a1a1a; border-color: var(--neon); }
.store-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-btn span { font-size: 14px; font-weight: 700; line-height: 1.2; }
.store-btn span small { display: block; font-size: 10px; font-weight: 400; opacity: 0.6; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { background: var(--dark2); padding: 100px 60px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1100px; margin: 0 auto; }
.contact-text h2 { font-family: var(--font-display); font-size: clamp(56px,7vw,96px); line-height: 0.9; letter-spacing: -1px; margin-bottom: 24px; }
.neon { color: var(--neon); }
.contact-text p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 40px; }
.contact-info p { font-size: 15px; color: rgba(255,255,255,0.8); padding: 10px 0; border-bottom: 1px solid #1a1a1a; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #0f0f0f; border: 1px solid #222; color: var(--white);
  padding: 16px 18px; font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--neon); }
.contact-form select option { background: #111; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { background: var(--neon); color: var(--white); border: none; font-size: 14px; padding: 18px 32px; width: 100%; justify-content: center; cursor: pointer; }
.contact-form .btn-primary:hover { background: var(--neon-dim); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--black); padding: 0; overflow: hidden; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 60px; border-bottom: 1px solid #111;
  font-size: 13px; color: var(--gray);
}
.footer-logo-giant {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 200px);
  line-height: 0.85; letter-spacing: -3px;
  color: var(--white); padding: 20px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0d00 50%, #0a0000 100%);
  text-align: center;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px; border-top: 1px solid #111; flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--gray); text-decoration: none; letter-spacing: 1px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { display: flex; align-items: center; color: var(--gray); transition: color 0.2s; }
.footer-social a:hover { color: var(--neon); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom p { font-size: 12px; color: var(--gray); }

/* ═══════════════════════════════════════
   ANIMATIONS & REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Hero title line animation */
.hero-title .line {
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.8s cubic-bezier(0.77,0,0.175,1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) { animation-delay: 0.5s; }
.hero-title .line:nth-child(3) { animation-delay: 0.7s; }
@keyframes slideUp { to { opacity:1; transform:translateY(0); } }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .app-section { grid-template-columns: 1fr; }
  .app-visual { min-height: 420px; }
  .app-visual-overlay { background: linear-gradient(to bottom, transparent 50%, var(--black) 100%); }
  .app-content { padding: 50px 32px; }
  .app-buttons { justify-content: flex-start; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-badge { right: 20px; bottom: 20px; left: 20px; }
  .hero-scroll-indicator { left: 24px; }
  .statement { padding: 60px 24px; }
  .difference, .programs, .trainers, .pricing, .contact { padding: 60px 24px; }
  .diff-grid, .prog-grid, .trainers-grid { grid-template-columns: 1fr; }
  .space-content { left: 24px; right: 24px; max-width: none; padding: 0; }
  .space-content h2 { font-size: clamp(32px, 8vw, 52px); }
  .space-img-wrap { height: 55vh; min-height: 440px; }
  .footer-top { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════
   NAV RIGHT + LANG SWITCHER
═══════════════════════════════════════ */
.nav-right {
  display: flex; align-items: center; gap: 12px;
}

.lang-switcher {
  position: relative;
}

.lang-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.lang-btn:hover {
  background: rgba(255,106,26,0.15);
  border-color: var(--neon);
}
.lang-arrow { font-size: 10px; opacity: 0.7; transition: transform 0.2s; }
.lang-btn[aria-expanded="true"] .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #0f0f0f;
  border: 1px solid #222;
  min-width: 180px;
  z-index: 2000;
  list-style: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lang-dropdown.open { display: block; }

.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  background: none; border: none;
  color: var(--white); font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  cursor: pointer; text-align: left;
  border-bottom: 1px solid #1a1a1a;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: rgba(255,106,26,0.12); color: var(--neon); }

/* RTL support */
[dir="rtl"] .navbar { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .lang-dropdown { right: 0; left: auto; }
[dir="rtl"] .lang-option { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .hero-badge { right: auto; left: 60px; }
[dir="rtl"] .space-content { left: auto; right: 60px; }
[dir="rtl"] .app-section { direction: rtl; }

@media (max-width: 768px) {
  .nav-right { gap: 8px; }
  .lang-btn { padding: 7px 10px; font-size: 11px; }
}

/* ═══════════════════════════════════════
   CYRİLLİC / ARABIC FONT OVERRIDES
   Bebas Neue Kiril ve Arapça desteklemiyor
═══════════════════════════════════════ */
:lang(ru) .space-content h2,
:lang(ru) .statement-inner h2,
:lang(ru) .diff-header h2,
:lang(ru) .prog-header h2,
:lang(ru) .trainers-header h2,
:lang(ru) .pricing-header h2,
:lang(ru) .app-content h2,
:lang(ru) .contact-text h2,
:lang(ru) .free-box h2,
:lang(ru) .hero-title,
:lang(ru) .footer-logo-giant {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
}

:lang(ar) .space-content h2,
:lang(ar) .statement-inner h2,
:lang(ar) .diff-header h2,
:lang(ar) .prog-header h2,
:lang(ar) .trainers-header h2,
:lang(ar) .pricing-header h2,
:lang(ar) .app-content h2,
:lang(ar) .contact-text h2,
:lang(ar) .free-box h2,
:lang(ar) .hero-title,
:lang(ar) .footer-logo-giant {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

/* Rusça space-content özel boyut */
:lang(ru) .space-content h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.92;
}

/* Diğer uzun diller için de güvenlik */
:lang(de) .space-content h2 {
  font-size: clamp(32px, 4.5vw, 72px);
  line-height: 0.9;
}
