/* ── UTILITY ── */
.hidden {
    display: none !important;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Outfit", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    background: var(--mint);
    color: var(--forest);
}

/* ── HERO ── */
.hero {
    padding-top: 68px;
    min-height: 100svh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background: var(--forest);
}

/* Animated organic blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: blobFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--leaf);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--gold);
    bottom: -100px;
    left: -50px;
    animation-delay: -3s;
    opacity: 0.2;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--sage);
    top: 40%;
    left: 30%;
    animation-delay: -5s;
    opacity: 0.15;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.97);
    }
}

/* Dot grid texture */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem clamp(1.25rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 184, 74, 0.18);
    border: 1px solid rgba(233, 184, 74, 0.35);
    color: var(--gold);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    animation: slideDown 0.7s ease forwards;
}

.hero-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: white;
    margin-bottom: 1.2rem;
    animation: slideDown 0.7s 0.08s ease both;
    opacity: 0;
}

.hero-title .accent {
    color: var(--gold);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.25rem;
    animation: slideDown 0.7s 0.16s ease both;
    opacity: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideDown 0.7s 0.24s ease both;
    opacity: 0;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--ink);
    border: none;
    border-radius: 100px;
    padding: 0.85rem 2rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 8px 24px rgba(233, 184, 74, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: var(--gold-deep);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(233, 184, 74, 0.45);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    padding: 0.8rem 1.75rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Hero stats strip */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.7s 0.3s ease both;
    opacity: 0;
}

.stat-num {
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
}

/* Hero right — program pills */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: slideDown 0.7s 0.2s ease both;
    opacity: 0;
}

.program-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.program-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.program-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.program-pill:hover::before {
    opacity: 1;
}

.pill-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pi-edu {
    background: rgba(37, 99, 235, 0.3);
}

.pi-env {
    background: rgba(82, 183, 136, 0.3);
}

.pi-hum {
    background: rgba(220, 76, 76, 0.3);
}

.pill-body .pill-name {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.pill-body .pill-meta {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.pill-status {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.22rem 0.65rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    flex-shrink: 0;
}

.ps-active {
    background: rgba(82, 183, 136, 0.25);
    color: var(--sage);
    border: 1px solid rgba(82, 183, 136, 0.3);
}

.ps-progress {
    background: rgba(233, 184, 74, 0.2);
    color: var(--gold);
    border: 1px solid rgba(233, 184, 74, 0.3);
}

.pill-arrow {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.program-pill:hover .pill-arrow {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.3);
    font-family: "Outfit", sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1.5s 1s ease both;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-dot {
    width: 3px;
    height: 6px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    animation: scrollBob 1.6s infinite ease-in-out;
}

@keyframes scrollBob {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    60% {
        transform: translateY(8px);
        opacity: 0;
    }
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem clamp(1.25rem, 5vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
}

/* ── SECTION COMMON ── */
.section-wrap {
    padding: clamp(4rem, 8vh, 7rem) clamp(1.25rem, 5vw, 3.5rem);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-eyebrow {
    font-family: "Outfit", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--sage);
    margin-bottom: 0.65rem;
}

.section-h {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--forest);
}

.section-p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--ink-muted);
    max-width: 520px;
    margin-top: 0.65rem;
}

/* ── PROGRAMS ── */
.programs-bg {
    background: var(--cream);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.75rem;
}

.prog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.prog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.prog-card-top {
    height: 170px;
    display: flex;
    align-items: flex-end;
    padding: 1.1rem;
    position: relative;
    overflow: hidden;
}

.prog-card-top .emoji-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    opacity: 0.13;
    pointer-events: none;
}

