/* Jodi Retail — landing (jodiretail.jokuldigital.com) — tema ceria */
:root {
    --bg-deep: #1e3a5f;
    --bg-card: #ffffff;
    --bg-soft: #fff8f4;
    --bg-sky: #eef8ff;
    --text: #1a2b3c;
    --text-on-dark: #f8fbff;
    --muted: #5a6578;
    --muted-dark: #7a8699;
    --accent: #ff7a45;
    --accent-hover: #ff925f;
    --accent-2: #2eb8e6;
    --accent-mint: #5ed9c0;
    --ok: #2ecc71;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 18px 48px rgba(46, 90, 120, 0.12);
    --shadow-soft: 0 8px 28px rgba(46, 90, 120, 0.08);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body.nav-open {
    overflow: hidden;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(ellipse 90% 50% at 100% 0%, rgba(255, 200, 180, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 0% 30%, rgba(140, 220, 255, 0.28) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(200, 180, 255, 0.2) 0%, transparent 45%),
        linear-gradient(180deg, #fffdfb 0%, #f7fbff 38%, #fff9f5 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-2);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 251, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(46, 90, 120, 0.08);
    box-shadow: 0 4px 24px rgba(46, 90, 120, 0.04);
}

.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    width: min(100% - 1.5rem, var(--max));
    margin-inline: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    text-decoration: none;
}
.brand:hover {
    color: var(--accent);
    text-decoration: none;
}
.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}
.brand-logo-img {
    display: none;
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0;
}
.brand-logo-img.is-loaded {
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.site-nav a:hover {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(46, 90, 120, 0.12);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #e86b2b 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 138, 76, 0.4);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #f07840 100%);
    text-decoration: none;
    color: #fff;
}

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    border: 2px solid rgba(255, 122, 69, 0.45);
    box-shadow: 0 4px 16px rgba(255, 138, 76, 0.12);
}
.btn-ghost-light:hover {
    background: #fff;
    border-color: var(--accent);
    text-decoration: none;
    color: #e85a20;
}

/* Tombol sekunder di area terang (hero, kartu) */
.btn-hero-outline {
    background: #fff;
    color: var(--text);
    border: 2px solid rgba(46, 90, 120, 0.12);
    box-shadow: var(--shadow-soft);
}
.btn-hero-outline:hover {
    border-color: var(--accent-2);
    color: var(--accent-2);
    text-decoration: none;
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(26, 43, 60, 0.15);
}
.btn-outline-dark:hover {
    border-color: var(--accent);
    color: var(--accent);
    text-decoration: none;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .site-nav {
        position: fixed;
        inset: 56px 0 0 0;
        background: linear-gradient(180deg, #fffdfb 0%, #f3f9ff 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
        box-shadow: -8px 0 32px rgba(46, 90, 120, 0.08);
    }
    .site-nav.is-open {
        transform: translateX(0);
    }
    .site-nav a {
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
    }
    .site-nav a:hover {
        background: rgba(255, 138, 76, 0.1);
    }
    .site-nav .btn {
        margin-top: 0.75rem;
        justify-content: center;
    }
}

/* ——— Hero ——— */
.hero {
    position: relative;
    background: linear-gradient(165deg, #fff5ef 0%, #e8f6ff 42%, #fdf8ff 100%);
    color: var(--text);
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 55% at 85% 15%, rgba(255, 180, 140, 0.45) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 5% 70%, rgba(120, 210, 255, 0.35) 0%, transparent 48%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(200, 170, 255, 0.22) 0%, transparent 45%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-badges {
        justify-content: center;
    }
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-lead {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 38rem;
}

@media (max-width: 960px) {
    .hero-lead {
        margin-inline: auto;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-version {
    background: linear-gradient(135deg, rgba(46, 184, 230, 0.2) 0%, rgba(94, 217, 192, 0.18) 100%);
    color: #0d6b8a;
    border: 1px solid rgba(46, 184, 230, 0.35);
}

.badge-stack {
    background: rgba(255, 255, 255, 0.85);
    color: var(--muted);
    border: 1px solid rgba(46, 90, 120, 0.1);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-visual {
    position: relative;
}

.hero-visual .frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.9);
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual .frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-placeholder {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}
.hero-placeholder strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.35rem;
}

.hero-glow {
    position: absolute;
    width: 60%;
    height: 40%;
    bottom: -10%;
    right: -5%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    opacity: 0.2;
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

/* ——— Sections ——— */
section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section-title {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-lead {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    color: var(--muted);
}

/* Section pastel untuk modul, ulasan, FAQ */
.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 100%),
        linear-gradient(160deg, #e8f4fc 0%, #fff5f0 48%, #f3f0ff 100%);
    color: var(--text);
}
.section-soft .section-lead {
    color: var(--muted);
}
.section-soft .section-title {
    color: var(--text);
}

/* Trust strip */
.trust-strip {
    background: #fff;
    border-bottom: 1px solid rgba(26, 43, 60, 0.08);
    padding: 1.25rem 0;
    box-shadow: var(--shadow-soft);
}

.trust-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
}

.trust-inner span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.trust-inner .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ok);
}

/* Cards grid */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .cards-3 {
        grid-template-columns: 1fr;
    }
}

/* Katalog fitur: empat pilar */
.cards-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .cards-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .cards-4 {
        grid-template-columns: 1fr;
    }
}

.card .card-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-2);
    margin-bottom: 0.35rem;
}

