/* ── PAGE HEADER / HERO ── */
.fund-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e2d5a 60%, #0f172a 100%);
    padding: 70px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fund-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #305CDE, #6080e8);
}

.fund-hero .container {
    position: relative;
    z-index: 1;
}

.fund-hero .section-label {
    background: rgba(48, 92, 222, 0.2);
    border: 1px solid rgba(96, 128, 232, 0.35);
    color: #93b4ff;
    margin-bottom: 20px;
}

.fund-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.fund-hero h1 em {
    color: #7b9ff0;
    font-style: normal;
}

.fund-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.75;
    font-weight: 400;
}

.fund-hero-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 860px;
    margin: 0 auto;
}

.fund-hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding-top: 40px;
    flex-wrap: wrap;
}

.hstat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hstat-num span {
    color: #7b9ff0;
}

.hstat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 6px;
    font-weight: 500;
}

/* ── MISSION BAR ── */
.mission-bar {
    background: #eef2fd;
    border-bottom: 1.5px solid #dde5f7;
    padding: 28px 0;
    text-align: center;
}

.mission-bar p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.65;
}

.mission-bar p em {
    color: var(--primary-blue);
    font-style: normal;
    font-weight: 800;
}

/* ── SECTION EYE ── */
.eye {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.eye::before {
    content: '';
    width: 22px;
    height: 1.5px;
    background: var(--primary-blue);
}

/* ── FEATURED / SAMMY'S FUND ── */
.sammys-section {
    padding: 70px 0 48px;
}

.sammys-card {
    background: #0f172a;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 340px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sammys-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #305CDE, #6080e8);
}

.sammys-left {
    padding: 48px 48px 44px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
}

.sammys-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sammys-left-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.sammys-evac-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
    opacity: 0.92;
}

.sammys-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(48, 92, 222, 0.2);
    border: 1px solid rgba(96, 128, 232, 0.35);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #93b4ff;
    margin-bottom: 18px;
    align-self: flex-start;
}

.sammys-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 6px;
}

.sammys-org-line {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7b9ff0;
    margin-bottom: 22px;
}

.sammys-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.78;
    font-weight: 400;
    max-width: 420px;
    margin-bottom: 30px;
    flex: 1;
}

.sammys-desc strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.sammys-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(48, 92, 222, 0.3);
}

.sammys-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(48, 92, 222, 0.4);
}

.sammys-btn-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.24);
    margin-top: 10px;
    font-weight: 500;
}

.sammys-right {
    background: rgba(48, 92, 222, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sammys-stat {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sammys-stat:first-child { padding-top: 0; }
.sammys-stat:last-child { border-bottom: none; padding-bottom: 0; }

.sammys-snum {
    font-size: 1.75rem;
    font-weight: 800;
    color: #7b9ff0;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}

.sammys-slbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    line-height: 1.5;
}

/* ── OTHER CAUSES ── */
.causes-section {
    padding: 20px 0 70px;
}

.causes-header {
    margin-bottom: 40px;
}

.causes-header h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.causes-header p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.causes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cause-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--primary-blue);
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(48, 92, 222, 0.12);
}

.cause-top {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-hover) 100%);
    padding: 28px 30px 24px;
}

.cause-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 14px;
    margin-bottom: 16px;
}

.cause-logo {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.cause-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.015em;
    margin-bottom: 4px;
}

.cause-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.cause-body {
    padding: 28px 30px;
}

.cause-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.74;
    font-weight: 400;
    margin-bottom: 20px;
}

.cause-desc strong {
    color: var(--text-main);
    font-weight: 700;
}

.cause-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.cause-point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.4;
}

.cause-point::before {
    content: '→';
    color: var(--primary-blue);
    font-weight: 700;
    flex-shrink: 0;
}

.cause-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cause-link:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

/* ── HOW WE GIVE ── */
.how-section {
    background: var(--bg-light);
    border-top: 1.5px solid var(--border-color);
    border-bottom: 1.5px solid var(--border-color);
    padding: 70px 0;
}

.how-intro {
    max-width: 500px;
    margin-bottom: 48px;
}

.how-intro h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.how-intro p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.how-card {
    background: #ffffff;
    border: 1.5px solid var(--primary-blue);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    box-shadow: 0 8px 24px rgba(48, 92, 222, 0.1);
}

.how-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    opacity: 0.7;
}

.how-card h3 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.how-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
}

/* ── CTA ── */
.fund-cta {
    padding: 80px 0;
    text-align: center;
}

.fund-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    background: #0f172a;
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.fund-cta-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #305CDE, #6080e8);
}

.fund-cta-inner h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    line-height: 1.1;
}

.fund-cta-inner h2 em {
    color: #7b9ff0;
    font-style: normal;
}

.fund-cta-inner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 360px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-fund-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(48, 92, 222, 0.25);
}

.btn-fund-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(48, 92, 222, 0.35);
}

.btn-fund-ghost {
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: border-color 0.2s;
}

.btn-fund-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .fund-hero {
        padding: 56px 0 44px;
    }

    .fund-hero-stats {
        gap: 36px;
    }

    .sammys-card {
        grid-template-columns: 1fr;
    }

    .sammys-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 28px 32px;
    }

    .sammys-stat {
        padding: 0 20px 0 0;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .sammys-stat:last-child {
        border-right: none;
        padding-right: 0;
    }

    .sammys-left {
        padding: 36px 32px 28px;
        flex-direction: column;
    }

    .sammys-left-logo {
        justify-content: flex-start;
    }

    .sammys-evac-logo {
        width: 120px;
    }

    .causes-grid {
        grid-template-columns: 1fr;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .fund-cta-inner {
        padding: 44px 28px;
    }

    .fund-cta-inner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sammys-right {
        grid-template-columns: 1fr;
    }

    .sammys-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 14px 0;
    }

    .sammys-stat:last-child {
        border-bottom: none;
    }
}
