:root {
            --green-500: #10b981;
            --green-600: #059669;
            --green-50: #ecfdf5;
            --green-100: #d1fae5;
            --blue-500: #2563eb;
            --blue-50: #eff6ff;
            --amber-400: #fbbf24;
            --red-500: #ef4444;
            --text-900: #0f172a;
            --text-600: #475569;
            --text-400: #94a3b8;
            --surface: #ffffff;
            --bg-base: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-900);
            background: var(--bg-base);
            -webkit-font-smoothing: antialiased;
        }

        /* ── NAVBAR ── */
        .navbar {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 1px 0 rgba(15, 23, 42, 0.07);
            padding: 0.65rem 0;
            transition: box-shadow 0.3s;
        }

        .navbar-brand {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--green-600) !important;
            letter-spacing: -0.5px;
        }

        .nav-link {
            color: var(--text-600) !important;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.4rem 0.75rem !important;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav-link:hover {
            color: var(--text-900) !important;
            background: var(--bg-base);
        }

        .btn-nav-cta {
            background: transparent;
            color: var(--green-600) !important;
            border: 1.5px solid #cbd5e1;
            padding: 0.45rem 1.25rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.88rem;
            transition: all 0.2s ease;
        }

        .btn-nav-cta:hover {
            background: var(--green-50);
            color: var(--green-600) !important;
            border-color: var(--green-500);
            transform: translateY(-1px);
        }

        /* ── HERO ── */
        .hero {
            padding: 104px 0 72px;
            background: linear-gradient(155deg, #ecfdf5 0%, #ffffff 50%, #eff6ff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            pointer-events: none;
        }

        /* "Musuh" badge */
        .enemy-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff7ed;
            border: 1px solid #fed7aa;
            color: #c2410c;
            border-radius: 999px;
            padding: 0.35rem 1rem;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            line-height: 1.18;
            letter-spacing: -1.5px;
            margin-bottom: 1.25rem;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--green-500), var(--blue-500));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-analogy {
            font-size: 1.05rem;
            color: var(--text-600);
            line-height: 1.7;
            margin-bottom: 1.75rem;
            max-width: 480px;
        }

        /* Benefit pills — Rule of Three */
        .benefit-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .benefit-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--surface);
            border: 1px solid #e2e8f0;
            border-radius: 999px;
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
            font-weight: 500;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }

        .benefit-pill i {
            color: var(--green-500);
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, #10b981, #059669);
            color: #fff;
            border: 1px solid #059669;
            padding: 0.85rem 2rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 4px 14px rgba(16, 185, 129, 0.35);
        }

        .btn-hero-primary:hover {
            background: linear-gradient(135deg, #34d399, #10b981);
            transform: translateY(-2px);
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(16, 185, 129, 0.4);
            color: #fff;
        }

        .btn-hero-secondary {
            background: linear-gradient(135deg, #ffffff, #f1f5f9);
            color: var(--text-600);
            border: 1px solid #cbd5e1;
            padding: 0.85rem 1.75rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 2px 5px rgba(15, 23, 42, 0.05);
        }

        .btn-hero-secondary:hover {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            border-color: #10b981;
            color: #059669;
            transform: translateY(-2px);
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 4px 10px rgba(16, 185, 129, 0.15);
        }

        /* Hero visual: mock phone screen */
        .phone-mockup {
            background: #0f172a;
            border-radius: 36px;
            padding: 12px;
            box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            width: 100%;
            margin: 0 auto;
        }

        .phone-screen {
            background: #fff;
            border-radius: 28px;
            overflow: hidden;
        }

        .phone-notch {
            background: #0f172a;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phone-notch-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #1e293b;
        }

        /* ── ENEMY SECTION (Narasi Musuh Bersama) ── */
        .enemy-section {
            padding: 72px 0;
            background: #fff;
            box-shadow: inset 0 20px 40px -20px rgba(0, 0, 0, 0.04);
        }

        .enemy-section-label {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #ef4444;
            margin-bottom: 0.75rem;
        }

        .enemy-title {
            font-size: clamp(1.5rem, 3.5vw, 2.1rem);
            font-weight: 800;
            letter-spacing: -0.75px;
            line-height: 1.25;
            margin-bottom: 1rem;
        }

        .enemy-subtitle {
            font-size: 1rem;
            color: var(--text-600);
            line-height: 1.7;
            max-width: 560px;
        }

        /* Pain cards — Rule of Three */
        .pain-card {
            background: #ffffff;
            border: 1px solid rgba(239, 68, 68, 0.1);
            border-radius: 24px;
            padding: 2rem;
            height: 100%;
            position: relative;
            cursor: default;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        .pain-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.05);
            border-color: rgba(239, 68, 68, 0.2);
        }

        .pain-emoji {
            font-size: 2.2rem;
            margin-bottom: 0.75rem;
            display: block;
        }

        .pain-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-900);
            margin-bottom: 0.4rem;
        }

        .pain-text {
            font-size: 0.88rem;
            color: #6b7280;
            line-height: 1.6;
        }

        /* ── BENEFIT SECTION (Manfaat, bukan Fitur) ── */
        .benefit-section {
            padding: 72px 0;
            background: var(--bg-base);
            box-shadow: inset 0 20px 40px -20px rgba(0, 0, 0, 0.04);
        }

        .section-eyebrow {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--green-500);
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: clamp(1.5rem, 3.5vw, 2rem);
            font-weight: 800;
            letter-spacing: -0.75px;
            line-height: 1.25;
            margin-bottom: 0.75rem;
        }

        .section-subtitle {
            font-size: 0.98rem;
            color: var(--text-600);
            line-height: 1.7;
        }

        /* Benefit cards — benefits first, feature label subtle */
        .bcard {
            background: var(--surface);
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid rgba(15, 23, 42, 0.04);
            height: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        .bcard:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05);
            border-color: rgba(15, 23, 42, 0.08);
        }

        .bcard-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 1.25rem;
            transition: transform 0.3s;
        }

        .bcard:hover .bcard-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .bcard-icon-green {
            background: var(--green-50);
            color: var(--green-600);
        }

        .bcard-icon-blue {
            background: var(--blue-50);
            color: var(--blue-500);
        }

        .bcard-icon-amber {
            background: #fffbeb;
            color: #d97706;
        }

        .bcard-icon-purple {
            background: #faf5ff;
            color: #7c3aed;
        }

        .bcard-icon-rose {
            background: #fff1f2;
            color: #e11d48;
        }

        .bcard-icon-teal {
            background: #f0fdfa;
            color: #0d9488;
        }

        .bcard-benefit {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-900);
            margin-bottom: 0.4rem;
            line-height: 1.35;
        }

        .bcard-desc {
            font-size: 0.88rem;
            color: var(--text-600);
            line-height: 1.65;
            margin-bottom: 0.75rem;
        }

        .bcard-feature-tag {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-400);
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        /* ── WHO SECTION ── */
        .who-section {
            padding: 72px 0;
            background: #fff;
            box-shadow: inset 0 20px 40px -20px rgba(0, 0, 0, 0.04);
        }

        .who-card {
            background: var(--surface);
            border-radius: 24px;
            padding: 2.25rem;
            border: 1px solid rgba(15, 23, 42, 0.04);
            border-left: 4px solid var(--green-500);
            height: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        .who-card.blue-accent {
            border-left-color: var(--blue-500);
        }

        .who-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05);
            border-color: rgba(15, 23, 42, 0.08);
        }

        .who-avatar {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .who-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .who-role {
            font-size: 0.8rem;
            color: var(--text-400);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .who-quote {
            font-size: 0.92rem;
            color: var(--text-600);
            line-height: 1.7;
            font-style: italic;
            border-left: 3px solid #e2e8f0;
            padding-left: 0.85rem;
            margin-bottom: 1rem;
        }

        .who-gains {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .who-gains li {
            font-size: 0.88rem;
            color: var(--text-600);
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            padding: 0.3rem 0;
        }

        .who-gains li i {
            color: var(--green-500);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ── HOW IT WORKS (Rule of Three) ── */
        .how-section {
            padding: 72px 0;
            background: var(--bg-base);
            box-shadow: inset 0 20px 40px -20px rgba(0, 0, 0, 0.04);
        }

        .step-card {
            background: var(--surface);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid rgba(15, 23, 42, 0.04);
            height: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        .step-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.05);
            transform: translateY(-6px);
        }

        .step-number {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--green-500), var(--green-600));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 800;
            margin: 0 auto 1.25rem;
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
        }

        .step-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .step-text {
            font-size: 0.88rem;
            color: var(--text-600);
            line-height: 1.65;
        }

        .step-analogy {
            display: inline-block;
            margin-top: 0.75rem;
            background: var(--green-50);
            color: var(--green-600);
            border-radius: 8px;
            padding: 0.3rem 0.75rem;
            font-size: 0.78rem;
            font-weight: 600;
        }

        /* connector line between steps */
        .step-connector {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 1.5rem;
        }

        .step-connector i {
            color: #d1d5db;
            font-size: 1.5rem;
        }

        /* ── ONE MORE THING ── */
        .omt-section {
            padding: 80px 0;
            background: linear-gradient(155deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 20px 40px rgba(255, 255, 255, 0.5);
        }

        .omt-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
            top: -200px;
            left: -100px;
        }

        .omt-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(36, 104, 251, 0.12);
            border: 1px solid rgba(36, 93, 251, 0.3);
            color: var(--blue-400);
            border-radius: 999px;
            padding: 0.35rem 1rem;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }

        .omt-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.2;
            color: var(--text-900);
            margin-bottom: 1rem;
        }

        .omt-desc {
            font-size: 1.05rem;
            color: var(--text-600);
            line-height: 1.7;
            max-width: 520px;
            margin-bottom: 2rem;
        }

        .omt-feature-box {
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 1.5rem;
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
        }

        .omt-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
        }

        .omt-feature-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .omt-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green-600);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .omt-feature-text strong {
            color: var(--text-900);
            font-size: 0.9rem;
        }

        .omt-feature-text span {
            color: var(--text-600);
            font-size: 0.82rem;
            display: block;
            margin-top: 0.15rem;
        }

        .btn-omt {
            background: var(--green-500);
            color: #fff;
            border: none;
            padding: 0.9rem 2.25rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
        }

        .btn-omt:hover {
            background: var(--green-600);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(16, 185, 129, 0.5);
            color: #fff;
        }

        /* ── CTA ── */
        .cta-section {
            padding: 80px 0;
            background: #fff;
            text-align: center;
            box-shadow: inset 0 20px 40px -20px rgba(0, 0, 0, 0.04);
        }

        .cta-title {
            font-size: clamp(1.5rem, 3.5vw, 2rem);
            font-weight: 800;
            letter-spacing: -0.75px;
            margin-bottom: 0.75rem;
        }

        .cta-sub {
            font-size: 1rem;
            color: var(--text-600);
            max-width: 480px;
            margin: 0 auto 2rem;
            line-height: 1.7;
        }

        /* ── FOOTER (Simple & Clean) ── */
        footer {
            background: #ffffff;
            color: var(--text-600);
            padding: 48px 0 24px;
            font-size: 0.85rem;
            border-top: 1px solid rgba(15, 23, 42, 0.05);
        }

        footer a {
            color: var(--text-500);
            text-decoration: none;
            transition: color 0.2s;
        }

        footer a:hover {
            color: var(--green-600);
        }

        .footer-brand-desc {
            font-size: 0.85rem;
            color: var(--text-500);
            line-height: 1.6;
            margin-top: 0.75rem;
            max-width: 280px;
        }

        .footer-col-title {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-900);
            margin-bottom: 0.75rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links li a {
            color: var(--text-600);
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
        }

        .footer-links li a:hover {
            color: var(--green-600);
        }

        .footer-bottom {
            border-top: 1px solid rgba(15, 23, 42, 0.05);
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }
5rem;
            font-weight: 600;
            color: var(--green-600);
        }5rem;
            font-weight: 600;
            color: var(--green-600);
        }

        /* ── ANIMATIONS ── */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .float-anim {
            animation: float 4s ease-in-out infinite;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-up {
            animation: fadeUp 0.6s ease forwards;
        }

        .fade-up-delay-1 {
            animation-delay: 0.15s;
            opacity: 0;
        }

        .fade-up-delay-2 {
            animation-delay: 0.3s;
            opacity: 0;
        }

        .fade-up-delay-3 {
            animation-delay: 0.45s;
            opacity: 0;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 991.98px) {
            .hero {
                padding: 88px 0 56px;
            }
            .phone-mockup {
                max-width: 220px;
            }
            .enemy-section, .benefit-section, .who-section, .how-section {
                padding: 56px 0;
            }
            .omt-section, .cta-section, .volunteer-section {
                padding: 64px 0;
            }
            section[id="kepercayaan"], section[id="jejak-kebaikan"], section[id="kecepatan"] {
                padding: 64px 0 !important;
            }
        }

        @media (max-width: 575.98px) {
            .hero {
                padding: 80px 0 40px;
            }
            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }
            .omt-desc {
                font-size: 0.95rem;
            }
            .enemy-section, .benefit-section, .who-section, .how-section {
                padding: 48px 0;
            }
            .omt-section, .cta-section, .volunteer-section {
                padding: 48px 0;
            }
            section[id="kepercayaan"], section[id="jejak-kebaikan"], section[id="kecepatan"] {
                padding: 48px 0 !important;
            }
            
            /* Center texts on mobile */
            .hero-title, .section-title, .omt-title, .volunteer-title {
                text-align: center;
            }
            .hero-analogy, .section-subtitle, .omt-desc, .volunteer-subtitle {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            section[id="kepercayaan"] .col-lg-6,
            section[id="jejak-kebaikan"] .col-lg-6,
            section[id="kecepatan"] .col-lg-6,
            .hero .col-lg-6,
            .omt-section .col-lg-6 {
                text-align: center;
            }
            .hero .d-flex.flex-column.flex-sm-row.gap-2 {
                justify-content: center;
            }
        }

        /* ── RELAWAN HERO SECTION ── */
        .volunteer-section {
            padding: 80px 0;
            background: linear-gradient(155deg, #0f172a 0%, #1a2e1a 100%);
            position: relative;
            overflow: hidden;
        }

        .volunteer-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
            top: -200px;
            left: -200px;
            pointer-events: none;
        }

        .volunteer-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: var(--green-500);
            border-radius: 999px;
            padding: 0.35rem 1rem;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .volunteer-title {
            font-size: clamp(1.75rem, 4vw, 2.4rem);
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.2;
            color: #f1f5f9;
            margin-bottom: 1rem;
        }

        .volunteer-subtitle {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.8;
            max-width: 540px;
        }

        .volunteer-moment-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 1.75rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
        }

        .volunteer-moment-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-4px);
        }

        .volunteer-moment-before {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #ef4444;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .volunteer-moment-before::before {
            content: '';
            width: 20px;
            height: 2px;
            background: #ef4444;
            display: inline-block;
            border-radius: 2px;
        }

        .volunteer-moment-story {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 1.25rem;
            font-style: italic;
        }

        .volunteer-moment-after {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--green-500);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .volunteer-moment-after::before {
            content: '';
            width: 20px;
            height: 2px;
            background: var(--green-500);
            display: inline-block;
            border-radius: 2px;
        }

        .volunteer-moment-result {
            font-size: 0.95rem;
            color: #e2e8f0;
            font-weight: 600;
            line-height: 1.6;
        }

        .volunteer-emoji {
            font-size: 2rem;
            display: block;
            margin-bottom: 1rem;
        }

        .volunteer-tagline {
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        .volunteer-tagline p {
            font-size: 1.15rem;
            color: #94a3b8;
            margin: 0;
            line-height: 1.7;
        }

        .volunteer-tagline strong {
            color: #f1f5f9;
        }
