/* ═══════════════════════════════════════════════════════════════
   REVRES PLAY — Landing Page Styles
   Modern gaming-aesthetic with neon accents, glassmorphism,
   and fully responsive 12-col layout system.
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Palette */
    --bg: #0a0e1a;
    --bg-2: #0e1322;
    --bg-3: #131829;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    /* Text */
    --text: #e6eaf2;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Brand accents (neon) */
    --neon-cyan: #06b6d4;
    --neon-cyan-glow: rgba(6, 182, 212, 0.45);
    --neon-purple: #7c3aed;
    --neon-purple-glow: rgba(124, 58, 237, 0.5);
    --neon-pink: #ec4899;
    --neon-green: #10b981;
    --neon-amber: #f59e0b;

    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #ec4899 0%, #7c3aed 50%, #06b6d4 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, var(--neon-purple-glow), transparent 70%);

    /* Type */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

    /* Radii */
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Shadow */
    --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.3);
    --shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 30px 60px -12px rgba(0, 0, 0, 0.5);

    /* Layout */
    --container: 1240px;
    --nav-h: 72px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: 0; /* allow flex/grid items to shrink below content size */
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: clip; /* `clip` is more robust than `hidden` for sticky-nav layouts */
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    overflow-wrap: break-word; /* long URLs / unbreakable strings won't blow out layout */
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ───────────────────────────────────────────────
   BUTTONS
   ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn i {
    font-size: 1.15em;
    line-height: 1;
}

.btn--primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 28px -8px var(--neon-purple-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -8px var(--neon-purple-glow), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn--ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
    backdrop-filter: blur(12px);
}

.btn--ghost:hover {
    background: var(--surface-2);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn--xl {
    padding: 16px 28px;
    font-size: 1.05rem;
}

.btn--block {
    display: flex;
    width: 100%;
}

/* ───────────────────────────────────────────────
   NAV
   ─────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 50;
    transition: background 0.25s ease, border-bottom 0.25s ease;
    border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(18px) saturate(120%);
    border-bottom-color: var(--border);
}

.nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    line-height: 1;
}

.nav__logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.35));
    transition: filter 0.2s ease, transform 0.2s ease;
}

.nav__brand:hover .nav__logo-img {
    filter: drop-shadow(0 4px 18px rgba(124, 58, 237, 0.55));
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .nav__logo-img {
        height: 32px;
    }
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.15s ease;
    position: relative;
}

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

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

.nav__toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ───────────────────────────────────────────────
   HERO
   ─────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: calc(var(--nav-h) + 60px) 0 100px;
    overflow: hidden;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.45;
    pointer-events: none;
}

.hero__glow--1 {
    top: -120px;
    left: -120px;
    width: 480px;
    height: 480px;
    background: var(--neon-purple);
}

.hero__glow--2 {
    top: 100px;
    right: -150px;
    width: 540px;
    height: 540px;
    background: var(--neon-cyan);
}

.hero__glow--3 {
    bottom: -180px;
    left: 30%;
    width: 600px;
    height: 600px;
    background: var(--neon-pink);
    opacity: 0.22;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    max-width: 620px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.05); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.hero__title-accent {
    background: var(--gradient-accent);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero__sub strong {
    color: var(--text);
    font-weight: 600;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero__perks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.hero__perks i {
    color: var(--neon-green);
    margin-right: 4px;
}

/* Hero visual */
.hero__visual {
    position: relative;
}

.hero__mockup {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(124, 58, 237, 0.2);
    transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.5s ease;
}

.hero__mockup:hover {
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) translateY(-4px);
}

.hero__mockup-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-3);
    border-bottom: 1px solid var(--border);
}

