/* ═══════════════════════════════════════════
   FONDS FSP — PREMIUM CONVERSION SITE
   ═══════════════════════════════════════════ */

:root {
    --g50: #f0fdf4; --g100: #dcfce7; --g200: #bbf7d0; --g300: #86efac;
    --g400: #4ade80; --g500: #22c55e; --g600: #16a34a; --g700: #15803d;
    --g800: #166534; --g900: #14532d;

    --b50: #eff6ff; --b100: #dbeafe; --b200: #bfdbfe; --b300: #93c5fd;
    --b400: #60a5fa; --b500: #3b82f6; --b600: #2563eb; --b700: #1d4ed8;
    --b800: #1e40af; --b900: #1e3a8a;

    --t500: #14b8a6; --t600: #0d9488;

    --grad: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
    --grad-h: linear-gradient(135deg, #2563eb 0%, #16a34a 100%);
    --grad-soft: linear-gradient(135deg, rgba(22,163,74,.06) 0%, rgba(37,99,235,.06) 100%);
    --grad-dark: linear-gradient(160deg, #0a1628 0%, #0c1e3a 40%, #081420 100%);
    --grad-text: linear-gradient(135deg, #4ade80, #60a5fa);

    --bg: #fafafa; --bg-alt: #f1f5f9; --bg-dark: #0a1628;
    --text: #0f172a; --text2: #475569; --text3: #94a3b8; --text-white: #f8fafc;

    --border: rgba(0,0,0,.06); --border2: rgba(0,0,0,.1);
    --border-d: rgba(255,255,255,.06); --border-d2: rgba(255,255,255,.1);

    --sh-sm: 0 1px 3px rgba(0,0,0,.06);
    --sh-md: 0 4px 16px rgba(0,0,0,.08);
    --sh-lg: 0 8px 32px rgba(0,0,0,.1);
    --sh-xl: 0 20px 60px rgba(0,0,0,.12);
    --sh-glow: 0 0 40px rgba(22,163,74,.2), 0 0 80px rgba(37,99,235,.1);

    --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-full: 9999px;

    --ease: cubic-bezier(.16,1,.3,1);
    --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text); line-height: 1.7;
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.03em;
}

.serif { font-family: 'Playfair Display', serif; }

a { color: var(--b600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--g600); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.mt-16 { margin-top: 16px; }

/* ═══════════════════════════════════════
   AMBIENT BACKGROUND
   ═══════════════════════════════════════ */
.ambient-bg {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    overflow: hidden;
}
.ambient-shape {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: .08;
}
.ambient-shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--g400), transparent 70%);
    top: -200px; right: -100px;
    animation: amb1 25s ease-in-out infinite;
}
.ambient-shape-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--b400), transparent 70%);
    bottom: 10%; left: -150px;
    animation: amb2 30s ease-in-out infinite;
}
.ambient-shape-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--t500), transparent 70%);
    top: 40%; right: 5%;
    animation: amb3 20s ease-in-out infinite;
}
.ambient-shape-4 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--g500), transparent 70%);
    bottom: 5%; right: 30%;
    animation: amb4 22s ease-in-out infinite;
}

@keyframes amb1 {
    0%,100%{transform:translate(0,0) scale(1)}
    33%{transform:translate(-80px,100px) scale(1.15)}
    66%{transform:translate(60px,-40px) scale(.9)}
}
@keyframes amb2 {
    0%,100%{transform:translate(0,0) scale(1)}
    33%{transform:translate(100px,-80px) scale(1.1)}
    66%{transform:translate(-50px,70px) scale(.85)}
}
@keyframes amb3 {
    0%,100%{transform:translate(0,0) scale(1)}
    33%{transform:translate(-60px,-100px) scale(.9)}
    66%{transform:translate(80px,50px) scale(1.1)}
}
@keyframes amb4 {
    0%,100%{transform:translate(0,0) scale(1)}
    50%{transform:translate(40px,-60px) scale(1.2)}
}

