/* ============================================
   Boxe Salvando Vidas — Landing Page Styles
   Dark Theme + Gold Accents
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { background: #0A0A0A; color: #E0E0E0; font-family: 'Inter', sans-serif; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Custom Properties --- */
:root {
  --bg: #0A0A0A; --bg2: #111111; --bg-card: #1A1A1A; --bg-card-hover: #222;
  --gold: #D4A843; --gold-light: #F5C542; --gold-dark: #B8922E;
  --gold-grad: linear-gradient(135deg, #D4A843, #F5C542);
  --text: #FFFFFF; --text2: #B0B0B0; --text-muted: #6B6B6B;
  --success: #22C55E; --danger: #EF4444; --radius: 12px;
  --shadow-gold: 0 0 25px rgba(212,168,67,0.25);
  --transition: all 0.3s ease;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; color: var(--text); font-weight: 700; line-height: 1.2; text-transform: uppercase; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text2); }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { margin-bottom: 16px; }
.section-title .gold-line { width: 60px; height: 4px; background: var(--gold-grad); margin: 0 auto 16px; border-radius: 2px; }
.section-title p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.gold-text { color: var(--gold-light); }

/* --- Buttons --- */
.btn-gold { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; background: var(--gold-grad); color: #0A0A0A; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: none; border-radius: var(--radius); cursor: pointer; transition: var(--transition); }
.btn-gold:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: transparent; color: var(--gold); border: 2px solid var(--gold); font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: var(--radius); cursor: pointer; transition: var(--transition); }
.btn-outline:hover { background: var(--gold); color: #0A0A0A; }

/* --- Navbar --- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(15,15,15,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(212,168,67,0.25); padding: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.navbar-logo img { height: 50px; width: 50px; border-radius: 50%; object-fit: cover; }
.navbar.scrolled .navbar-logo img { height: 40px; width: 40px; }

.nav-links {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  height: 82px; display: flex; gap: 32px; align-items: center;
  z-index: 1001; pointer-events: auto;
}
.nav-links.scrolled { height: 62px; }
.nav-links a { font-family: 'Oswald', sans-serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); transition: var(--transition); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold-grad); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta .btn-gold { padding: 10px 24px; font-size: 0.9rem; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); }

/* --- Hero --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }

/* Comparison Slider Background */
.hero-comparison { position: absolute; inset: 0; z-index: 0; user-select: none; -webkit-user-select: none; }
.hero-comparison img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero-comparison .comparison-after { z-index: 1; }
.hero-comparison .comparison-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.hero > .comparison-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 10;
  width: 2px; background: rgba(212,168,67,0.18);
  transform: translateX(-50%); cursor: ew-resize;
  box-shadow:
    0 0 6px 2px rgba(212,168,67,0.18),
    0 0 18px 4px rgba(212,168,67,0.12),
    0 0 36px 8px rgba(212,168,67,0.07),
    0 0 60px 14px rgba(212,168,67,0.03);
  animation: divider-smoke 5s ease-in-out infinite;
}
@keyframes divider-smoke {
  0%, 100% {
    opacity: 0.65;
    box-shadow:
      0 0 6px 2px rgba(212,168,67,0.18),
      0 0 18px 4px rgba(212,168,67,0.12),
      0 0 36px 8px rgba(212,168,67,0.07),
      0 0 60px 14px rgba(212,168,67,0.03);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 10px 3px rgba(212,168,67,0.22),
      0 0 26px 6px rgba(212,168,67,0.15),
      0 0 48px 12px rgba(212,168,67,0.09),
      0 0 80px 18px rgba(212,168,67,0.04);
  }
}
.hero > .comparison-handle {
  position: absolute; top: 15%; left: 50%; z-index: 11;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(145deg, rgba(245,197,66,0.95), rgba(212,168,67,0.85));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.6);
  transform: translate(-50%, -50%); cursor: ew-resize;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.5),
    0 0 20px rgba(212,168,67,0.4),
    0 0 40px rgba(212,168,67,0.15),
    inset 0 1px 1px rgba(255,255,255,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: handle-nudge 3s ease-in-out 2s 3;
}
.hero > .comparison-handle::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(245,197,66,0.5);
  animation: handle-ring-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