.hero__mockup-bar > span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.hero__mockup-bar > span:nth-child(1) { background: #ef4444; }
.hero__mockup-bar > span:nth-child(2) { background: #f59e0b; }
.hero__mockup-bar > span:nth-child(3) { background: #10b981; }

.hero__mockup-url {
    flex: 1;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-family: var(--font-display);
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.hero__mockup-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
}

.hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(20, 25, 41, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    color: var(--text);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.hero__float--booking {
    top: 22%;
    left: -36px;
    animation-delay: 0s;
}

.hero__float--revenue {
    bottom: 18%;
    right: -36px;
    animation-delay: 1.5s;
}

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

.hero__float-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.18);
    color: var(--neon-purple);
    font-size: 1.2rem;
}

.hero__float-icon--green {
    background: rgba(16, 185, 129, 0.18);
    color: var(--neon-green);
}

.hero__float-title {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.1;
}

.hero__float small {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ───────────────────────────────────────────────
   TRUST STRIP
   ─────────────────────────────────────────────── */
.trust {
    padding: 50px 0 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.trust__label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.trust__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust__stat {
    text-align: center;
}

.trust__stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.trust__stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust__stat small {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ───────────────────────────────────────────────
   SECTION HEAD (reusable)
   ─────────────────────────────────────────────── */
.section-head {
    margin-bottom: 56px;
}

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

.section-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.section-title em {
    font-style: normal;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

/* ───────────────────────────────────────────────
   PAIN POINTS
   ─────────────────────────────────────────────── */
.pain {
    padding: 110px 0;
}

.pain__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain__card {
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pain__card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(239, 68, 68, 0.04);
}

.pain__card > i {
    font-size: 2.2rem;
    color: var(--neon-amber);
    margin-bottom: 16px;
    display: inline-block;
}

.pain__card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.pain__card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ───────────────────────────────────────────────
   PILLARS
   ─────────────────────────────────────────────── */
.pillars {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.pillar {
    position: relative;
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.pillar:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.pillar--featured {
    background:
        linear-gradient(180deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.05)),
        var(--surface);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 60px -20px var(--neon-purple-glow);
}

.pillar__badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 5px 12px;
    background: var(--gradient-primary);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px -8px var(--neon-purple-glow);
}

.pillar__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 22px;
}

.pillar__icon--cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--neon-cyan);
    box-shadow: 0 0 32px -8px var(--neon-cyan-glow);
}

.pillar__icon--purple {
    background: rgba(124, 58, 237, 0.18);
    color: var(--neon-purple);
    box-shadow: 0 0 32px -8px var(--neon-purple-glow);
}

.pillar__icon--green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--neon-green);
    box-shadow: 0 0 32px -8px rgba(16, 185, 129, 0.4);
}

.pillar__icon--pink {
    background: rgba(236, 72, 153, 0.15);
    color: var(--neon-pink);
    box-shadow: 0 0 32px -8px rgba(236, 72, 153, 0.4);
}

.pillar__icon--amber {
    background: rgba(245, 158, 11, 0.15);
    color: var(--neon-amber);
    box-shadow: 0 0 32px -8px rgba(245, 158, 11, 0.4);
}

.pillar h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.pillar > p {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.6;
}

.pillar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pillar ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text);
}

.pillar ul li i {
    color: var(--neon-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Bottom highlight banner — "yang bikin susah ditolak" */
.pillars__highlight {
    margin: 60px auto 0;
    max-width: 1080px;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 28px 34px;
    background:
        radial-gradient(circle at 0% 50%, rgba(124, 58, 237, 0.22), transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(6, 182, 212, 0.18), transparent 50%),
        rgba(15, 19, 32, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: var(--r-xl);
    box-shadow: 0 30px 60px -20px rgba(124, 58, 237, 0.3);
    flex-wrap: wrap;
}

.pillars__highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 12px 28px -8px var(--neon-purple-glow);
}

.pillars__highlight-text {
    flex: 1;
    min-width: 280px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
}

.pillars__highlight-text strong {
    color: #fff;
    font-weight: 700;
}

.pillars__highlight-text em {
    font-style: italic;
    color: var(--neon-cyan);
    font-weight: 500;
}

.pillars__highlight .btn {
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .pillars__highlight {
        padding: 22px 20px;
        gap: 18px;
        text-align: center;
        flex-direction: column;
    }
    .pillars__highlight-text {
        min-width: 0;
        font-size: 0.95rem;
    }
    .pillars__highlight .btn {
        width: 100%;
    }
}

/* ───────────────────────────────────────────────
   INLINE CTA BANNER (reusable, repeating CTA blocks)
   ─────────────────────────────────────────────── */
.inline-cta {
    margin: 60px auto 0;
    max-width: 920px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 22px 28px;
    background:
        linear-gradient(90deg, rgba(124, 58, 237, 0.18), rgba(6, 182, 212, 0.12)),
        var(--surface);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: var(--r-xl);
    box-shadow: 0 20px 40px -16px rgba(124, 58, 237, 0.25);
    flex-wrap: wrap;
}

.inline-cta--center {
    justify-content: space-between;
}

.inline-cta__text {
    flex: 1;
    min-width: 220px;
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.55;
}

.inline-cta__text strong {
    display: block;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.inline-cta .btn {
    flex-shrink: 0;
}

/* ───────────────────────────────────────────────
   COMPARISON — Sebelum vs Sesudah
   Two-column comparison with center "topic" label.
   On mobile collapses to stacked rows.
   ─────────────────────────────────────────────── */
.compare {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.compare__wrap {
    margin-top: 50px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

/* Sticky-ish header with red/green columns */
.compare__head {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    align-items: center;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.08), transparent 40%, transparent 60%, rgba(16, 185, 129, 0.08));
    border-bottom: 1px solid var(--border);
    padding: 18px 28px;
}

.compare__head-col {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.compare__head-col i {
    font-size: 1.4rem;
}

.compare__head-col--bad {
    color: #fca5a5;
}
.compare__head-col--bad i {
    color: #ef4444;
}

.compare__head-col--good {
    color: #6ee7b7;
    justify-self: end;
}
.compare__head-col--good i {
    color: var(--neon-green);
}

.compare__head-spacer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Rows */
.compare__row {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.compare__row:last-child {
    border-bottom: none;
}

.compare__row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.compare__bad,
.compare__good {
    padding: 22px 28px;
    font-size: 0.97rem;
    line-height: 1.6;
    position: relative;
}

.compare__bad {
    color: rgba(252, 165, 165, 0.92);
    border-right: 1px solid var(--border);
}

.compare__bad::before {
    content: '✕';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 10px;
    vertical-align: -3px;
}

.compare__good {
    color: rgba(167, 243, 208, 0.95);
    border-left: 1px solid var(--border);
    margin-left: -1px; /* avoid double border */
}

.compare__good::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 10px;
    vertical-align: -3px;
}

.compare__topic {
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    text-align: center;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    letter-spacing: -0.005em;
}

.compare__topic i {
    font-size: 1.4rem;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

/* Mobile collapse */
@media (max-width: 900px) {
    .compare__head {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .compare__head-spacer {
        display: none;
    }
    .compare__head-col--good {
        justify-self: end;
    }
    .compare__row {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .compare__topic {
        order: -1; /* topic appears at top of each row */
        padding: 14px 18px;
        background: rgba(124, 58, 237, 0.08);
        border-left: none;
        border-right: none;
        border-bottom: 1px solid var(--border);
        justify-content: flex-start;
        font-size: 1rem;
    }
    .compare__bad,
    .compare__good {
        border-right: none;
        border-left: none;
        padding: 18px 22px;
    }
    .compare__bad {
        border-bottom: 1px solid var(--border);
    }
}

/* ───────────────────────────────────────────────
   FEATURES DEEP-DIVE
   ─────────────────────────────────────────────── */
.features {
    padding: 110px 0;
    background: var(--bg-2);
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 100px;
}

.feature:first-of-type {
    margin-top: 80px;
}

.feature--reverse .feature__copy {
    order: 2;
}

.feature__num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 0.2em;
    margin-bottom: 14px;
}

.feature__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.feature__desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 26px;
}

.feature__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.96rem;
    color: var(--text);
}

.feature__list li i {
    color: var(--neon-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature__list strong {
    color: #fff;
    font-weight: 600;
}

/* Feature visual */
.feature__visual {
    position: relative;
}

.device-mockup {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg);
}

.device-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.08));
    pointer-events: none;
    z-index: 1;
}

.device-mockup img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
}

/* ───────────────────────────────────────────────
   SLIDESHOW — interactive multi-image carousel
   inside .feature__visual. Renders dots, prev/next,
   counter, captions. Single-slide case auto-hides
   controls so existing 1-image features still look
   clean.
   ─────────────────────────────────────────────── */
.slideshow {
    position: relative;
    border-radius: var(--r-lg);
    isolation: isolate;
}

.slideshow__viewport {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg);
}