/* ═══════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════ */
.announcement {
    background: var(--grad-dark);
    padding: 10px 0;
    position: relative; z-index: 100;
    overflow: hidden;
}
.announcement::before {
    content:''; position:absolute; inset:0;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.04),transparent);
    animation: shimmer 4s infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.announcement .container {
    display: flex; align-items: center; gap: 12px;
    justify-content: center; color: var(--text-white);
    font-size: 13px; position: relative; z-index: 1;
    flex-wrap: wrap;
}
.announcement strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; color: var(--g400);
    font-size: 15px;
}
.announcement-bar {
    width: 140px; height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 2px; overflow: hidden;
}
.announcement-fill {
    height: 100%; background: var(--grad);
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.header {
    position: sticky; top: 0; z-index: 999;
    background: rgba(250,250,250,.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--sh-md); }
.header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 10px 0; gap: 20px;
}
.logo {
    display: flex; align-items: center; gap: 12px;
    flex-shrink: 0; color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-label { display: flex; flex-direction: column; }
.logo-label strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px; font-weight: 800;
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-label span {
    font-size: 10px; color: var(--text3);
    text-transform: uppercase; letter-spacing: .8px;
}
.nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav a {
    padding: 8px 14px; font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 600; color: var(--text2);
    border-radius: var(--r-sm); transition: all .2s ease;
}
.nav a:hover { color: var(--g700); background: var(--g50); }
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.phone-link {
    font-size: 14px; font-weight: 600;
    color: var(--text); white-space: nowrap;
}
.phone-link:hover { color: var(--g700); }

/* Burger */
.burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all .2s ease;
}
.mobile-menu {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(250,250,250,.98);
    backdrop-filter: blur(24px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 28px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px; font-weight: 700;
    color: var(--text);
}
.mobile-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; font-size: 32px;
    cursor: pointer; color: var(--text);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center;
    justify-content: center; gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: .8px; cursor: pointer;
    transition: all .3s var(--ease);
    border: none; border-radius: var(--r-full);
    white-space: nowrap;
}
.btn span { display: inline-flex; align-items: center; gap: 6px; }

.btn--primary {
    background: var(--grad); color: white;
    padding: 12px 28px; font-size: 12px;
    position: relative; overflow: hidden;
}
.btn--primary::before {
    content:''; position: absolute; inset: -3px;
    background: var(--grad); border-radius: inherit;
    filter: blur(14px); opacity: 0;
    transition: opacity .3s ease; z-index: -1;
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--primary:hover::before { opacity: .5; }

.btn--outline {
    background: transparent; color: var(--text-white);
    border: 2px solid rgba(255,255,255,.3);
    padding: 12px 28px; font-size: 12px;
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

.btn--sm { padding: 10px 20px; font-size: 11px; }
.btn--lg { padding: 16px 36px; font-size: 13px; letter-spacing: 1px; }
.btn--full { width: 100%; }

.glow {
    position: relative;
}
.glow::before {
    content:''; position: absolute; inset: -4px;
    background: var(--grad); border-radius: inherit;
    filter: blur(16px); opacity: 0;
    transition: opacity .3s ease; z-index: -1;
}
.glow:hover::before { opacity: .5; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex; align-items: center;
    background: var(--grad-dark);
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(22,163,74,.18) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 80%, rgba(37,99,235,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(20,184,166,.06) 0%, transparent 60%);
    animation: heroShift 12s ease-in-out infinite alternate;
}
@keyframes heroShift {
    0%{opacity:1;transform:scale(1)}
    100%{opacity:.8;transform:scale(1.05)}
}
.hero-grid-bg::before {
    content:''; position:absolute; inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; padding: 80px 0; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-full);
    color: rgba(255,255,255,.7); font-size: 14px;
    margin-bottom: 32px;
}
.dot {
    width: 8px; height: 8px; background: var(--g400);
    border-radius: 50%; animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100%{opacity:1;transform:scale(1)}
    50%{opacity:.4;transform:scale(1.4)}
}

.hero-title {
    font-size: clamp(40px, 6vw, 76px);
    color: white; margin-bottom: 24px;
    font-weight: 900; line-height: 1;
}
.hero-title .line { display: block; }
.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, #4ade80, #60a5fa, #2dd4bf);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradMove 4s ease-in-out infinite;
}
@keyframes gradMove {
    0%,100%{background-position:0% 50%}
    50%{background-position:100% 50%}
}