.top-edu {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.top-env {
    background: linear-gradient(135deg, var(--forest), var(--sage));
}

.top-hum {
    background: linear-gradient(135deg, #7f1d1d, #ef4444);
}

.prog-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    font-family: "Outfit", sans-serif;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.chip-active {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.chip-wip {
    background: rgba(233, 184, 74, 0.22);
    color: var(--gold);
    border: 1px solid rgba(233, 184, 74, 0.3);
}

.prog-card-body {
    padding: 1.5rem;

    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prog-cat {
    font-family: "Outfit", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.cat-edu {
    color: var(--edu);
}

.cat-env {
    color: var(--env);
}

.cat-hum {
    color: var(--hum);
}

.prog-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.6rem;
    color: var(--ink);
}

.prog-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--ink-muted);
    margin-bottom: 1.1rem;
}

.prog-metrics {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.metric {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 4px;
}

.prog-bar-wrap {
    background: #f0f4f2;
    height: 5px;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.prog-bar-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fill-edu {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.fill-env {
    background: linear-gradient(90deg, var(--forest), var(--sage));
}

.fill-hum {
    background: linear-gradient(90deg, #dc2626, #f97316);
}

.prog-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.825rem;
    color: var(--ink-muted);
    margin-bottom: 1.1rem;
}

.btn-card-donate {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.72rem;
    border-radius: var(--radius-sm);
    border: none;
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: auto;
}

.bcd-edu {
    background: var(--edu-pale);
    color: var(--edu);
}

.bcd-edu:hover {
    background: var(--edu);
    color: white;
    transform: translateY(-1px);
}

.bcd-env {
    background: var(--env-pale);
    color: var(--env);
}

.bcd-env:hover {
    background: var(--env);
    color: white;
    transform: translateY(-1px);
}

.bcd-hum {
    background: var(--hum-pale);
    color: var(--hum);
}

.bcd-hum:hover {
    background: var(--hum);
    color: white;
    transform: translateY(-1px);
}

/* ── IMPACT ── */
.impact-bg {
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.impact-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle,
            rgba(82, 183, 136, 0.1) 1px,
            transparent 1px);
    background-size: 30px 30px;
}

.impact-glow {
    position: absolute;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse,
            rgba(82, 183, 136, 0.12),
            transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(82, 183, 136, 0.25);
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-emoji {
    font-size: 1.75rem;
    margin-bottom: 0.85rem;
}

.impact-num {
    font-family: "Outfit", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.impact-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 5px;
}

/* ── DETAIL TABS ── */
.detail-bg {
    background: var(--white);
}

.tabs-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    transition: all 0.2s;
    color: var(--ink-muted);
}

.tab-btn:hover {
    border-color: var(--sage);
    color: var(--forest);
    background: var(--mint);
}

.tab-btn.tab-edu.on {
    background: var(--edu-pale);
    color: var(--edu);
    border-color: var(--edu);
}

.tab-btn.tab-env.on {
    background: var(--env-pale);
    color: var(--env);
    border-color: var(--env);
}

.tab-btn.tab-hum.on {
    background: var(--hum-pale);
    color: var(--hum);
    border-color: var(--hum);
}

.tab-panel {
    display: none;
    animation: panelIn 0.35s ease;
}

.tab-panel.on {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: start;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-h {
    font-family: "Outfit", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--ink);
}

.detail-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-muted);
    margin-bottom: 1.1rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    padding-left: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.chk-edu {
    background: var(--edu-pale);
    color: var(--edu);
}

.chk-env {
    background: var(--env-pale);
    color: var(--env);
}

.chk-hum {
    background: var(--hum-pale);
    color: var(--hum);
}

.detail-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: none;
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}

.dcta-edu {
    background: var(--edu);
    color: white;
}

.dcta-edu:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

.dcta-env {
    background: var(--env);
    color: white;
}

.dcta-env:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.28);
}

.dcta-hum {
    background: var(--hum);
    color: white;
}

.dcta-hum:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 76, 76, 0.28);
}

.info-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 84px;
}

.info-card-label {
    font-family: "Outfit", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-muted);
    margin-bottom: 1.1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.info-row:last-of-type {
    border-bottom: none;
}

.ir-key {
    color: var(--ink-muted);
}

.ir-val {
    font-weight: 700;
    color: var(--ink);
    text-align: right;
}

.unit-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.unit-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.unit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ud-edu {
    background: var(--edu);
}

.ud-env {
    background: var(--env);
}

.ud-hum {
    background: var(--hum);
}

.ud-warn {
    background: #f59e0b;
}

.ud-grey {
    background: #cbd5e1;
}

.unit-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
}

.unit-status {
    font-size: 0.825rem;
    color: var(--ink-muted);
}