/* Strip perangkat & OS */
.device-strip {
    margin-top: 2.25rem;
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 246, 255, 0.9) 100%);
    border: 1px solid rgba(46, 90, 120, 0.1);
    box-shadow: var(--shadow-soft);
}

.device-strip h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    color: var(--text);
}

.device-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.device-chips span {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 138, 76, 0.22);
    color: var(--muted);
    box-shadow: 0 2px 8px rgba(46, 90, 120, 0.04);
}

.fitur-version {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 43, 60, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26, 43, 60, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(255, 138, 76, 0.15) 0%, rgba(76, 201, 240, 0.12) 100%);
}

.card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
}

/* Feature list blocks */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block:nth-child(even) .feature-text {
    order: 2;
}
.feature-block:nth-child(even) .feature-shot {
    order: 1;
}

@media (max-width: 800px) {
    .feature-block,
    .feature-block:nth-child(even) .feature-text,
    .feature-block:nth-child(even) .feature-shot {
        grid-template-columns: 1fr;
        order: unset !important;
    }
}

/* Blok Laporan: satu kolom + kisi menu seperti di aplikasi */
.feature-block--laporan {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-block--laporan:nth-child(even) .feature-text--laporan-intro,
.feature-block--laporan:nth-child(even) .laporan-layout {
    order: unset;
}

.feature-text--laporan-intro {
    max-width: 68ch;
}

.feature-text--laporan-intro .lead {
    margin-bottom: 0;
}

.laporan-layout {
    display: grid;
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    gap: clamp(1.35rem, 3.5vw, 2.25rem);
    align-items: start;
}

@media (min-width: 901px) {
    .feature-shot--laporan {
        position: sticky;
        top: 1.25rem;
    }
}

@media (max-width: 900px) {
    .laporan-layout {
        grid-template-columns: 1fr;
    }

    .feature-shot--laporan {
        max-width: 560px;
        margin-inline: auto;
        position: static;
    }
}

.report-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
    gap: 0.85rem 1.05rem;
    align-items: stretch;
}

.report-grid-section {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0.5rem 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid rgba(46, 90, 120, 0.12);
}

.report-grid-section:first-child {
    padding-top: 0;
}

.report-grid-section:not(:first-child) {
    margin-top: 0.35rem;
}

.report-card {
    margin: 0;
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(46, 90, 120, 0.09);
    box-shadow: 0 6px 22px rgba(46, 90, 120, 0.07);
    border-left: 3px solid rgba(255, 138, 76, 0.5);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.report-card-title {
    margin: 0 0 0.45rem;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.38;
    color: var(--text);
}

.report-card-desc {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.58;
    color: var(--muted);
    flex: 1;
}

.feature-text h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
}

.feature-text .lead {
    color: var(--muted);
    margin: 0 0 1rem;
}

.feature-text ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text);
}

