/**
 * Landing home — stats, how-it-works (between partners & footer flow)
 */
.stats-landing {
    position: relative;
    padding: 70px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f2ec 100%);
    overflow: hidden;
}
.stats-landing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2303532c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.9;
    pointer-events: none;
}
.stats-landing .container {
    position: relative;
    z-index: 1;
}
.stats-heading {
    text-align: center;
    margin-bottom: 36px;
}
.stats-heading span {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(3, 83, 44, 0.1);
    color: var(--cf-green, #03532c);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.stats-heading h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--cf-ink, #0f172a);
}
.stat-card-landing {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(3, 83, 44, 0.12);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card-landing:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(3, 83, 44, 0.12);
}
.stat-card-landing .stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #03532c 0%, #024526 100%);
    color: #fff;
    font-size: 26px;
}
.stat-card-landing .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.stat-card-landing .stat-label {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.brand-area {
    padding: 28px 0 8px;
    background: #fff;
}
.partner-band {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
    gap: 28px 40px;
    align-items: center;
    padding: 28px 0 36px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.partner-band-copy span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(3, 83, 44, 0.1);
    color: var(--cf-green, #03532c);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.partner-band-copy h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--cf-ink, #0f172a);
}
.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}
.partner-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 16px 14px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.partner-logo-card img {
    max-width: 132px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.22s ease, opacity 0.22s ease;
}
.partner-logo-card:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: rgba(3, 83, 44, 0.28);
    box-shadow: 0 14px 32px rgba(3, 83, 44, 0.1);
}
.partner-logo-card:hover img {
    filter: none;
    opacity: 1;
}

.how-it-works-landing {
    position: relative;
    padding-bottom: 30px;
}
.how-step-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px 28px;
    height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.how-step-card:hover {
    border-color: rgba(3, 83, 44, 0.25);
    box-shadow: 0 12px 40px rgba(3, 83, 44, 0.08);
}
.how-step-card .step-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #03532c;
    margin-bottom: 12px;
}
.how-step-card .step-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #e8f2ec;
    color: #024526;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}
.how-step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0f172a;
}
.how-step-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #64748b;
}

/* Home hero — circular visual kept, surfaces and type modernized */
#landing-hero.banner-another {
    background-image: none;
    background:
        radial-gradient(900px 480px at 82% 18%, rgba(3, 83, 44, 0.1), transparent 58%),
        radial-gradient(640px 380px at 8% 88%, rgba(3, 83, 44, 0.06), transparent 60%),
        linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
}
#landing-hero .banner-ptb {
    padding-top: 132px;
    padding-bottom: 110px;
}
#landing-hero .banner-text > span {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(3, 83, 44, 0.1);
    color: var(--cf-green, #03532c);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
#landing-hero .banner-text .head-width {
    max-width: 16ch;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--cf-ink, #0f172a);
}
#landing-hero .banner-text p {
    max-width: 42ch;
    margin-bottom: 32px;
    color: var(--cf-muted, #64748b);
    line-height: 1.75;
}
#landing-hero .banner-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
#landing-hero .banner-btn .default-btn {
    margin-left: 0;
    font-weight: 600;
}
#landing-hero .banner-img-3 {
    margin-top: 120px;
    display: flex;
    justify-content: center;
}

#landing-hero .hero-visual {
    position: relative;
    width: min(100%, 540px);
}
#landing-hero .hero-visual-photo {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 6px solid #fff;
    padding: 0;
    background: #023820;
    box-shadow:
        0 0 0 1px rgba(3, 83, 44, 0.08),
        0 22px 50px rgba(2, 56, 32, 0.18);
}
#landing-hero .hero-visual-glow {
    position: absolute;
    inset: 8% 8%;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 83, 44, 0.28) 0%, transparent 70%);
    filter: blur(18px);
}
#landing-hero .hero-visual-ring {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border: 1.5px solid rgba(3, 83, 44, 0.16);
    pointer-events: none;
}
#landing-hero .hero-visual-ring--inner {
    inset: -4%;
}
#landing-hero .hero-visual-ring--outer {
    inset: -11%;
    border-color: rgba(3, 83, 44, 0.1);
}
#landing-hero .hero-visual-orb {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    border: 2px solid currentColor;
    background: transparent;
    pointer-events: none;
}
#landing-hero .hero-visual-orb--a {
    width: 22px;
    height: 22px;
    top: 12%;
    left: 6%;
    color: #1e3a8a;
}
#landing-hero .hero-visual-orb--b {
    width: 16px;
    height: 16px;
    bottom: 18%;
    left: 22%;
    color: #dc2626;
}
#landing-hero .hero-visual-orb--c {
    width: 14px;
    height: 14px;
    top: 8%;
    right: 18%;
    color: #7c3aed;
}

#landing-hero .banner-social-icon .banner-icon-tag {
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    line-height: 1;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
#landing-hero .banner-social-icon .banner-icon-tag img {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
}
#landing-hero .banner-social-icon .banner-icon-tag:hover {
    animation: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}
