/* ============================================================
   IRON PULSE GYM — Enhanced Premium CSS
   ============================================================ */

/* === VARIABLES === */
:root {
    --accent: #ff1a1a;
    --accent-dark: #cc0000;
    --accent-glow: rgba(255, 26, 26, 0.4);
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: #222222;
    --border-light: #2a2a2a;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; }
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* === PRELOADER === */
.preloader { position: fixed; inset: 0; z-index: 10000; background: var(--bg-primary); display: flex; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 2rem; }
.preloader-bar { width: 200px; height: 3px; background: var(--border); border-radius: 10px; overflow: hidden; }
.preloader-progress { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), #ff6b35); border-radius: 10px; transition: width 0.3s ease; }

/* === SCROLL PROGRESS === */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--accent), #ff6b35, var(--accent)); z-index: 9999; width: 0; transition: width 0.1s linear; }

/* === CURSOR GLOW === */
.cursor-glow { position: fixed; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); pointer-events: none; z-index: 9990; transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.3s ease; mix-blend-mode: screen; }
body:hover .cursor-glow { opacity: 0.5; }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === UTILITY === */
.accent { color: var(--accent); }
.gradient-text { background: linear-gradient(135deg, var(--accent), #ff6b35, #ff1a1a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-tag { display: inline-block; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); background: rgba(255, 26, 26, 0.08); border: 1px solid rgba(255, 26, 26, 0.2); padding: 6px 18px; border-radius: 30px; margin-bottom: 1rem; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; text-transform: uppercase; line-height: 1.1; margin-bottom: 1rem; letter-spacing: 1px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 3rem; }
.section-header { text-align: center; margin-bottom: 4rem; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 32px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all var(--transition); position: relative; overflow: hidden; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-glass { background: rgba(255,255,255,0.06); color: white; border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 1px solid var(--border-light); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 0.9rem; }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }
.btn-glow { box-shadow: 0 0 20px rgba(255, 26, 26, 0.3), 0 0 60px rgba(255, 26, 26, 0.1); }
.btn-glow:hover { box-shadow: 0 0 30px rgba(255, 26, 26, 0.5), 0 0 80px rgba(255, 26, 26, 0.2); }

/* === NAVIGATION === */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: all 0.4s ease; }
.navbar.scrolled { background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(20px) saturate(1.4); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.5rem; filter: drop-shadow(0 0 8px var(--accent-glow)); }
.logo-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px; color: var(--text-secondary); transition: color 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; border-radius: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s ease; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg .hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(10,10,10,0.85) 60%, var(--bg-primary) 100%); z-index: 1; }
.hero-noise { position: absolute; inset: 0; z-index: 2; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-particles .particle { position: absolute; width: 3px; height: 3px; background: var(--accent); border-radius: 50%; opacity: 0; animation: particleFloat 6s infinite ease-in-out; }
@keyframes particleFloat { 0% { opacity: 0; transform: translateY(100vh) scale(0); } 20% { opacity: 0.8; } 80% { opacity: 0.4; } 100% { opacity: 0; transform: translateY(-20vh) scale(1.5); } }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; color: var(--accent); background: rgba(255, 26, 26, 0.06); border: 1px solid rgba(255, 26, 26, 0.15); padding: 10px 24px; border-radius: 40px; margin-bottom: 2rem; }
.badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); } 50% { box-shadow: 0 0 0 8px transparent; } }
.hero-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 700; text-transform: uppercase; line-height: 0.95; margin-bottom: 1.5rem; letter-spacing: 2px; }
.hero-title .line { display: block; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 1.8; }
.typewriter { color: var(--accent); font-weight: 600; border-right: 2px solid var(--accent); padding-right: 4px; animation: blink 0.8s infinite; }
@keyframes blink { 0%, 100% { border-color: var(--accent); } 50% { border-color: transparent; } }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.stat-plus { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); text-decoration: none; }
.scroll-text { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 50.1% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* === TRUST BAR === */
.trust-bar { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 16px 0; }
.trust-track { display: flex; overflow: hidden; }
.trust-content { display: flex; gap: 0; animation: trustScroll 25s linear infinite; white-space: nowrap; }
.trust-content span { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); padding: 0 20px; }
.trust-content .dot { color: var(--accent); font-size: 0.5rem; }
@keyframes trustScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === ABOUT === */
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; overflow: hidden; }
.section-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.06; pointer-events: none; }
.orb-1 { width: 500px; height: 500px; background: var(--accent); top: -200px; right: -200px; }
.orb-2 { width: 400px; height: 400px; background: #ff6b35; bottom: -150px; left: -150px; }
.orb-3 { width: 600px; height: 600px; background: var(--accent); top: 50%; left: -300px; }
.orb-4 { width: 500px; height: 500px; background: #ff6b35; bottom: -200px; right: -200px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.about-img-main img { width: 100%; height: 450px; object-fit: cover; transition: transform 0.8s ease; }
.about-img-main:hover img { transform: scale(1.05); }
.img-shine { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.about-img-main:hover .img-shine { opacity: 1; }
.about-img-secondary { position: absolute; bottom: -40px; right: -30px; width: 220px; border-radius: var(--radius); overflow: hidden; border: 4px solid var(--bg-primary); box-shadow: var(--shadow-lg); }
.about-img-secondary img { width: 100%; height: 160px; object-fit: cover; }
.about-experience-badge { position: absolute; top: -20px; left: -20px; background: var(--accent); color: white; padding: 18px 22px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.about-experience-badge .big-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; display: block; line-height: 1; }
.about-experience-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; line-height: 1.3; }
.about-floating-badge { position: absolute; bottom: 60px; right: 20px; background: rgba(0, 200, 83, 0.12); color: #00c853; padding: 8px 16px; border-radius: 30px; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(0, 200, 83, 0.2); }
.pulse-dot { width: 8px; height: 8px; background: #00c853; border-radius: 50%; animation: pulse 2s infinite; display: inline-block; }
.about-content .section-tag { display: inline-block; }
.about-text { color: var(--text-secondary); margin-bottom: 1.2rem; font-size: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin-top: 2rem; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon-wrap { width: 46px; height: 46px; min-width: 46px; border-radius: var(--radius-sm); background: rgba(255, 26, 26, 0.08); border: 1px solid rgba(255, 26, 26, 0.15); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.about-feature strong { font-size: 0.95rem; font-weight: 600; }
.about-feature p { font-size: 0.85rem; color: var(--text-secondary); margin-top: 2px; }

/* === MARQUEE BANNER === */
.marquee-banner { background: var(--accent); padding: 18px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: flex; }
.marquee-content { display: flex; gap: 0; animation: marquee 20s linear infinite; }
.marquee-content span { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: white; padding: 0 24px; }
.marquee-content .m-dot { font-size: 0.6rem; color: rgba(255,255,255,0.5); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === PROGRAMS === */
.programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.program-card { position: relative; background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); border: 1px solid var(--border); }
.program-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 16px 50px rgba(255,26,26,0.12); }
.program-number { position: absolute; top: 16px; left: 16px; z-index: 3; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; color: white; background: var(--accent); padding: 4px 12px; border-radius: 30px; letter-spacing: 1px; }
.program-img { position: relative; height: 200px; overflow: hidden; }
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.program-card:hover .program-img img { transform: scale(1.1); }
.program-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-card) 0%, transparent 60%); }
.program-content { padding: 24px; }
.program-icon-wrap { width: 50px; height: 50px; background: rgba(255,26,26,0.1); border: 1px solid rgba(255,26,26,0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--accent); }
.program-content h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 0.5px; }
.program-content p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 14px; }
.program-features { list-style: none; margin-bottom: 18px; }
.program-features li { font-size: 0.82rem; color: var(--text-secondary); padding: 4px 0; padding-left: 16px; position: relative; }
.program-features li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); font-size: 0.7rem; }
.card-border-glow { position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(135deg, var(--accent), transparent 40%, transparent 60%, var(--accent)); z-index: -1; opacity: 0; transition: opacity var(--transition); }
.program-card:hover .card-border-glow, .trainer-card:hover .card-border-glow, .pricing-card:hover .card-border-glow, .transformation-card:hover .card-border-glow { opacity: 0.5; }

