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

html,
body {
    height: 100%;
}

:root {
    --bg: #07070a;
    --card: #0f1117;
    --card2: #0c0f14;
    --text: #f5f7ff;
    --muted: #b9c0d4;

    --red: #ff2d55;
    --pink: #ff4bd8;
    --gold: #ffd54a;
    --cyan: #34d2ff;
    --green: #3dff9a;

    --stroke: rgba(255, 255, 255, .10);
    --stroke2: rgba(255, 255, 255, .14);

    --shadow: 0 18px 50px rgba(0, 0, 0, .55);
    --radius: 18px;
}

body {
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(1200px 600px at 10% 0%, rgba(255, 45, 85, .18), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(52, 210, 255, .16), transparent 60%),
        radial-gradient(800px 500px at 50% 100%, rgba(255, 213, 74, .12), transparent 60%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .55;
    animation: floaty 10s ease-in-out infinite;
}

.orb-1 {
    width: 340px;
    height: 340px;
    left: -120px;
    top: 120px;
    background: rgba(255, 45, 85, .45);
}

.orb-2 {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 40px;
    background: rgba(52, 210, 255, .40);
    animation-delay: -3s;
}

.orb-3 {
    width: 380px;
    height: 380px;
    left: 30%;
    bottom: -180px;
    background: rgba(255, 213, 74, .34);
    animation-delay: -6s;
}

@keyframes floaty {

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

    50% {
        transform: translateY(-18px) translateX(10px) scale(1.04);
    }
}

/* ===== WRAP ===== */
.page-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    min-height: 100vh;
}

/* ===== TOP HEADER ===== */
.top-header {
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border-bottom: 1px solid var(--stroke);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 46px;
    height: auto;
    object-fit: contain;
}

.brand-name {
    font-weight: 900;
    letter-spacing: .8px;
    font-size: 20px;
}

.brand-name span {
    color: var(--red);
}

.brand-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.header-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pill {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
}

.pill-green {
    box-shadow: 0 0 0 1px rgba(61, 255, 154, .15);
}

.pill-gold {
    box-shadow: 0 0 0 1px rgba(255, 213, 74, .15);
}

/* ===== HERO ===== */
.hero {
    padding: 18px 16px 10px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 45, 85, .35);
    background: linear-gradient(90deg, rgba(255, 45, 85, .28), rgba(52, 210, 255, .12));
    box-shadow: 0 10px 30px rgba(255, 45, 85, .12);
}

.hero-title {
    margin-top: 10px;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: .2px;
}

.hero-title span {
    background: linear-gradient(90deg, var(--red), var(--pink), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 56ch;
}

.trust-row {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-item {
    display: flex;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    box-shadow: var(--shadow);
}

.trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    border: 1px solid var(--stroke);
}

.trust-title {
    font-weight: 800;
    font-size: 13px;
}

.trust-desc {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.hero-cta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, background .18s ease;
    will-change: transform;
}

.btn-primary {
    color: #0b0b0b;
    border-color: rgba(255, 213, 74, .55);
    background: linear-gradient(90deg, var(--gold), #ffe27b, var(--gold));
    box-shadow: 0 14px 40px rgba(255, 213, 74, .18), 0 0 0 1px rgba(255, 213, 74, .12);
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0px) scale(.99);
}

.btn-ghost {
    color: var(--text);
    border-color: var(--stroke2);
    background: rgba(0, 0, 0, .18);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .06);
}

.btn-wide {
    width: 100%;
}

.btn-shine {
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .38) 15%, transparent 30%);
    transform: translateX(-120%);
    opacity: .7;
}

