/* ═══════════════════════════════════════════════════════════════
   Pronostic Coupe du Monde 2026 — Complete Static Stylesheet
   Dark Glassmorphism Theme — #040b14 background
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #040b14;
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #040b14; }
::-webkit-scrollbar-thumb { background: rgba(16, 185, 129, 0.3); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(16, 185, 129, 0.5); }
* { scrollbar-width: thin; scrollbar-color: rgba(16, 185, 129, 0.3) #040b14; }
::selection { background: rgba(16, 185, 129, 0.3); color: #e2e8f0; }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

/* ── Background Blobs ── */
.bg-blobs { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bg-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; pointer-events: none; will-change: transform; }
.bg-blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, #10b981 0%, transparent 70%); top: -200px; left: -100px; animation: blob-1 20s ease-in-out infinite; }
.bg-blob-2 { width: 500px; height: 500px; background: radial-gradient(circle, #f59e0b 0%, transparent 70%); top: 40%; right: -150px; animation: blob-2 25s ease-in-out infinite; }
.bg-blob-3 { width: 450px; height: 450px; background: radial-gradient(circle, #06b6d4 0%, transparent 70%); bottom: -100px; left: 30%; animation: blob-3 22s ease-in-out infinite; }

@keyframes blob-1 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -50px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }
@keyframes blob-2 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-40px, 30px) scale(1.15); } 66% { transform: translate(25px, -35px) scale(0.85); } }
@keyframes blob-3 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(20px, 40px) scale(0.95); } 66% { transform: translate(-30px, -20px) scale(1.05); } }