.hero > .comparison-handle:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow:
    0 6px 28px rgba(0,0,0,0.5),
    0 0 30px rgba(212,168,67,0.55),
    0 0 60px rgba(212,168,67,0.2),
    inset 0 1px 1px rgba(255,255,255,0.4);
}
.hero > .comparison-handle:hover::before { animation: none; border-color: rgba(245,197,66,0.8); }
.hero > .comparison-handle svg { width: 14px; height: 14px; color: #0A0A0A; filter: drop-shadow(0 1px 1px rgba(255,255,255,0.3)); }
@keyframes handle-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 0; }
}
@keyframes handle-nudge {
  0%, 100% { transform: translate(-50%, -50%); }
  25% { transform: translate(calc(-50% + 6px), -50%); }
  75% { transform: translate(calc(-50% - 6px), -50%); }
}
.hero > .comparison-label {
  position: absolute; bottom: 80px; z-index: 10; padding: 6px 14px;
  font-family: 'Oswald', sans-serif; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 2px; border-radius: 20px; pointer-events: none;
  backdrop-filter: blur(8px);
}
.hero > .label-foto { left: 24px; background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.hero > .label-arte { right: 24px; background: rgba(212,168,67,0.2); color: var(--gold-light); border: 1px solid rgba(212,168,67,0.3); }

.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 40%, rgba(10,10,10,0.92) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 15; padding: 0 24px; max-width: 800px; }
.hero-badge { display: inline-block; padding: 8px 20px; background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.3); border-radius: 50px; font-family: 'Oswald', sans-serif; font-size: 0.85rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.hero h1 { margin-bottom: 16px; }
.hero h1 .highlight { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.2rem; color: var(--text2); margin-bottom: 40px; max-width: 550px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5; animation: bounce 2s infinite; }
.scroll-indicator svg { width: 24px; height: 24px; color: var(--gold); }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

/* --- Sections --- */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; position: relative; }
.about-image img { width: 100%; height: auto; object-fit: cover; border-radius: var(--radius); }
.about-image::after { content: ''; position: absolute; inset: 0; border: 2px solid var(--gold); border-radius: var(--radius); transform: translate(12px, 12px); z-index: -1; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 1.05rem; }
.about-info { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-info-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--bg-card); border-radius: 8px; border-left: 3px solid var(--gold); }
.about-info-item svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; }
.about-info-item span { font-size: 0.95rem; color: var(--text2); }
.about-info-item strong { color: var(--text); }