.hero-desc {
    font-size: 18px; color: rgba(255,255,255,.7);
    max-width: 580px; margin-bottom: 48px;
    line-height: 1.8;
}
.hero-desc strong { color: rgba(255,255,255,.95); }

.hero-choices {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-bottom: 48px;
}
.choice-card {
    display: flex; flex-direction: column;
    padding: 28px 24px;
    border-radius: var(--r-lg);
    cursor: pointer; text-align: left;
    transition: all .3s var(--ease);
    border: none; font-family: inherit;
    position: relative; overflow: hidden;
}
.choice-card::before {
    content:''; position:absolute; inset:0;
    border-radius: inherit; opacity:0;
    transition: opacity .3s ease;
}
.choice-card:hover { transform: translateY(-4px); }
.choice-card:hover::before { opacity: 1; }

.choice-card--help {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: white;
}
.choice-card--help::before { background: rgba(255,255,255,.04); }
.choice-card--help:hover { border-color: rgba(255,255,255,.2); }

.choice-card--give {
    background: rgba(22,163,74,.15);
    border: 1px solid rgba(22,163,74,.3);
    color: white;
}
.choice-card--give::before { background: rgba(22,163,74,.08); }
.choice-card--give:hover { border-color: rgba(22,163,74,.5); }

.choice-icon { font-size: 36px; margin-bottom: 12px; }
.choice-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px; font-weight: 700;
    margin-bottom: 4px;
}
.choice-sub {
    font-size: 13px; opacity: .6;
    margin-bottom: 12px;
}
.choice-card svg {
    opacity: .4; align-self: flex-end;
    transition: opacity .2s ease;
}
.choice-card:hover svg { opacity: .8; }

.hero-proof {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 24px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    max-width: fit-content; color: rgba(255,255,255,.7);
    font-size: 14px;
}
.hero-proof strong { color: white; }
.proof-avatars { display: flex; }
.av {
    width: 36px; height: 36px;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 13px;
    color: white; margin-left: -8px;
    border: 2px solid rgba(255,255,255,.1);
}
.av:first-child { margin-left: 0; }
.av-1 { background: var(--g600); }
.av-2 { background: var(--b600); }
.av-3 { background: var(--t600); }
.av-4 { background: var(--g700); font-size: 11px; }

.hero-scroll {
    position: absolute; bottom: 32px;
    left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100%{transform:scaleY(1);opacity:.4}
    50%{transform:scaleY(1.4);opacity:.8}
}

/* ═══════════════════════════════════════
   TICKER
   ═══════════════════════════════════════ */