/* === TRAINERS === */
.trainers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trainer-card { position: relative; background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.trainer-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 16px 50px rgba(255,26,26,0.12); }
.trainer-img { position: relative; height: 280px; overflow: hidden; }
.trainer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.trainer-card:hover .trainer-img img { transform: scale(1.08); }
.trainer-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 50%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; opacity: 0; transition: opacity 0.4s ease; }
.trainer-card:hover .trainer-overlay { opacity: 1; }
.trainer-socials { display: flex; gap: 12px; }
.trainer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; transition: all 0.3s ease; }
.trainer-socials a:hover { background: var(--accent); border-color: var(--accent); }
.trainer-info { padding: 20px 24px; }
.trainer-info h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.trainer-role { display: block; font-size: 0.8rem; color: var(--accent); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin: 4px 0 8px; }
.trainer-info p { font-size: 0.85rem; color: var(--text-secondary); }

/* === TRANSFORMATIONS === */
.transformations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.transformation-card { position: relative; background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.transformation-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.before-after { display: flex; align-items: stretch; }
.ba-image { flex: 1; position: relative; height: 200px; overflow: hidden; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-label { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; background: rgba(0,0,0,0.7); color: white; padding: 4px 12px; border-radius: 20px; backdrop-filter: blur(4px); }
.ba-image.after .ba-label { background: rgba(255,26,26,0.8); }
.ba-divider { display: flex; align-items: center; justify-content: center; background: var(--bg-primary); width: 40px; min-width: 40px; color: var(--accent); }
.transformation-info { padding: 20px; }
.transformation-info h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.transformation-meta { display: flex; gap: 10px; margin-bottom: 8px; }
.transformation-meta span { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 20px; }
.t-program { background: rgba(255,26,26,0.1); color: var(--accent); border: 1px solid rgba(255,26,26,0.2); }
.t-duration { background: rgba(255,255,255,0.05); color: var(--text-secondary); border: 1px solid var(--border); }
.transformation-info p { font-size: 0.85rem; color: var(--text-secondary); }

/* === CTA BANNER === */
.cta-banner { position: relative; padding: 100px 0; background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); overflow: hidden; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,26,26,0.08) 1px, transparent 0); background-size: 40px 40px; pointer-events: none; }
.cta-content h2 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.cta-content p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === PRICING === */
.pricing-toggle { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 2rem; }
.toggle-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; cursor: pointer; transition: color 0.3s ease; display: flex; align-items: center; gap: 8px; }
.toggle-label.active { color: var(--text-primary); }
.toggle-switch { width: 52px; height: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 30px; padding: 3px; cursor: pointer; position: relative; transition: all 0.3s ease; }
.toggle-switch:hover { border-color: var(--accent); }
.toggle-knob { display: block; width: 20px; height: 20px; background: var(--accent); border-radius: 50%; transition: transform 0.3s ease; }
.toggle-switch.active .toggle-knob { transform: translateX(24px); }
.save-badge { font-size: 0.65rem; background: rgba(0,200,83,0.15); color: #00c853; padding: 3px 8px; border-radius: 20px; font-weight: 600; letter-spacing: 0.5px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 3rem; }
.pricing-card { position: relative; background: var(--bg-card); border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid var(--border); transition: all var(--transition); display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 16px 50px rgba(255,26,26,0.1); }
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(255,26,26,0.06) 0%, var(--bg-card) 30%); transform: scale(1.03); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; padding: 6px 20px; border-radius: 30px; white-space: nowrap; }
.pricing-header h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.pricing-desc { font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; }
.pricing-price { margin: 24px 0; display: flex; align-items: flex-start; gap: 2px; }
.pricing-price .currency { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--text-secondary); margin-top: 8px; }
.pricing-price .amount { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; line-height: 1; color: var(--text-primary); transition: all 0.5s ease; }
.pricing-price .period { font-size: 0.85rem; color: var(--text-muted); align-self: flex-end; margin-bottom: 8px; margin-left: 4px; }
.pricing-features { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pricing-features li.disabled { color: var(--text-muted); }

/* === TESTIMONIALS SLIDER === */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-card { min-width: 100%; padding: 0 40px; box-sizing: border-box; }
@media (min-width: 768px) { .testimonial-card { min-width: 50%; } }
@media (min-width: 1024px) { .testimonial-card { min-width: 33.333%; } }
.testimonial-card > div, .testimonial-card > p, .testimonial-card > .testimonial-stars { display: block; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; min-width: 100%; margin: 0 12px; display: flex; flex-direction: column; }
@media (min-width: 768px) { .testimonial-card { min-width: calc(50% - 24px); } }
@media (min-width: 1024px) { .testimonial-card { min-width: calc(33.333% - 24px); } }
.testimonial-stars { color: #ffb800; font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; flex-grow: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.testimonial-author strong { font-size: 0.95rem; display: block; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 2rem; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-card); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.slider-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,26,26,0.06); }
.slider-dots { display: flex; gap: 8px; }
.slider-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s ease; border: none; padding: 0; }
.slider-dots .dot.active { background: var(--accent); transform: scale(1.2); }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s ease; }
.faq-item:hover, .faq-item.active { border-color: rgba(255,26,26,0.3); }
.faq-question { width: 100%; background: var(--bg-card); color: white; padding: 22px 28px; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; font-weight: 500; text-align: left; transition: background 0.3s ease; }
.faq-question:hover { background: var(--bg-card-hover); }
.faq-icon { display: flex; align-items: center; justify-content: center; color: var(--accent); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer p { padding: 0 28px 22px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 200px; }

/* === FREE TRIAL === */
.trial-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 60px; }
.trial-content .section-tag { margin-bottom: 0.8rem; }
.trial-content .section-title { margin-bottom: 1rem; }
.trial-content p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 1.5rem; }
.trial-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.5rem; }
.trial-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text-secondary); }
.trial-urgency { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); background: rgba(255,26,26,0.05); padding: 8px 16px; border-radius: 30px; border: 1px solid rgba(255,26,26,0.1); width: fit-content; }
.trial-form { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.trial-form h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius-sm); color: white; font-size: 0.95rem; font-family: var(--font-body); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,26,26,0.1); }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-disclaimer { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-disclaimer a { color: var(--accent); text-decoration: underline; }

/* Success state */
.form-success { text-align: center; padding: 40px 20px; }
.form-success .success-icon { width: 64px; height: 64px; background: rgba(0,200,83,0.1); border: 2px solid #00c853; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.8rem; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); font-size: 0.95rem; }

/* === LOCATION === */
.location-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); min-height: 400px; }
.map-container iframe { width: 100%; height: 100%; min-height: 400px; }
.location-details { display: flex; flex-direction: column; gap: 16px; }
.location-card { display: flex; gap: 16px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: all 0.3s ease; }
.location-card:hover { border-color: rgba(255,26,26,0.3); transform: translateX(4px); }
.location-card svg { min-width: 22px; margin-top: 2px; }
.location-card strong { font-size: 0.9rem; display: block; margin-bottom: 4px; }
.location-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.location-card a { color: var(--accent); transition: opacity 0.3s ease; }
.location-card a:hover { opacity: 0.8; }