.feature-text li {
    margin-bottom: 0.45rem;
}

.section-soft .feature-text .lead {
    color: var(--muted);
}
.section-soft .feature-text li {
    color: var(--text);
}
.section-soft .feature-text h2 {
    color: var(--text);
}

.section-soft .feature-text > ul {
    margin: 0.35rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.section-soft .feature-text > ul li {
    margin-bottom: 0.4rem;
}

.shot-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(46, 90, 120, 0.1);
    background: #fff;
    aspect-ratio: 16 / 10;
}

.shot-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.shot-fallback {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    background: linear-gradient(160deg, #eef6ff 0%, #fff5ef 50%, #f5f0ff 100%);
    border: 1px dashed rgba(46, 90, 120, 0.2);
}
.shot-fallback code {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #0d6b8a;
    word-break: break-all;
}

/* Payment pills */
.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 48rem;
    margin: 0 auto;
}

.pill {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 230, 215, 0.9) 0%, rgba(220, 242, 255, 0.85) 100%);
    border: 1px solid rgba(255, 138, 76, 0.2);
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 2px 10px rgba(46, 90, 120, 0.06);
}

/* Ulasan pengguna (teks + inisial, tanpa banyak gambar) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem 1.25rem;
    align-items: stretch;
}

@media (max-width: 960px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 36rem;
        margin-inline: auto;
    }
}

.review-card {
    margin: 0;
    padding: 1.25rem 1.35rem 1.2rem;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 43, 60, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.review-quote {
    margin: 0 0 1.1rem;
    font-size: 0.95rem;
    line-height: 1.58;
    color: var(--text);
    font-style: normal;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(46, 90, 120, 0.1);
}

.review-avatar {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    box-shadow: 0 2px 10px rgba(46, 90, 120, 0.12);
}

.review-avatar--a {
    background: linear-gradient(145deg, #ff8a4c 0%, #e85d2a 100%);
}

.review-avatar--b {
    background: linear-gradient(145deg, #3d9fd6 0%, #1a6fa0 100%);
}

.review-avatar--c {
    background: linear-gradient(145deg, #8b7fd6 0%, #5c4db3 100%);
}

.review-who {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.review-name {
    font-size: 0.9rem;
    font-weight: 800;
    font-style: normal;
    color: var(--text);
}

.review-role {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--muted);
}

/* Utilitas aksesibilitas */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Beli / CTA + ketentuan order */
.section-order {
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(180deg, #f8fbff 0%, #fff8f5 45%, #f5f9fc 100%);
}

.order-cta {
    max-width: 44rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-cta__card {
    background: #fff;
    border-radius: var(--radius);
    padding: clamp(1.35rem, 3vw, 1.85rem);
    border: 2px solid rgba(255, 138, 76, 0.35);
    box-shadow: 0 12px 40px rgba(255, 138, 76, 0.12);
}

.order-cta__bullets {
    margin: 0 0 1.25rem;
    padding-left: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text);
}

.order-cta__bullets li {
    margin-bottom: 0.5rem;
}

.order-cta__price-block {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(46, 90, 120, 0.1);
}

.order-cta__price-was {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    color: var(--muted);
}

.order-cta__price-was s {
    text-decoration-thickness: 2px;
}

.order-cta__price-now {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.order-cta__price-note {
    margin: 0.6rem 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--muted);
    max-width: 28rem;
    margin-inline: auto;
}

.order-cta__countdown-wrap {
    text-align: center;
}

.order-cta__countdown-label {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.order-cta__countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1rem;
}

.order-cta__cd {
    min-width: 4.25rem;
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    background: linear-gradient(160deg, #f0f6fc 0%, #e8f0f8 100%);
    border: 1px solid rgba(46, 90, 120, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.order-cta__cd span:first-child {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.order-cta__cd small {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.order-cta__tz {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    color: var(--muted);
}

.order-cta__expired-msg {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text);
    text-align: center;
    padding: 0.75rem;
    background: rgba(46, 90, 120, 0.06);
    border-radius: var(--radius-sm);
}

.order-terms {
    background: #fff;
    border-radius: var(--radius);
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border: 1px solid rgba(26, 43, 60, 0.1);
    box-shadow: var(--shadow-soft);
}

.order-terms__heading {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.order-terms__intro {
    margin: 0 0 0.85rem;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--muted);
}

.order-terms__box {
    max-height: min(22rem, 52vh);
    overflow-y: auto;
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(46, 90, 120, 0.1);
    background: linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
    -webkit-overflow-scrolling: touch;
}

.order-terms__list {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--text);
}

.order-terms__list > li {
    margin-bottom: 1rem;
}

.order-terms__list > li:last-child {
    margin-bottom: 0;
}

.order-terms__list p {
    margin: 0.35rem 0 0;
}

.order-terms__list ul {
    margin: 0.45rem 0 0;
    padding-left: 1.1rem;
}

.order-terms__list ul li {
    margin-bottom: 0.35rem;
}

.order-terms__sub {
    margin-top: 0.45rem !important;
}

.order-gate {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
}

.order-gate__label {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.45;
    cursor: pointer;
    color: var(--text);
}

.order-gate__label input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--accent);
}

.order-gate__error {
    margin: 0;
    font-size: 0.82rem;
    color: #b42318;
    font-weight: 600;
}

.order-cta__checkout {
    text-align: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.25rem;
    font-weight: 700;
}

.order-cta__checkout--locked {
    opacity: 0.45;
    cursor: not-allowed;
}

.order-cta__checkout:not(.order-cta__checkout--locked) {
    opacity: 1;
    cursor: pointer;
}

/* FAQ */
.faq {
    max-width: 720px;
    margin: 0 auto;
}

.faq details {
    background: #fff;
    border-radius: var(--radius-sm);
    margin-bottom: 0.65rem;
    border: 1px solid rgba(26, 43, 60, 0.08);
    overflow: hidden;
}

.faq summary {
    padding: 1rem 1.15rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 400;
}
.faq details[open] summary::after {
    content: '−';
}

.faq .answer {
    padding: 0 1.15rem 1rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-soft .faq details {
    background: #fff;
    border-color: rgba(46, 90, 120, 0.1);
    box-shadow: 0 4px 16px rgba(46, 90, 120, 0.05);
}
.section-soft .faq summary {
    color: var(--text);
}
.section-soft .faq .answer {
    color: var(--muted);
}

/* CTA band */
.cta-band {
    text-align: center;
    padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
    background: linear-gradient(125deg, #ffb088 0%, #ff8a9b 38%, #7dd3fc 100%);
    color: #fff;
    border-radius: var(--radius);
    margin: 0 auto;
    width: min(100% - 2rem, var(--max));
    box-shadow: 0 20px 48px rgba(255, 130, 120, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.cta-band h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.cta-band p {
    margin: 0 0 1.25rem;
    opacity: 0.96;
    max-width: 32rem;
    margin-inline: auto;
}

.cta-band .btn-ghost-light {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
    text-shadow: none;
}
.cta-band .btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
    border-color: #fff;
}

.cta-band .cta-note,
.cta-band .cta-note a {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: none;
}
.cta-band .cta-note a {
    text-decoration: underline;
    font-weight: 600;
}
.cta-band .cta-note a:hover {
    color: #fff;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Footer */
.site-footer {
    background: linear-gradient(165deg, #3d5a80 0%, #2c4a6e 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 2.5rem 0 2rem;
    font-size: 0.9rem;
}

.site-footer a {
    color: #9ee5ff;
}
.site-footer a:hover {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer h4 {
    color: #fff;
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer .logo-line {
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 0.82rem;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Tech list */
.tech-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.tech-item {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 1rem 1.15rem;
    border: 1px solid rgba(46, 90, 120, 0.1);
    box-shadow: var(--shadow-soft);
}

.tech-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.tech-item span {
    font-size: 0.88rem;
    color: var(--muted);
}

/* Pembayaran: daftar penjelasan */
.pay-detail {
    max-width: 48rem;
    margin: 0 auto 1.75rem;
}

.pay-detail-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.6;
}

.pay-detail-list li {
    margin-bottom: 0.5rem;
}

[id^='modul-'] {
    scroll-margin-top: 72px;
}
