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

:root {
    /* Cemara Mas palette — hijau + kuning emas */
    --forest: #1b4332; /* pohon hijau tua */
    --leaf: #2d6a4f; /* hijau medium */
    --sage: #52b788; /* hijau segar */
    --mint: #d8f3dc; /* hijau muda */
    --gold: #e9b84a; /* kuning emas logo */
    --gold-deep: #c8922a;
    --gold-pale: #fef7e0;
    --cream: #fafaf7;
    --white: #ffffff;
    --ink: #0d2318;
    --ink-soft: #2f4539;
    --ink-muted: #6b8c78;
    --border: rgba(27, 67, 50, 0.1);

    /* Program colors */
    --edu: #2563eb;
    --edu-pale: #eff6ff;
    --env: var(--leaf);
    --env-pale: var(--mint);
    --hum: #dc4c4c;
    --hum-pale: #fff0f0;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --shadow: 0 4px 24px rgba(13, 35, 24, 0.1);
    --shadow-lg: 0 12px 48px rgba(13, 35, 24, 0.14);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

.body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── 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);
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.25rem, 5vw, 3.5rem);
    background: rgba(250, 250, 247, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
nav.scrolled {
    box-shadow: 0 4px 20px rgba(13, 35, 24, 0.08);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-name {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.15;
}
.nav-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    transition: all 0.2s;
}
.nav-link:hover {
    background: var(--mint);
    color: var(--forest);
}
.btn-nav-cta {
    margin-left: 0.5rem;
    background: var(--forest);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 0.55rem 1.4rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.25);
}
.btn-nav-cta:hover {
    background: var(--leaf);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.3);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 14px;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--ink-soft);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-btn.active {
    height: 18px;
}

/* ════ DROPDOWN LANGUAGE ════ */
.lang-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--ink);
    color: var(--ink-soft);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: white;
}

.lang-btn .arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.lang-btn.open .arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 130%;
    right: 0;
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 130px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    color: var(--ink-soft);
    text-decoration: none;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-family: "DM Sans", sans-serif;
    transition:
        background 0.2s,
        color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink-soft);
}

.lang-menu a.active {
    color: var(--ink-gold);
    font-weight: 600;
    background: rgba(233, 184, 74, 0.05);
}

/* ── 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;
}
.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;
}
.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;
}
.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;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 3.5rem clamp(1.25rem, 5vw, 3.5rem) 2rem;
}
.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.85rem;
}
.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.footer-logo-name {
    font-family: "Outfit", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}
.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}
.footer-powered {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.2);
}
.footer-col-title {
    font-family: "Outfit", sans-serif;
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.footer-link {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}
.footer-link:hover {
    color: rgba(255, 255, 255, 0.85);
}
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.25);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── 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;
}
.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);
}

/* ── 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;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    /* .nav-links {
        display: none;
    } */
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .nav-link {
        margin: 0 0 12px 0;
        font-size: 1rem;
        width: 100%;
        border: 1px solid var(--border);
    }

    .btn-nav-cta {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .lang-dropdown {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        display: block;
    }

    .lang-btn {
        width: 100%;
        justify-content: space-between;
    }

    .lang-menu {
        width: 100%;
        position: static;
        box-shadow: none;
        margin-top: 10px;
        display: none;
    }

    .lang-menu.show {
        display: block;
    }

    .burger-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
@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;
    }
}