.ticker {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 18px 0; overflow: hidden;
}
.ticker-track {
    display: flex; gap: 40px;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
}
@keyframes tickerScroll {
    0%{transform:translateX(0)}
    100%{transform:translateX(-50%)}
}
.ticker-track span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 600;
    color: var(--text3); white-space: nowrap;
    letter-spacing: .3px;
}
.ticker-track span:contains('★') { opacity: .3; }

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section { padding: 100px 0; position: relative; }
.section--dark {
    background: var(--grad-dark);
}
.section--dark::before {
    content:''; position:absolute; inset:0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(22,163,74,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(37,99,235,.05) 0%, transparent 50%);
    pointer-events: none;
}
.section-center { text-align: center; margin-bottom: 64px; }
.label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--g600);
    background: var(--grad-soft);
    padding: 6px 18px;
    border-radius: var(--r-full);
    margin-bottom: 16px;
    border: 1px solid var(--g100);
}
.label--light {
    color: var(--g400);
    background: rgba(74,222,128,.08);
    border-color: rgba(74,222,128,.15);
}
.heading {
    font-size: clamp(30px, 4.5vw, 50px);
    color: var(--text); margin-bottom: 16px;
}
.heading--light { color: var(--text-white); }
.gradient {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.desc { font-size: 17px; color: var(--text2); max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
[data-anim] {
    opacity: 0; transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-anim].visible { opacity: 1; transform: translateY(0); }
[data-anim].visible:nth-child(2) { transition-delay: .1s; }
[data-anim].visible:nth-child(3) { transition-delay: .15s; }
[data-anim].visible:nth-child(4) { transition-delay: .2s; }
[data-anim].visible:nth-child(5) { transition-delay: .25s; }
[data-anim].visible:nth-child(6) { transition-delay: .3s; }

/* ═══════════════════════════════════════
   MISSION
   ═══════════════════════════════════════ */
.mission-grid {
    display: grid; grid-template-columns: 1.1fr .9fr;
    gap: 64px; align-items: center;
}
.mission-text p {
    font-size: 17px; color: var(--text2);
    margin-bottom: 16px; line-height: 1.8;
}
.mission-text strong { color: var(--text); }
.mission-highlight {
    margin-top: 32px; padding: 20px 24px;
    background: var(--g50);
    border-radius: var(--r-lg);
    display: flex; gap: 14px; align-items: flex-start;
    border: 1px solid var(--g100);
}
.mission-highlight p { font-size: 15px; color: var(--text2); line-height: 1.6; }
.mission-highlight p strong { color: var(--g700); }

.mission-visual { position: relative; }
.visual-card {
    position: relative; height: 420px;
    border-radius: var(--r-xl); overflow: hidden;
}
.visual-card-bg {
    position: absolute; inset: 0;
    background: var(--grad);
    border-radius: var(--r-xl);
}
.visual-card-bg::before {
    content:''; position:absolute; inset:0;
    background: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 6 L42 24 L24 42 L6 24Z' fill='rgba(255,255,255,.05)'/%3E%3C/svg%3E");
}
.visual-content {
    position: relative; z-index: 1;
    height: 100%; display: flex;
    flex-direction: column; align-items: center;
    justify-content: center;
    color: white; text-align: center;
}
.visual-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 84px; font-weight: 900;
    text-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.visual-sub { font-size: 18px; opacity: .8; margin-top: 8px; }
.visual-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.vshape {
    position: absolute; border: 2px solid rgba(255,255,255,.1);
    border-radius: 50%;
}
.vshape-1 { width: 120px; height: 120px; top: 10%; left: 10%; animation: vshapeSpin 20s linear infinite; }
.vshape-2 { width: 80px; height: 80px; bottom: 15%; right: 15%; animation: vshapeSpin 15s linear infinite reverse; }
.vshape-3 { width: 60px; height: 60px; top: 50%; right: 20%; animation: vshapeSpin 25s linear infinite; }
@keyframes vshapeSpin {
    0%{transform:rotate(0)}
    100%{transform:rotate(360deg)}
}

/* ═══════════════════════════════════════
   IMPACT
   ═══════════════════════════════════════ */
.impact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.impact-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border-d);
    border-radius: var(--r-lg);
    padding: 36px 24px; text-align: center;
    backdrop-filter: blur(10px);
    transition: all .3s var(--ease);
    position: relative; overflow: hidden;
}
.impact-card-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad); opacity: 0;
    transition: opacity .3s ease;
}
.impact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74,222,128,.2);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.impact-card:hover .impact-card-accent { opacity: 1; }
.impact-emoji { font-size: 36px; margin-bottom: 16px; }
.impact-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px; font-weight: 900;
    background: linear-gradient(135deg, #4ade80, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.impact-label {
    font-size: 14px; color: rgba(255,255,255,.5);
    margin-bottom: 12px;
}
.impact-badge {
    font-size: 12px; font-weight: 600;
    color: var(--g400);
    background: rgba(74,222,128,.1);
    padding: 4px 14px;
    border-radius: var(--r-full);
    display: inline-block;
}
.badge--up { color: var(--g400); }
.badge--up::before { content: '↑ '; }

/* ═══════════════════════════════════════
   HELP CARDS
   ═══════════════════════════════════════ */
