/* ==========================================================================
   m-mama Website - Main Stylesheet
   ========================================================================== */

/* --- 1. Fonts & Reset --- */
@font-face { font-family: 'Vodafone'; src: url('/fonts/vodafone-regular.woff2') format('woff2'); font-weight: 400 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Vodafone'; src: url('/fonts/vodafone-bold.woff2') format('woff2'); font-weight: 600 700; font-style: normal; font-display: swap; }

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #faf8f5; color: #191919; font-family: "Vodafone Rg", "Vodafone", 'Rubik', sans-serif; overflow-x: hidden; }

/* --- 2. Navigation --- */
nav { position: fixed; top: 0; left: 0; right: 0; padding: 20px 48px; display: flex; align-items: center; justify-content: space-between; z-index: 300; background: rgba(250, 248, 245, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(230, 0, 0, 0.15); }
.nav-left { display: flex; align-items: baseline; gap: 20px; }
.nav-logo { height: 22px; width: auto; display: block; opacity: 0; transform: translateX(-8px); transition: opacity 0.5s, transform 0.5s; cursor: pointer; }
nav.scrolled .nav-logo { opacity: 1; transform: translateX(0); }
body.scroll-locked { overflow: hidden; }
body.scroll-locked .nav-logo { opacity: 1 !important; transform: translateX(0) !important; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(25, 25, 25, 0.75); text-decoration: none; padding: 8px 14px; border-radius: 2px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: #E60000; background: transparent; }
.nav-header { display: none; }
.nav-backdrop { display: none; }

.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; padding: 8px; z-index: 102; cursor: pointer; }
.nav-burger span { display: block; width: 100%; height: 2px; background: #191919; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- 3. Hero Section --- */
.hero { height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; background-color: #161311; }
.hero-bg { position: absolute; left: 0; right: 0; top: -18%; bottom: -18%; z-index: 0; will-change: transform; background-color: #161311; background-image: linear-gradient(to bottom, rgba(15, 12, 10, 0.55) 0%, rgba(15, 12, 10, 0.42) 55%, rgba(15, 12, 10, 0.38) 100%), url('/images/hero-2400.webp'), url('/images/hero-640.webp'); background-size: cover; background-position: center 40%; }
.logo-wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; animation: fadeUp 1.2s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
.logo-img { width: 220px; transform-origin: center; }
.logo-img.beating { animation: heartbeat 1.6s ease-in-out infinite; }
@keyframes heartbeat { 0% { transform: scale(1); } 10% { transform: scale(1.04); } 20% { transform: scale(0.99); } 28% { transform: scale(1.07); } 40% { transform: scale(0.99); } 100% { transform: scale(1); } }
.hero-sub { font-size: 15px; font-weight: 400; letter-spacing: 4px; text-transform: uppercase; color: #ffffff; text-align: center; white-space: nowrap; text-shadow: 0 1px 4px rgba(0,0,0,0.55), 0 2px 18px rgba(0,0,0,0.45); margin: 0; }
.hero-counter-big { position: absolute; left: 50%; transform: translateX(-50%); bottom: 44px; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.counter-num { font-size: clamp(28px, 2.8vw, 40px); font-weight: 700; color: #E60000; letter-spacing: 1px; line-height: 1; text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
.counter-label { font-size: 15px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255, 255, 255, 0.92); text-shadow: 0 1px 4px rgba(0,0,0,0.55); }
.scroll-hint { position: absolute; z-index: 1; bottom: 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.5); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(230,0,0,0.7), transparent); animation: sp 2s ease-in-out infinite; }
@keyframes sp { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* --- 4. Interactive Road Canvas & Stops --- */
#roadCanvas { position: relative; width: 100%; background: #faf8f5; padding-top: 70px; z-index: 2; }
#roadSvg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
.stop { position: relative; z-index: 2; display: flex; align-items: flex-start; gap: 48px; max-width: 900px; margin: 0 auto; padding: 130px 60px; opacity: 0; transition: opacity 0.9s ease; }
.stop.visible { opacity: 1; }
.stop.right { flex-direction: row-reverse; }
.stop-dot { flex-shrink: 0; width: 56px; height: 56px; border: 2px solid #E60000; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #faf8f5; }
.stop-dot::before { content: ''; width: 12px; height: 12px; background: #E60000; border-radius: 50%; }
.stop-label { font-size: 11px; font-weight: 400; letter-spacing: 4px; text-transform: uppercase; color: rgba(25, 25, 25, 0.55); margin-bottom: 12px; }
.stop-heading { font-size: 40px; font-weight: 700; color: #191919; line-height: 1.2; margin: 0 0 14px; letter-spacing: -0.3px; }
.stop-body p+p { margin-top: 14px; }
.stop-body { font-size: 18px; font-weight: 400; color: rgba(25, 25, 25, 0.82); line-height: 1.55; max-width: 440px; }
#s2 .stop-body { max-width: 580px; }
#s4 .stop-body { max-width: 680px; }
.stat-row { display: flex; gap: 36px; margin-top: 22px; }
.stat-num { font-size: 32px; font-weight: 700; color: #E60000; }
.stat-label { font-size: 13px; font-style: italic; color: #191919; max-width: 160px; line-height: 1.55; margin-top: 4px; }
.stat-src { color: rgba(230, 0, 0, 0.7); text-decoration: none; border-bottom: 1px dotted rgba(230, 0, 0, 0.4); font-size: 11px; margin-left: 4px; }
.stat-src:hover { color: #E60000; }
.stat-src-line { display: inline-block; margin-left: 0; margin-top: 3px; white-space: nowrap; }

/* Partner Countries */
.country-list { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
#s4 { max-width: 1080px; }
#s4 .country-list { gap: 22px; }
.country-item { display: flex; flex-direction: column; gap: 2px; padding-left: 14px; border-left: 2px solid rgba(230, 0, 0, 0.35); }
.country-status { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.country-status.live, .country-status.raising { color: #E60000; }
.country-status.funded, .country-status.explore { color: rgba(25, 25, 25, 0.82); }
a.country-link { text-decoration: none; }
a.country-link:hover .country-name { color: #d20000; }
.country-name { font-size: 15px; font-weight: 600; color: #191919; }

/* --- 5. Journey Section (How It Works) --- */
.journey-section { background: #f1eee8; padding: 80px 0; border-top: 2px solid rgba(230, 0, 0, 0.3); }
.journey-title { font-size: 34px; font-weight: 600; color: #191919; text-align: center; margin: 0 0 64px; letter-spacing: -0.3px; }
.journey-track { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.journey-line { position: absolute; top: 44px; left: 100px; right: 100px; height: 2px; background: rgba(230, 0, 0, 0.3); }
.journey-steps { display: flex; justify-content: space-between; gap: 8px; list-style: none; margin: 0; padding: 0; position: relative; z-index: 1; }
.journey-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 4px; }
.step-icon { width: 88px; height: 88px; border-radius: 50%; background: #eae6df; border: 2px solid rgba(230, 0, 0, 0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0; position: relative; z-index: 1; }
.step-icon svg { width: 36px; height: 36px; }
.journey-step h3 { font-size: 15px; font-weight: 600; color: #191919; margin: 0 0 7px; line-height: 1.4; }
.step-note { font-size: 14px; color: rgba(25, 25, 25, 0.82); line-height: 1.6; }
.step-note strong { color: rgba(25, 25, 25, 0.9); font-weight: 600; }
#how-it-works { scroll-margin-top: 70px; }

/* --- 6. Call To Action (CTA) --- */
.cta-wrap { position: relative; z-index: 2; text-align: center; padding: 50px 40px 100px; opacity: 0; transition: opacity 0.9s ease; }
.cta-wrap.visible { opacity: 1; }
.cta-pre { font-size: 13px; letter-spacing: 2px; color: rgba(25, 25, 25, 0.82); margin-bottom: 20px; text-transform: uppercase; }
.cta-btn { padding: 18px 56px; background: #E60000; color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; transition: background 0.2s, transform 0.15s; }
.cta-btn:hover { background: #b80000; transform: translateY(-1px); }

/* --- 7. Modals Base --- */
.video-modal { display: none; position: fixed; inset: 0; background: #faf8f5; z-index: 200; align-items: flex-start; justify-content: center; padding: 96px 32px 32px; overflow-y: auto; opacity: 0; transition: opacity 0.35s ease; }
.video-modal.open { display: flex; opacity: 1; }
.video-close { position: sticky; top: 0; float: right; background: rgba(250, 248, 245, 0.88); border: 1px solid rgba(230, 0, 0, 0.3); border-radius: 3px; color: #191919; font-size: 26px; cursor: pointer; line-height: 1; padding: 4px 12px; opacity: 0.9; transition: opacity 0.2s; z-index: 5; }
.video-close:hover { opacity: 1; }
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }

/* Stories Modal */
#videoModal { padding-top: 120px; }
#videoModal .video-close { position: absolute; top: -52px; right: 0; float: none; }
.stories-inner { position: relative; width: min(1240px, 100%); margin: auto; }
.stories-grid { display: flex; gap: 28px; }
.story-card { flex: 1; min-width: 0; opacity: 0; transform: translateY(14px); }
.video-modal.open .story-card { animation: cardIn 0.6s ease forwards; }
.video-modal.open .story-card:nth-child(2) { animation-delay: 0.15s; }
.story-video-wrap { position: relative; width: 100%; border-radius: 4px; overflow: hidden; border: 1px solid rgba(230, 0, 0, 0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.18); background: #000; }
.story-video-wrap video { width: 100%; display: block; border: none; aspect-ratio: 16/9; object-fit: contain; background: #000; }
.story-video-wrap video:fullscreen,
.story-video-wrap video:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #000 !important;
}
.story-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1); width: 68px; height: 68px; border-radius: 50%; background: #E60000; border: 2.5px solid #fff; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 0, 0, 0.4); transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.2s, opacity 0.3s ease, box-shadow 0.25s; z-index: 2; }
.story-play-btn svg { margin-left: 3px; width: 30px; height: 30px; }
.story-play-btn:hover { background: #b80000; transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 12px 35px rgba(230, 0, 0, 0.65), 0 0 25px rgba(230, 0, 0, 0.5); }
.story-play-btn:active { transform: translate(-50%, -50%) scale(0.95); }
.story-video-wrap.is-playing .story-play-btn { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(0.7); }
.story-name { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #E60000; text-align: center; margin-bottom: 14px; }

/* Cinema Video Layer */
.cinema-layer { position: fixed; inset: 0; z-index: 500; background: #000; opacity: 0; pointer-events: none; transition: opacity 0.45s ease; display: flex; align-items: center; justify-content: center; }
.cinema-layer.open { opacity: 1; pointer-events: auto; }
.cinema-layer video { width: 100%; height: 100%; max-width: 100vw; max-height: 100vh; max-height: 100dvh; object-fit: contain; display: block; }
.cinema-title { position: absolute; top: 28px; left: 36px; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.92); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6); }
.cinema-title span { color: #E60000; }
.cinema-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border: none; border-radius: 50%; background: rgba(0, 0, 0, 0.45); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; transition: background 0.2s; }
.cinema-close:hover { background: #E60000; }
.cinema-sound { position: absolute; bottom: 34px; left: 36px; padding: 10px 18px; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 22px; background: rgba(0, 0, 0, 0.4); color: #fff; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.cinema-sound:hover { background: #E60000; border-color: #E60000; }
.cinema-skip { position: absolute; bottom: 34px; right: 36px; padding: 10px 18px; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 22px; background: rgba(0, 0, 0, 0.4); color: #fff; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.cinema-skip:hover { background: #E60000; border-color: #E60000; }
.cinema-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: rgba(255, 255, 255, 0.22); cursor: pointer; touch-action: none; z-index: 10; transition: height 0.2s ease, background 0.2s ease; }
.cinema-progress::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; bottom: 0; cursor: pointer; }
.cinema-progress:hover, .cinema-progress:focus-visible, .cinema-progress.is-scrubbing { height: 10px; background: rgba(255, 255, 255, 0.32); }
.cinema-progress:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.cinema-progress > div { height: 100%; width: 0; background: #E60000; transition: width 0.15s linear; pointer-events: none; position: relative; }
.cinema-progress.is-scrubbing > div { transition: none; }
.cinema-progress > div::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%) scale(0); width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px rgba(0, 0, 0, 0.6), 0 0 2px rgba(230, 0, 0, 0.8); transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1); }
.cinema-progress:hover > div::after, .cinema-progress:focus-visible > div::after, .cinema-progress.is-scrubbing > div::after { transform: translateY(-50%) scale(1); }


/* Action Dashboard Modal */
.action-inner { position: relative; width: min(1100px, 100%); margin: auto; padding-top: 28px; }
.action-heading { font-size: 34px; font-weight: 700; color: #191919; text-align: center; margin-bottom: 6px; letter-spacing: -0.2px; }
.action-heading span { color: #E60000; }
.action-sub { font-size: 18px; letter-spacing: 2px; text-transform: uppercase; color: #191919; text-align: center; margin-bottom: 26px; }
.map-wrap { position: relative; border: 1px solid rgba(230, 0, 0, 0.3); border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.14); }
.map-wrap img { width: 100%; display: block; }
.golive-chip { position: absolute; top: 5.6%; left: 0.9%; width: 29.5%; height: 9.4%; background: #E60000; border-radius: 4px; display: flex; align-items: center; justify-content: flex-start; padding: 0 2.2%; }
.golive-text { color: #fff; font-size: clamp(6px, 0.92vw, 13px); font-weight: 400; white-space: nowrap; flex-shrink: 0; }
.golive-btn { color: #fff; font-size: clamp(6px, 0.92vw, 13px); font-weight: 700; letter-spacing: 1.5px; white-space: nowrap; margin-left: auto; flex-shrink: 0; }
.video-modal.open .golive-btn { animation: goliveBlink 1.4s ease-in-out infinite; }
@keyframes goliveBlink { 0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(250, 248, 245, 0.6); } 50% { opacity: 0.25; text-shadow: none; } }
.dash-grid { display: flex; gap: 22px; margin-top: 22px; }
.dash-grid + .dash-grid { margin-top: 22px; }
.dash-card { flex: 1; background: #f1eee8; border: 1px solid rgba(230, 0, 0, 0.18); border-radius: 4px; padding: 20px 22px; }
.dash-title { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: #191919; margin-bottom: 16px; }
.dash-note { font-size: 18px; color: #191919; text-align: center; margin-top: 18px; letter-spacing: 0.5px; line-height: 1.55; }
.dash-note a { color: #191919; text-decoration: none; border-bottom: 1px solid rgba(230, 0, 0, 0.6); }
.dash-note a:hover { color: #E60000; border-bottom-color: #E60000; }
.dash-note-top { margin: -14px 0 22px; }

/* Dashboard KPIs & Visuals */
.kpi-strip { display: flex; gap: 14px; margin-top: 22px; }
.kpi { flex: 1; background: #f1eee8; border: 1px solid rgba(230, 0, 0, 0.18); border-radius: 4px; padding: 14px 10px; text-align: center; }
.kpi-num { font-size: 28px; font-weight: 700; color: #191919; }
.kpi-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #191919; margin-top: 5px; }
.kpi-split { display: flex; align-items: center; justify-content: center; gap: 12px; }
.kpi-divider { width: 1px; align-self: stretch; background: rgba(230, 0, 0, 0.28); }
.kpi-header { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #d20000; font-weight: 700; margin-bottom: 8px; }
.kpi-split .kpi-num { font-size: 23px; }
.kpi-split .kpi-label { font-size: 10.5px; }
@keyframes dotFlash { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@keyframes ringPulse { 0% { transform: scale(0.4); opacity: 0.65; } 100% { transform: scale(2.6); opacity: 0; } }
.map-live { position: relative; }
.map-live img { display: block; width: 100%; height: auto; border-radius: 4px; border: 1px solid rgba(25, 25, 25, 0.12); background: #fff; }
.live-dot { position: absolute; width: 11px; height: 11px; margin: -5.5px 0 0 -5.5px; border-radius: 50%; background: #E60000; border: 2px solid #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.35); animation: dotFlash 1.1s ease-in-out infinite; }
.live-dot::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; background: rgba(230, 0, 0, 0.4); z-index: -1; animation: ringPulse 1.6s ease-out infinite; }
.line-svg, .typezoom-svg, .sankey-svg { width: 100%; height: auto; }
.sbar { transform: scaleX(0); transform-box: fill-box; transform-origin: left; transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s; }
.video-modal.open .sbar { transform: scaleX(1); }
.sankey-svg { display: block; width: 100%; height: auto; margin-bottom: 20px; }

/* Impact Modal */
.impact-inner { position: relative; width: min(1100px, 100%); margin: auto; padding-top: 28px; }
.impact-heading { font-size: 34px; font-weight: 700; color: #191919; text-align: center; margin-bottom: 34px; letter-spacing: -0.2px; }
.impact-heading span { color: #E60000; }
.imp-section { font-size: 20px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #E60000; margin: 110px 0 18px; }
.imp-section:first-of-type { margin-top: 26px; }
.imp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.imp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.imp-card { background: #f1eee8; border: 1px solid rgba(230, 0, 0, 0.18); border-radius: 4px; padding: 14px 12px; opacity: 0; transform: translateY(12px); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.video-modal.open .imp-card { animation: cardIn 0.55s ease forwards; }
.video-modal.open .imp-card:nth-child(2) { animation-delay: 0.08s; }
.video-modal.open .imp-card:nth-child(3) { animation-delay: 0.16s; }
.video-modal.open .imp-card:nth-child(4) { animation-delay: 0.24s; }
.imp-card svg { width: 32px; height: 32px; margin-bottom: 10px; }
.imp-num { font-size: 36px; font-weight: 700; color: #191919; margin-bottom: 8px; }
.imp-label { font-size: 16px; font-weight: 400; color: #191919; line-height: 1.5; }

/* Quotes Modal */
.quotes-inner { position: relative; width: min(1160px, 100%); margin: auto; padding-top: 28px; }
.quote-attr a { color: rgba(25, 25, 25, 0.9); text-decoration: none; border-bottom: 1px solid rgba(230, 0, 0, 0.6); }
.quote-attr a:hover { color: #E60000; border-bottom-color: #E60000; }
.quote-card { background: #f1eee8; border: 1px solid rgba(230, 0, 0, 0.18); border-radius: 4px; padding: 26px 24px; display: flex; flex-direction: column; opacity: 0; transform: translateY(12px); }
.video-modal.open .quote-card { animation: cardIn 0.55s ease forwards; }
.quote-mark { font-size: 44px; font-weight: 700; color: #E60000; line-height: 1; margin-bottom: 8px; }
.quote-text { font-size: 17px; font-weight: 400; color: rgba(25, 25, 25, 0.85); line-height: 1.55; flex: 1; }
.quote-attr { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(25, 25, 25, 0.88); margin-top: 18px; }
.quote-attr-sub { margin-top: 6px; font-size: 10.5px; color: rgba(25, 25, 25, 0.62); }
.quotes-carousel { position: relative; max-width: 780px; margin: 0 auto; padding: 0 56px; }
.quote-track { display: grid; touch-action: pan-y; }
.quote-slide { grid-area: 1/1; opacity: 0; transform: none !important; animation: none !important; transition: opacity 0.5s ease; pointer-events: none; justify-content: center; }
.quote-slide.active { opacity: 1; pointer-events: auto; }
.quote-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(230, 0, 0, 0.35); background: #f1eee8; color: #E60000; font-size: 20px; line-height: 1; cursor: pointer; transition: background 0.2s, color 0.2s; z-index: 2; }
.quote-arrow:hover { background: #E60000; color: #fff; }
.quote-arrow-prev { left: 0; }
.quote-arrow-next { right: 0; }
.quote-dots { display: flex; justify-content: center; gap: 11px; margin-top: 24px; }
.quote-dot { width: 11px; height: 11px; border-radius: 50%; border: 1px solid #E60000; background: transparent; padding: 0; cursor: pointer; transition: background 0.25s, transform 0.25s; }
.quote-dot:hover { transform: scale(1.25); }
.quote-dot.active { background: #E60000; }
.featured-strip { margin-top: 38px; padding-top: 30px; border-top: 1px solid rgba(230, 0, 0, 0.18); opacity: 0; transform: translateY(12px); }
.video-modal.open .featured-strip { animation: cardIn 0.55s ease 0.62s forwards; }
.featured-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.featured-item { display: flex; flex-direction: column; justify-content: center; align-items: center; background: #f1eee8; border: 1px solid rgba(230, 0, 0, 0.18); border-radius: 4px; padding: 22px 22px; text-decoration: none; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.featured-item:hover { border-color: #E60000; transform: translateY(-2px); }
.featured-name { font-size: 18px; font-weight: 600; letter-spacing: 0.5px; color: #191919; margin-bottom: 8px; }
.featured-name span { color: #E60000; }
.featured-desc { font-size: 14.5px; line-height: 1.6; color: rgba(25, 25, 25, 0.75); }

/* Privacy Notice Modal */
.privacy-inner { position: relative; width: min(760px, 100%); margin: auto; padding-top: 28px; }
.privacy-inner h2 { font-size: 30px; font-weight: 700; color: #191919; margin: 0 0 6px; letter-spacing: -0.2px; }
.privacy-inner h2 span { color: #E60000; }
.privacy-date { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(25, 25, 25, 0.55); margin-bottom: 26px; }
.privacy-inner h3 { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #d20000; margin: 28px 0 10px; }
.privacy-inner p { font-size: 15px; line-height: 1.7; color: rgba(25, 25, 25, 0.85); margin: 0 0 12px; }
.privacy-inner a { color: #191919; text-decoration: none; border-bottom: 1px solid rgba(230, 0, 0, 0.6); }
.privacy-inner a:hover { color: #E60000; border-bottom-color: #E60000; }
.footer-privacy { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(25, 25, 25, 0.82); text-decoration: none; border-bottom: 1px dotted rgba(230, 0, 0, 0.5); cursor: pointer; background: none; padding: 0; }
.footer-privacy:hover { color: #d20000; }

/* Email Picker Modal */
.mailpick { position: fixed; inset: 0; background: rgba(25, 25, 25, 0.45); z-index: 400; display: none; align-items: center; justify-content: center; padding: 24px; }
.mailpick.open { display: flex; }
.mailpick-card { background: #faf8f5; border-radius: 8px; padding: 28px 28px 22px; width: min(360px, 100%); box-shadow: 0 24px 70px rgba(0,0,0,0.25); position: relative; }
.mailpick-title { font-size: 17px; font-weight: 700; color: #191919; margin-bottom: 4px; }
.mailpick-sub { font-size: 13px; color: #5a5a5a; margin-bottom: 18px; }
.mailpick-opt { display: block; width: 100%; text-align: left; background: #fff; border: 1px solid rgba(25, 25, 25, 0.15); border-radius: 6px; padding: 12px 14px; font-size: 15px; font-weight: 600; color: #191919; margin-bottom: 10px; cursor: pointer; font-family: inherit; }
.mailpick-opt:hover { border-color: #E60000; color: #d20000; }
.mailpick-close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 22px; color: #5a5a5a; cursor: pointer; }

/* --- 8. Footer --- */
.site-footer { background: #eae6df; border-top: 1px solid rgba(230, 0, 0, 0.2); padding: 52px 48px 44px; }
.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; gap: 48px; align-items: flex-start; }
.footer-logo { font-weight: 700; font-size: 22px; color: #E60000; }
.footer-mission { font-size: 13.5px; font-weight: 400; color: rgba(25, 25, 25, 0.82); line-height: 1.8; max-width: 420px; margin-top: 12px; }
.footer-credit { font-size: 13.5px; font-weight: 400; color: rgba(25, 25, 25, 0.82); line-height: 1.8; max-width: 420px; margin-top: 12px; }
.footer-meta { text-align: right; flex-shrink: 0; }
.footer-copy { font-size: 10px; color: rgba(25, 25, 25, 0.82); margin-top: 10px; }

/* --- 9. Accessibility (WCAG 2.1 AA) --- */
:focus:not(:focus-visible) { outline: none; }
body:not(.keyboard-nav) :focus,
body:not(.keyboard-nav) :focus-visible { outline: none !important; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #E60000; color: #fff; padding: 12px 22px; z-index: 300; font-size: 14px; font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 0; }
body.keyboard-nav a:focus-visible,
body.keyboard-nav button:focus-visible,
body.keyboard-nav video:focus-visible,
body.keyboard-nav [tabindex]:focus-visible { outline: 2px solid #E60000; outline-offset: 2px; border-radius: 2px; }
body.keyboard-nav .cta-btn:focus-visible,
body.keyboard-nav .golive-btn:focus-visible { outline: 2px solid #191919; outline-offset: 2px; }
.country-status.live, .counter-num, .story-name, .imp-section, .stat-src:hover, .quote-attr a:hover { color: #d20000; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* --- 10. Responsive Breakpoints --- */
@media (max-width: 900px) {
  nav { padding: 16px 28px; }
  .nav-burger { display: flex; }
  .nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.48); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 300; cursor: pointer; }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
  .nav-links { display: flex; position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(80vw, 320px); background: rgba(250, 248, 245, 0.98); backdrop-filter: blur(16px); flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 4px; padding: 22px 24px; border-left: 1px solid rgba(230, 0, 0, 0.2); z-index: 301; box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18); transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease; opacity: 0; pointer-events: none; }
  .nav-links.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .nav-header { display: flex; justify-content: space-between; align-items: center; width: 100%; padding-bottom: 16px; margin-bottom: 12px; border-bottom: 1px solid rgba(230, 0, 0, 0.15); }
  .nav-menu-title { font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #E60000; }
  .nav-close { width: 38px; height: 38px; border-radius: 50%; background: rgba(230, 0, 0, 0.08); border: 1px solid rgba(230, 0, 0, 0.2); color: #191919; font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.2s; }
  .nav-close:hover { background: #E60000; color: #fff; transform: scale(1.05); }
  .nav-links a { font-size: 14px; font-weight: 700; padding: 12px 14px; margin-left: 0; width: 100%; border-radius: 4px; display: block; }
  .nav-links a:hover, .nav-links a:focus-visible { background: rgba(230, 0, 0, 0.07); color: #E60000; }
  .journey-title { font-size: 26px; margin-bottom: 40px; }
  .journey-track { padding: 0 24px; }
  .journey-line { display: none; }
  .journey-steps { display: block; position: relative; }
  .journey-steps::before { content: ''; position: absolute; left: 35px; top: 36px; bottom: 36px; width: 2px; background: rgba(230, 0, 0, 0.35); }
  .journey-step { display: grid; grid-template-columns: 72px 1fr; column-gap: 20px; align-items: start; text-align: left; padding: 0; margin-bottom: 38px; position: relative; }
  .journey-step:last-child { margin-bottom: 0; }
  .step-icon { width: 72px; height: 72px; grid-row: 1 / span 2; margin-bottom: 0; }
  .journey-step h3 { grid-column: 2; margin: 8px 0 6px; font-size: 16px; }
  .step-note { grid-column: 2; }
}
@media (max-width: 860px) {
  .imp-grid, .imp-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .stories-grid { flex-direction: column; }
  .video-close { top: -42px; }
  .quotes-carousel { padding: 0; max-width: 100%; }
  .quote-arrow { display: none !important; }
  .featured-items { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #roadSvg { display: none !important; }
  .hero-bg { background-image: linear-gradient(to bottom, rgba(15, 12, 10, 0.55) 0%, rgba(15, 12, 10, 0.42) 55%, rgba(15, 12, 10, 0.38) 100%), url('/images/hero-2400.webp'), url('/images/hero-640.webp'); }
}
@media (max-width: 760px) {
  .dash-grid { flex-direction: column; }
  .action-heading { font-size: 30px; }
  .kpi-strip { flex-wrap: wrap; }
  .kpi { flex: 1 1 30%; }
}
@media (max-width: 640px) {
  .stop, .stop.right { flex-direction: column; gap: 20px; padding: 80px 28px; }
  .stop-heading { font-size: 28px; }
  .stat-row { flex-direction: column; gap: 16px; }
  .hero-counter-big { bottom: 28px; }
  .counter-label { font-size: 11px; letter-spacing: 2px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-meta { text-align: left; }
  .logo-wrap { max-width: 100%; padding: 0 24px; box-sizing: border-box; }
  .hero-sub { white-space: normal; font-size: 13px; letter-spacing: 2.5px; line-height: 1.7; max-width: 320px; }
  .logo-img { width: 170px; }
  .video-modal { padding: 76px 20px 28px; }
  .story-card video, .story-video-wrap { width: 100% !important; }
  .story-play-btn { width: 56px; height: 56px; }
  .story-play-btn svg { width: 26px; height: 26px; margin-left: 2px; }
  .cinema-title { left: 20px; }
  .cinema-sound { left: 20px; bottom: 26px; }
  .cinema-skip { right: 20px; bottom: 26px; }
}
@media (max-width: 520px) {
  .imp-grid, .imp-grid-3 { grid-template-columns: 1fr; }
}