/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-red: #e74c3c;
    --accent-blue: #3498db;
    --accent-green: #2ecc71;
    --accent-gold: #f39c12;
    --accent-purple: #9b59b6;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-light: #999;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --border-color: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

/* Version Switcher */
.version-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.version-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.version-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: white;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   SCROLL PROGRESS BAR
   =================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--accent-green));
    z-index: 10000;
    transition: width 0.1s ease;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    color: var(--primary-dark);
}

.nav-brand h1 {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 2px;
}

.nav-brand .tagline {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-dark);
    color: white !important;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION WITH PARALLAX
   =================================== */
.hero-parallax {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-red);
    top: -200px;
    left: -100px;
}

.shape-2 {
    width: 800px;
    height: 800px;
    background: var(--accent-blue);
    bottom: -300px;
    right: -200px;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.1;
    color: white;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #f5576c 50%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
    position: relative;
}

.network-viz {
    width: 100%;
    height: 500px;
}

.hero-stats-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Space Grotesk', monospace;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { height: 0; opacity: 0; }
    50% { height: 40px; opacity: 1; }
    100% { height: 40px; opacity: 0; }
}

/* ===================================
   HORIZONTAL SCROLL SECTION
   =================================== */
.horizontal-scroll-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.horizontal-scroll-content {
    display: flex;
    gap: 40px;
    padding: 80px 40px;
    height: 100vh;
    align-items: center;
}

.story-card {
    min-width: 800px;
    height: 600px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: scale(1.02);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 0;
}

.card-politics .card-background {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-purple));
}

.card-innovation .card-background {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
}

.card-culture .card-background {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
}

.card-fashion .card-background {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.card-education .card-background {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
}

.card-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.card-politics .card-category { color: var(--accent-red); }
.card-innovation .card-category { color: var(--accent-blue); }
.card-culture .card-category { color: var(--accent-purple); }
.card-fashion .card-category { color: #f5576c; }
.card-education .card-category { color: var(--accent-green); }

.card-date {
    font-size: 12px;
    color: var(--text-light);
}

.card-title {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.card-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.card-author {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.author-meta {
    font-size: 13px;
    color: var(--text-light);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

.card-visual {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-graphic {
    width: 100%;
    height: 100%;
}

/* ===================================
   MAP SECTION
   =================================== */
.map-reveal-section {
    padding: 120px 0;
    background: white;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 56px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.interactive-map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.advanced-map {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 60px;
    min-height: 600px;
}

.map-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.map-filter {
    padding: 10px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-filter:hover, .map-filter.active {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

.map-legend {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* ===================================
   DATA SECTION
   =================================== */
.data-story-section {
    padding: 120px 0;
    background: var(--primary-dark);
    color: white;
}

.section-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
}

.section-header-split .section-label {
    color: var(--accent-gold);
}

.section-header-split .section-title {
    color: white;
    font-size: 48px;
}

.section-header-split .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.data-highlight {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-number {
    font-size: 64px;
    font-weight: 900;
    font-family: 'Space Grotesk', monospace;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.highlight-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.data-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.data-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.data-card-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.data-period {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.data-toggle {
    display: flex;
    gap: 8px;
}

.toggle-btn {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: white;
    color: var(--primary-dark);
}

.chart-large {
    height: 250px;
    margin-bottom: 24px;
}

.data-insights {
    display: flex;
    gap: 24px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.insight-icon {
    font-size: 16px;
}

/* ===================================
   IMPACT SECTION
   =================================== */
.impact-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.impact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, var(--bg-light) 0%, transparent 100%);
}

.impact-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-red), var(--accent-gold), var(--accent-green));
}

.impact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateX(-30px);
}

.impact-marker {
    position: relative;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--accent-red);
    border-radius: 50%;
    position: absolute;
    left: -49px;
    top: 0;
}

.marker-date {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap;
}

.impact-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.impact-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.impact-metrics {
    display: flex;
    gap: 20px;
}

.metric {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-red);
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter-immersive {
    padding: 120px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#newsletter-canvas {
    width: 100%;
    height: 100%;
}

.newsletter-content-box {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.newsletter-icon {
    margin-bottom: 32px;
    opacity: 0.8;
}

.newsletter-content-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.newsletter-pitch {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

.newsletter-form-advanced {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.form-field {
    position: relative;
}

.form-field input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-field label {
    position: absolute;
    top: -8px;
    left: 12px;
    font-size: 11px;
    background: var(--primary-dark);
    padding: 0 8px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.form-interests {
    margin-bottom: 32px;
}

.interests-label {
    font-size: 14px;
    margin-bottom: 16px;
    text-align: left;
    font-weight: 500;
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.interest-tag {
    position: relative;
    cursor: pointer;
}

.interest-tag input {
    position: absolute;
    opacity: 0;
}

.interest-tag span {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.interest-tag input:checked + span {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-red);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.social-proof {
    margin-top: 40px;
}

.subscriber-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.subscriber-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-left: -12px;
}

.subscriber-avatars .avatar:first-child {
    margin-left: 0;
}

.social-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   FOOTER
   =================================== */
.footer-advanced {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo h3 {
    font-size: 16px;
    letter-spacing: 2px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   REVEAL ANIMATIONS
   =================================== */
.reveal-up, .reveal-left, .reveal-right, .reveal-timeline {
    opacity: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .story-card {
        min-width: 700px;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .horizontal-scroll-content {
        flex-direction: column;
        height: auto;
    }
    
    .story-card {
        min-width: 100%;
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-header-split {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