.help-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.help-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    transition: all .3s var(--ease);
    position: relative; overflow: hidden;
}
.help-card-glow {
    position: absolute; top: -60%; right: -60%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(22,163,74,.06) 0%, transparent 70%);
    border-radius: 50%; transition: all .5s ease;
}
.help-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-xl);
    border-color: var(--g200);
}
.help-card:hover .help-card-glow { transform: scale(1.5); opacity: .6; }
.help-icon { font-size: 40px; margin-bottom: 20px; }
.help-card h3 {
    font-size: 20px; margin-bottom: 12px;
    color: var(--text);
}
.help-card > p {
    font-size: 14px; color: var(--text2);
    margin-bottom: 20px; line-height: 1.6;
}
.help-card ul { list-style: none; }
.help-card ul li {
    padding: 8px 0 8px 20px;
    font-size: 14px; color: var(--text2);
    border-top: 1px solid var(--border);
    position: relative;
}
.help-card ul li::before {
    content:''; position: absolute;
    left: 0; top: 50%; transform: translateY(-50%);
    width: 8px; height: 8px;
    background: var(--grad); border-radius: 50%;
}

/* ═══════════════════════════════════════
   STORIES
   ═══════════════════════════════════════ */
.stories-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.story {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border-d);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    transition: all .3s var(--ease);
}
.story:hover {
    transform: translateY(-6px);
    border-color: rgba(96,165,250,.2);
}
.story-qm {
    font-family: 'Playfair Display', serif;
    font-size: 64px; line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -12px;
}
.story > p {
    font-size: 15px; color: rgba(255,255,255,.65);
    line-height: 1.8; margin-bottom: 24px;
    font-style: italic;
}
.story-author { display: flex; align-items: center; gap: 12px; }
.story-av {
    width: 48px; height: 48px;
    background: var(--grad); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 18px;
}
.story-author strong { display: block; color: white; font-size: 15px; }
.story-author span { color: rgba(255,255,255,.4); font-size: 13px; }

/* ═══════════════════════════════════════
   SUPPORT / DONATE
   ═══════════════════════════════════════ */
.support-wrapper {
    display: grid; grid-template-columns: 1fr .8fr;
    gap: 64px; align-items: start;
}
.support-desc {
    font-size: 17px; color: var(--text2);
    margin-bottom: 36px; line-height: 1.8;
}
.support-amounts {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-bottom: 24px;
}
.sa {
    padding: 16px 20px;
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: var(--r-md);
    transition: all .2s ease;
}
.sa:hover { border-color: var(--g300); transform: translateY(-2px); }
.sa-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px; font-weight: 800;
    color: var(--g700); margin-bottom: 4px;
}
.sa-desc { font-size: 13px; color: var(--text2); }
.support-guarantee {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text3);
}
.support-guarantee span { line-height: 1.5; }