.btn-primary:hover .btn-shine {
    animation: shine 1.2s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

.btn-pulse {
    animation: softPulse 2.2s ease-in-out infinite;
}

@keyframes softPulse {

    0%,
    100% {
        box-shadow: 0 14px 40px rgba(255, 213, 74, .18), 0 0 0 1px rgba(255, 213, 74, .10);
    }

    50% {
        box-shadow: 0 18px 56px rgba(255, 213, 74, .28), 0 0 0 1px rgba(255, 213, 74, .18);
    }
}

.mini-proof {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mini-proof-item {
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
}

.mp-num {
    font-weight: 900;
    font-size: 16px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mp-label {
    margin-top: 2px;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* hero right card */
.hero-card {
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card-top {
    padding: 14px 14px 10px;
    border-bottom: 1px solid var(--stroke);
}

.hero-card-title {
    font-weight: 900;
    font-size: 14px;
}

.hero-card-sub {
    margin-top: 2px;
    font-size: 12px;
    color: var(--muted);
}

.hero-media img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    display: block;
}

.hero-card-bottom {
    padding: 12px 14px 14px;
}

.callout {
    display: flex;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 45, 85, .25);
    background: rgba(255, 45, 85, .08);
    margin-bottom: 10px;
}

.callout-badge {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    border: 1px solid var(--stroke);
}

.callout-text {
    font-size: 12px;
    color: var(--text);
    line-height: 1.5;
}

.promo-img {
    margin-top: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    box-shadow: var(--shadow);
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 18px 16px;
    border-top: 1px solid var(--stroke);
}

.section-dark {
    background: rgba(0, 0, 0, .10);
}

.section-gradient {
    background: radial-gradient(800px 420px at 20% 0%, rgba(52, 210, 255, .12), transparent 60%),
        radial-gradient(900px 480px at 80% 20%, rgba(255, 45, 85, .14), transparent 65%),
        rgba(0, 0, 0, .08);
}

.section-cta {
    background: radial-gradient(900px 500px at 50% 0%, rgba(255, 213, 74, .12), transparent 60%),
        rgba(0, 0, 0, .10);
}

.section-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.section-title.center {
    text-align: center;
}

.section-text {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

.section-text.center {
    text-align: center;
}

/* checklist */
.checklist {
    margin-top: 12px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist li {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    font-size: 12.5px;
    line-height: 1.6;
    position: relative;
    padding-left: 40px;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 14px;
    top: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(61, 255, 154, .10);
    border: 1px solid rgba(61, 255, 154, .25);
    color: var(--green);
    font-weight: 900;
}

.highlight-box {
    margin-top: 12px;
    padding: 12px 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 213, 74, .22);
    background: rgba(255, 213, 74, .07);
    box-shadow: var(--shadow);
    font-size: 12.5px;
    line-height: 1.7;
}

.highlight-sub {
    margin-top: 6px;
    color: var(--muted);
}

/* cards */
.card-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.card {
    padding: 14px 14px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
    transition: transform .18s ease, border-color .18s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .18);
}

.card-ico {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .22);
    border: 1px solid var(--stroke);
    margin-bottom: 10px;
}

.card h3 {
    font-size: 14px;
    font-weight: 900;
}

.card p {
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
}

.card-foot {
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, .80);
    opacity: .9;
}

/* video */
.video-wrapper {
    margin-top: 12px;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: #000;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.video-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .92;
    transform: scale(1.02);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
}

.play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-38%, -50%);
    width: 0;
    height: 0;
    border-left: 22px solid #d60000;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.04);
}

.video-note {
    margin-top: 10px;
    font-size: 11px;
    color: var(--muted);
}

.video-note code {
    color: var(--gold);
}

/* form */
.form-shell {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.form-left {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .16);
    box-shadow: var(--shadow);
}

.form-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.proof-pill {
    font-size: 11px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .04);
}

.form-steps {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step {
    display: flex;
    gap: 10px;
    align-items: center;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 213, 74, .12);
    border: 1px solid rgba(255, 213, 74, .22);
    color: var(--gold);
    font-weight: 900;
}

.step-text {
    font-size: 12.5px;
    color: var(--text);
    opacity: .92;
}

.cta-form {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
}

.form-row {
    margin-bottom: 10px;
}

.form-row label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .86);
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 11px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .25);
    color: var(--text);
    font-size: 13px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

textarea {
    min-height: 88px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 213, 74, .45);
    box-shadow: 0 0 0 4px rgba(255, 213, 74, .12);
    transform: translateY(-1px);
}

.hint {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

.btn-submit {
    width: 100%;
    margin-top: 6px;
}

.form-footnote {
    margin-top: 10px;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.6;
}

/* pos */
.pos-mangkal {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .16);
    box-shadow: var(--shadow);
}

.pos-mangkal h3 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
}

.pos-mangkal ul {
    padding-left: 18px;
    color: var(--muted);
}

.pos-mangkal li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* review */
.review-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.review-card {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    box-shadow: var(--shadow);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-star {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .06em;
}

.review-score {
    color: rgba(255, 255, 255, .86);
    font-weight: 900;
}

.review-name {
    font-weight: 900;
    font-size: 13px;
}

.review-text {
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.7;
}

/* footer */
.footer-wrap {
    padding: 18px 16px 26px;
    border-top: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .16);
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.footer-title {
    font-weight: 900;
}

.footer-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
}