.slideshow__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.slideshow__slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.slideshow__slide .device-mockup {
    height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.slideshow__slide .device-mockup img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slideshow:hover .slideshow__slide.is-active .device-mockup img {
    transform: scale(1.04);
}

/* Optional caption appearing as bottom-left chip */
.slideshow__caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 6px 12px;
    background: rgba(15, 19, 32, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    z-index: 3;
    max-width: calc(100% - 100px);
    word-break: break-word;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4);
}

/* Slide counter — small badge top-right */
.slideshow__counter {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 10px;
    background: rgba(15, 19, 32, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    z-index: 3;
    pointer-events: none;
}

.slideshow__counter-current {
    color: var(--neon-cyan);
}

/* Prev/next nav arrows */
.slideshow__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 19, 32, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-strong);
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
    box-shadow: var(--shadow);
}

.slideshow:hover .slideshow__nav,
.slideshow:focus-within .slideshow__nav {
    opacity: 1;
}

.slideshow__nav:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
}

.slideshow__nav--prev { left: 12px; }
.slideshow__nav--next { right: 12px; }

/* Dot indicators (overlay bottom-center) */
.slideshow__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: rgba(15, 19, 32, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4);
}

.slideshow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, background 0.25s ease;
    position: relative;
}

.slideshow__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slideshow__dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--gradient-primary);
    box-shadow: 0 0 14px -2px var(--neon-purple-glow);
}

/* Progress fill inside active dot — visualizes autoplay countdown */
.slideshow__dot.is-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    width: 0;
    pointer-events: none;
}

.slideshow.is-playing .slideshow__dot.is-active::after {
    animation: slideshowProgress var(--slideshow-duration, 5000ms) linear forwards;
}

@keyframes slideshowProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* Single-slide: hide controls entirely */
.slideshow.is-single .slideshow__dots,
.slideshow.is-single .slideshow__nav,
.slideshow.is-single .slideshow__counter {
    display: none;
}

