/**
 * WOCOO News Theme CSS — Light Corporate Design v2
 * 
 * Design rules:
 * - NO dark sections (only white #fff / light grey #f5f6f8 alternating)
 * - ALL cards: colored top border, rounded corners, light grey or white bg
 * - FAQ: colored TOP border (not left)
 * - Compact sticky frosted-glass header
 * - Single font family (Inter sans-serif only)
 * - CTA = gradient banner (orange→pink) like AI Subtitles "Test It Risk-Free"
 * 
 * @version 2.1.0
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* WOCOO Brand Colors */
    --wocoo-pink: #E91E8C;
    --wocoo-orange: #F5A623;
    --wocoo-teal: #00A88E;
    --wocoo-blue: #1B75BC;
    --wocoo-red: #E53935;
    --wocoo-green: #4CAF50;

    /* Primary action */
    --primary: #E91E63;
    --primary-hover: #c2185b;

    /* Neutrals — light only */
    --bg-body: #ffffff;
    --bg-alt: #f5f6f8;
    --bg-card: #f0f1f4;
    --bg-card-hover: #e8e9ed;

    --text-heading: #1a1c24;
    --text-body: #555a66;
    --text-muted: #8b8f9a;

    --border-light: #e2e4e9;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);

    /* Typography — single sans-serif */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2rem;
    --sp-xl: 3rem;
    --sp-2xl: 4rem;
    --sp-3xl: 5rem;

    /* Layout */
    --max-w: 1140px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.25s ease;
    --accent-border: 3px;
}


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

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-heading);
    margin-bottom: var(--sp-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: var(--sp-sm); color: var(--text-body); }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--primary-hover); }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-md);
}


/* ============================================
   HEADER — compact, always fixed, frosted glass
   ============================================ */
.header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem var(--sp-md);
    max-width: var(--max-w);
    margin: 0 auto;
}

.logo-img { height: 30px; width: auto; }

.logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-text .w  { color: #E91E8C; }
.logo-text .o1 { color: #F5A623; }
.logo-text .c  { color: #00A88E; }
.logo-text .o2 { color: #1B75BC; }
.logo-text .o3 { color: #E53935; }

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-menu a {
    color: var(--text-heading);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.nav-menu a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.header-cta {
    display: flex;
    gap: var(--sp-xs);
    align-items: center;
}


/* ============================================
   MAIN CONTENT
   ============================================ */
body:not(.home) .main-content,
.page-template-page-newsfeed .main-content {
    padding-top: 60px;
}


/* ============================================
   HERO CAROUSEL (only dark element — it's a photo)
   ============================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    max-height: 960px;
    overflow: hidden;
    background: #0d0e12;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.slide-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-background.default-bg {
    background: linear-gradient(135deg, #1a1d23, #2d3040);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.30), rgba(0,0,0,0.50) 50%, rgba(0,0,0,0.72));
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 100;
    color: #fff;
    text-align: center;
    max-width: 820px;
    width: 90%;
    padding: var(--sp-lg);
    margin-top: 20px;
}

.slide-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--wocoo-pink);
    margin-bottom: var(--sp-sm);
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.slide-title {
    display: block;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    margin-bottom: var(--sp-md);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    color: #fff;
    line-height: 1.12;
}

.slide-description {
    display: block;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    margin-bottom: var(--sp-lg);
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.slide-buttons {
    display: flex;
    gap: var(--sp-sm);
    justify-content: center;
    flex-wrap: wrap;
    z-index: 101;
}

/* Carousel nav arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--sp-md);
    z-index: 200;
    pointer-events: none;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(100, 100, 110, 0.35);
    backdrop-filter: blur(6px);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.carousel-btn:hover { background: rgba(100, 100, 110, 0.55); }
.carousel-btn svg { width: 22px; height: 22px; }

.carousel-indicators {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 200;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator:hover { background: rgba(255,255,255,0.6); }
.indicator.active { background: var(--primary); transform: scale(1.25); }

.scroll-indicator {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    opacity: 0.6;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}


/* ============================================
   BUTTONS
   ============================================ */
.cta-primary,
.cta-secondary,
.cta-journalist,
.cta-checker {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border: none;
    border-radius: 22px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

/* Primary — pink fill */
.cta-primary {
    background: var(--primary);
    color: #fff;
}
.cta-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,30,99,0.3);
}

/* Secondary — outlined */
.cta-secondary {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-heading);
}
.cta-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Inside carousel — glass */
.carousel-slide .cta-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}
.carousel-slide .cta-secondary {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    backdrop-filter: blur(4px);
}
.carousel-slide .cta-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* Journalist — teal */
.cta-journalist {
    background: var(--wocoo-teal);
    color: #fff;
}
.cta-journalist:hover {
    background: #009578;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,168,142,0.3);
}

/* Fact-checker — blue */
.cta-checker {
    background: var(--wocoo-blue);
    color: #fff;
}
.cta-checker:hover {
    background: #155fa0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27,117,188,0.3);
}

/* Header btn */
.support-btn {
    background: var(--primary);
    color: #fff;
    padding: 0.35rem 1.1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.support-btn:hover { background: var(--primary-hover); color: #fff; }


/* ============================================
   SECTIONS — WHITE / LIGHT GREY only, NO dark
   ============================================ */
.problem-section,
.join-section,
.solution-section,
.credibility-section,
.impact-section,
.news-section,
.cta-section,
.faq-section {
    padding: var(--sp-3xl) 0;
}

/* Alternating white/grey */
.problem-section   { background: var(--bg-body); }
.join-section      { background: var(--bg-alt); }
.solution-section  { background: var(--bg-body); }
.credibility-section { background: var(--bg-alt); }
.impact-section    { background: var(--bg-body); }
.news-section      { background: var(--bg-alt); }
.faq-section       { background: var(--bg-body); }
.cta-section       { background: var(--bg-alt); }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--sp-2xl);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--sp-sm);
    color: var(--text-heading);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
}


/* ============================================
   UNIVERSAL CARD — colored TOP border
   Used for: problem, join, impact cards
   ============================================ */
.problems-grid,
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}

.join-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
    margin-bottom: var(--sp-xl);
}

