@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --oren: #f49827;
    --oren-dark: #d97706;
    --oren-light: #fff7ed;
    --ijo: #009d66;
    --ijo-dark: #006b3c;
    --ijo-mid: #00874c;
    --ijo-light: #e8f5ee;
    --bg: #f5f7fa;
    --text: #111827;
    --muted: #6b7280;
    --border: #e4e9f2;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter Tight', sans-serif;
    background: var(--white);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* ── TICKER ── */
.ticker-bar {
    background: var(--ijo-dark);
    padding: 7px 0;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
    white-space: nowrap;
}
.ticker-inner {
    display: inline-block;
    animation: ticker 30s linear infinite;
}
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.ticker-inner span {
    margin: 0 36px;
}

/* ── NAVBAR ── */
.main-nav {
    background: #fff;
    border-bottom: 2px solid var(--oren);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-brand img {
    height: 42px;
}
.nav-brand-text strong {
    display: block;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.nav-brand-text span {
    font-size: 12px;
    color: var(--oren);
    font-weight: 600;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 10px;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.15s;
}
.nav-link:hover {
    background: var(--bg);
    color: var(--text);
}
.nav-link.active {
    background: var(--ijo-light);
    color: var(--ijo-dark);
    font-weight: 600;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--oren);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.18s;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cta:hover {
    background: var(--oren-dark);
}
.nav-cta svg {
    width: 16px;
    height: 16px;
}

/* ── HAMBURGER ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    transition: border-color 0.15s;
}
.nav-hamburger:hover {
    border-color: var(--oren);
}
.nav-hamburger span {
    display: block;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition:
        transform 0.25s,
        opacity 0.25s;
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 48;
    opacity: 0;
    transition: opacity 0.25s;
}
.mobile-nav-overlay.open {
    opacity: 1;
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
    position: fixed;
    top: 68px; /* tinggi navbar */
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 49;
    padding: 12px 16px 20px;
    display: none;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}
.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
}
.mobile-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    padding: 11px 14px;
    border-radius: 10px;
    transition:
        background 0.15s,
        color 0.15s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--ijo-light);
    color: var(--ijo-dark);
    font-weight: 600;
}
.mobile-nav-cta {
    margin-top: 8px;
    justify-content: center;
}

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--ijo-dark) 0%, var(--ijo-mid) 60%, var(--ijo-dark) 100%),
        url('https://res.cloudinary.com/dmcvht1vr/image/upload/v1775804215/kota_dyz54h.png');

    background-repeat: no-repeat;
    background-size: cover, cover;
    background-position: center, bottom;
    padding: 80px 0 120px;
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 59px,
            rgba(255, 255, 255, 1) 59px,
            rgba(255, 255, 255, 1) 60px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 59px,
            rgba(255, 255, 255, 1) 59px,
            rgba(255, 255, 255, 1) 60px
        );
}
.hero-blob-1 {
    position: absolute;
    top: 5%;
    right: 10%;
    width: 40vw;
    height: 40vw;
    max-width: 600px;
    max-height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 157, 102, 0.25), transparent 70%);
    animation: blobFloat 18s ease-in-out infinite;
    pointer-events: none;
}
.hero-blob-2 {
    position: absolute;
    bottom: -5%;
    left: 5%;
    width: 35vw;
    height: 35vw;
    max-width: 500px;
    max-height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 152, 39, 0.18), transparent 70%);
    animation: blobFloat 22s ease-in-out infinite reverse;
    pointer-events: none;
}
.hero::after {
    left: 0;
    right: 0;
    clip-path: ellipse(55% 100% at 50% 100%);
    content: '';
    position: absolute;
    bottom: 0;
    height: 120px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    -webkit-user-select: none;
}

/* ── Hero decorations ── */
.hero-city {
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    object-position: bottom center;
    opacity: 0;
    z-index: 0;
    animation: cityReveal 1.8s ease 0.3s forwards;
}

.hero-monas {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: clamp(200px, 24vw, 360px);
    opacity: 0;
    animation:
        monasReveal 1.4s ease 0.8s forwards,
        monasFloat 9s ease-in-out 2.2s infinite;
    z-index: 1;
}

.hero-bundaran {
    bottom: 10px;
    left: 36%;
    height: clamp(90px, 11vw, 160px);
    opacity: 0;
    animation:
        bundReveal 1.3s ease 1.1s forwards,
        bundFloat 7s ease-in-out 2.4s infinite;
    z-index: 1;
}

.hero-ondel {
    bottom: 30px;
    height: clamp(240px, 28vw, 400px);
    opacity: 0;
    animation: ondelReveal 1.2s ease 0.5s forwards;
}