/* ── FAQ ── */
.faq-bg {
    background: var(--mint);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 2.5rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

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

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    gap: 1rem;
    user-select: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--mint);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    transition: all 0.3s;
    color: var(--forest);
    font-weight: 700;
}

.faq-item.open .faq-icon {
    background: var(--forest);
    color: white;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--ink-muted);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 1.25rem 1.1rem;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%,
            rgba(233, 184, 74, 0.15),
            transparent 60%);
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vh, 6rem) clamp(1.25rem, 5vw, 3.5rem);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-title span {
    color: var(--gold);
}

.cta-desc {
    color: rgba(255, 255, 255, 0.58);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(13, 35, 24, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: white;
    border-radius: 26px;
    width: 100%;
    max-width: 430px;
    max-height: 92svh;
    overflow-y: auto;
    transform: translateY(24px) scale(0.96);
    transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 32px 80px rgba(13, 35, 24, 0.25);
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-head {
    padding: 1.35rem 1.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: white;
    z-index: 2;
}

.modal-prog-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.28rem 0.8rem;
    border-radius: 100px;
    font-family: "Outfit", sans-serif;
    font-size: 0.79rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mpb-edu {
    background: var(--edu-pale);
    color: var(--edu);
}

.mpb-env {
    background: var(--env-pale);
    color: var(--env);
}

.mpb-hum {
    background: var(--hum-pale);
    color: var(--hum);
}

.mpb-default {
    background: var(--mint);
    color: var(--forest);
}

.modal-x {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--ink-muted);
    transition: all 0.2s;
}

.modal-x:hover {
    background: #eceae3;
    color: var(--ink);
}

.modal-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

/* Step progress */
.step-bar {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.step-pip {
    height: 4px;
    flex: 1;
    border-radius: 100px;
    background: #eee;
    transition: all 0.3s;
}

.pip-done {
    background: #cdd5d0;
}

.pip-env {
    background: var(--env);
}

.pip-edu {
    background: var(--edu);
}

.pip-hum {
    background: var(--hum);
}

.modal-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.modal-sub {
    font-size: 0.92rem;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}

/* Program selector */
.prog-select-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.prog-select-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0.95rem 1.1rem;
    border-radius: var(--radius-sm) !important;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--cream);
    font-family: "Nunito", sans-serif;
    text-align: left;
    width: 100%;
}

.prog-select-item:hover {
    border-color: var(--sage);
    background: white;
    transform: translateX(3px);
}

.psi-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.psi-name {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink);
}

.psi-meta {
    font-size: 0.82rem;
    color: var(--ink-muted);
}

.psi-arr {
    margin-left: auto;
    color: var(--ink-muted);
    transition: transform 0.2s;
}

.prog-select-item:hover .psi-arr {
    transform: translateX(4px);
    color: var(--forest);
}

/* Amount grid */
.amt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0.85rem;
}

.amt-btn {
    padding: 0.9rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--cream);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: "Nunito", sans-serif;
}

.amt-btn:hover {
    border-color: var(--sage);
    background: white;
    transform: translateY(-2px);
}

.amt-num {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--ink);
    display: block;
}

.amt-desc {
    font-size: 0.82rem;
    color: var(--ink-muted);
    margin-top: 2px;
}

.amt-btn.sel-edu {
    border-color: var(--edu);
    background: var(--edu-pale);
}

.amt-btn.sel-edu .amt-num {
    color: var(--edu);
}

.amt-btn.sel-env {
    border-color: var(--env);
    background: var(--env-pale);
}

.amt-btn.sel-env .amt-num {
    color: var(--env);
}

.amt-btn.sel-hum {
    border-color: var(--hum);
    background: var(--hum-pale);
}

.amt-btn.sel-hum .amt-num {
    color: var(--hum);
}

.custom-amt-wrap {
    position: relative;
}

.custom-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink-muted);
    pointer-events: none;
}

.custom-amt-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    color: var(--ink);
    background: var(--cream);
    outline: none;
    transition: all 0.2s;
}

.custom-amt-input:focus {
    border-color: var(--sage);
    background: white;
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.1);
}

/* Form inputs */
.f-group {
    margin-bottom: 1rem;
}

.f-label {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 0.79rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-muted);
    margin-bottom: 0.45rem;
}