/* Mobile: keep nav arrows always visible (no hover on touch) */
@media (max-width: 768px) {
    .slideshow__nav {
        opacity: 0.85;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .slideshow__nav--prev { left: 8px; }
    .slideshow__nav--next { right: 8px; }
    .slideshow__dots {
        bottom: 10px;
        padding: 6px 10px;
        gap: 6px;
    }
    .slideshow__caption {
        font-size: 0.72rem;
        padding: 5px 10px;
        bottom: 50px; /* avoid overlap with dots */
    }
    .slideshow__counter {
        font-size: 0.7rem;
        top: 10px;
        right: 10px;
    }
}

.feature__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(20, 25, 41, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    box-shadow: var(--shadow);
    z-index: 2;
    max-width: calc(100% - 24px); /* never wider than its mockup container */
    word-break: break-word;
    overflow-wrap: anywhere; /* allow break inside long URL like /r/shop-anda */
}

.feature__chip--top {
    top: -16px;
    left: 24px;
}

.feature__chip--bottom {
    bottom: -16px;
    right: 24px;
}

.feature__chip i {
    color: var(--neon-cyan);
}

.feature__chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-amber);
}

.feature__chip-dot--green {
    background: var(--neon-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.88em;
    padding: 2px 7px;
    background: rgba(6, 182, 212, 0.12);
    color: var(--neon-cyan);
    border-radius: 6px;
}

/* ───────────────────────────────────────────────
   HOW IT WORKS
   ─────────────────────────────────────────────── */
.how {
    padding: 110px 0;
    position: relative;
}

.how__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 60px;
}

.how__step {
    position: relative;
    padding: 36px 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.how__step:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.how__step-num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 20px -6px var(--neon-purple-glow);
}

.how__step-icon {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin: 16px 0 20px;
    display: inline-block;
}

.how__step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.how__step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.how__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
    align-self: center;
    position: relative;
}

.how__connector::after {
    content: '→';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1.2rem;
}

/* ───────────────────────────────────────────────
   PRICING
   ─────────────────────────────────────────────── */
.pricing {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* ─── URGENT pricing alert (top of pricing section) ─── */
.pricing__alert {
    margin: 36px auto 0;
    max-width: 1080px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background:
        linear-gradient(90deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.08)),
        rgba(15, 19, 32, 0.65);
    border: 1px solid rgba(245, 158, 11, 0.45);
    border-left: 4px solid var(--neon-amber);
    border-radius: var(--r-lg);
    box-shadow: 0 12px 32px -10px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

/* Subtle moving sheen to draw attention */
.pricing__alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.08), transparent);
    animation: alertSheen 4.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes alertSheen {
    0%, 100% { left: -100%; }
    50% { left: 200%; }
}

.pricing__alert-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--neon-amber), #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px -6px rgba(245, 158, 11, 0.5);
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px -6px rgba(245, 158, 11, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px -6px rgba(245, 158, 11, 0.7);
    }
}

.pricing__alert-body {
    flex: 1;
    min-width: 240px;
}

.pricing__alert-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pricing__alert-title em {
    font-style: italic;
    color: var(--neon-amber);
    font-weight: 700;
}

.pricing__alert-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.22);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.4);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    flex-shrink: 0;
}

.pricing__alert-text {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.pricing__alert-text strong {
    color: var(--text);
    font-weight: 600;
}

.pricing__alert-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .pricing__alert {
        flex-direction: column;
        text-align: left;
        padding: 22px 22px;
        gap: 16px;
        align-items: flex-start;
    }
    .pricing__alert-cta {
        align-self: stretch;
        justify-content: center;
    }
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
    align-items: stretch;
}

.pricing__card {
    position: relative;
    padding: 32px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.pricing__card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.pricing__card--featured {
    background:
        linear-gradient(180deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.06)),
        var(--surface);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 80px -20px var(--neon-purple-glow);
    transform: scale(1.04);
}

.pricing__card--featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px -8px var(--neon-purple-glow);
    white-space: nowrap;
}

.pricing__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.pricing__desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.55;
}

/* Original (crossed-out) price + savings badge — shown above main price */
.pricing__original {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    margin-top: -4px;
    flex-wrap: wrap;
}

.pricing__original-strike {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.75);
    text-decoration-thickness: 2px;
    letter-spacing: -0.01em;
}

.pricing__savings-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.16);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.32);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.2;
}

.pricing__card--featured .pricing__savings-badge {
    background: rgba(124, 58, 237, 0.22);
    color: #c4b5fd;
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow: 0 4px 12px -4px var(--neon-purple-glow);
}

.pricing__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.pricing__currency {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing__amount {
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing__period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
    flex: 1;
}

.pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--text);
    line-height: 1.4;
}

.pricing__features li i {
    color: var(--neon-green);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing__features-muted {
    opacity: 0.45;
}

.pricing__features-muted i {
    color: var(--text-dim) !important;
}

.pricing__note {
    text-align: center;
    margin-top: 50px;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 18px;
    background: var(--surface);
    border: 1px dashed rgba(124, 58, 237, 0.4);
    border-radius: var(--r);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pricing__note strong {
    color: var(--neon-purple);
}

/* ─── PAYG alternative card ─── */
.payg {
    margin-top: 70px;
}

.payg__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}

.payg__divider::before,
.payg__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
    max-width: 240px;
}

.payg__divider span {
    padding: 0 18px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.payg__card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.12), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.08), transparent 55%),
        var(--surface);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(245, 158, 11, 0.2);
}