/* ── Glassmorphism ── */
.glass { background: rgba(10, 22, 40, 0.6); backdrop-filter: blur(16px) saturate(1.8); -webkit-backdrop-filter: blur(16px) saturate(1.8); border: 1px solid rgba(16, 185, 129, 0.12); }
.glass-strong { background: rgba(10, 22, 40, 0.8); backdrop-filter: blur(24px) saturate(2); -webkit-backdrop-filter: blur(24px) saturate(2); border: 1px solid rgba(16, 185, 129, 0.18); }
.glass-card { background: rgba(13, 31, 60, 0.5); backdrop-filter: blur(12px) saturate(1.5); -webkit-backdrop-filter: blur(12px) saturate(1.5); border: 1px solid rgba(16, 185, 129, 0.1); border-radius: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.glass-card:hover { border-color: rgba(16, 185, 129, 0.25); box-shadow: 0 0 30px rgba(16, 185, 129, 0.08); }

/* ── Gradient Text ── */
.gradient-text { background: linear-gradient(135deg, #10b981, #34d399, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-gold { background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-brand { background: linear-gradient(135deg, #10b981, #06b6d4, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── CTA Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.625rem 1.25rem; border-radius: 0.75rem; font-weight: 700; font-size: 0.875rem; transition: all 0.2s ease; cursor: pointer; border: none; text-align: center; }
.btn:active { transform: scale(0.95); }
.btn-primary { background: #10b981; color: #040b14; }
.btn-primary:hover { background: #34d399; }
.btn-linebet { background: #00A651; color: white; }
.btn-linebet:hover { background: #00c960; }
.btn-amber { background: #f59e0b; color: #040b14; }
.btn-amber:hover { background: #fbbf24; }
.btn-outline { background: rgba(0, 166, 81, 0.15); color: #00A651; border: 1px solid rgba(0, 166, 81, 0.3); }
.btn-outline:hover { background: rgba(0, 166, 81, 0.25); border-color: rgba(0, 166, 81, 0.5); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 0.875rem; }
.btn-xl { padding: 1.125rem 2.5rem; font-size: 1.125rem; border-radius: 1rem; }

/* ── Pulse Animations ── */
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.15); } 50% { box-shadow: 0 0 16px rgba(16, 185, 129, 0.6), 0 0 40px rgba(16, 185, 129, 0.25); } }
@keyframes pulse-glow-gold { 0%, 100% { box-shadow: 0 0 8px rgba(245, 158, 11, 0.4), 0 0 20px rgba(245, 158, 11, 0.15); } 50% { box-shadow: 0 0 16px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.25); } }
.cta-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }
.cta-pulse-gold { animation: pulse-glow-gold 2.5s ease-in-out infinite; }

/* ── Ping Animation ── */
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.ping-dot { position: relative; display: inline-flex; height: 8px; width: 8px; }
.ping-dot::before { content: ''; position: absolute; inset: 0; border-radius: 9999px; background: #10b981; animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; opacity: 0.75; }
.ping-dot::after { content: ''; position: relative; display: inline-flex; border-radius: 9999px; height: 8px; width: 8px; background: #10b981; }

/* ── Top Announcement Bar ── */
.announcement-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 60; background: linear-gradient(to right, #059669, #0d9488, #0891b2); padding: 0.5rem 1rem; }
.announcement-bar .inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; }
@media (min-width: 768px) { .announcement-bar .inner { font-size: 0.875rem; } }
.announcement-bar a { color: white; transition: opacity 0.2s; }
.announcement-bar a:hover { opacity: 0.8; }

/* ── Header ── */
.site-header { position: fixed; top: 40px; left: 0; right: 0; z-index: 50; }
.site-header .inner { max-width: 1280px; margin: 0 auto; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 768px) { .site-header .inner { padding: 0 1.5rem; height: 72px; } }
.site-header .logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.025em; }
@media (min-width: 768px) { .site-header .logo { font-size: 1.875rem; } }
.site-header nav { display: none; }
@media (min-width: 1024px) { .site-header nav { display: flex; align-items: center; gap: 0.25rem; } }
.site-header nav a { padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.site-header nav a:hover { color: white; background: rgba(255,255,255,0.05); }
.site-header nav a.active { color: #10b981; background: rgba(255,255,255,0.05); }
.header-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .header-actions { display: flex; } }

/* ── Mobile Menu ── */
.mobile-menu-btn { display: flex; padding: 0.5rem; border-radius: 0.5rem; background: none; border: none; color: white; cursor: pointer; font-size: 1.5rem; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu { display: none; padding: 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.75rem 1rem; border-radius: 0.5rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.mobile-menu a:hover { color: white; background: rgba(255,255,255,0.05); }
.mobile-menu a.active { color: #10b981; }

/* ── Promo Code Box ── */
.promo-box { display: inline-flex; align-items: center; gap: 0.75rem; background: linear-gradient(to right, rgba(16,185,129,0.1), rgba(16,185,129,0.05), rgba(6,182,212,0.1)); border: 1px solid rgba(16,185,129,0.3); border-radius: 0.75rem; padding: 0.75rem 1.25rem; }
.promo-box .label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.promo-box .code { font-size: 1.25rem; font-weight: 700; color: #10b981; letter-spacing: 0.2em; font-family: 'Space Grotesk', monospace; }
@media (min-width: 768px) { .promo-box .code { font-size: 1.5rem; } }
.promo-box .copy-btn { padding: 0.5rem; border-radius: 0.5rem; background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.3); color: #10b981; cursor: pointer; transition: all 0.2s; font-size: 0.875rem; }
.promo-box .copy-btn:hover { background: rgba(16,185,129,0.3); }
.promo-box .copy-btn:active { transform: scale(0.95); }
.promo-box .copied-text { color: #10b981; font-size: 0.875rem; font-weight: 500; }

/* ── Countdown Timer ── */
.countdown { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .countdown { gap: 0.75rem; } }
.countdown-item { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.5rem; padding: 0.375rem 0.75rem; min-width: 40px; text-align: center; }
@media (min-width: 768px) { .countdown-item { padding: 0.5rem 0.75rem; min-width: 52px; } }
.countdown-item .value { font-size: 1.125rem; font-weight: 700; color: #10b981; font-family: 'Space Grotesk', monospace; }
@media (min-width: 768px) { .countdown-item .value { font-size: 1.5rem; } }
.countdown-item .label { font-size: 0.625rem; color: rgba(255,255,255,0.4); }
.countdown-sep { color: rgba(16,185,129,0.5); font-size: 1.25rem; }

/* ── Sections ── */
.section { position: relative; padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-header { margin-bottom: 2.5rem; }
.section-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1rem; }
.section-badge.emerald { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #10b981; }
.section-badge.amber { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: #f59e0b; }
.section-badge.cyan { background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.3); color: #06b6d4; }
.section-badge.violet { background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.3); color: #8b5cf6; }

/* ── Match Card ── */
.match-card { padding: 1.25rem; }
@media (min-width: 768px) { .match-card { padding: 1.5rem; } }
.match-card .card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.match-card .group-badge { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.5rem; border-radius: 0.25rem; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); color: #f59e0b; font-size: 0.75rem; font-weight: 500; }
.match-card .match-time { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.match-card .teams-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.75rem; }
.match-card .team { flex: 1; text-align: center; }
.match-card .team-flag { font-size: 1.875rem; margin-bottom: 0.25rem; }
.match-card .team-name { font-size: 0.875rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.match-card .vs-badge { padding: 0.375rem 0.75rem; border-radius: 0.5rem; background: rgba(255,255,255,0.05); font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.4); }
.match-card .venue { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.match-card .odds-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1rem; }
.match-card .odd-item { text-align: center; padding: 0.5rem; border-radius: 0.5rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); }
.match-card .odd-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.match-card .odd-value { font-size: 0.875rem; font-weight: 700; color: white; }

/* ── Prediction Boxes ── */
.pred-free { padding: 0.75rem; border-radius: 0.5rem; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); margin-bottom: 0.75rem; }
.pred-free .pred-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; }
.pred-free .pred-label { font-size: 0.75rem; color: rgba(16,185,129,0.7); font-weight: 500; }
.pred-free .pred-confidence { font-size: 0.875rem; font-weight: 700; color: #10b981; }
.pred-free .pred-text { font-size: 0.875rem; font-weight: 700; color: #10b981; }
.pred-free .pred-analysis { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; line-height: 1.5; }

.pred-vip { position: relative; padding: 0.75rem; border-radius: 0.5rem; background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.2); overflow: hidden; }
.pred-vip .blurred { filter: blur(6px); user-select: none; pointer-events: none; opacity: 0.6; }
.pred-vip .lock-overlay { position: absolute; inset: 0; background: rgba(4,11,20,0.6); backdrop-filter: blur(2px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 0.5rem; }
.pred-vip .lock-icon { font-size: 1.5rem; }
.pred-vip .lock-text { font-size: 0.875rem; font-weight: 700; color: #f59e0b; }
.pred-vip .lock-sub { font-size: 0.75rem; color: rgba(245,158,11,0.7); }

/* ── VIP Section ── */
.vip-section .vip-card { position: relative; overflow: hidden; }
.vip-section .gold-border { position: absolute; inset: 0; border-radius: 1rem; border: 2px solid rgba(245,158,11,0.2); pointer-events: none; }
.vip-section .blurred-matches { filter: blur(8px); user-select: none; pointer-events: none; }
.vip-section .big-lock-overlay { position: absolute; inset: 0; background: rgba(4,11,20,0.7); backdrop-filter: blur(3px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; border-radius: 1rem; z-index: 10; }
.vip-section .lock-circle { width: 80px; height: 80px; border-radius: 50%; background: rgba(239,68,68,0.2); border: 2px solid rgba(239,68,68,0.4); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.vip-section .odds-box { background: linear-gradient(to right, rgba(245,158,11,0.1), rgba(245,158,11,0.05), rgba(234,179,8,0.1)); border: 1px solid rgba(245,158,11,0.2); border-radius: 0.75rem; padding: 1rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }

/* ── Groups Grid ── */
.groups-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .groups-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .groups-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .groups-grid { grid-template-columns: repeat(4, 1fr); } }
.group-card { padding: 1.25rem; }
.group-card .group-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.group-card .group-title { font-size: 1rem; font-weight: 700; color: white; }
.group-card .group-link { font-size: 0.75rem; color: #10b981; font-weight: 500; }
.group-card .team-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.5rem; border-radius: 0.5rem; background: rgba(255,255,255,0.05); margin-bottom: 0.5rem; transition: background 0.2s; }
.group-card .team-row:hover { background: rgba(255,255,255,0.08); }
.group-card .team-info { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.group-card .team-flag { font-size: 1.125rem; }
.group-card .team-name { font-size: 0.875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.group-card .team-rank { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── Cards Grid ── */
.cards-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── FAQ ── */
.faq-item { overflow: hidden; }
.faq-item .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; background: none; border: none; color: white; font-size: 0.875rem; font-weight: 600; text-align: left; cursor: pointer; transition: background 0.2s; font-family: inherit; }
@media (min-width: 768px) { .faq-item .faq-question { font-size: 1rem; } }
.faq-item .faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-item .faq-chevron { color: #10b981; transition: transform 0.3s; font-size: 1.25rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ── Testimonials ── */
.testimonial { padding: 1.25rem; }
.testimonial .stars { color: #f59e0b; margin-bottom: 0.5rem; }
.testimonial .text { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 0.75rem; }
.testimonial .author { display: flex; align-items: center; justify-content: space-between; }
.testimonial .author-name { font-size: 0.875rem; font-weight: 600; color: white; }
.testimonial .author-gain { font-size: 0.875rem; font-weight: 700; color: #10b981; }

/* ── Blog Article Card ── */
.article-card { padding: 1.25rem; display: flex; flex-direction: column; height: 100%; }
.article-card .thumb { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: 0.75rem; background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(255,255,255,0.05), rgba(16,185,129,0.1)); border: 1px solid rgba(255,255,255,0.05); margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.article-card .thumb-icon { font-size: 2.5rem; }
.article-card .cat-badge { display: inline-flex; align-items: center; padding: 0.25rem 0.625rem; border-radius: 9999px; font-size: 0.625rem; font-weight: 600; border: 1px solid; margin-bottom: 0.75rem; align-self: flex-start; }
.article-card .article-title { font-size: 0.875rem; font-weight: 700; color: white; line-height: 1.4; margin-bottom: 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 768px) { .article-card .article-title { font-size: 1rem; } }
.article-card .article-excerpt { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin-bottom: 1rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 768px) { .article-card .article-excerpt { font-size: 0.875rem; } }
.article-card .article-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.3); padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* ── Steps ── */
.step-card { padding: 1.5rem; }
@media (min-width: 768px) { .step-card { padding: 2rem; } }
.step-card .step-inner { display: flex; gap: 1.5rem; }
@media (min-width: 768px) { .step-card .step-inner { gap: 2rem; } }
.step-card .step-number { width: 56px; height: 56px; border-radius: 1rem; background: linear-gradient(135deg, #10b981, #06b6d4); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; color: #040b14; flex-shrink: 0; }
.step-card .step-icon { font-size: 1.875rem; flex-shrink: 0; }
.step-card .step-content { flex: 1; }
.step-card .step-title { font-size: 1.125rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .step-card .step-title { font-size: 1.25rem; } }
.step-card .step-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1rem; }
.step-card .step-details { display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .step-card .step-details { grid-template-columns: repeat(2, 1fr); } }
.step-card .detail-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.step-card .detail-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; flex-shrink: 0; }

/* ── Stats Grid ── */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 1rem; text-align: center; }
.stat-value { font-size: 1.5rem; font-weight: 900; color: #10b981; }
@media (min-width: 768px) { .stat-value { font-size: 1.875rem; } }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

/* ── Mobile Sticky CTA ── */
.mobile-sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; padding: 0.75rem 1rem; background: linear-gradient(to top, rgba(4,11,20,0.98) 60%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
@media (min-width: 768px) { .mobile-sticky { display: none; } }
.mobile-sticky .inner { display: flex; gap: 0.5rem; max-width: 1280px; margin: 0 auto; }
.mobile-sticky .btn { flex: 1; font-size: 0.8125rem; padding: 0.75rem 0.5rem; }

/* ── Exit Popup ── */
.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.exit-popup-overlay.show { display: flex; }
.exit-popup { background: #0a1628; border: 2px solid rgba(245,158,11,0.3); border-radius: 1rem; padding: 2rem; max-width: 500px; width: 100%; text-align: center; position: relative; }
.exit-popup .close-btn { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1.25rem; }
.exit-popup .close-btn:hover { color: white; }

/* ── Activity Notification ── */
.activity-toast { position: fixed; bottom: 80px; left: 1rem; z-index: 40; max-width: 320px; background: rgba(10,22,40,0.9); backdrop-filter: blur(12px); border: 1px solid rgba(16,185,129,0.2); border-radius: 0.75rem; padding: 0.75rem 1rem; transition: all 0.4s ease; }
@media (min-width: 768px) { .activity-toast { bottom: 1.5rem; } }
.activity-toast.hidden { transform: translateY(100px); opacity: 0; pointer-events: none; }
.activity-toast .name { font-weight: 600; color: #10b981; }
.activity-toast .country { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.activity-toast .action { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.activity-toast .time { font-size: 0.6875rem; color: rgba(255,255,255,0.3); margin-top: 0.25rem; }

/* ── Footer ── */
.site-footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 2rem 0; }
.site-footer .inner { max-width: 1280px; margin: 0 auto; padding: 0 1rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; }
@media (min-width: 768px) { .site-footer .inner { flex-direction: row; padding: 0 1.5rem; } }
.site-footer .footer-logo { font-size: 1.125rem; font-weight: 900; }
.site-footer .footer-links { display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.site-footer .footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: #10b981; }
.breadcrumb .sep { font-size: 0.75rem; }
.breadcrumb .current { color: #10b981; font-weight: 500; }

/* ── Contact Form ── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 0.375rem; }
.form-input { width: 100%; padding: 0.75rem 1rem; background: rgba(10,22,40,0.5); backdrop-filter: blur(8px); border: 1px solid rgba(16,185,129,0.15); border-radius: 0.75rem; color: white; font-family: inherit; font-size: 0.875rem; transition: border-color 0.2s; }
.form-input:focus { outline: none; border-color: #10b981; box-shadow: 0 0 0 2px rgba(16,185,129,0.2); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-input { min-height: 120px; resize: vertical; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-white-50 { color: rgba(255,255,255,0.5); }
.text-white-60 { color: rgba(255,255,255,0.6); }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-30 { color: rgba(255,255,255,0.3); }
.text-white-40 { color: rgba(255,255,255,0.4); }
.text-emerald { color: #10b981; }
.text-amber { color: #f59e0b; }
.text-cyan { color: #06b6d4; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.w-full { width: 100%; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.border-t { border-top: 1px solid rgba(255,255,255,0.05); }
.border-b { border-bottom: 1px solid rgba(255,255,255,0.05); }
.pt-28 { padding-top: 7rem; }
@media (min-width: 768px) { .md\:pt-36 { padding-top: 9rem; } .md\:text-4xl { font-size: 2.25rem; } .md\:text-5xl { font-size: 3rem; } .md\:text-6xl { font-size: 3.75rem; } .md\:flex-row { flex-direction: row; } .md\:gap-8 { gap: 2rem; } .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); } }
.sm\:grid-cols-2 { }
@media (min-width: 640px) { .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ── Hero Sizes ── */
.hero-title { font-size: 1.875rem; font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; }
@media (min-width: 640px) { .hero-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 42rem; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

/* ── How to unlock 3 steps ── */
.steps-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .steps-3 { gap: 1.5rem; } }
.step-3-item { text-align: center; }
.step-3-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.3); display: flex; align-items: center; justify-content: center; color: #10b981; margin: 0 auto 0.5rem; font-size: 1.5rem; }
.step-3-text { font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.4; }
@media (min-width: 768px) { .step-3-text { font-size: 0.875rem; } }

/* ── Legal pages ── */
.legal-content h2 { font-size: 1.25rem; font-weight: 700; color: white; margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-content h3 { font-size: 1rem; font-weight: 600; color: white; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 0.75rem; }
.legal-content ul { margin-left: 1.5rem; margin-bottom: 0.75rem; }
.legal-content li { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; list-style: disc; }
.legal-content a { color: #10b981; }
.legal-content a:hover { text-decoration: underline; }

/* ── Page Hero Section ── */
.page-hero { padding-top: 7rem; padding-bottom: 3rem; position: relative; overflow: hidden; }
@media (min-width: 768px) { .page-hero { padding-top: 9rem; padding-bottom: 4rem; } }
.page-hero .hero-glow-1 { position: absolute; top: 5rem; left: 25%; width: 24rem; height: 24rem; background: rgba(16,185,129,0.1); border-radius: 50%; filter: blur(120px); pointer-events: none; }
.page-hero .hero-glow-2 { position: absolute; top: 10rem; right: 25%; width: 20rem; height: 20rem; background: rgba(6,182,212,0.1); border-radius: 50%; filter: blur(100px); pointer-events: none; }

/* ── Responsive tweaks ── */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
  .btn-xl { padding: 0.875rem 1.5rem; font-size: 1rem; }
}
@media (min-width: 640px) { .show-mobile-only { display: none; } }