.hero-ondel-l {
    left: -8px;
    transform-origin: bottom center;
    animation:
        ondelRevealL 1.2s ease 0.5s forwards,
        ondelSwayL 5s ease-in-out 1.7s infinite;
}

.hero-ondel-r {
    right: -8px;
    transform-origin: bottom center;
    animation:
        ondelRevealR 1.2s ease 0.7s forwards,
        ondelSwayR 6s ease-in-out 1.9s infinite;
}

.hero-pancoran {
    bottom: 10px;
    left: 62%;
    height: clamp(90px, 11vw, 160px);
    opacity: 0;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
    animation:
        pancoranReveal 1.4s ease 1.2s forwards,
        pancoranFloat 8s ease-in-out 2.6s infinite;
    z-index: 1;
}

/* ── Keyframes ── */
@keyframes cityReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.07;
    }
}
@keyframes monasReveal {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.96);
    }
    to {
        opacity: 0.13;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}
@keyframes monasFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}
@keyframes bundReveal {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.94);
    }
    to {
        opacity: 0.15;
        transform: translateY(0) scale(1);
    }
}
@keyframes bundFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}
@keyframes ondelRevealL {
    from {
        opacity: 0;
        transform: translateX(-20px) rotate(-3deg);
    }
    to {
        opacity: 0.18;
        transform: translateX(0) rotate(-1deg);
    }
}
@keyframes ondelRevealR {
    from {
        opacity: 0;
        transform: translateX(20px) scaleX(-1) rotate(-3deg);
    }
    to {
        opacity: 0.14;
        transform: translateX(0) scaleX(-1) rotate(-1deg);
    }
}
@keyframes ondelSwayL {
    0%,
    100% {
        transform: rotate(-1.5deg);
    }
    50% {
        transform: rotate(1.5deg);
    }
}
@keyframes ondelSwayR {
    0%,
    100% {
        transform: scaleX(-1) rotate(-1.5deg);
    }
    50% {
        transform: scaleX(-1) rotate(1.5deg);
    }
}
@keyframes pancoranReveal {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.95);
    }
    to {
        opacity: 0.15;
        transform: translateY(0) scale(1);
    }
}
@keyframes pancoranFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes blobFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -15px) scale(1.04);
    }
    66% {
        transform: translate(-15px, 10px) scale(0.97);
    }
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 5px 16px 5px 12px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
}
.hero h1 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 .gradient-text {
    background: linear-gradient(90deg, #6ee7a0, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--oren);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        background 0.18s,
        transform 0.1s;
}
.btn-primary:hover {
    background: var(--oren-dark);
}
.btn-primary:active {
    transform: scale(0.97);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-decoration: none;
    transition: background 0.18s;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}
.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ijo);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s;
}
.btn-green:hover {
    background: var(--ijo-mid);
}

/* ── HERO CARDS ── */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.hero-card {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 20px;
    transition: background 0.2s;
}
.hero-card:hover {
    background: rgba(255, 255, 255, 0.15);
}
.hero-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.hero-card-icon svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.8);
}
.hero-card h3 {
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 6px;
}
.hero-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.6;
}

/* ── STAT BAR ── */
.stat-bar-section {
    background:
        var(--bg),
        url('https://res.cloudinary.com/dmcvht1vr/image/upload/v1775804215/kota_dyz54h.png');

    background-repeat: no-repeat;
    background-size: cover, cover;

    /* 🔑 ini kuncinya */
    background-position: center, calc(100% + 120px);
    padding-top: 0;
}
.stat-bar {
    max-width: 1100px;
    margin: -48px auto 0;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}
.stat-bar-inner {
    background: linear-gradient(90deg, var(--ijo-dark), var(--ijo-mid));
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 107, 60, 0.22);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide: divide;
}
.stat-item {
    padding: 26px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item:last-child {
    border-right: none;
}
.stat-item svg {
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 auto 8px;
    display: block;
}
.stat-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 3px;
    font-family: 'Instrument Sans', sans-serif;
}
.stat-item span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.45);
}