.payg__left {
    padding: 40px 38px;
}

.payg__right {
    padding: 36px 32px;
    background:
        linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.04)),
        rgba(15, 19, 32, 0.4);
    border-left: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.payg__badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--neon-amber);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.payg__head h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.payg__tagline {
    font-size: 1.02rem;
    color: var(--neon-amber);
    font-weight: 500;
    margin-bottom: 22px;
}

.payg__desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
}

.payg__desc strong {
    color: var(--text);
    font-weight: 600;
}

.payg__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 22px;
}

.payg__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.55;
}

.payg__features li i {
    color: var(--neon-amber);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.payg__features strong {
    color: #fff;
    font-weight: 600;
}

.payg__use-case {
    padding: 14px 16px;
    background: rgba(245, 158, 11, 0.08);
    border-left: 3px solid var(--neon-amber);
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.55;
}

.payg__use-case i {
    color: var(--neon-amber);
    margin-right: 6px;
}

/* Right column: big price + example math + CTA */
.payg__price-block {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px dashed rgba(245, 158, 11, 0.3);
}

.payg__price-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.payg__price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 6px 0 4px;
    gap: 2px;
}

.payg__price-num {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 6rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-amber), #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.04em;
}

.payg__price-percent {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-amber), #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.payg__price-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Example math block */
.payg__example {
    padding: 18px 20px;
    background: rgba(15, 19, 32, 0.5);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--r);
    font-size: 0.9rem;
}

.payg__example-title {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.payg__example-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.payg__example-row--total {
    color: var(--text);
    font-weight: 500;
}

.payg__example-row--total strong {
    color: #fff;
    font-family: var(--font-display);
}

.payg__example-row--fee {
    margin-top: 6px;
    padding-top: 12px;
    color: var(--text);
    font-weight: 600;
}

.payg__example-row--fee strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--neon-amber);
}

.payg__example-divider {
    height: 1px;
    background: rgba(245, 158, 11, 0.2);
    margin: 4px 0;
}

.payg__example-compare {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: var(--neon-green);
    font-style: italic;
    line-height: 1.4;
}

.payg__example-compare i {
    margin-right: 4px;
}

/* CTA inside payg right column - override .btn--primary color to amber */
.payg__right .btn--primary {
    background: linear-gradient(135deg, var(--neon-amber), #f97316);
    box-shadow: 0 10px 28px -8px rgba(245, 158, 11, 0.5);
}

.payg__right .btn--primary:hover {
    box-shadow: 0 16px 36px -8px rgba(245, 158, 11, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.payg__perks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.payg__perks i {
    color: var(--neon-green);
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .payg__card {
        grid-template-columns: 1fr;
    }
    .payg__right {
        border-left: none;
        border-top: 1px solid rgba(245, 158, 11, 0.2);
    }
    .payg__left {
        padding: 32px 28px;
    }
}

@media (max-width: 640px) {
    .payg__divider span {
        padding: 0 12px;
        font-size: 0.85rem;
    }
    .payg__left,
    .payg__right {
        padding: 26px 20px;
    }
    .payg__head h3 {
        font-size: 1.8rem;
    }
    .payg__price-num {
        font-size: 4.5rem;
    }
}

/* ───────────────────────────────────────────────
   MIGRATION — handle "I already use another system" objection
   FROM → TO visual + 3 steps + handle-everything checklist
   + 4 guarantees + final CTA
   ─────────────────────────────────────────────── */
.migration {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.migration__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.migration__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
}

.migration__glow--1 {
    top: 10%;
    left: -120px;
    width: 480px;
    height: 480px;
    background: var(--neon-amber);
}

.migration__glow--2 {
    bottom: 10%;
    right: -120px;
    width: 540px;
    height: 540px;
    background: var(--neon-green);
}

/* ─── FROM → TO transfer visual ─── */
.migration__transfer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 50px;
}

.migration__transfer-card {
    padding: 28px 26px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    background: var(--surface);
}

.migration__transfer-card--from {
    background:
        linear-gradient(180deg, rgba(239, 68, 68, 0.06), transparent),
        var(--surface);
    border-color: rgba(239, 68, 68, 0.25);
}

.migration__transfer-card--to {
    background:
        linear-gradient(180deg, rgba(16, 185, 129, 0.08), transparent),
        var(--surface);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 60px -20px rgba(16, 185, 129, 0.2);
}

.migration__transfer-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.migration__transfer-label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    flex-shrink: 0;
}

.migration__transfer-card--to .migration__transfer-label {
    background: rgba(16, 185, 129, 0.18);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.3);
}

.migration__transfer-status {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.migration__transfer-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.migration__transfer-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.migration__transfer-card--from ul li {
    color: rgba(252, 165, 165, 0.85);
}

.migration__transfer-card ul li i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.migration__transfer-card--from ul li i {
    color: #ef4444;
    opacity: 0.7;
}

.migration__transfer-card--to ul li i {
    color: var(--neon-green);
}

/* Arrow between cards */
.migration__transfer-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 8px;
}