.donate-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    box-shadow: var(--sh-xl);
}
.donate-box h3 {
    font-size: 22px; margin-bottom: 24px;
    color: var(--text); text-align: center;
}
.amount-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; margin-bottom: 16px;
}
.amt {
    padding: 14px 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; font-weight: 700;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--r-md);
    cursor: pointer; transition: all .2s ease;
    color: var(--text);
}
.amt:hover, .amt.active {
    border-color: var(--g400);
    background: var(--g50);
    color: var(--g700);
}
.custom-amt {
    position: relative; margin-bottom: 16px;
}
.custom-amt input {
    width: 100%; padding: 14px 40px 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--r-md);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; font-weight: 600;
    transition: all .2s ease;
    background: var(--bg-alt);
}
.custom-amt input:focus {
    outline: none; border-color: var(--g400);
    background: white;
    box-shadow: 0 0 0 4px rgba(74,222,128,.1);
}
.custom-amt .cur {
    position: absolute; right: 18px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; color: var(--text3);
    font-size: 16px;
}
.donate-type {
    display: flex; gap: 10px; margin-bottom: 20px;
}
.dr {
    flex: 1; display: flex; align-items: center;
    justify-content: center; gap: 6px;
    padding: 10px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    cursor: pointer; font-size: 14px;
    font-weight: 600; color: var(--text2);
    transition: all .2s ease;
}
.dr:has(input:checked) {
    background: var(--g50);
    border-color: var(--g400);
    color: var(--g700);
}
.dr input { display: none; }
.secure-note {
    text-align: center; font-size: 12px;
    color: var(--text3); margin-top: 12px;
    display: flex; align-items: center;
    justify-content: center; gap: 4px;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
    padding: 100px 0;
    background: var(--grad-dark);
    position: relative; overflow: hidden;
}
.cta-glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(22,163,74,.1) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(37,99,235,.08) 0%, transparent 50%);
}
.cta-inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-title {
    font-size: clamp(26px, 4vw, 40px);
    color: white; margin-bottom: 16px;
}
.cta-sub {
    font-size: 18px; color: rgba(255,255,255,.6);
    margin-bottom: 40px;
}
.cta-btns {
    display: flex; gap: 16px;
    justify-content: center; flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s ease;
}
.faq-item:hover { border-color: var(--g200); }
.faq-q {
    width: 100%; padding: 20px 24px;
    background: none; border: none;
    display: flex; justify-content: space-between;
    align-items: center; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; font-weight: 600;
    color: var(--text); text-align: left;
    transition: color .2s ease;
}
.faq-q:hover { color: var(--g700); }
.faq-icon {
    font-size: 22px; color: var(--g500);
    transition: transform .3s var(--ease-bounce);
    flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--b500); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .4s var(--ease);
}
.faq-item.active .faq-a { max-height: 200px; }
.faq-a p {
    padding: 0 24px 20px;
    font-size: 15px; color: var(--text2);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 48px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.c-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border-d);
    border-radius: var(--r-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all .3s var(--ease);
}
.c-card:hover { transform: translateX(4px); border-color: rgba(74,222,128,.2); }
.c-icon { font-size: 28px; margin-bottom: 12px; }
.c-card h4 { font-size: 16px; color: white; margin-bottom: 6px; }
.c-card a, .c-card p {
    font-size: 15px; color: rgba(255,255,255,.6);
    margin-bottom: 4px;
}
.c-card a:hover { color: var(--g400); }
.c-card span { font-size: 13px; color: rgba(255,255,255,.3); }

.contact-form-wrap {
    background: white;
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: var(--sh-xl);
}
.form-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.ftab {
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 600;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    cursor: pointer; transition: all .2s ease;
    color: var(--text2);
}
.ftab.active {
    background: var(--grad); color: white;
    border-color: transparent;
}
.cform { display: flex; flex-direction: column; gap: 14px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform input, .cform textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--r-md);
    font-family: inherit; font-size: 15px;
    transition: all .2s ease;
    background: var(--bg-alt);
}
.cform input:focus, .cform textarea:focus {
    outline: none; border-color: var(--g400);
    background: white;
    box-shadow: 0 0 0 4px rgba(74,222,128,.1);
}
.cform textarea { resize: vertical; min-height: 100px; }
.fcheck {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13px; color: var(--text3);
    cursor: pointer;
}
.fcheck input { margin-top: 3px; accent-color: var(--g500); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: #050d18;
    padding: 64px 0 24px;
    border-top: 1px solid rgba(255,255,255,.04);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px; margin-bottom: 48px;
}
.flogo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
}
.flogo strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px; font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fcol--brand p {
    font-size: 14px; color: rgba(255,255,255,.4);
    margin-bottom: 20px; line-height: 1.6;
}
.fsocials { display: flex; gap: 8px; }
.fsocials a {
    padding: 8px 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-full);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,.5);
    transition: all .2s ease;
}
.fsocials a:hover { background: var(--g600); color: white; border-color: var(--g600); }
.fcol h4 {
    font-size: 13px; color: white;
    margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: 10px; }