/* ── SECTION BASE ── */
.section {
    padding: 72px 0;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--ijo-light);
    border: 1px solid rgba(0, 107, 60, 0.18);
    color: var(--ijo-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ijo);
    display: inline-block;
}
.section-badge-oren {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--oren-light);
    border: 1px solid rgba(244, 152, 39, 0.25);
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.badge-dot-oren {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--oren);
    display: inline-block;
}
.section-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.25;
}
.section-sub {
    font-size: 15.5px;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ── ABOUT GRID ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.accent-bar {
    width: 4px;
    min-height: 100%;
    background: linear-gradient(180deg, var(--oren), var(--ijo));
    border-radius: 4px;
    flex-shrink: 0;
}
.blockquote-wrap {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}
.blockquote-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
}
.law-pill {
    background: var(--ijo-light);
    border-left: 3px solid var(--ijo);
    border-radius: 0 10px 10px 0;
    padding: 10px 16px;
    margin-bottom: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ijo-dark);
}
.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.ic {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ic svg {
    width: 22px;
    height: 22px;
}
.ic-green {
    background: var(--ijo-light);
    border: 1px solid rgba(0, 107, 60, 0.15);
    color: var(--ijo-dark);
}
.ic-navy {
    background: var(--ijo-light);
    border: 1px solid rgba(0, 107, 60, 0.12);
    color: var(--ijo-dark);
}
.ic-oren {
    background: var(--oren-light);
    border: 1px solid rgba(244, 152, 39, 0.2);
    color: var(--oren-dark);
}
.func-item {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
}
.func-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--oren);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.func-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── STEPS ── */
.steps-bg {
    background: #fff;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    align-items: start;
}
.step-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
    height: 100%;
}
.step-wrap:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 23px;
    left: 50%;
    width: 100%;
    height: 2px;
    transform: translateX(23px);
    background: linear-gradient(90deg, var(--ijo), var(--oren));
    opacity: 0.18;
}
.step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ijo), var(--ijo-dark));
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0, 107, 60, 0.3);
    position: relative;
    z-index: 1;
}
.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 18px;
    width: 100%;

    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
        box-shadow 0.18s,
        border-color 0.18s,
        transform 0.18s;
}
.step-card:hover {
    box-shadow: 0 10px 30px rgba(0, 107, 60, 0.1);
    border-color: var(--ijo);
    transform: translateY(-4px);
}
.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--ijo-light);
    border: 1px solid rgba(0, 107, 60, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.step-icon svg {
    width: 20px;
    height: 20px;
    color: var(--ijo-dark);
}
.step-card h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.35;
}
.step-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
    flex-grow: 1;
}
.step-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 12px;
    background: var(--oren-light);
    color: #92400e;
    border: 1px solid rgba(244, 152, 39, 0.2);
    margin-top: auto;
}

/* ── REQUIREMENTS ── */
.req-bg {
    background: var(--bg);
}
.req-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.req-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition:
        box-shadow 0.18s,
        transform 0.18s;
}
.req-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.req-card-head {
    padding: 20px;
}
.req-card-head-blue {
    background: linear-gradient(135deg, var(--oren-light), #fde68a33);
    border-bottom: 1px solid rgba(244, 152, 39, 0.25);
}
.req-card-head-green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-bottom: 1px solid #a7f3d0;
}
.req-card-head-oren {
    background: linear-gradient(135deg, var(--oren-light), #fde68a22);
    border-bottom: 1px solid rgba(244, 152, 39, 0.2);
}
.req-card-head-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.req-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.req-ic svg {
    width: 22px;
    height: 22px;
}
.req-ic-blue {
    background: #fff;
    border: 1px solid rgba(244, 152, 39, 0.35);
    color: var(--oren-dark);
}
.req-ic-green {
    background: #fff;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.req-ic-oren {
    background: #fff;
    border: 1px solid rgba(244, 152, 39, 0.3);
    color: var(--oren-dark);
}
.req-head-title {
    font-weight: 700;
    font-size: 14px;
}
.req-head-title-blue {
    color: #92400e;
}
.req-head-title-green {
    color: #064e3b;
}
.req-head-title-oren {
    color: #92400e;
}
.req-head-sub {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
}
.req-head-sub-blue {
    color: var(--oren);
}
.req-head-sub-green {
    color: #059669;
}
.req-head-sub-oren {
    color: var(--oren);
}
.req-body {
    padding: 18px 20px;
}
.req-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
    color: var(--text);
}
.req-item:last-child {
    border-bottom: none;
}
.req-check {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.req-check-blue {
    background: var(--oren-light);
    color: var(--oren-dark);
}
.req-check-green {
    background: #d1fae5;
    color: #065f46;
}
.req-check svg {
    width: 12px;
    height: 12px;
}

/* ── LACAK SECTION ── */
.lacak-bg {
    background: #fff;
}
.lacak-card {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.search-input {
    background: rgba(255, 255, 255, 0.97);
    border: 1.5px solid var(--border);
    border-radius: 13px;
    padding: 14px 16px 14px 44px;
    font-size: 14px;
    font-family: 'Inter Tight', monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    width: 100%;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    outline: none;
}
.search-input:focus {
    border-color: var(--oren);
    box-shadow: 0 0 0 4px rgba(244, 152, 39, 0.14);
}
.search-input::placeholder {
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--muted);
    font-weight: 400;
}
.search-wrap {
    position: relative;
    flex: 1;
}
.search-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}
.search-row {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
}
.format-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    margin-top: 20px;
}
.format-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.format-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.format-item {
    padding: 12px 14px;
    border-radius: 12px;
}
.format-blue {
    background: var(--oren-light);
    border: 1px solid rgba(244, 152, 39, 0.25);
}
.format-green {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}
.format-item p:first-child {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.format-blue p:first-child {
    color: var(--oren);
}
.format-green p:first-child {
    color: #059669;
}
.format-item code {
    font-size: 13.5px;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
    font-family: monospace;
}
.format-blue code {
    color: #92400e;
}
.format-green code {
    color: #064e3b;
}
.format-item small {
    font-size: 10px;
    color: var(--muted);
}
.lacak-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 20px;
}
.lacak-tip {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
}
.lacak-tip-green {
    background: var(--ijo-light);
    border: 1px solid rgba(0, 107, 60, 0.15);
}
.lacak-tip-blue {
    background: var(--oren-light);
    border: 1px solid rgba(244, 152, 39, 0.22);
}
.lacak-tip-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lacak-tip-icon-green {
    background: #fff;
    border: 1px solid rgba(0, 107, 60, 0.15);
    color: var(--ijo-dark);
}
.lacak-tip-icon-blue {
    background: #fff;
    border: 1px solid rgba(244, 152, 39, 0.3);
    color: var(--oren-dark);
}
.lacak-tip-icon svg {
    width: 16px;
    height: 16px;
}
.lacak-tip-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}
.lacak-tip-title-green {
    color: var(--ijo-dark);
}
.lacak-tip-title-blue {
    color: #92400e;
}
.lacak-tip-body {
    font-size: 12px;
    line-height: 1.6;
}
.lacak-tip-body-green {
    color: var(--ijo-mid);
}
.lacak-tip-body-blue {
    color: var(--oren-dark);
}
.error-box {
    display: flex;
    align-items: start;
    gap: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 20px;
}
.error-box svg {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 1px;
}
.error-box p {
    font-size: 13.5px;
    font-weight: 500;
    color: #b91c1c;
}