/* === CONTACT FORM === */
.contact-form-wrapper { max-width: 700px; margin: 0 auto; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }

/* === FOOTER === */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand { }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all 0.3s ease; }
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: white; }
.footer-links h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.footer-links a { transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--accent); }

/* === WHATSAPP === */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: all 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55); }
.whatsapp-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25d366; animation: waPulse 2s infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }

/* === BACK TO TOP === */
.back-to-top { position: fixed; bottom: 30px; left: 30px; z-index: 999; width: 46px; height: 46px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
    .programs-grid, .trainers-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .trial-wrapper { grid-template-columns: 1fr; padding: 40px; }
    .location-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }
    .cursor-glow { display: none; }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px; height: 100vh; background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: flex-start; padding: 100px 40px 40px; gap: 10px; transition: right 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); border-left: 1px solid var(--border); }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; padding: 12px 0; display: block; width: 100%; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .programs-grid { grid-template-columns: 1fr; }
    .trainers-grid { grid-template-columns: repeat(2, 1fr); }
    .transformations-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .trainers-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .trial-wrapper { padding: 28px; }
    .trial-form { padding: 24px; }
    .contact-form { padding: 28px; }
    .pricing-card { padding: 28px 22px; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .before-after { flex-direction: column; }
    .ba-divider { width: 100%; min-width: unset; height: 36px; }
    .ba-image { height: 160px; }
}

/* === NAV MOBILE OVERLAY === */
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.nav-overlay.active { opacity: 1; visibility: visible; }