#landing-hero .banner-social-icon .banner-icon1 {
    top: 16%;
    right: 14%;
    animation: hero-icon-float 5.2s ease-in-out infinite;
}
#landing-hero .banner-social-icon .banner-icon2 {
    top: 38%;
    right: 2%;
    animation: hero-icon-float 5.8s ease-in-out 0.35s infinite;
}
#landing-hero .banner-social-icon .banner-icon3 {
    top: 40%;
    right: 24%;
    animation: hero-icon-float 6.1s ease-in-out 0.7s infinite;
}
#landing-hero .banner-social-icon .banner-icon4 {
    top: 62%;
    right: 10%;
    animation: hero-icon-float 5.5s ease-in-out 0.2s infinite;
}

@keyframes hero-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.theme-dark #landing-hero.banner-another {
    background:
        radial-gradient(900px 480px at 82% 18%, rgba(110, 231, 183, 0.12), transparent 58%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
}
.theme-dark #landing-hero.banner-another::before {
    display: none;
}
.theme-dark #landing-hero .banner-text > span {
    background: rgba(110, 231, 183, 0.12);
    color: #6ee7b7 !important;
}
.theme-dark #landing-hero .banner-text .head-width {
    color: #fff;
}
.theme-dark #landing-hero .hero-visual-photo {
    border-color: #1f2937;
    box-shadow:
        0 0 0 1px rgba(110, 231, 183, 0.16),
        0 22px 50px rgba(0, 0, 0, 0.4);
}
.theme-dark #landing-hero .hero-visual-ring {
    border-color: rgba(110, 231, 183, 0.18);
}
.theme-dark #landing-hero .hero-visual-glow {
    background: radial-gradient(circle, rgba(110, 231, 183, 0.22) 0%, transparent 70%);
}
.theme-dark #landing-hero .banner-social-icon .banner-icon-tag {
    background: #1f2937;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
    #landing-hero .banner-ptb {
        padding-top: 110px;
        padding-bottom: 36px;
    }
    #landing-hero .banner-img-3 {
        margin-top: 12px;
    }
    #landing-hero .hero-visual {
        width: min(88%, 420px);
        margin: 0 auto 24px;
    }
    #landing-hero .banner-social-icon .banner-icon-tag {
        width: 58px;
        height: 58px;
    }
    #landing-hero .banner-social-icon .banner-icon-tag img {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 767px) {
    #landing-hero .hero-visual-ring,
    #landing-hero .hero-visual-orb,
    #landing-hero .banner-social-icon {
        display: none;
    }
    #landing-hero .banner-text .head-width {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    #landing-hero .banner-social-icon .banner-icon-tag {
        animation: none;
    }
}

.cta-form-landing .submission-title {
    margin-bottom: 0;
}
.cta-form-landing .submission-title .cta-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.cta-form-landing .submission-title h2 {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.cta-form-landing .submission-title .cta-lead {
    max-width: 520px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.55;
}
.cta-form-landing .submission-form {
    margin-top: 1.5rem;
}

/* Service cards — Boxicons (mengganti PNG) */
.service-area .service-card .service-icon-link {
    display: block;
    text-decoration: none;
}
.service-area .service-card .service-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 17px;
    border-radius: 20px;
    background: linear-gradient(145deg, #e6f7ed 0%, #f4fcf7 100%);
    color: #03532c;
    font-size: 2.5rem;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease,
        box-shadow 0.35s ease;
    box-shadow: 0 4px 14px rgba(0, 154, 82, 0.12);
}
.service-area .service-card .service-icon-wrap i,
.service-area .service-card .service-icon-wrap iconify-icon {
    line-height: 1;
}
.service-area .service-card:hover .service-icon-wrap {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 991px) {
    .partner-band {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 12px 0 28px;
    }
}

@media (max-width: 767px) {
    .stat-card-landing .stat-number {
        font-size: 1.85rem;
    }
    .how-step-card {
        margin-bottom: 8px;
    }
    .service-area .service-card .service-icon-wrap {
        width: 76px;
        height: 76px;
        font-size: 2.1rem;
    }
    .partner-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.theme-dark .brand-area {
    background: #0f172a;
}
.theme-dark .partner-band {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.theme-dark .partner-band-copy span,
.theme-dark .stats-heading span {
    background: rgba(110, 231, 183, 0.12);
    color: #6ee7b7;
}
.theme-dark .partner-band-copy h2,
.theme-dark .stats-heading h2 {
    color: #fff;
}
.theme-dark .partner-logo-card {
    background: #1f2937;
    border-color: rgba(255, 255, 255, 0.08);
}
.theme-dark .partner-logo-card:hover {
    background: #111827;
    border-color: rgba(110, 231, 183, 0.28);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
.theme-dark .partner-logo-card img {
    filter: grayscale(1) brightness(1.15);
    opacity: 0.8;
}
.theme-dark .partner-logo-card:hover img {
    filter: none;
    opacity: 1;
}
