/* =========================================
   W4LA REBIRTH — Master Stylesheet
   Warriors For Life America
   ========================================= */

:root {
    /* Vivid Premium Palette */
    --bg-start: #111111;
    --bg-olive: #2d452d;
    --bg-night: #0f172a;
    --bg-dawn: #9a6d21;
    --bg-tech: #e5e5e5;
    --bg-dark: #0a0a0a;
    --bg-white: #ffffff;

    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --w4la-red: #B22234;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-dark);
    overflow-x: hidden;
    /* Transitions handled exclusively by GSAP for 'glitch-free' flow */
}

/* --- CUSTOM SCROLLBAR --- */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--w4la-red);
    border-radius: 20px;
    border: 3px solid transparent;
    background-clip: content-box;
}

/* --- NOISE/GRAIN REMOVED FOR CLARITY --- */
.grain {
    display: none;
}

/* --- TYPOGRAPHY --- */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: inherit;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    /* Elite Glow: Subtle luminescence for premium legibility */
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    line-height: 1.7;
    max-width: 70ch;
    opacity: 0.95;
    margin-bottom: 1.75rem;
    letter-spacing: 0.01em;
}

strong {
    font-weight: 600;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.lead {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 300;
    line-height: 1.5;
    opacity: 1;
    max-width: 50ch;
}

.kicker {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.6;
    display: block;
    margin-bottom: 0.5rem;
}

/* --- UTILS --- */
.full-screen {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* --- 1. HERO SECTION --- */
.hero {
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.2) 60%,
            rgba(0, 0, 0, 0.8) 100%),
        url('images/hero-festival.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Tint layer — dark overlay over background image */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(8, 12, 26, 0.42);
    pointer-events: none;
}

#hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.hero-logo-wrapper {
    position: relative;
    z-index: 1;
    width: clamp(420px, 65vw, 820px);
    height: auto;
    margin-top: 10vh;
    margin-bottom: 5vh;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 2;
    margin-top: 3vh;
}

.hero-text h1 {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(3.8rem, 9.5vw, 6.8rem);
    letter-spacing: -0.03em;
    line-height: 0.92;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
    z-index: 2;
}

/* Elite Backdrop Text Effect */
.hero-text h1::before {
    content: 'Stronger Together';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) scale(1.4);
    opacity: 0.1;
    color: #fff;
    width: 100%;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
    filter: blur(2px);
}

.hero p {
    font-size: clamp(1.2rem, 1.5vw, 1.6rem);
    max-width: 50ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hero badge */
.hero-badge {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 0.45rem 1.2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.04);
}

/* Hero stats bar */
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2rem 3rem;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stat-n {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.hero-stat-l {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    max-width: 16ch;
    line-height: 1.4;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
}

/* --- 2. HORIZONTAL SCROLL --- */
.horizontal-outer {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.28)), url('images/W4LA Warrior Wellness day breath_soundbath.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

/* Scroll-in darkness overlay — animated by GSAP before the pin locks */
.h-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.horizontal-inner {
    display: flex;
    width: 400%;
    height: 100%;
    will-change: transform;
    position: relative;
    z-index: 3;
}

.h-panel {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5vw;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

.h-content {
    max-width: 860px;
    text-align: center;
    padding: 4rem;
    position: relative;
}

.h-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(3.8rem, 6.5vw, 6rem);
    line-height: 1.05;
    margin-bottom: 2.2rem;
    color: #ffffff;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.85);
}

.h-content h2::before {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    background: #B22234;
    margin: 0 auto 1.8rem;
    border-radius: 2px;
}

.h-content p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    opacity: 1;
}