/* ── CTA BANNER ── */
.cta-section {
    background: var(--bg);
    padding: 56px 0;
}
.cta-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.cta-inner {
    background: linear-gradient(135deg, var(--ijo-dark), var(--ijo-mid));
    border-radius: 24px;
    padding: 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(244, 152, 39, 0.08);
}
.cta-inner > * {
    position: relative;
    z-index: 1;
}
.cta-inner .sub {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}
.cta-inner h2 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.cta-inner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s;
}
.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}
.cta-btn-outline svg {
    width: 16px;
    height: 16px;
}
.cta-btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 12px;
    background: var(--ijo-mid);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s;
}
.cta-btn-fill:hover {
    background: var(--ijo);
}
.cta-btn-fill svg {
    width: 16px;
    height: 16px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.au {
    opacity: 0;
    animation: fadeUp 0.6s ease both;
}
.au-1 {
    animation-delay: 0.1s;
}
.au-2 {
    animation-delay: 0.22s;
}
.au-3 {
    animation-delay: 0.34s;
}
.au-4 {
    animation-delay: 0.46s;
}

/* ── VALIDATION ── */
.field-error {
    color: #ef4444;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .step-wrap:not(:last-child)::after {
        display: none;
    }
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-cards {
        grid-template-columns: 1fr 1fr;
    }
    .hero-card:nth-child(n + 3) {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .req-grid {
        grid-template-columns: 1fr;
    }
    .stat-bar-inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 639px) {
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .mobile-nav-overlay {
        display: block;
    }
    .mobile-nav {
        display: flex;
    }

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

    .stat-bar-inner {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        padding: 18px 12px;
    }
    .stat-item strong {
        font-size: 12px;
    }
    .stat-item span {
        font-size: 10.5px;
    }

    .hero-cards {
        display: grid;
    }
    .hero-card:nth-child(n + 3) {
        display: none;
    }

    .hero-monas {
        height: clamp(140px, 34vw, 220px);
    }
    .hero-bundaran {
        display: none;
    }
    .hero-pancoran {
        display: none;
    }
    .hero-ondel {
        height: clamp(160px, 40vw, 240px);
    }
    .hero-ondel-l {
        animation: ondelRevealL 1.2s ease 0.5s forwards;
    }
    .hero-ondel-r {
        animation: ondelRevealR 1.2s ease 0.7s forwards;
    }

    .search-row {
        flex-direction: column;
    }
    .format-grid {
        grid-template-columns: 1fr;
    }
    .lacak-tips {
        grid-template-columns: 1fr;
    }
    .lacak-card {
        padding: 24px 20px;
    }
    .cta-inner {
        padding: 36px 24px;
    }
    .ticker-bar {
        font-size: 10px;
    }
}