/* Base card — on white sections: grey bg */
.problem-card,
.join-card,
.impact-card {
    background: var(--bg-card);
    padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
    border-radius: var(--radius);
    border: none;
    border-top: var(--accent-border) solid transparent;
    transition: var(--transition);
    text-align: left;
}

.problem-card:hover,
.join-card:hover,
.impact-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* On GREY sections: cards are white with shadow */
.join-section .join-card,
.news-section .news-card,
.cta-section .cta-banner-card {
    background: var(--bg-body);
    box-shadow: var(--shadow-sm);
}

.join-section .join-card:hover,
.news-section .news-card:hover {
    background: var(--bg-body);
    box-shadow: var(--shadow-md);
}

/* Card accent colors */
.problem-card.mainstream,
.join-card.journalist { border-top-color: var(--wocoo-red); }
.problem-card.independent { border-top-color: var(--wocoo-orange); }
.problem-card.social { border-top-color: var(--wocoo-blue); }

.join-card.journalist { border-top-color: var(--wocoo-teal); }
.join-card.checker    { border-top-color: var(--wocoo-blue); }

.impact-card:nth-child(1) { border-top-color: var(--wocoo-teal); }
.impact-card:nth-child(2) { border-top-color: var(--wocoo-orange); }
.impact-card:nth-child(3) { border-top-color: var(--wocoo-blue); }

/* Card icon circle */
.problem-icon,
.join-card-icon {
    font-size: 1.5rem;
    margin-bottom: var(--sp-sm);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0,0,0,0.04);
}

/* On grey sections, icon bg is the alt color */
.join-section .join-card-icon {
    background: var(--bg-alt);
}

/* Card typography */
.problem-card h3,
.join-card h3,
.impact-card h3 {
    color: var(--text-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: var(--sp-xs);
}

.problem-card p,
.join-card p,
.impact-card p {
    color: var(--text-body);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Join card — extra space for CTA */
.join-card p { margin-bottom: var(--sp-md); }

.checkmark { color: var(--wocoo-green); margin-right: 0.25rem; }

/* Join CTA row */
.join-content { text-align: center; }
.join-content h2 { margin-bottom: var(--sp-sm); }

.join-content .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--sp-2xl);
}

.join-cta-row {
    display: flex;
    gap: var(--sp-sm);
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================
   NEWS CARDS — colored TOP border
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}

.news-card {
    background: var(--bg-body);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    border-top: var(--accent-border) solid var(--wocoo-red);
    box-shadow: var(--shadow-sm);
}