.fcol ul li a { font-size: 14px; color: rgba(255,255,255,.4); }
.fcol ul li a:hover { color: var(--g400); }
.fcontacts li {
    font-size: 14px; color: rgba(255,255,255,.4);
    margin-bottom: 10px;
}
.fcontacts li a { color: rgba(255,255,255,.6); }
.fcontacts li a:hover { color: var(--g400); }
.fcreds {
    margin-top: 16px; display: flex; gap: 12px;
}
.fcreds span {
    font-size: 11px; color: rgba(255,255,255,.2);
    padding: 4px 10px;
    background: rgba(255,255,255,.03);
    border-radius: var(--r-sm);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 24px; text-align: center;
}
.footer-bottom p {
    font-size: 13px; color: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════ */
.float-cta {
    position: fixed; bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    background: var(--grad);
    border: none; border-radius: 50%;
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(22,163,74,.4);
    z-index: 998;
    transform: translateY(100px); opacity: 0;
    transition: all .3s var(--ease);
}
.float-cta.visible { transform: translateY(0); opacity: 1; }
.float-cta:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(22,163,74,.5); }

/* ═══════════════════════════════════════
   MODALS
   ═══════════════════════════════════════ */
.overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.overlay.active { opacity: 1; pointer-events: all; }
.modal {
    background: white;
    border-radius: var(--r-xl);
    padding: 40px;
    max-width: 480px; width: 92%;
    position: relative;
    transform: scale(.92) translateY(20px);
    transition: transform .4s var(--ease-bounce);
    max-height: 90vh; overflow-y: auto;
}
.overlay.active .modal { transform: scale(1) translateY(0); }
.modal-x {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: var(--bg-alt); border: none;
    border-radius: 50%; font-size: 20px;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: all .2s ease; color: var(--text2);
}
.modal-x:hover { background: var(--border); }
.modal-head { text-align: center; margin-bottom: 28px; }
.modal-badge {
    display: inline-block; font-size: 13px;
    padding: 4px 14px; background: var(--g50);
    color: var(--g700); border-radius: var(--r-full);
    font-weight: 600; margin-bottom: 12px;
}
.modal-head h3 { font-size: 24px; color: var(--text); margin-bottom: 6px; }
.modal-head p { font-size: 15px; color: var(--text3); }
.modal-amts {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; margin-bottom: 16px;
}
.modal-type {
    display: flex; gap: 10px; margin-bottom: 20px;
}
.modal-trust {
    display: flex; justify-content: center; gap: 16px;
    margin-top: 20px; padding-top: 16px;
    border-top: 1px solid var(--border);
}
.modal-trust span { font-size: 12px; color: var(--text3); }

.modal--thank { text-align: center; }
.thank-icon { font-size: 56px; margin-bottom: 16px; }
.modal--thank h3 { font-size: 28px; margin-bottom: 12px; color: var(--text); }
.modal--thank p { font-size: 16px; color: var(--text3); margin-bottom: 24px; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav { display: none; }
    .burger { display: flex; }
    .phone-link { display: none; }
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .visual-card { height: 300px; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .help-grid { grid-template-columns: repeat(2, 1fr); }
    .stories-grid { grid-template-columns: 1fr; }
    .support-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .section--dark { padding: 72px 0; }
    .hero { min-height: 85vh; }
    .hero-inner { padding: 60px 0; }
    .hero-choices { grid-template-columns: 1fr; }
    .hero-proof { flex-direction: column; gap: 10px; text-align: center; }
    .impact-grid { grid-template-columns: 1fr; }
    .help-grid { grid-template-columns: 1fr; }
    .support-amounts { grid-template-columns: 1fr; }
    .frow { grid-template-columns: 1fr; }
    .modal { padding: 28px; }
    .modal-amts { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn { width: 100%; justify-content: center; }
    .float-cta { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .visual-year { font-size: 56px; }
    .announcement .container { font-size: 11px; }
    .heading { font-size: clamp(26px, 6vw, 36px); }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 36px; }
    .impact-number { font-size: 36px; }
    .form-tabs { flex-direction: column; }
    .ftab { text-align: center; }
    .donate-type { flex-direction: column; }
    .modal-trust { flex-direction: column; align-items: center; gap: 8px; }
}