/* --- 3. THE DIVIDE --- */
.divide-section {
    position: relative;
    /* Boosted Vividness: Reduced opacity of the dark tint to let pure colors through */
    background: linear-gradient(rgba(10, 15, 25, 0.4), rgba(0, 5, 15, 0.6)), url('images/divide-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.split-container {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

.split-panel {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
}

.split-text {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.void-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 1;
    opacity: 0;
}

.void-message h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
}

/* --- 4. REUNIFICATION --- */
.reunite-section {
    text-align: center;
    padding: 6rem 2rem;
    /* Boosted Vividness: Golden glow transition with higher clarity */
    background: linear-gradient(rgba(154, 109, 33, 0.3), rgba(10, 10, 10, 0.5)), url('images/reunite-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bridge-content {
    transform: translateY(60px);
    opacity: 0;
    max-width: 900px;
}

.bridge-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

/* --- 5. EMBRACE APP --- */
.app-section {
    padding: 8rem 10vw;
    perspective: 1200px;
    overflow: visible;
    background: linear-gradient(135deg, #0a0a0a 0%, #111827 100%);
    color: var(--text-light);
}

.app-wrapper {
    display: flex;
    gap: 6rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.app-phone {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.phone-3d {
    transform-style: preserve-3d;
    will-change: transform;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #0f0f0f;
    border-radius: 42px;
    padding: 18px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.35),
        inset 0 0 0 2px rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    transform: translateZ(2px);
    background: #000;
}

.phone-app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screen-logo {
    width: 90px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.screen-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #f4f4f4;
}

.screen-content p {
    font-size: 1rem;
    color: rgba(244, 244, 244, 0.7);
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 25ch;
}

.app-content {
    flex: 1;
    max-width: 600px;
    min-width: 300px;
}

.app-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    color: #ffffff;
}

.app-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

/* --- 6. RESEARCH --- */
.research-section {
    padding: 6rem 10vw;
    text-align: center;
    background: var(--bg-dark);
}

.research-content {
    max-width: 800px;
    margin: 0 auto;
}

.research-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    color: #fff;
}

.research-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* --- 7. CALENDAR --- */
.calendar-section {
    padding: 6rem 10vw;
    text-align: center;
}

.calendar-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

/* --- 7. CALENDAR / CAMPAIGN --- */
.calendar-section {
    padding: 6rem 5vw;
    background: linear-gradient(rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.95)), url('images/campaign-bg-immersive.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.calendar-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    text-align: center;
}

.calendar-content .lead-text {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.event-card.highlight-event {
    border-color: rgba(226, 195, 140, 0.4);
    /* Gold tint */
    background: rgba(226, 195, 140, 0.05);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 70px;
    height: 80px;
    flex-shrink: 0;
}

.event-date .month {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--w4la-red);
    letter-spacing: 1px;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

.event-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.event-location {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.event-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-cal {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
}

.btn-cal:hover {
    background: #fff;
    color: #111;
}

.calendar-actions {
    text-align: center;
    margin-top: 4rem;
}

.btn-subscribe {
    background: var(--w4la-red);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(178, 34, 52, 0.3);
}

.btn-subscribe:hover {
    background: #8a1b29;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 52, 0.4);
}

.calendar-sub {
    margin-top: 2rem;
    opacity: 0.7;
    font-size: 1rem;
    font-style: italic;
}

/* --- 8. DONATION SECTION --- */
.donate-section {
    background: #0d1117;
    padding: 6rem 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.donate-card {
    background: #111827;
    padding: 3rem;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.donate-card h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #2d3748;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.amount-btn:hover {
    border-color: #4b5563;
}

.amount-btn.active {
    border: 2px solid var(--w4la-red);
    background: rgba(178, 34, 52, 0.15);
    font-weight: 600;
}

.monthly-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    color: #d1d5db;
    justify-content: center;
}

/* Social proof pulse */
.donate-social-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    margin-bottom: -0.25rem;
    justify-content: center;
}

.proof-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: proof-pulse 2s ease-in-out infinite;
}

@keyframes proof-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.8); }
}

.proof-text {
    font-size: 0.72rem;
    color: rgba(244, 244, 244, 0.52);
    letter-spacing: 0.02em;
}