.migration__transfer-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 12px 28px -8px var(--neon-purple-glow);
    animation: arrowPulse 2.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); box-shadow: 0 12px 28px -8px var(--neon-purple-glow); }
    50% { transform: translateX(6px); box-shadow: 0 14px 32px -8px var(--neon-purple-glow); }
}

.migration__transfer-arrow-label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ─── 3 Steps ─── */
.migration__steps {
    margin-top: 80px;
}

.migration__steps-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

.migration__steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.migration__step {
    position: relative;
    padding: 32px 28px 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.migration__step:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.4);
}

.migration__step-num {
    position: absolute;
    top: -18px;
    left: 28px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 20px -6px var(--neon-purple-glow);
}

.migration__step-icon {
    font-size: 2.4rem;
    color: var(--neon-cyan);
    margin: 14px 0 18px;
    display: inline-block;
}

.migration__step h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.migration__step p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.migration__step p strong {
    color: var(--text);
    font-weight: 600;
}

/* ─── "Yang Kami Tangani" checklist grid ─── */
.migration__handle {
    margin-top: 80px;
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
}

.migration__handle-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.01em;
}

.migration__handle-title span {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
    margin-left: 6px;
}

.migration__handle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 24px;
}

.migration__handle-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.5;
}

.migration__handle-item i {
    color: var(--neon-green);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.migration__handle-item strong {
    color: #fff;
    font-weight: 600;
}

/* ─── Guarantees ─── */
.migration__guarantees {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.migration__guarantee {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.05)),
        var(--surface);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--r-lg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.migration__guarantee:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.45);
}

.migration__guarantee > i {
    font-size: 2rem;
    color: var(--neon-green);
    flex-shrink: 0;
    line-height: 1;
}

.migration__guarantee strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.migration__guarantee small {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

/* ─── Final CTA inside migration section ─── */
.migration__cta {
    margin-top: 60px;
    padding: 40px 36px;
    background:
        radial-gradient(circle at 30% 0%, rgba(124, 58, 237, 0.18), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.14), transparent 60%),
        rgba(15, 19, 32, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: var(--r-xl);
    box-shadow: 0 30px 60px -20px rgba(124, 58, 237, 0.3);
    text-align: center;
}

.migration__cta-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.migration__cta-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 26px;
}

.migration__cta-text strong {
    color: var(--text);
    font-weight: 600;
}

.migration__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 20px;
}