/* --- Benefits --- */
#beneficios { background: var(--bg2); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card { background: var(--bg-card); border: 1px solid #222; border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--transition); cursor: default; }
.benefit-card:hover { border-color: rgba(212,168,67,0.3); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.benefit-icon { width: 60px; height: 60px; margin: 0 auto 20px; background: rgba(212,168,67,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.benefit-icon svg { width: 28px; height: 28px; color: var(--gold-light); }
.benefit-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.benefit-card p { font-size: 0.9rem; color: var(--text-muted); }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* --- Achievements --- */
#conquistas { background: var(--bg2); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.stat-card { text-align: center; padding: 32px 16px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid #222; }
.stat-number { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Oswald', sans-serif; }
.achievements-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.achievement-card { display: flex; gap: 20px; padding: 24px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid #222; transition: var(--transition); }
.achievement-card:hover { border-color: rgba(212,168,67,0.3); }
.achievement-card img { width: 120px; height: 120px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.achievement-card h3 { margin-bottom: 8px; font-size: 1rem; }
.achievement-card p { font-size: 0.9rem; color: var(--text-muted); }

/* --- CTA Section --- */
.cta-section { position: relative; padding: 120px 0; text-align: center; background: linear-gradient(135deg, #111 0%, #1a1505 50%, #111 100%); overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%); transform: translate(-50%, -50%); }
.cta-section h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-section p { margin-bottom: 40px; font-size: 1.1rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer { background: var(--bg2); border-top: 1px solid #1a1a1a; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 60px; width: 60px; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); max-width: 300px; }
.footer h4 { font-size: 1rem; color: var(--gold-light); margin-bottom: 16px; letter-spacing: 1px; }
.footer-links a { display: block; padding: 4px 0; color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 40px; height: 40px; background: var(--bg-card); border: 1px solid #222; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--gold); border-color: var(--gold); }
.social-links a:hover svg { color: #0A0A0A; }
.social-links a svg { width: 18px; height: 18px; color: var(--text2); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid #1a1a1a; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* --- WhatsApp Float --- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: var(--transition); cursor: pointer; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* --- Lightbox --- */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; cursor: pointer; }
.lightbox-close svg { width: 32px; height: 32px; color: #fff; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.lightbox-nav:hover { background: rgba(212,168,67,0.3); }
.lightbox-nav svg { width: 24px; height: 24px; color: #fff; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- SweetAlert2 Overrides --- */
.swal2-popup { background: #1A1A1A !important; color: #fff !important; border: 1px solid #333 !important; border-radius: 16px !important; }
.swal2-title { color: #fff !important; font-family: 'Oswald', sans-serif !important; }
.swal2-html-container { color: #B0B0B0 !important; }
.swal2-confirm { background: linear-gradient(135deg, #D4A843, #F5C542) !important; color: #0A0A0A !important; font-weight: 600 !important; border-radius: 8px !important; }
.swal2-cancel { background: #333 !important; color: #fff !important; border-radius: 8px !important; }
.swal2-input, .swal2-select, .swal2-textarea { background: #111 !important; border: 1px solid #333 !important; color: #fff !important; border-radius: 8px !important; }
.swal2-input:focus, .swal2-textarea:focus { border-color: #D4A843 !important; box-shadow: 0 0 0 2px rgba(212,168,67,0.2) !important; }
.swal2-validation-message { background: rgba(239,68,68,0.15) !important; color: #EF4444 !important; }

/* --- Custom Form inside Swal --- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; }
.form-grid.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; color: var(--gold-light); font-weight: 500; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { padding: 10px 14px; background: #111; border: 1px solid #333; color: #fff; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; }
.form-group select option { background: #111; }

/* --- Videos Section --- */
#videos { background: var(--bg2); }
.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 16/9; background: #111; border: 1px solid #222; transition: var(--transition); }
.video-card:hover { border-color: rgba(212,168,67,0.3); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.video-card video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.video-card .play-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(0,0,0,0.45); transition: background 0.3s; }
.video-card:hover .play-overlay { background: rgba(0,0,0,0.3); }
.play-btn-circle { width: 64px; height: 64px; border-radius: 50%; background: rgba(212,168,67,0.9); display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: 0 4px 20px rgba(212,168,67,0.3); }
.video-card:hover .play-btn-circle { transform: scale(1.1); background: var(--gold-light); }
.play-btn-circle svg { width: 28px; height: 28px; color: #0A0A0A; margin-left: 3px; }
.video-card .video-label { font-family: 'Oswald', sans-serif; font-size: 0.9rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }

/* Video Modal */
.video-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; padding: 24px; }
.video-modal.active { display: flex; }
.video-modal-content { position: relative; width: 100%; max-width: 900px; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-modal-content video { width: 100%; height: 100%; object-fit: contain; }
.video-modal-close { position: absolute; top: -48px; right: 0; background: none; border: none; cursor: pointer; z-index: 10; }
.video-modal-close svg { width: 32px; height: 32px; color: #fff; transition: color 0.2s; }
.video-modal-close:hover svg { color: var(--gold-light); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .achievements-showcase { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* --- Mobile Nav --- */
  .nav-links {
    position: fixed !important;
    top: 0 !important; right: 0 !important; left: auto !important;
    transform: translateX(100%) !important;
    height: 100dvh !important; width: 280px !important;
    display: flex !important; flex-direction: column;
    padding: 100px 32px 32px; gap: 24px;
    background: #0A0A0A !important; backdrop-filter: none !important;
    border-left: 1px solid rgba(212,168,67,0.2);
    z-index: 1050 !important;
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav-links.active {
    transform: translateX(0) !important;
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s linear;
  }
  .nav-links a { font-size: 1.1rem; }
  .mobile-toggle { display: block; z-index: 1060; position: relative; }
  .mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.3s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.8); }
  .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-cta { display: none; }

  /* --- Menu Overlay (separate DOM element) --- */
  .menu-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5); z-index: 1045;
    animation: fadeIn 0.2s ease;
  }
  .menu-overlay.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* --- Hero Mobile --- */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline { width: 100%; max-width: 280px; justify-content: center; }

  /* Comparison Slider Mobile */
  .hero > .comparison-handle { width: 44px; height: 44px; }
  .hero > .comparison-handle::before { inset: -5px; }
  .hero > .comparison-handle svg { width: 12px; height: 12px; }
  .hero > .comparison-label { font-size: 0.65rem; bottom: 90px; padding: 4px 10px; }

  /* --- About Mobile --- */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { order: -1; }
  .about-image img { height: auto; max-height: 400px; }
  .about-image::after { transform: translate(8px, 8px); }

  /* --- Gallery Mobile --- */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; }

  /* --- Videos Mobile --- */
  .videos-grid { grid-template-columns: 1fr; gap: 16px; }
  .play-btn-circle { width: 48px; height: 48px; }
  .play-btn-circle svg { width: 22px; height: 22px; }

  /* --- Video Modal Mobile --- */
  .video-modal { padding: 16px; }
  .video-modal-content { aspect-ratio: auto; max-height: 80vh; }
  .video-modal-close { top: -40px; }

  /* --- Footer Mobile --- */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* --- Form Mobile --- */
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 60px 0; }
  .container { padding: 0 16px; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* Benefits single column */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 24px 16px; }

  /* Stats 2-col on small */
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 12px; }
  .stat-number { font-size: 2rem; }

  /* Gallery single column */
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item.featured { grid-column: span 1; }

  /* Achievement cards stacked */
  .achievement-card { flex-direction: column; }
  .achievement-card img { width: 100%; height: 180px; }

  /* CTA section */
  .cta-section { padding: 80px 0; }
  .cta-section p { font-size: 0.95rem; }

  /* Footer compact */
  .social-links { margin-top: 12px; }
  .footer-bottom p { font-size: 0.75rem; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* =========================================
   GEO Optimization Styles
   ========================================= */

/* TL;DR Box */
.geo-tldr {
    background: rgba(245, 197, 66, 0.1);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    color: #e0e0e0;
}

/* Expert Quote */
.expert-quote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    position: relative;
    font-style: italic;
    color: #f0f0f0;
}
.expert-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(245, 197, 66, 0.2);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: serif;
}
.expert-quote p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.expert-quote footer {
    font-size: 0.9rem;
    color: var(--gold);
    font-style: normal;
    text-align: right;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: rgba(245, 197, 66, 0.3);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question {
    color: var(--gold);
}
.faq-item.active .faq-question::after {
    content: '-';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}
.faq-answer p {
    margin: 0;
    padding: 0 1.5rem 1.2rem 1.5rem;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary max-height for animation */
}

/* Timestamp */
.geo-timestamp {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}