.f-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    color: var(--ink);
    background: var(--cream);
    outline: none;
    transition: all 0.2s;
}

.f-input:focus {
    border-color: var(--sage);
    background: white;
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.1);
}

.f-hint {
    background: var(--mint);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    font-size: 0.89rem;
    color: var(--forest);
    margin-bottom: 1.25rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.5;
}

/* Modal buttons */
.m-btn-row {
    display: flex;
    gap: 8px;
}

.m-btn-back {
    flex-shrink: 0;
    padding: 0.8rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: transparent;
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.m-btn-back:hover {
    background: var(--cream);
    color: var(--ink);
}

.m-btn-primary {
    flex: 1;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    border: none;
    font-family: "Outfit", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    color: white;
}

.m-btn-full {
    width: 100%;
    margin-top: 0;
}

.m-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--forest);
    background: transparent;
    font-family: "Outfit", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--forest);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.m-btn-outline:hover {
    background: var(--mint);
    color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 35, 24, 0.12);
}

.mp-env {
    background: var(--env);
}

.mp-env:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
}

.mp-edu {
    background: var(--edu);
}

.mp-edu:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

.mp-hum {
    background: var(--hum);
}

.mp-hum:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 76, 76, 0.28);
}

.mp-dark {
    background: var(--forest);
}

.mp-dark:hover {
    background: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 35, 24, 0.25);
}

/* QRIS */
.qris-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qris-total-label {
    font-size: 0.88rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

.qris-total-num {
    font-family: "Outfit", sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--forest);
}

.qris-box {
    background: var(--cream);
    border: 2px dashed rgba(27, 67, 50, 0.15);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.qris-img {
    width: 190px;
    height: 190px;
    background: white;
    padding: 8px;
    display: block;
    margin: 0 auto 0.75rem;
    border-radius: 14px;
}

.invoice-pill {
    display: inline-block;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.2rem 0.75rem;
    font-size: 0.81rem;
    font-family: monospace;
    color: var(--ink-muted);
    font-weight: 600;
}

.secure-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .92rem;
    color: var(--ink-muted);
}

.method-icon-qris {
    background: rgba(233, 184, 74, 0.12);
    color: var(--gold-deep);
}

.method-icon-bank {
    background: rgba(82, 183, 136, 0.12);
    color: var(--env);
}

.bank-view-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem;
    margin-bottom: 1rem;
}

.bank-view-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.bank-view-logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(82, 183, 136, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bank-view-bank-name {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.2;
}

.bank-view-bank-sub {
    font-size: 0.72rem;
    color: var(--ink-muted);
    margin-top: 1px;
}

.bank-view-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.bank-view-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    text-align: start;
}

.bank-view-key {
    font-size: 0.75rem;
    color: var(--ink-muted);
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    padding-top: 1px;
}

.bank-view-val {
    font-size: 0.92rem;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    text-align: right;
}

.bank-acc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.bank-acc-number {
    font-family: "DM Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--forest);
    letter-spacing: 2px;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-copy:hover {
    background: var(--mint);
    border-color: var(--sage);
    color: var(--forest);
}

.btn-copy.copied {
    background: var(--env-pale);
    border-color: var(--env);
    color: var(--env);
}

.bank-total-box {
    background: var(--forest);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.bank-total-label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
}

.bank-total-num {
    font-family: "DM Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
}

.bank-invoice-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.bank-invoice-label {
    font-size: 0.72rem;
    color: var(--ink-muted);
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pay-method-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: var(--mint);
    color: var(--forest);
    border: 1px solid rgba(27, 67, 50, 0.12);
    margin-bottom: 1rem;
}

/* Success */
.success-wrap {
    text-align: center;
    padding: 0.5rem 0;
}

.success-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.12rem;
    margin: 0 auto 1.25rem;
}

.si-env {
    background: var(--env-pale);
}

.si-edu {
    background: var(--edu-pale);
}

.si-hum {
    background: var(--hum-pale);
}