.footer-col {
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
}

.footer-head {
    font-weight: 900;
    margin-bottom: 8px;
}

.footer-link {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
    line-height: 1.5;
}

.footer-link a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, .25);
}

.footer-a {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-a:hover {
    color: var(--text);
}

.footer-copy {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    text-align: center;
}

/* fixed CTA */
.fixed-action-wrap {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 9999;
}

.btn-fixed {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    border: 1px solid var(--stroke2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
    transition: transform .18s ease, filter .18s ease;
}

.btn-fixed-wa {
    background: linear-gradient(90deg, var(--gold), #ffe27b, var(--gold));
    color: #0b0b0b;
    border-color: rgba(255, 213, 74, .55);
}

.btn-fixed-call {
    background: rgba(0, 0, 0, .28);
    color: var(--text);
}

.btn-fixed:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

/* ping effect */
.ping {
    position: absolute;
    right: -6px;
    top: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(61, 255, 154, .35);
    animation: ping 1.6s infinite;
}

@keyframes ping {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 255, 154, .35);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(61, 255, 154, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(61, 255, 154, 0);
    }
}

/* reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* responsive */
@media (min-width: 820px) {
    .hero-inner {
        grid-template-columns: 1.15fr .85fr;
        align-items: start;
    }

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

    .review-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-shell {
        grid-template-columns: .9fr 1.1fr;
        align-items: start;
    }

    .footer-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 420px) {
    .fixed-action-wrap {
        width: 100%;
        justify-content: center;
    }

    .btn-fixed {
        padding: 12px 14px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 26px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-wrap {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.about-card {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
}

.about-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 213, 74, .25);
    background: rgba(255, 213, 74, .10);
    color: rgba(255, 255, 255, .92);
    margin-bottom: 10px;
}

.about-badge-2 {
    border-color: rgba(61, 255, 154, .25);
    background: rgba(61, 255, 154, .10);
}

.about-title {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.about-text {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

.about-owner {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
}

.owner-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    border: 1px solid var(--stroke);
}

.owner-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.owner-name {
    font-weight: 900;
    margin-top: 2px;
}

.about-list {
    margin-top: 10px;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 13px;
}

.about-list li {
    margin-bottom: 6px;
}

.about-note {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(52, 210, 255, .20);
    background: rgba(52, 210, 255, .08);
}

/* ===== FAQ ACCORDION ===== */
.faq-wrap {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .2px;
}

.faq-q:hover {
    background: rgba(255, 255, 255, .04);
}

.faq-arrow {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .22);
    transition: transform .2s ease;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    border-top: 1px solid var(--stroke);
}

.faq-a p {
    padding: 12px 12px;
    font-size: 12.5px;
    line-height: 1.75;
    color: var(--muted);
}

.faq-item.is-open .faq-a {
    max-height: 220px;
    /* cukup untuk jawaban normal */
}

.faq-item.is-open .faq-arrow {
    transform: rotate(180deg);
}

/* responsive about */
@media (min-width: 820px) {
    .about-wrap {
        grid-template-columns: 1fr 1fr;
    }
}


/* ===== PRICE SECTION ===== */
.price-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.price-cardx {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
    transition: transform .18s ease, border-color .18s ease;
}

.price-cardx:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .18);
}

.price-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.price-title {
    font-weight: 900;
    font-size: 14px;
}

.price-badge {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 45, 85, .22);
    background: rgba(255, 45, 85, .10);
}

.price-from {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 213, 74, .22);
    background: rgba(255, 213, 74, .08);
    margin-bottom: 10px;
}

.price-from-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .85);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 800;
}

.price-from-value {
    margin-top: 4px;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
}

.price-desc {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 12px;
}

.price-note-box {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(52, 210, 255, .20);
    background: rgba(52, 210, 255, .08);
    box-shadow: var(--shadow);
}

.price-note-title {
    font-weight: 900;
    margin-bottom: 6px;
}

.price-note-text {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
}

.price-extra-list {
    margin-top: 10px;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 12.5px;
}

.price-extra-list li {
    margin-bottom: 6px;
}

.price-cta {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-cta-text {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
}

@media (min-width: 820px) {
    .price-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}