.donate-primary {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: var(--w4la-red);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.donate-primary:hover {
    background: #8a1b29;
}

.paypal-container {
    margin-top: 1.5rem;
    text-align: center;
}

/* --- TRUST BADGES --- */
.trust-badges {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    width: 100%;
    text-align: center;
    margin-bottom: 0.25rem;
}

.badge-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* Ensure payment icons wrap on small screens (e.g. 320px width) */
}

.pay-badge {
    width: 52px;
    height: 34px;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    filter: saturate(0.8);
}

.pay-badge:hover {
    transform: scale(1.1);
    filter: saturate(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pay-badge svg {
    width: 100%;
    height: 100%;
}

.verification-badges {
    gap: 1.5rem;
}

.trust-seal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.trust-seal:hover {
    background: rgba(255, 255, 255, 0.08);
}

.seal-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.seal-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.seal-text strong {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.seal-text span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.donate-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 1 !important;
}

@media (max-width: 480px) {
    .verification-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-seal {
        width: 100%;
        justify-content: center;
    }
}

/* --- 9. CTA --- */
.cta-section {
    background: var(--bg-dark);
}

.cta-logo {
    width: clamp(340px, 42vw, 520px);
    margin-bottom: 4rem;
}

.resource-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--w4la-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.resource-btn:hover {
    background: transparent;
    border-color: var(--w4la-red);
    box-shadow: 0 0 25px rgba(178, 34, 52, 0.4);
    transform: translateY(-5px) scale(1.05);
}

.btn-main {
    display: inline-block;
    padding: 1.5rem 4rem;
    background-color: var(--w4la-red);
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.btn-main:hover {
    background-color: #8a1b29;
    letter-spacing: 2px;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* --- TABLET (max-width: 768px) --- */
@media (max-width: 768px) {
    .hero-logo-wrapper {
        width: clamp(260px, 72vw, 480px);
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .h-content h2 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .split-text {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }

    .app-section {
        padding: 4rem 5vw;
    }

    .app-wrapper {
        gap: 3rem;
    }

    .research-section,
    .calendar-section {
        padding: 4rem 5vw;
    }

    .calendar-list {
        gap: 2rem;
    }

    .donate-section {
        padding: 4rem 5vw;
    }

    .donate-card {
        padding: 2rem;
    }
}

/* --- MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {
    .hero-logo-wrapper {
        width: clamp(220px, 82vw, 360px);
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    p {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    }

    .h-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .h-panel {
        padding: 0 5vw;
    }

    .split-text {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }

    .bridge-content h2 {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .app-section {
        padding: 3rem 4vw;
    }

    .app-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .app-phone {
        min-width: unset;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
        border-radius: 36px;
        padding: 14px;
    }

    .phone-screen {
        border-radius: 28px;
        padding: 1.5rem;
    }

    .app-content {
        min-width: unset;
        text-align: center;
    }

    .research-section,
    .calendar-section {
        padding: 3rem 4vw;
    }

    .calendar-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .calendar-item {
        text-align: center;
        max-width: 100%;
    }

    .donate-section {
        padding: 3rem 4vw;
    }

    .donate-card {
        padding: 1.5rem;
    }

    .amount-btn {
        min-width: 70px;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .donate-primary {
        font-size: 1rem;
        padding: 1rem;
    }

    .btn-main {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }

    .cta-logo {
        width: clamp(240px, 72vw, 360px);
        margin-bottom: 2rem;
    }
}

/* --- SMALL MOBILE (max-width: 360px) --- */
@media (max-width: 360px) {
    .h-panel {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .donate-card {
        padding: 1rem;
    }

    .amount-btn {
        min-width: 60px;
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .resource-card {
        padding: 1.25rem;
    }

    .footer-links {
        min-width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1rem;
    }
}

/* --- 9.5 CRISIS RESOURCES --- */
.crisis-resources {
    /* Vivid Premium Navy */
    background-color: #0f172a;
    color: #f4f4f4;
    padding: 8rem 5vw;
    position: relative;
    z-index: 10;
}

.crisis-container {
    max-width: 1200px;
    margin: 0 auto;
}

.crisis-header {
    text-align: center;
    margin-bottom: 4rem;
}

.crisis-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.crisis-header .lead {
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.25rem;
    max-width: 65ch;
    line-height: 1.7;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Optimized for small mobile (250px min) */
    gap: 2rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.resource-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.resource-card.primary-crisis {
    background: rgba(178, 34, 52, 0.1);
    /* Subtle Red Tint */
    border-color: rgba(178, 34, 52, 0.3);
}

.resource-card.primary-crisis:hover {
    background: rgba(178, 34, 52, 0.15);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.primary-crisis .card-icon {
    background: #B22234;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    /* Clean sans for functional headers */
}

.resource-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.7;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.resource-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.resource-btn:hover {
    background: #fff;
    color: #111;
}

.resource-btn.btn-urgent {
    background: #B22234;
}

.resource-btn.btn-urgent:hover {
    background: #d63447;
    color: #fff;
}

.resource-link {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.resource-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* --- 10. FOOTER --- */
.site-footer {
    background-color: #0d0d0d;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 5vw 2rem;
    font-size: 0.95rem;
}

.footer-inner {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
    text-align: center;
}

.footer-logo {
    display: block;
    width: clamp(140px, 18vw, 200px);
    height: auto;
    margin: 0 auto 1.25rem;
    opacity: 1;
}

.social-wrapper {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
}

.social-icon:hover {
    color: #B22234;
    transform: translateY(-3px);
}

.footer-mission {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 40ch;
    opacity: 0.7;
}

.footer-links {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--w4la-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    max-width: none;
}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        gap: 2rem;
    }
}

/* =========================================
   W4LA × EMBRACE — R&D PARTNERSHIP SECTION
   ========================================= */
.rd-section {
    background: linear-gradient(135deg, #060b18 0%, #0d1a2e 45%, #111827 100%);
    padding: 8rem 6vw;
    min-height: auto;
    align-items: flex-start;
    position: relative;
}

.rd-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(178,34,52,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.rd-inner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rd-header {
    text-align: center;
    margin-bottom: 5rem;
}

.rd-header .kicker {
    color: var(--w4la-red);
    opacity: 1;
    margin-bottom: 1.2rem;
}

.rd-header h2 {
    color: #ffffff;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: 1.5rem;
}

.rd-lead {
    max-width: 65ch;
    margin: 0 auto;
    color: rgba(255,255,255,0.65);
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 0;
}

.rd-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Left column */
.rd-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.rd-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.rd-logo-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.rd-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.embrace-logo-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rd-embrace-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.rd-x {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
    line-height: 1;
}

.rd-logo-labels {
    display: flex;
    gap: 5rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.3);
    font-family: 'Inter', sans-serif;
}

.rd-embrace-script {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    margin-top: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Phone with Map */
.rd-phone-wrap {
    display: flex;
    justify-content: center;
}

.rd-phone-frame {
    width: 255px;
    height: 510px;
    background: #080808;
    border-radius: 40px;
    padding: 15px;
    box-shadow:
        0 50px 100px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.07),
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 0 60px rgba(178,34,52,0.06);
    position: relative;
}

.rd-phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.rd-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #060e1c;
}

.map-ui {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.4rem 0.9rem 1rem;
}

.map-ui-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.map-badge {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #22c55e;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.map-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    font-family: 'Inter', sans-serif;
}

.map-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.us-map-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.map-stats-row {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.7rem;
}

.map-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.map-stat-n {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.map-stat-l {
    font-size: 0.52rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    font-family: 'Inter', sans-serif;
}

/* Right column: Pillars */
.rd-pillars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
}

.rd-pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.rd-pillar-icon {
    width: 44px;
    height: 44px;
    background: rgba(178,34,52,0.1);
    border: 1px solid rgba(178,34,52,0.22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8384c;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.rd-pillar:hover .rd-pillar-icon {
    background: rgba(178,34,52,0.2);
    transform: scale(1.06);
}

.rd-pillar-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.rd-pillar-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: none;
}

.rd-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.rd-badge {
    font-size: 0.68rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.rd-badge:hover {
    border-color: rgba(178,34,52,0.4);
    color: rgba(255,255,255,0.7);
}

@media (max-width: 960px) {
    .rd-body {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .rd-visual {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3rem;
    }
    .rd-header {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 480px) {
    .rd-section {
        padding: 5rem 4vw;
    }
    .rd-phone-frame {
        width: 220px;
        height: 440px;
    }
    .rd-visual {
        flex-direction: column;
    }
}

/* =========================================
   ELITE CTA SYSTEM
   ========================================= */

/* --- HERO CTA BUTTON --- */
.hero-cta-wrap {
    position: relative;
    z-index: 2;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(22px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero-donate {
    display: inline-block;
    padding: 1.05rem 3.5rem;
    background: var(--w4la-red);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--w4la-red);
    transition: background 0.38s cubic-bezier(0.25, 1, 0.5, 1), color 0.38s ease, transform 0.32s ease, box-shadow 0.38s ease;
    box-shadow: 0 8px 32px rgba(178, 34, 52, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-hero-donate:hover {
    background: transparent;
    color: var(--w4la-red);
    transform: translateY(-3px);
    box-shadow: 0 14px 42px rgba(178, 34, 52, 0.55), 0 0 0 6px rgba(178, 34, 52, 0.07);
}

.hero-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.42);
}

/* --- STICKY FLOATING DONATE BUTTON --- */
.sticky-donate {
    position: fixed;
    right: 2rem;
    bottom: 2.5rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.78rem 1.6rem;
    background: var(--w4la-red);
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgba(178, 34, 52, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.sticky-donate.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-donate:hover {
    background: #8a1b29;
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(178, 34, 52, 0.62);
}

.sticky-donate svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .sticky-donate {
        right: 1rem;
        bottom: 1.5rem;
        padding: 0.65rem 1.2rem;
        font-size: 0.72rem;
    }
    .sticky-donate span {
        display: none;
    }
    .sticky-donate svg {
        width: 18px;
        height: 18px;
    }
}

/* --- CTA BRIDGE SECTION --- */
.cta-bridge {
    background: linear-gradient(160deg, #0c000f 0%, #130020 55%, #0a000e 100%);
    padding: 7rem 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bridge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(178, 34, 52, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.cta-bridge-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
}

.bridge-stat {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--w4la-red);
    margin-bottom: 1.4rem;
    opacity: 1;
}

.cta-bridge h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 2.8rem;
}

.bridge-actions {
    display: flex;
    gap: 1.1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-bridge-primary {
    display: inline-block;
    padding: 1.05rem 3rem;
    background: var(--w4la-red);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--w4la-red);
    transition: background 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 28px rgba(178, 34, 52, 0.42);
}

.btn-bridge-primary:hover {
    background: transparent;
    color: var(--w4la-red);
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(178, 34, 52, 0.52);
}

.btn-bridge-ghost {
    display: inline-block;
    padding: 1.05rem 3rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-bridge-ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-2px);
}

/* --- FOOTER CTA BLOCK --- */
.footer-cta-block {
    background: linear-gradient(135deg, #0c0014 0%, #150022 100%);
    border-top: 1px solid rgba(178, 34, 52, 0.22);
    border-bottom: 1px solid rgba(178, 34, 52, 0.12);
    padding: 4.5rem 5vw;
    text-align: center;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 1.25rem;
    flex-wrap: wrap;
}

.footer-cta-text {
    text-align: left;
    flex: 1;
    min-width: 260px;
}

.footer-cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: #ffffff;
    margin-bottom: 0.65rem;
    line-height: 1.15;
}

.footer-cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.58);
    max-width: 50ch;
    margin-bottom: 0;
    line-height: 1.65;
    opacity: 1;
}

.btn-footer-cta {
    display: inline-block;
    padding: 1.05rem 2.8rem;
    background: var(--w4la-red);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--w4la-red);
    transition: background 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 28px rgba(178, 34, 52, 0.42);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-footer-cta:hover {
    background: transparent;
    color: var(--w4la-red);
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(178, 34, 52, 0.52);
}

.footer-cta-trust {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 0;
    max-width: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-cta-text {
        text-align: center;
    }
    .footer-cta-text p {
        margin: 0 auto;
    }
}

/* =========================================
   DONATION SECTION UPGRADE
   ========================================= */

/* Card Header */
.donate-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.donate-kicker {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--w4la-red);
    margin-bottom: 0.75rem;
}

.donate-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 52ch;
    margin: 0.5rem auto 0;
    line-height: 1.6;
    opacity: 1;
}

/* Frequency Toggle */
.freq-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 1.8rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
}

.freq-btn {
    flex: 1;
    padding: 0.62rem 1.8rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.freq-btn.freq-active {
    background: var(--w4la-red);
    color: #fff;
    box-shadow: 0 4px 16px rgba(178, 34, 52, 0.4);
}

.freq-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    padding: 0.15rem 0.45rem;
    border-radius: 20px;
    line-height: 1.6;
}

.freq-btn.freq-active .freq-badge {
    background: rgba(255, 255, 255, 0.25);
}

/* Donate Panels */
.donate-panel {
    margin-bottom: 1.2rem;
}

/* ---- DONATION SLIDER ---- */
.amount-slider-wrap {
    margin-bottom: 1.5rem;
    text-align: center;
}

.slider-amount-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.slider-dollar {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(244, 244, 244, 0.5);
    font-family: 'Inter', sans-serif;
    align-self: flex-start;
    padding-top: 0.6rem;
}

.slider-val {
    font-size: 4.2rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Inter', sans-serif;
    letter-spacing: -3px;
    line-height: 1;
    display: inline-block;
}

.slider-period {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(244, 244, 244, 0.42);
    font-family: 'Inter', sans-serif;
    align-self: flex-end;
    padding-bottom: 0.6rem;
}

.slider-tier-badge {
    display: inline-block;
    background: rgba(178, 34, 52, 0.14);
    border: 1px solid rgba(178, 34, 52, 0.32);
    color: #e87e7e;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.28rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.1rem;
    transition: all 0.25s ease;
}

/* Range track */
.donate-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(
        to right,
        var(--w4la-red) 0%,
        var(--w4la-red) var(--pct, 50%),
        rgba(255, 255, 255, 0.12) var(--pct, 50%),
        rgba(255, 255, 255, 0.12) 100%
    );
    margin-bottom: 0.5rem;
}

/* Webkit thumb */
.donate-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--w4la-red);
    box-shadow: 0 2px 10px rgba(178, 34, 52, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: grab;
}

.donate-slider::-webkit-slider-thumb:active {
    transform: scale(1.25);
    box-shadow: 0 3px 18px rgba(178, 34, 52, 0.7);
    cursor: grabbing;
}

/* Firefox thumb */
.donate-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--w4la-red);
    box-shadow: 0 2px 10px rgba(178, 34, 52, 0.45);
    cursor: grab;
}

/* Tick labels */
.slider-ticks {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
    margin-top: 0.6rem;
    margin-bottom: 0.25rem;
}

.slider-ticks span {
    font-size: 0.62rem;
    color: rgba(244, 244, 244, 0.28);
    font-family: 'Inter', sans-serif;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
    flex: 1;
}

.slider-ticks span.tick-active {
    color: rgba(244, 244, 244, 0.88);
    font-weight: 600;
}

.slider-ticks small {
    display: block;
    font-size: 0.56rem;
    color: rgba(178, 34, 52, 0.65);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* "Give any amount" row */
.slider-any-wrap {
    margin-bottom: 1.1rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.slider-any-wrap:focus-within {
    border-color: rgba(178, 34, 52, 0.45);
    background: rgba(178, 34, 52, 0.04);
}

.slider-any-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(244, 244, 244, 0.38);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.slider-any-wrap .custom-input-inner {
    max-width: none;
    border-color: rgba(255, 255, 255, 0.08);
    background: transparent;
}

/* Custom Amount Input */
.custom-input-wrap {
    display: flex;
    justify-content: center;
    margin: 1rem 0 0.5rem;
}

.custom-input-inner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(178, 34, 52, 0.4);
    border-radius: 12px;
    padding: 0 1rem;
    gap: 0.4rem;
    width: 100%;
    max-width: 280px;
    transition: border-color 0.2s ease;
}

.custom-input-inner:focus-within {
    border-color: var(--w4la-red);
    box-shadow: 0 0 0 3px rgba(178, 34, 52, 0.12);
}

.dollar-sign {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.custom-input-inner input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.9rem 0;
}

.custom-input-inner input::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

/* Impact Line */
.impact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    min-height: 1.4rem;
}

.impact-line span {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.48);
    font-style: italic;
    letter-spacing: 0.01em;
}

/* Monthly Tier Grid */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.tier-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
    gap: 0.25rem;
}

.tier-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.tier-btn.active {
    border: 2px solid var(--w4la-red);
    background: rgba(178, 34, 52, 0.12);
}

.tier-amount {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.tier-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1;
}

.tier-mo {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.28);
}

.tier-btn.active .tier-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Monthly Perks */
.monthly-perks {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.perks-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.9rem;
    text-align: center;
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
}

.perk-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Or Divider */
.donate-or-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.donate-or-divider::before,
.donate-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .perks-grid {
        grid-template-columns: 1fr;
    }
    .freq-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* =========================================
   VOLUNTEER SECTION
   ========================================= */
.volunteer-section {
    background: linear-gradient(160deg, #0a0f1a 0%, #0d1520 60%, #080d16 100%);
    padding: 8rem 6vw;
    position: relative;
    overflow: hidden;
}

.volunteer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(178, 34, 52, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.volunteer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left content */
.volunteer-content {
    color: #f4f4f4;
}

.volunteer-content h2 {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.volunteer-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 46ch;
    margin-bottom: 2.5rem;
    opacity: 1;
}

.volunteer-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.volunteer-role {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.volunteer-role:hover {
    background: rgba(178, 34, 52, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(178, 34, 52, 0.2);
}

.volunteer-role svg {
    flex-shrink: 0;
    color: var(--w4la-red);
}

/* Right: Form */
.volunteer-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
}

.volunteer-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.form-field .required {
    color: var(--w4la-red);
}

.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #f4f4f4;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

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

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-field select option {
    background: #1a2035;
    color: #f4f4f4;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--w4la-red);
    box-shadow: 0 0 0 3px rgba(178, 34, 52, 0.12);
}

.form-field textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

.btn-volunteer-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.1rem;
    background: var(--w4la-red);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 22px rgba(178, 34, 52, 0.38);
    margin-top: 0.4rem;
}

.btn-volunteer-submit:hover {
    background: #8a1b29;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(178, 34, 52, 0.5);
}

.btn-volunteer-submit:active {
    transform: translateY(0);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 10px;
    margin-top: 0.5rem;
}

.form-success p {
    font-size: 0.95rem;
    color: #86efac;
    margin-bottom: 0;
    max-width: none;
    opacity: 1;
}

@media (max-width: 1024px) {
    .volunteer-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .volunteer-lead {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .volunteer-section {
        padding: 5rem 4vw;
    }
    .volunteer-roles {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .volunteer-form-wrap {
        padding: 1.75rem 1.25rem;
    }
}