.migration__cta-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.migration__cta-perks i {
    color: var(--neon-green);
    margin-right: 4px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .migration__transfer {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .migration__transfer-arrow {
        flex-direction: row;
        padding: 0;
    }
    .migration__transfer-arrow-icon {
        animation: arrowPulseV 2.5s ease-in-out infinite;
        transform: rotate(90deg);
    }
    @keyframes arrowPulseV {
        0%, 100% { transform: rotate(90deg) translateX(0); }
        50% { transform: rotate(90deg) translateX(6px); }
    }
    .migration__steps-grid {
        grid-template-columns: 1fr;
    }
    .migration__handle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .migration__guarantees {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .migration {
        padding: 70px 0;
    }
    .migration__transfer-card {
        padding: 22px 20px;
    }
    .migration__handle {
        padding: 26px 20px;
    }
    .migration__handle-grid {
        grid-template-columns: 1fr;
    }
    .migration__guarantees {
        grid-template-columns: 1fr;
    }
    .migration__cta {
        padding: 28px 20px;
    }
    .migration__cta-buttons .btn {
        width: 100%;
    }
}

/* ───────────────────────────────────────────────
   TESTIMONIALS
   ─────────────────────────────────────────────── */
.testimonials {
    padding: 110px 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.testimonial {
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.testimonial__stars {
    display: flex;
    gap: 2px;
    color: var(--neon-amber);
    font-size: 1.1rem;
}

.testimonial blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.testimonial figcaption {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    background: var(--gradient-primary);
}

.testimonial__avatar--cyan {
    background: linear-gradient(135deg, var(--neon-cyan), #0ea5e9);
}

.testimonial__avatar--green {
    background: linear-gradient(135deg, var(--neon-green), #059669);
}

.testimonial__avatar--purple {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
}

.testimonial figcaption strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}

.testimonial figcaption small {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ───────────────────────────────────────────────
   FAQ
   ─────────────────────────────────────────────── */
.faq {
    padding: 110px 0;
    background: var(--bg-2);
}

.faq__list {
    max-width: 820px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq__item[open] {
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.04);
}

.faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--text);
    transition: color 0.15s ease;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary:hover {
    color: #fff;
}

.faq__item summary i {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq__item[open] summary i {
    transform: rotate(180deg);
    color: var(--neon-purple);
}

.faq__item p {
    padding: 0 26px 22px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ───────────────────────────────────────────────
   FINAL CTA
   ─────────────────────────────────────────────── */
.cta-final {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

.cta-final__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-final__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
}

.cta-final__glow--1 {
    top: -50px;
    left: 20%;
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
}

.cta-final__glow--2 {
    bottom: -100px;
    right: 20%;
    width: 500px;
    height: 500px;
    background: var(--neon-cyan);
}

.cta-final__inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-final__eyebrow {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.cta-final__title em {
    font-style: normal;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-final__sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 38px;
    line-height: 1.6;
}

.cta-final__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
}

.cta-final__perks {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-final__perks i {
    color: var(--neon-green);
    margin-right: 6px;
}

/* ───────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────── */
.footer {
    background: var(--bg-2);
    padding-top: 80px;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col ul a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    text-decoration: none;
    line-height: 1;
}

.footer__logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(124, 58, 237, 0.3));
}

.footer__col--brand p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 340px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.footer__social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .nav__links {
        display: none;
    }
    .nav__toggle {
        display: inline-flex;
    }
    .nav__cta .btn--ghost {
        display: none;
    }
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero__content {
        max-width: 720px;
        margin: 0 auto;
    }
    .hero__cta {
        justify-content: center;
    }
    .hero__perks {
        justify-content: center;
    }
    .hero__mockup {
        transform: none;
    }
    .pain__grid,
    .pillars__grid,
    .pricing__grid,
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing__card--featured {
        transform: none;
    }
    .pricing__card--featured:hover {
        transform: translateY(-4px);
    }
    .feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature--reverse .feature__copy {
        order: initial;
    }
    .how__grid {
        grid-template-columns: 1fr;
    }
    .how__connector {
        display: none;
    }
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__col--brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    .feature__chip {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    .feature__chip--top {
        left: 14px;
    }
    .hero {
        padding: calc(var(--nav-h) + 40px) 0 80px;
    }
    .hero__title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
    .hero__sub {
        font-size: 1rem;
    }
    .hero__cta {
        flex-direction: column;
    }
    .btn--xl {
        width: 100%;
    }
    .hero__float--booking {
        left: -10px;
        top: 12%;
    }
    .hero__float--revenue {
        right: -10px;
        bottom: 10%;
    }
    .hero__float {
        padding: 8px 12px;
    }
    .hero__float small {
        display: none;
    }
    .trust__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .pain__grid,
    .pillars__grid,
    .pricing__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    .section-head {
        margin-bottom: 36px;
    }
    .pain,
    .pillars,
    .features,
    .how,
    .pricing,
    .testimonials,
    .faq,
    .cta-final {
        padding: 70px 0;
    }
    .feature {
        margin-top: 70px;
    }
    .cta-final__buttons {
        flex-direction: column;
    }
    .inline-cta {
        padding: 20px;
        gap: 18px;
        text-align: center;
        flex-direction: column;
    }
    .inline-cta__text {
        min-width: 0;
    }
    .inline-cta .btn {
        width: 100%;
    }
    .compare {
        padding: 70px 0;
    }
    .compare__head {
        padding: 14px 18px;
    }
    .compare__head-col {
        font-size: 0.95rem;
    }
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Mobile menu drawer */
    .nav__links.is-open {
        display: flex;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(18px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }
    .nav__links.is-open li {
        list-style: none;
    }
    .nav__links.is-open a {
        display: block;
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 1rem;
        color: var(--text);
    }
    .nav__links.is-open a:hover {
        background: var(--surface);
    }
}

/* ═══════════════════════════════════════════════════════════════
   LEAK / ROI SECTION  (#hitung)
   ═══════════════════════════════════════════════════════════════ */
.leak { padding: 96px 0; position: relative; }
.leak__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.leak__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}
.leak__card::before {
    content: '';
    position: absolute; inset: 0 0 auto 0; height: 3px;
    background: linear-gradient(90deg, var(--neon-amber), var(--neon-pink));
    opacity: .8;
}
.leak__card:hover { transform: translateY(-4px); border-color: rgba(245, 158, 11, 0.4); }
.leak__ic {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--neon-amber);
    background: rgba(245, 158, 11, 0.12);
    margin-bottom: 16px;
}
.leak__title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; color: #fff; }
.leak__desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 18px; }
.leak__amt {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.7rem; color: var(--neon-amber);
}
.leak__amt span { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; margin-left: 2px; }

.leak__total {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    align-items: center;
    padding: 36px;
    border-radius: var(--r-xl);
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.10), rgba(236, 72, 153, 0.06)),
        var(--surface);
    border: 1px solid rgba(245, 158, 11, 0.28);
}
.leak__total-label { font-size: 0.88rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.leak__total-amt {
    font-family: var(--font-display); font-weight: 700;
    font-size: 3rem; color: #fff; line-height: 1.05; margin: 4px 0;
}
.leak__total-amt small { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; }
.leak__total-year { display: inline-block; color: var(--neon-amber); font-weight: 600; font-size: 0.95rem; }
.leak__total-right p { font-size: 1.02rem; color: var(--text); line-height: 1.6; margin-bottom: 18px; }
.leak__disclaimer { margin-top: 16px; font-size: 0.78rem; color: var(--text-dim); text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   ASSURE / TRUST SECTION  (#kenapa-kami)
   ═══════════════════════════════════════════════════════════════ */
.assure { padding: 96px 0; }
.assure__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
}
.assure__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px 22px;
    transition: transform .25s ease, border-color .25s ease;
}
.assure__card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.assure__card--hl {
    background:
        linear-gradient(180deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.05)),
        var(--surface);
    border-color: rgba(16, 185, 129, 0.4);
}
.assure__ic {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 25px; color: var(--neon-green);
    background: rgba(16, 185, 129, 0.12);
    margin-bottom: 16px;
}
.assure__card h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; color: #fff; line-height: 1.3; }
.assure__card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

.assure__founder {
    margin-top: 28px;
    display: flex;
    gap: 24px;
    padding: 36px;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.assure__founder::before {
    content: '';
    position: absolute; inset: 0 auto 0 0; width: 4px;
    background: var(--gradient-primary);
}
.assure__founder-badge {
    flex-shrink: 0;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--neon-purple);
    background: rgba(124, 58, 237, 0.14);
}
.assure__founder-quote { font-size: 1.12rem; line-height: 1.6; color: var(--text); margin-bottom: 18px; }
.assure__founder-meta { display: flex; align-items: center; gap: 12px; }
.assure__founder-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-primary); color: #fff; font-size: 20px;
}
.assure__founder-name { font-weight: 700; color: #fff; }

@media (max-width: 1024px) {
    .leak__grid { grid-template-columns: repeat(2, 1fr); }
    .leak__total { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .assure__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .leak { padding: 64px 0; }
    .assure { padding: 64px 0; }
    .leak__grid { grid-template-columns: 1fr; }
    .assure__grid { grid-template-columns: 1fr; }
    .leak__total { padding: 24px; }
    .leak__total-amt { font-size: 2.4rem; }
    .assure__founder { flex-direction: column; gap: 16px; padding: 24px; }
    .assure__founder-quote { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO VERTICALS chips (PS / HP / Warnet)
   ═══════════════════════════════════════════════════════════════ */
.hero__verticals {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin: 0 0 20px;
}
.hero__verticals span {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.85rem; font-weight: 600; color: var(--text);
    padding: 7px 14px; border-radius: 999px;
    background: var(--surface); border: 1px solid var(--border-strong);
}
.hero__verticals i { color: var(--neon-cyan); font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   DIY / HEMAT MODAL SECTION  (#hemat-modal)
   ═══════════════════════════════════════════════════════════════ */
.diy { padding: 96px 0; }
.diy__inner {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 48px; align-items: center;
}
.diy__content .section-eyebrow { display: inline-block; margin-bottom: 16px; }
.diy__content .section-title { text-align: left; }
.diy__content .section-sub { text-align: left; margin-left: 0; }
.diy__list { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.diy__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.96rem; color: var(--text); line-height: 1.5; }
.diy__list li i { color: var(--neon-green); font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

.diy__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.diy__col {
    border-radius: var(--r-lg); padding: 26px 22px;
    border: 1px solid var(--border); background: var(--surface);
}
.diy__col--bad { opacity: 0.85; }
.diy__col--good {
    background: linear-gradient(180deg, rgba(16,185,129,0.12), rgba(6,182,212,0.05)), var(--surface);
    border-color: rgba(16,185,129,0.45);
    box-shadow: 0 0 60px -24px var(--neon-cyan-glow);
}
.diy__col-head { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.95rem; margin-bottom: 12px; }
.diy__col--bad .diy__col-head { color: var(--neon-pink); }
.diy__col--good .diy__col-head { color: var(--neon-green); }
.diy__price { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: #fff; line-height: 1; margin-bottom: 16px; }
.diy__price small { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-left: 3px; }
.diy__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.diy__col li { font-size: 0.85rem; color: var(--text-muted); padding-left: 16px; position: relative; line-height: 1.45; }
.diy__col li::before { content: '·'; position: absolute; left: 4px; color: var(--text-dim); font-weight: 700; }
.diy__note {
    margin-top: 18px; padding: 14px 16px; border-radius: var(--r);
    background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.22);
    font-size: 0.86rem; color: var(--text); line-height: 1.5;
    display: flex; gap: 9px; align-items: flex-start;
}
.diy__note i { color: var(--neon-amber); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 900px) {
    .diy__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
    .diy { padding: 64px 0; }
    .diy__compare { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PRICING — yearly line + spec strip (synced from saas-admin)
   ═══════════════════════════════════════════════════════════════ */
.pricing__yearly {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: -6px 0 4px;
}
.pricing__yearly strong { color: var(--text); font-weight: 600; }
.pricing__yearly s { color: var(--text-dim); }
.pricing__yearly-save {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--neon-green);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 1px 7px;
    border-radius: 999px;
    margin-left: 2px;
}
.pricing__specs {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 16px 0 18px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pricing__spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.pricing__spec i { color: var(--neon-cyan); font-size: 0.95rem; flex-shrink: 0; }
.pricing__spec strong { color: #fff; font-weight: 700; min-width: 26px; }
.pricing__card--featured .pricing__spec i { color: var(--neon-purple); }