.success-h {
    font-family: "Outfit", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.success-p {
    font-size: 0.96rem;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cert-wrap {
    background: var(--mint);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.cert-img {
    width: 130px;
    height: 130px;
    display: block;
    margin: 0 auto 0.6rem;
    border-radius: var(--radius-sm);
    padding: 8px;
    background: white;
}

.cert-note {
    font-family: "Outfit", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--forest);
}

.cert-download-btn {
    margin-bottom: 0.75rem;
}

.chip-blue {
    background: #EFF6FF;
    color: #1E40AF;
    border: 1px solid rgba(30, 64, 175, 0.15);
    padding: 0.18rem 0.55rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ── Card flip visual ── */
.card-flip-wrap {
    perspective: 900px;
    height: 160px;
    margin-bottom: 1.25rem;
    position: relative;
}

.card-flip {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-flip.flipped {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 1.25rem;
}

/* Front face */
.card-front {
    background: linear-gradient(135deg, var(--forest) 0%, var(--leaf) 50%, var(--sage) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-front-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-chip {
    width: 36px;
    height: 26px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-chip-inner {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 2px;
}

.card-chip-cell {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.card-bank-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-number {
    font-family: monospace;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: white;
    margin: 0.5rem 0 0;
}

.card-front-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.55;
    margin-bottom: 2px;
}

.card-value {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.card-network-logo {
    display: flex;
}

.mc-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    opacity: 0.9;
}

.mc-circle.mc-left {
    background: #EB001B;
}

.mc-circle.mc-right {
    background: #F79E1B;
    margin-left: -10px;
}

/* Back face */
.card-back {
    background: linear-gradient(135deg, #0D2318, #1B4332);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-mag-stripe {
    background: rgba(0, 0, 0, 0.5);
    height: 36px;
    margin: 0 -1.25rem;
    margin-top: 0.25rem;
}

.card-cvv-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 0.5rem;
}

.card-cvv-label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
}

.card-cvv-box {
    background: white;
    border-radius: 5px;
    padding: 0.35rem 0.75rem;
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    text-align: right;
    letter-spacing: 0.2em;
}

.card-back-network {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
}

.card-back-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Card type selector ── */
.card-type-row {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.ct-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--ink-muted);
}

.ct-chip:hover {
    border-color: var(--sage);
    color: var(--ink);
}

.ct-chip.active {
    border-color: #1A56DB;
    background: #EFF6FF;
    color: #1E40AF;
}

.ct-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Midtrans note ── */
.midtrans-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    background: #F0F7FF;
    border: 1px solid rgba(30, 64, 175, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
}

.midtrans-logo img {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: white;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
    margin-top: 1px;
}

.midtrans-text {
    font-size: 0.76rem;
    color: #1E40AF;
    line-height: 1.55;
}

.midtrans-text strong {
    font-family: 'Outfit', sans-serif;
}

/* ── Form input: card number monospace ── */
.finput.card-num-input {
    letter-spacing: 0.08em;
    font-family: monospace;
    font-size: 0.95rem;
    padding-right: 2.5rem;
}

/* Input state: validated ok */
.finput.ok {
    border-color: var(--env);
}

/* Input icon overlay (network logo / checkmark) */
.input-suffix {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: -3px;
}

.input-mc-s {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: 0.85;
}

.input-mc-s.left {
    background: #EB001B;
}

.input-mc-s.right {
    background: #F79E1B;
    margin-left: -5px;
}

/* ── Pay button ── */
.btn-pay-card {
    flex: 1;
    padding: 0.82rem;
    border-radius: var(--radius-sm);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    color: white;
    background: #1A56DB;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.btn-pay-card:hover {
    background: #1447BA;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(26, 86, 219, 0.28);
}

.btn-pay-card:disabled {
    background: #93A8D8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── Security strip ── */
.security-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.sec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: var(--ink-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* ── Processing state ── */
.processing-view {
    text-align: center;
    padding: 2rem 0 1rem;
}

.proc-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--mint);
    border-top-color: var(--env);
    border-radius: 50%;
    animation: cardSpinner 0.8s linear infinite;
    margin: 0 auto 1.25rem;
}

@keyframes cardSpinner {
    to {
        transform: rotate(360deg);
    }
}

.proc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 0.35rem;
}

.proc-sub {
    font-size: 0.82rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* ── ANIMATIONS ── */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-right {
        display: none;
    }

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

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-panel.on {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-card {
        position: static;
    }

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

@media (max-width: 560px) {
    .hero-stats {
        gap: 2rem;
    }

    .trust-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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