.news-card:nth-child(1) { border-top-color: var(--wocoo-red); }
.news-card:nth-child(2) { border-top-color: var(--wocoo-teal); }
.news-card:nth-child(3) { border-top-color: var(--wocoo-orange); }

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-content { padding: var(--sp-lg); }

.news-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.news-title {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin: var(--sp-sm) 0 var(--sp-xs);
    line-height: 1.35;
    font-weight: 700;
}

.news-excerpt {
    color: var(--text-body);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--sp-sm);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--sp-xs);
    margin-bottom: var(--sp-xs);
    border-bottom: 1px solid var(--border-light);
}

.news-meta span { font-size: 0.75rem; color: var(--text-muted); }

.verified-badge {
    background: #2e7d32;
    color: #fff !important;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.verification-details { display: flex; flex-direction: column; gap: 2px; }
.journalist-badge, .checker-badge { font-size: 0.75rem; color: var(--text-muted); }
.journalist-badge::before { content: "👤 "; }
.checker-badge::before    { content: "✓ "; }

.news-cta {
    text-align: center;
    margin-top: var(--sp-xl);
}


/* ============================================
   FAQ — colored TOP border (not left!)
   ============================================ */
.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--sp-sm);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: none;
    border-top: var(--accent-border) solid var(--wocoo-teal);
    transition: var(--transition);
}

.faq-item:nth-child(2) { border-top-color: var(--wocoo-orange); }
.faq-item:nth-child(3) { border-top-color: var(--wocoo-blue); }
.faq-item:nth-child(4) { border-top-color: var(--wocoo-pink); }
.faq-item:nth-child(5) { border-top-color: var(--wocoo-red); }
.faq-item:nth-child(6) { border-top-color: var(--wocoo-green); }

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
    padding: var(--sp-md) var(--sp-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover { background: rgba(0,0,0,0.015); }

.faq-question h3 {
    margin: 0;
    color: var(--text-heading);
    font-size: 1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
    margin-left: var(--sp-sm);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 var(--sp-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.active {
    padding: 0 var(--sp-lg) var(--sp-md);
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-body);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   CTA SECTION — gradient banner
   Like "Test It Risk-Free" from AI Subtitles
   ============================================ */
.cta-content {
    background: linear-gradient(135deg, var(--wocoo-orange), var(--wocoo-pink));
    border-radius: var(--radius);
    padding: var(--sp-2xl) var(--sp-lg);
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    font-weight: 800;
    margin-bottom: var(--sp-sm);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: var(--sp-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--sp-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA buttons on gradient — white outlined */
.cta-section .cta-primary {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}
.cta-section .cta-primary:hover {
    background: rgba(255,255,255,0.3);
    border-color: #fff;
    color: #fff;
    box-shadow: none;
}

.cta-section .cta-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
}
.cta-section .cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}


/* ============================================
   CREDIBILITY / STATS
   ============================================ */
.credibility-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.credibility-stats {
    display: flex;
    justify-content: center;
    gap: var(--sp-2xl);
    margin-top: var(--sp-xl);
}

.stat-card { text-align: center; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}


/* ============================================
   FOOTER — light
   ============================================ */
.site-footer {
    background: var(--bg-alt);
    color: var(--text-muted);
    padding: var(--sp-lg) 0;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid var(--border-light);
}

.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--text-heading); }


/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-heading);
    border-radius: 1px;
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease-out; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .problems-grid,
    .impact-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h2 { font-size: 1.65rem; }

    .hero-carousel { min-height: 480px; }
    .slide-content { padding: var(--sp-sm); margin-top: 40px; }
    .slide-buttons { flex-direction: column; align-items: center; }
    .carousel-nav { padding: 0 var(--sp-xs); }
    .carousel-btn { width: 38px; height: 38px; }

    .problems-grid,
    .impact-grid,
    .news-grid,
    .join-cards {
        grid-template-columns: 1fr;
    }

    .join-cta-row,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary,
    .cta-journalist, .cta-checker {
        width: 100%;
        max-width: 280px;
    }

    .credibility-stats { flex-direction: column; gap: var(--sp-lg); }

    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; }

    .container { padding: 0 var(--sp-sm); }

    .problem-section, .join-section, .solution-section,
    .credibility-section, .impact-section, .news-section,
    .cta-section, .faq-section {
        padding: var(--sp-2xl) 0;
    }
}