:root {
    --navy: #0F1115;
    --navy2: #1e293b;
    --blue: #2563EB;
    --cyan: #60A5FA;
    --purple: #3B82F6;
    --ink: #050505;
    --muted: #94a3b8;
    --line: #e2e8f0;
    --soft: #f8fafc;
    --white: #fff;

    --shadow:
        0 22px 70px
        rgba(15, 23, 42, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--ink);

    font-family: Inter, sans-serif;

    background: #fff;

    overflow-x: hidden;
}

a {
    transition: 0.25s;
}

h1,
h2,
h3 {
    font-family: "Plus Jakarta Sans", sans-serif;

    letter-spacing: -1px;
}

p {
    line-height: 1.8;
}

.container {
    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: auto;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 780px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(37, 99, 235, 0.38),
            transparent 27%
        ),
        radial-gradient(
            circle at 12% 80%,
            rgba(29, 78, 216, 0.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0F1115 0%,
            #0F1115 52%,
            #050505 100%
        );

    padding: 145px 0 160px;
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(transparent, #020617);
    opacity: 1;
    pointer-events: none;
}


/* =========================================
   HERO ORBS
========================================= */

.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(3px);

    opacity: 0.55;
}

.hero-orb-one {
    width: 330px;
    height: 330px;

    background:
        radial-gradient(
            circle,
            #3B82F6,
            transparent 65%
        );

    left: -180px;
    top: 160px;
}

.hero-orb-two {
    width: 500px;
    height: 500px;

    background:
        radial-gradient(
            circle,
            #1D4ED8,
            transparent 62%
        );

    right: -250px;
    bottom: -260px;
}


/* =========================================
   HERO GRID
========================================= */

.hero-grid {
    display: grid;

    grid-template-columns:
        1.02fr
        0.98fr;

    align-items: center;

    gap: 70px;

    position: relative;

    z-index: 2;
}

.hero-copy {
    color: #fff;
}


/* =========================================
   HERO TYPOGRAPHY
========================================= */

.eyebrow,
.section-kicker {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 10px;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    font-weight: 800;

    color: #93C5FD;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    background: #2563EB;

    border-radius: 50%;

    box-shadow:
        0 0 0 6px
        rgba(37, 99, 235, 0.12);

    animation: pulse 1.8s infinite;
}

.hero h1 {
    font-size: clamp(
        36px,
        8vw,
        70px
    );

    line-height: 1.06;

    margin: 20px 0 22px;

    max-width: 720px;
}

.hero h1 span,
.section-heading span,
.section-head-center span,
.definition-copy h2 span,
.process-intro h2 span,
.cta-content h2 span {
    background:
        linear-gradient(
            90deg,
            #60A5FA,
            #2563EB
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}

.hero-lead {
    font-size: 15px;

    color: #94a3b8;

    max-width: 650px;

    margin-bottom: 30px;
}

/* =========================================
   INTERACTIVE HERO BACKGROUND (3D VIDEO CARDS)
========================================= */

.interactive-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    perspective: 1000px;
}

.cursor-ambient-light {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0) 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
}

.v-object-3d {
    position: absolute;
    will-change: transform;
    opacity: 0.8;
    transform-style: preserve-3d;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* Allow hovering on the objects themselves */
    transition: box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

/* Light glare / Sheen for premium glass look */
.v-object-3d::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.v-object-3d:hover {
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.7), inset 0 2px 2px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

/* Play Button Shape (Squircle like YouTube) */
.play-shape {
    width: 140px;
    height: 100px;
    border-radius: 30px;
}
.play-shape .object-inner {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 32px solid rgba(255, 255, 255, 0.9);
    margin-left: 8px; /* visual center */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

/* Custom Floating Cards (Social Proof UI) */
.card-metric {
    padding: 12px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    min-width: max-content;
}
.metric-icon {
    width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #60A5FA;
}
.metric-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.metric-text strong {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}
.metric-text span {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-testimonial {
    padding: 14px 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
    max-width: 180px;
    text-align: left;
}
.testi-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
}
.testi-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    font-style: italic;
    color: #e2e8f0;
}

.card-video {
    width: 100px;
    height: 178px; /* 9:16 approx */
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.3), rgba(0, 0, 0, 0.5));
    position: relative;
    overflow: hidden;
}
.card-video-sm {
    width: 80px;
    height: 142px;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.video-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.4);
    padding: 4px 8px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Logo Shape (Restored) */
.logo-shape {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    padding: 12px;
}
.logo-shape-wide {
    width: 140px;
    height: 60px;
    border-radius: 16px;
    padding: 8px 16px;
}
.logo-shape .object-img,
.logo-shape-wide .object-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* Base positions */
.v-object-3d.obj-1 {
    top: 15%;
    left: 8%;
    transform: rotate(-12deg) scale(0.9);
    opacity: 0.6;
}

.v-object-3d.obj-2 {
    top: 55%;
    left: 4%;
    transform: rotate(8deg) scale(1);
    opacity: 0.8;
}

.v-object-3d.obj-3 {
    top: 65%;
    right: 6%;
    transform: rotate(-6deg) scale(1.1);
    opacity: 0.9;
}

.v-object-3d.obj-4 {
    top: 18%;
    right: 10%;
    transform: rotate(15deg) scale(0.85);
    opacity: 0.5;
}

.v-object-3d.obj-5 {
    top: 38%;
    right: 8%;
    transform: rotate(-3deg) scale(0.95);
    opacity: 0.7;
}

.v-object-3d.obj-6 {
    top: 78%;
    right: 22%;
    left: auto;
    transform: rotate(5deg) scale(0.9);
    opacity: 0.6;
}

.v-object-3d.obj-7 {
    top: 75%;
    left: 15%;
    transform: rotate(-10deg) scale(0.8);
    opacity: 0.7;
}

@media (max-width: 991px) {
    /* Hide all floating objects and scroll cue on mobile to keep text readable */
    .v-object-3d,
    .hero-scroll-cue {
        display: none !important;
    }
    
    .cursor-ambient-light {
        display: none;
    }
}


/* =========================================
   HERO ACTIONS
========================================= */

.hero-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 20px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 800;

    font-size: 12px;

    border: 1px solid transparent;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    /* Subtle glow effect for primary button */
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5), 0 12px 30px rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.7), 0 17px 35px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
}

.btn-ghost {
    color: #e0e7ff;
    /* Thicker/more contrasting border */
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    /* Noticeable background fill on hover */
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-3px);
}


/* =========================================
   HERO PROOF
========================================= */

.hero-proof {
    display: flex;

    gap: 30px;

    margin-top: 45px;
}

.hero-proof > div {
    border-left:
        1px solid
        rgba(255, 255, 255, 0.18);

    padding-left: 14px;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    font-size: 11px;

    color: #fff;
}

.hero-proof span {
    font-size: 10px;

    color: #94a3b8;

    margin-top: 5px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;

    min-height: 510px;

    display: grid;

    place-items: center;
}

.dashboard-card {
    width: min(
        460px,
        100%
    );

    padding: 26px;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.04)
        );

    box-shadow:
        0 35px 100px
        rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(20px);

    transform: rotate(2deg);

    animation:
        float 6s ease-in-out infinite;
}

.dash-top {
    display: flex;

    justify-content: space-between;
}

.live-chip {
    font-size: 9px;

    letter-spacing: 1px;

    color: #60A5FA;

    background:
        rgba(37, 99, 235, 0.1);

    border:
        1px solid
        rgba(96, 165, 250, 0.25);

    padding: 7px 10px;

    border-radius: 30px;
}

.dash-more {
    color: #94a3b8;
}

.dash-title {
    color: #fff;

    font:
        700 20px
        "Plus Jakarta Sans";

    margin: 25px 0;
}


/* =========================================
   METRIC
========================================= */

.metric-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

.metric {
    padding: 16px;

    border-radius: 16px;

    background:
        rgba(15, 17, 21, 0.4);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.metric span,
.metric small {
    display: block;

    color: #94a3b8;

    font-size: 9px;
}

.metric strong {
    display: block;

    color: #fff;

    font:
        700 22px
        "Plus Jakarta Sans";

    margin: 7px 0;
}

.metric small {
    color: #93C5FD;
}


/* =========================================
   CHART
========================================= */

.chart {
    height: 155px;

    margin: 14px 0;

    padding: 15px;

    border-radius: 18px;

    background:
        rgba(15, 17, 21, 0.3);

    position: relative;
}

.chart-label {
    font-size: 9px;

    color: #94a3b8;
}

.chart-bars {
    height: 105px;

    display: flex;

    align-items: end;

    gap: 8px;

    margin-top: 10px;
}

.chart-bars i {
    flex: 1;

    border-radius:
        6px 6px 2px 2px;

    background:
        linear-gradient(
            to top,
            #2563EB,
            #60A5FA
        );

    opacity: 0.85;
}


/* =========================================
   VIDEO SECTION
========================================= */

.video-section {
    position: relative;

    overflow: hidden;
}

.video-section .section-head-center {
    max-width: 760px;

    margin: 0 auto 45px;
}

.video-wrapper {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;
}

.video-card {
    position: relative;

    width: 100%;

    padding: 10px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.8);

    border:
        1px solid
        rgba(37, 99, 235, 0.14);

    box-shadow:
        0 25px 70px
        rgba(15, 23, 42, 0.12);

    overflow: hidden;
}

.video-card video {
    display: block;

    width: 100%;

    height: auto;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    border-radius: 18px;

    background: #0F1115;
}


/* =========================================
   PLATFORM
========================================= */

.platform-stack {
    display: flex;

    gap: 7px;

    flex-wrap: wrap;
}

.platform-stack span {
    font-size: 9px;

    color: #e2e8f0;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    padding: 7px 9px;

    border-radius: 8px;
}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(18px);

    color: #fff;

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.22);

    font-size: 9px;

    line-height: 1.4;

    animation:
        float 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 19px;

    color: #93C5FD;
}

.floating-card b {
    font-size: 11px;
}


/* =========================================
   SCROLL NOTE
========================================= */

.scroll-note {
    position: absolute;

    bottom: 28px;

    left: 50%;

    transform:
        translateX(-50%);

    color: #94a3b8;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

    display: flex;

    align-items: center;

    gap: 9px;
}

.scroll-note span {
    width: 22px;
    height: 1px;

    background: #94a3b8;
}


/* =========================================
   STATS
========================================= */

.stats-strip {
    border-bottom:
        1px solid
        var(--line);

    background: #fff;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.stats-grid > div {
    padding: 24px 20px;

    border-right:
        1px solid
        var(--line);

    display: flex;

    align-items: center;

    gap: 13px;
}

.stats-grid > div:first-child {
    border-left:
        1px solid
        var(--line);
}

.stats-grid strong {
    font:
        800 15px
        "Plus Jakarta Sans";

    color: var(--blue);
}

.stats-grid span {
    font-size: 11px;

    color: var(--muted);
}


/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
    padding: 120px 0;
    background: #020617; /* Very dark background to match dark theme */
    position: relative;
    z-index: 2;
}

.pricing-section .section-head-center h2 {
    color: #f8fafc;
}

.pricing-section .section-head-center p {
    color: #94a3b8;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    align-items: center; 
}

/* ---- Pricing Card Reveal Animation ---- */
@keyframes pricing-card-in {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.94);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Popular card gets a bigger entrance */

@keyframes pricing-card-in-popular-mobile {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pricing-card-in-popular {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
}

.pricing-reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.94);
}

.pricing-reveal.pricing-visible {
    animation: pricing-card-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pricing-reveal.popular.pricing-visible {
    animation: pricing-card-in-popular 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ---- Popular Card Glow ---- */
@keyframes popular-glow-breathe {
    0% {
        box-shadow:
            0 0 30px rgba(59, 130, 246, 0.4),
            0 0 80px rgba(59, 130, 246, 0.2),
            0 0 120px rgba(59, 130, 246, 0.08),
            inset 0 0 30px rgba(59, 130, 246, 0.06);
        border-color: rgba(59, 130, 246, 0.6);
    }
    50% {
        box-shadow:
            0 0 60px rgba(59, 130, 246, 0.75),
            0 0 140px rgba(59, 130, 246, 0.45),
            0 0 220px rgba(59, 130, 246, 0.2),
            inset 0 0 50px rgba(59, 130, 246, 0.15);
        border-color: rgba(100, 160, 255, 1);
    }
    100% {
        box-shadow:
            0 0 30px rgba(59, 130, 246, 0.4),
            0 0 80px rgba(59, 130, 246, 0.2),
            0 0 120px rgba(59, 130, 246, 0.08),
            inset 0 0 30px rgba(59, 130, 246, 0.06);
        border-color: rgba(59, 130, 246, 0.6);
    }
}

.pricing-card.popular.pricing-visible {
    animation:
        pricing-card-in-popular 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        popular-glow-breathe 3s ease-in-out 0s infinite;
}

/* Keep the scale on popular after animation ends */
.pricing-card.popular {
    transform: scale(1.05);
}


.pricing-card {
    background: #0B0F19;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 1px solid #3b82f6; /* Blue border for popular */
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.p-card-inner {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3b82f6;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px #fff;
    animation: pulse-dot 1.5s infinite alternate;
}

@keyframes pulse-dot {
    0% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.p-card-header h3 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.p-card-header p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 30px;
    min-height: 42px;
}

.p-card-price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.price-label {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 5px;
}

.price-amount {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
}

.price-amount .currency {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
}

.price-amount .amount {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -1.5px;
}

.price-metric {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 10px;
}

.p-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-grow: 1;
}

.p-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.p-card-features li i {
    color: #3b82f6;
    font-size: 18px;
    margin-top: -2px;
}

.p-card-action .btn {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    display: block;
}

.pricing-section .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pricing-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hover effects */
.pricing-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.pricing-card.popular:hover {
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
    transform: scale(1.05) translateY(-5px);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        grid-column: span 2;
        order: -1;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        min-width: 0;
    }
    .p-card-inner {
        padding: 30px 20px;
    }
    .pricing-card.popular {
        grid-column: span 1;
        transform: scale(1) !important;
    }
    .pricing-card.popular.pricing-visible {
        animation: 
            pricing-card-in-popular-mobile 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards,
            popular-glow-breathe 3s ease-in-out 0s infinite !important;
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    .price-amount .amount {
        font-size: 38px;
    }
    .price-amount .currency {
        font-size: 18px;
    }
}


/* =========================================
   PAYMENT METHOD SECTION
========================================= */

.payment-section {
    background: #020617;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Subtle radial ambient behind the ticker */
.payment-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Header layout: two-column (headline | desc) */
.payment-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.payment-headline .section-kicker {
    display: block;
    margin-bottom: 12px;
}

.payment-headline h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    color: #f8fafc;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.payment-headline h2 span {
    color: #3b82f6;
}

.payment-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ---- Auto-scroll ticker ---- */
.payment-ticker-wrap {
    overflow: hidden;
    position: relative;
    margin: 0 0 60px;
    /* Fade edges */
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.payment-ticker {
    display: flex;
    width: max-content;
    animation: ticker-scroll 45s linear infinite;
}

.ticker-group {
    display: flex;
    gap: 16px;
    padding-right: 16px; /* Space before the next clone starts */
}

.payment-ticker:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pay-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

.pay-chip:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    color: #e2e8f0;
}

.pay-chip i {
    font-size: 15px;
    color: #475569;
}

.pay-chip:hover i {
    color: #60a5fa;
}

/* QRIS chip — highlighted */
.pay-chip--highlight {
    background: rgba(59, 130, 246, 0.07);
    border-color: rgba(59, 130, 246, 0.25);
    color: #93c5fd;
}

.pay-chip--highlight i {
    color: #60a5fa;
}

/* ---- Trust Strip ---- */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    color: #64748b;
    font-size: 13px;
    transition: color 0.3s ease;
}

.trust-item:hover {
    color: #94a3b8;
}

.trust-item i {
    font-size: 16px;
    color: #3b82f6;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .payment-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .trust-strip {
        gap: 16px;
    }
    .trust-divider {
        display: none;
    }
    .trust-item {
        padding: 6px 12px;
    }
}


/* =========================================
   CTA CLOSING SECTION
========================================= */

.cta-closing-section {
    background: #020617;
    padding: 60px 0 100px;
}

/* The card itself */
.cta-closing-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 56px 60px;
    position: relative;
    overflow: hidden;
    /* Subtle blue accent top-left */
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.15);
}

/* Faint blue glow at the right edge */
.cta-closing-card::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Left: conversational text */
.cta-closing-left {
    min-width: 0;
}

.cta-closing-eyebrow-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3b82f6;
    margin: 0 0 14px;
}

.cta-closing-left h3 {
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 0 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.cta-closing-note {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    max-width: 460px;
}

/* Right: buttons stacked */
.cta-closing-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Primary CTA button */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.35), 0 8px 30px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.55), 0 12px 40px rgba(37, 99, 235, 0.35);
    color: #fff;
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(4px);
}

/* WhatsApp link */
.cta-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.cta-wa-link i {
    font-size: 16px;
    color: #25d366;
}

.cta-wa-link:hover {
    color: #94a3b8;
}

@media (max-width: 900px) {
    .cta-closing-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 32px;
    }
    .cta-closing-right {
        align-items: flex-start;
    }
}


/* =========================================
   FAQ NEW SECTION
========================================= */

.faq-new-section {
    background: #020617;
    padding: 120px 0;
    position: relative;
}

/* Subtle grid texture */
.faq-new-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

/* Two-column layout: intro (left) | FAQ list (right) */
.faq-new-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* Left column */
.faq-new-intro {
    position: sticky;
    top: 120px; /* stays visible while right side scrolls */
}

.faq-new-intro .section-kicker {
    display: block;
    margin-bottom: 16px;
}

.faq-new-intro h2 {
    font-size: clamp(36px, 4vw, 54px);
    color: #f8fafc;
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 0 0 20px;
}

.faq-new-intro h2 span {
    color: #3b82f6;
}

.faq-new-intro > p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 36px;
}

/* Right column — accordion list */
.faq-new-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-new-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

/* Active item left-accent */
.faq-new-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, transparent);
}

/* Question button */
.faq-new-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 20px 26px 24px;
    text-align: left;
    transition: background 0.25s ease;
}

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

.faq-new-item.active .faq-new-q {
    background: rgba(59, 130, 246, 0.04);
}

/* Number */
.faq-num {
    font-size: 12px;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 0.5px;
    min-width: 28px;
    transition: color 0.3s ease;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.faq-new-item.active .faq-num {
    color: #3b82f6;
}

/* Question text */
.faq-new-q > span:nth-child(2) {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-new-item.active .faq-new-q > span:nth-child(2) {
    color: #f1f5f9;
}

/* Plus/X icon */
.faq-icon {
    font-size: 20px;
    color: #1e3a5f;
    transition: transform 0.35s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-new-item.active .faq-icon {
    transform: rotate(45deg);
    color: #3b82f6;
}

/* Answer panel — collapsed by default */
.faq-new-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease;
    opacity: 0;
}

.faq-new-item.active .faq-new-a {
    max-height: 400px;
    opacity: 1;
}

.faq-new-a p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    padding: 0 20px 28px 72px; /* indent to align with question text */
}

/* Mobile */
@media (max-width: 768px) {
    .faq-new-header {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .faq-new-intro {
        position: static;
    }
    .faq-new-q {
        padding: 20px 16px;
        gap: 14px;
    }
    .faq-new-a p {
        padding: 0 16px 22px 56px;
    }
}


/* =========================================
   SECTION
========================================= */

.section {
    padding: 115px 0;
}

.split-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    align-items: end;
}

.section-heading h2,
.section-head-center h2 {
    font-size:
        clamp(
            34px,
            4vw,
            53px
        );

    line-height: 1.12;

    margin: 16px 0 0;
}

.problem-copy p {
    font-size: 14px;

    color: #625656;

    margin: 0 0 15px;
}

.text-link {
    display: inline-flex;

    gap: 8px;

    align-items: center;

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    margin-top: 10px;
}

.text-link:hover {
    gap: 13px;
}


/* =========================================
   ISSUE GRID
========================================= */

.issue-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 60px;
}

.glass-card {
    position: relative;

    padding: 30px;

    border:
        1px solid
        var(--line);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9f9
        );

    box-shadow: var(--shadow);

    transition: 0.3s;
}

.glass-card:hover {
    transform: translateY(-7px);

    border-color: #fca5a5;
}

.glass-card .number {
    position: absolute;

    right: 22px;
    top: 20px;

    color: #e8d4d4;

    font-size: 11px;

    font-weight: 800;
}

.glass-card i {
    display: grid;

    place-items: center;

    width: 45px;
    height: 45px;

    border-radius: 14px;

    color: var(--blue);

    background: #fff1f1;

    font-size: 19px;
}

.glass-card h3 {
    font-size: 18px;

    margin: 25px 0 10px;
}

.glass-card p,
.benefit-card p,
.why-item p {
    font-size: 12px;

    color: var(--muted);

    margin: 0;
}


/* =========================================
   SERVICE SECTION
========================================= */

.service-section {
    background: var(--soft);
}

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

    max-width: 720px;

    margin:
        0 auto 50px;
}

.section-head-center p {
    color: var(--muted);

    font-size: 13px;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.service-card {
    min-height: 245px;

    position: relative;

    padding: 24px;

    border-radius: 22px;

    background: #fff;

    border:
        1px solid
        var(--line);

    text-decoration: none;

    color: var(--ink);

    overflow: hidden;

    transition: 0.35s;
}

.service-card:before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffe5e5,
            #fecaca
        );

    right: -55px;
    bottom: -55px;

    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: #fca5a5;
}

.service-card:hover:before {
    transform: scale(1.6);
}

.service-icon {
    width: 45px;
    height: 45px;

    border-radius: 13px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #fff1f1,
            #fff7f7
        );

    color: var(--blue);

    font-size: 18px;
}

.service-index {
    position: absolute;

    right: 20px;
    top: 23px;

    color: #d9c8c8;

    font-size: 10px;
}

.service-card h3 {
    font-size: 17px;

    margin: 28px 0 8px;
}

.service-card p {
    font-size: 11px;

    line-height: 1.7;

    color: var(--muted);

    max-width: 210px;
}

.service-arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: #fff1f1;

    color: var(--blue);

    font-size: 11px;
}


/* =========================================
   DEFINITION
========================================= */

.definition-wrap {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 100px;

    align-items: center;
}

.definition-visual {
    height: 430px;

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;
}

.orbit {
    position: absolute;

    border:
        1px dashed
        #f1a8a8;

    border-radius: 50%;

    animation:
        spin 18s linear infinite;
}

.orbit-a {
    width: 300px;
    height: 300px;
}

.orbit-b {
    width: 420px;
    height: 420px;

    animation-direction: reverse;

    animation-duration: 25s;
}

.core-logo {
    width: 120px;
    height: 120px;

    border-radius: 35px;

    display: grid;

    place-items: center;

    color: #fff;

    font:
        800 30px
        "Plus Jakarta Sans";

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #3B82F6
        );

    box-shadow:
        0 25px 55px
        rgba(37, 99, 235, 0.32);

    z-index: 2;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    /* Subtle glow effect for primary button */
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5), 0 12px 30px rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.7), 0 17px 35px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
}

.core-logo span {
    color: #ffb3b3;
}

.orbit-tag {
    position: absolute;

    padding: 9px 12px;

    border-radius: 10px;

    background: #fff;

    border:
        1px solid
        var(--line);

    box-shadow:
        0 10px 30px
        rgba(15, 23, 42, 0.08);

    font-size: 10px;

    font-weight: 700;

    color: #5e5050;
}

.orbit-tag i {
    color: var(--blue);

    margin-right: 5px;
}

.definition-copy h2,
.process-intro h2 {
    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height: 1.12;

    margin: 15px 0 20px;
}

.definition-copy p {
    font-size: 13px;

    color: var(--muted);
}

.mini-note {
    margin-top: 25px;

    padding: 16px;

    border-radius: 15px;

    background: #fff0f0;

    display: flex;

    gap: 12px;

    color: #6b2727;

    font-size: 11px;

    line-height: 1.6;
}

.mini-note i {
    color: var(--blue);

    font-size: 17px;
}


/* =========================================
   BENEFITS
========================================= */

.benefits-section {
    background: #fffafa;
}

.benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.benefit-card {
    padding: 27px;

    border-radius: 20px;

    border:
        1px solid
        var(--line);

    background: #fff;

    position: relative;

    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.benefit-card > b {
    position: absolute;

    right: 20px;
    top: 18px;

    color: #e6d3d3;

    font-size: 10px;
}

.benefit-card i {
    color: var(--blue);

    font-size: 22px;
}

.benefit-card h3 {
    font-size: 16px;

    margin: 22px 0 7px;
}


/* =========================================
   PROCESS
========================================= */

.process-section {
    background: #fff;
}

.process-panel {
    padding: 65px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #0F1115,
            #710000
        );

    color: #fff;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;

    position: relative;

    overflow: hidden;
}

.process-panel:after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    right: -180px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.28),
            transparent 65%
        );
}

.process-intro {
    position: relative;

    z-index: 1;
}

.process-intro p {
    color: #d8bdbd;

    font-size: 12px;

    margin-bottom: 25px;
}

.btn-ghost {
    color: #e0e7ff;
    /* Thicker/more contrasting border */
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    /* Noticeable background fill on hover */
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-3px);
}

.process-list {
    position: relative;

    z-index: 1;
}

.process-item {
    display: grid;

    grid-template-columns:
        50px
        1fr;

    gap: 20px;

    padding: 0 0 25px;

    margin-bottom: 25px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.process-item:last-child {
    border-bottom: 0;

    margin-bottom: 0;
}

.process-item > span {
    width: 40px;
    height: 40px;

    border:
        1px solid
        rgba(96, 165, 250, 0.35);

    border-radius: 12px;

    display: grid;

    place-items: center;

    color: #60A5FA;

    font:
        700 11px
        "Plus Jakarta Sans";
}

.process-item h3 {
    font-size: 15px;

    margin: 0 0 6px;
}

.process-item p {
    color: #c6abab;

    font-size: 11px;

    margin: 0;
}


/* =========================================
   WHY
========================================= */

.why-section {
    background: var(--soft);
}

.why-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    margin-top: 50px;

    border-top:
        1px solid
        var(--line);
}

.why-item {
    display: flex;

    gap: 18px;

    padding: 28px;

    border-bottom:
        1px solid
        var(--line);
}

.why-item:nth-child(odd) {
    border-right:
        1px solid
        var(--line);
}

.why-item > span {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: #fff;

    color: var(--blue);

    box-shadow:
        0 8px 25px
        rgba(15, 23, 42, 0.06);
}

.why-item h3 {
    font-size: 15px;

    margin: 3px 0 6px;
}




/* =========================================
   FAQ
========================================= */

.faq-section {
    background: #fffafa;
}

.faq-grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;
}

.faq-section .section-heading p {
    font-size: 13px;

    color: var(--muted);
}

.faq-list details {
    background: #fff;

    border:
        1px solid
        var(--line);

    border-radius: 15px;

    margin-bottom: 10px;

    padding: 0 20px;
}

.faq-list summary {
    cursor: pointer;

    list-style: none;

    padding: 19px 0;

    font-size: 12px;

    font-weight: 800;
}

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

.faq-list summary:after {
    content: "+";

    float: right;

    color: var(--blue);

    font-size: 17px;
}

.faq-list details[open] summary:after {
    content: "−";
}

.faq-list details p {
    font-size: 11px;

    color: var(--muted);

    margin: 0;

    padding: 0 0 18px;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 25px 0 120px;
}

.cta-card {
    min-height: 390px;

    border-radius: 32px;

    overflow: hidden;

    position: relative;

    background:
        linear-gradient(
            125deg,
            #0F1115,
            #8a0000 55%,
            #c50000
        );

    display: flex;

    align-items: center;

    padding: 65px;

    color: #fff;
}

.cta-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    right: -170px;
    top: -230px;

    background:
        radial-gradient(
            circle,
            rgba(96, 165, 250, 0.38),
            transparent 65%
        );
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.section-kicker.light {
    color: #60A5FA;
}

.cta-content h2 {
    font-size:
        clamp(
            35px,
            4vw,
            55px
        );

    line-height: 1.1;

    margin: 15px 0;
}

.cta-content p {
    font-size: 13px;

    color: #e4c7c7;

    max-width: 600px;

    margin-bottom: 27px;
}

.btn-white {
    background: #fff;

    color: #7f1d1d;
}

.btn-white:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.18);
}

.cta-orb {
    position: absolute;

    right: 80px;
    bottom: 60px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    display: grid;

    place-items: center;

    transform: rotate(-12deg);

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.1),
            transparent 68%
        );

    color: #fff;
}

.cta-orb i {
    position: absolute;

    top: 25px;
    right: 30px;

    color: #60A5FA;
}

.cta-orb span {
    font:
        800 20px/1.1
        "Plus Jakarta Sans";

    text-align: center;

    letter-spacing: -1px;
}


/* =========================================
   ANIMATION
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: none;
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}


/* =========================================
   KEYFRAMES
========================================= */

@keyframes float {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(2deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(2deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    50% {
        box-shadow:
            0 0 0 9px
            rgba(37, 99, 235, 0);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .hero-grid,
    .definition-wrap,
    .process-panel,
    .faq-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-visual {
        min-height: 470px;
    }

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

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

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

    .split-grid {
        gap: 40px;
    }

    .process-panel {
        padding: 45px;
    }

    .cta-orb {
        right: 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 680px) {

    .container {
        width: calc(100% - 28px);
    }

    .hero {
        min-height: auto;

        padding:
            120px 0 75px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-proof {
        gap: 15px;

        flex-direction: column;
    }

    .hero-visual {
        min-height: 420px;
    }

    .dashboard-card {
        transform: none;
    }

    .floating-card-a {
        left: -3px;
    }

    .floating-card-b {
        right: -2px;
    }

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

    .stats-grid > div {
        padding: 18px 12px;
    }

    .stats-grid > div:nth-child(odd) {
        border-left:
            1px solid
            var(--line);
    }

    .section {
        padding: 80px 0;
    }

    .split-grid,
    .issue-grid,
    .service-grid,
    .benefit-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .issue-grid {
        margin-top: 35px;
    }

    .service-grid {
        gap: 12px;
    }

    .service-card {
        min-height: 220px;
    }

    .definition-visual {
        height: 350px;

        transform: scale(0.78);
    }

    .process-panel {
        padding: 32px 24px;
    }

    .why-item:nth-child(odd) {
        border-right: 0;
    }

    .cta-card {
        padding: 45px 25px;

        min-height: 450px;
    }

    .cta-orb {
        opacity: 0.35;

        right: -35px;
        bottom: -20px;
    }

    .price-card > p {
        min-height: auto;
    }
}

/* =========================================
   GSAP HERO ANIMATION STYLES
========================================= */

.hero-line-wrap {
    overflow: hidden;
    padding-bottom: 5px;
    margin-bottom: -5px;
}

.hero-line {
    /* will be animated by GSAP */
    transform: translateY(110%);
}

.highlight-text {
    background: linear-gradient(
        90deg,
        #60A5FA 0%,
        #2563EB 50%,
        #93C5FD 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hover-interaction {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}
.btn-wa:hover i {
    transform: translateX(2px) scale(1.05);
    transition: transform 0.3s ease;
}

.btn-rc:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-rc:hover i {
    transform: translateX(2px);
    transition: transform 0.3s ease;
}

/* Optional Visual: Vertical Video Cards */
.hero-video-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.v-card {
    position: absolute;
    width: 220px;
    height: 390px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    opacity: 0; /* hidden initially, revealed by GSAP */
}

.v-card-1 {
    top: 15%;
    left: 5%;
    transform: rotate(-10deg);
}

.v-card-2 {
    bottom: 10%;
    right: 8%;
    transform: rotate(8deg);
}

.v-card-3 {
    top: 50%;
    right: -5%;
    transform: rotate(-15deg);
    width: 180px;
    height: 320px;
    opacity: 0;
}

/* Scroll Cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
    opacity: 0; /* Animated via GSAP */
}

.scroll-cue-text {
    font-size: 10px;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-cue-line-wrapper {
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.scroll-cue-line {
    width: 100%;
    height: 100%;
    background: #60A5FA;
    transform: translateY(-100%);
    animation: scrollDrop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDrop {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

@media (max-width: 768px) {
    .hero-video-cards {
        display: none;
    }
}

/* =========================================
   BOTTLENECK SECTION
========================================= */

.bottleneck-section {
    padding: 120px 0 160px;
    background: #020617; /* Dark navy */
    position: relative;
    overflow: hidden;
}

.bottleneck-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.bottleneck-headline {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin: 20px 0;
    color: #f8fafc;
}

.highlight-text-blue {
    background: linear-gradient(90deg, #60A5FA, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bottleneck-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
}

/* Story Extraction Wrap */
.story-extraction-wrap {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 120px auto;
    padding-top: 40px;
}

/* 1. Long Video Visual */
.long-video-visual {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px auto;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.lv-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lv-icon {
    font-size: 40px;
    color: #60A5FA;
    line-height: 1;
}

.lv-text {
    display: flex;
    flex-direction: column;
}

.lv-label {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: 2px;
}

.lv-duration {
    font-size: 14px;
    color: #94a3b8;
    font-family: monospace;
}

/* 2. Timeline Connection */
.extraction-timeline-area {
    position: relative;
    width: 100%;
    height: 250px;
    margin: 0 auto;
}

.timeline-track-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-track-fill {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2px;
    background: #3B82F6;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.timeline-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.t-node {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.t-dot {
    width: 12px;
    height: 12px;
    background: #020617;
    border: 2px solid #60A5FA;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.8);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
}

/* Mini clip cards initially hidden */
.mini-clip-card {
    position: absolute;
    width: 100px;
    height: 150px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
}

.mc-img {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 8px;
}

.mc-text {
    font-size: 10px;
    font-weight: 700;
    color: #e2e8f0;
    text-align: center;
    letter-spacing: 1px;
}

.extraction-label {
    text-align: center;
    margin-top: 20px;
    opacity: 0;
}

.extraction-label span {
    display: inline-block;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    color: #60A5FA;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Central Vertical Narrative Container */
.vertical-narrative-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 120px auto;
    padding-top: 40px;
}

/* The Spine Track */
.central-spine-track {
    position: absolute;
    top: -60px; /* Overlaps extraction timeline */
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
    z-index: 1;
}

.central-spine-glow {
    position: absolute;
    top: 0;
    left: -1px;
    width: 4px;
    height: 0%; /* GSAP animates this */
    background: #3B82F6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    border-radius: 4px;
}

/* Position the extraction label on the spine */
.vertical-narrative-container .extraction-label {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #020617; /* matches bg */
    z-index: 2;
    padding: 10px 0;
}

/* Editorial Statements (Staggered around central spine) */
.editorial-statements {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 150px; /* Space for the label above */
    z-index: 2;
}

.ed-stmt {
    position: relative;
    width: 50%;
    opacity: 0.3; /* Base state before active */
    transition: opacity 0.5s ease;
}

.ed-stmt.is-active {
    opacity: 1;
}

.ed-left {
    align-self: flex-start;
    padding-right: 60px;
    text-align: right;
}

.ed-right {
    align-self: flex-end;
    padding-left: 60px;
    text-align: left;
}

/* The node dot on the spine */
.ed-spine-node {
    position: absolute;
    top: 20px;
    width: 12px;
    height: 12px;
    background: #0f172a;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s ease;
}

.ed-left .ed-spine-node {
    right: -6px; /* 50% width minus half node */
}

.ed-right .ed-spine-node {
    left: -6px;
}

/* Active node glow */
.ed-stmt.is-active .ed-spine-node {
    border-color: #60A5FA;
    background: #3B82F6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    transform: scale(1.3);
}

.ed-num {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 15px;
    font-family: monospace;
}

.ed-stmt h3 {
    font-size: 26px;
    line-height: 1.3;
    color: #f8fafc;
    margin-bottom: 15px;
}

.ed-stmt p {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 20px 0;
}

/* Mini Visual Cues */
.mini-visual-cue {
    display: inline-block;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 20px;
    backdrop-filter: blur(5px);
    opacity: 0.5;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ed-stmt.is-active .mini-visual-cue {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cue-counter, .cue-production {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: monospace;
    color: #94a3b8;
}

.cue-counter i, .cue-production i {
    color: #475569;
}

.c-video, .cp-time {
    background: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.c-clips {
    color: #60A5FA;
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cp-time.active {
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cp-time.error {
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.5;
}

/* Mini Timeline Cue */
.cue-timeline {
    position: relative;
    width: 150px;
    height: 40px;
}

.ct-track {
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.ct-marker {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #475569;
    border-radius: 50%;
    top: 15px;
    transform: translateY(-50%);
}

.ct-marker.active {
    background: #3B82F6;
    box-shadow: 0 0 10px #3B82F6;
    width: 8px;
    height: 8px;
}

.ct-marker span {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: #60A5FA;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Footer & Bridge */
.bottleneck-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.bridge-statement {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 60px;
    line-height: 1.3;
}

.scroll-down-indicator {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.s-line {
    width: 100%;
    height: 100%;
    background: #3b82f6;
    transform: translateY(-100%);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .bottleneck-section {
        padding: 80px 0;
    }
    .central-spine-track {
        left: 20px;
        transform: none;
    }
    .vertical-narrative-container .extraction-label {
        left: 0px;
        transform: none;
        padding-left: 35px;
        text-align: left;
    }
    .editorial-statements {
        gap: 30px;
        padding-top: 100px;
    }
    .ed-stmt {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    .ed-left .ed-spine-node, .ed-right .ed-spine-node {
        left: 15px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    /* Transform to vertical storytelling */
    .extraction-timeline-area {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 40px 0;
    }
    .timeline-track-bg, .timeline-track-fill {
        display: none; /* Hide horizontal line */
    }
    .timeline-nodes {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .t-node {
        position: relative;
        transform: none;
        top: auto !important;
        left: auto !important;
    }
    .mini-clip-card {
        position: relative;
        visibility: visible;
        opacity: 1;
        bottom: auto;
        top: auto;
        width: 100px;
        height: 150px;
    }
    .t-dot {
        display: none; /* Hide dots on mobile */
    }
    .vertical-narrative-container .extraction-label span {
        font-size: 10px;
    }
}

/* =========================================
   CINEMATIC VIDEO SECTION
========================================= */
.cinematic-video-section {
    padding: 20px 0 100px;
    background: #020617;
}

.cinematic-video-section .section-head-center h2 {
    color: #f8fafc;
}

.cinematic-video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    z-index: 1;
}

.cv-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: #3B82F6;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    border-radius: 24px;
}

.cv-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 22px;
    overflow: hidden;
    background: #000;
}

.cv-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.cv-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cv-thumbnail-overlay:hover .cv-thumb-img {
    opacity: 1;
}

.cv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cv-thumbnail-overlay:hover .cv-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    color: #3B82F6;
}

.cv-play-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.4);
    animation: pulsePlay 2s infinite;
    z-index: -1;
}

@keyframes pulsePlay {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

#yt-player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#yt-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   HOW IT WORKS (STICKY STACKED CARDS)
========================================= */
.how-it-works-section {
    padding: 100px 0 200px 0;
    background: #020617;
}

.how-it-works-section .section-head-center h2 {
    color: #f8fafc;
}

.stacked-cards-container {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    padding-bottom: 50px; 
}

.stacked-card {
    position: sticky;
    margin-bottom: 40px;
    perspective: 1000px;
}

/* Staggered sticky positions */
.stacked-card.card-1 { top: 120px; z-index: 10; }
.stacked-card.card-2 { top: 160px; z-index: 20; }
.stacked-card.card-3 { top: 200px; z-index: 30; }
.stacked-card.card-4 { top: 240px; z-index: 40; }

.sc-inner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    width: 100%;
}

.sc-inner:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 20px rgba(59, 130, 246, 0.2);
}

.sc-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    margin-right: 40px;
    line-height: 1;
    min-width: 120px;
    transform: translateZ(40px);
}

.sc-content {
    flex: 1;
    transform: translateZ(50px);
}

.sc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: #60a5fa;
    font-size: 24px;
    margin-bottom: 20px;
}

.sc-title {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.sc-desc {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .sc-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transform: none !important;
    }
    
    .sc-number, .sc-content {
        transform: none !important;
    }
    
    .sc-number {
        font-size: 60px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .stacked-card.card-1 { top: 80px; }
    .stacked-card.card-2 { top: 110px; }
    .stacked-card.card-3 { top: 140px; }
    .stacked-card.card-4 { top: 170px; }
}


/* =========================================
   MENGAPA EFEKTIF (HOVER ROWS)
========================================= */
.effective-section {
    padding: 120px 0;
    background: #020617;
}

.effective-section .section-head-center h2 {
    color: #f8fafc;
}

.effective-rows {
    max-width: 1000px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
}

.e-row {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.4s ease;
}

.e-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.e-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.e-row-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    z-index: 0;
}

.e-row:hover .e-row-glow {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.e-row-header {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.e-row-num {
    font-size: 20px;
    font-weight: 600;
    color: #3b82f6;
    margin-right: 40px;
    width: 30px;
}

.e-row h3 {
    font-size: 36px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
    flex: 1;
    transition: transform 0.4s ease, color 0.4s ease;
}

.e-row:hover h3 {
    transform: translateX(10px);
    color: #fff;
}

.e-row-icon {
    font-size: 24px;
    color: #94a3b8;
    transition: transform 0.4s ease, color 0.4s ease;
}

.e-row:hover .e-row-icon {
    transform: rotate(45deg);
    color: #3b82f6;
}

.e-row-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.e-row:hover .e-row-content {
    grid-template-rows: 1fr;
}

.e-row-content p {
    overflow: hidden;
    margin: 0;
    padding-left: 70px; /* Align with h3 */
    max-width: 700px;
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, margin 0.4s ease;
}

.e-row:hover .e-row-content p {
    opacity: 1;
    transform: translateY(0);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .e-row {
        padding: 30px 0;
    }
    
    .e-row-num {
        margin-right: 20px;
        font-size: 16px;
    }
    
    .e-row h3 {
        font-size: 24px;
    }
    
    .e-row-content p {
        padding-left: 0;
        font-size: 16px;
    }
    
    .e-row:hover h3 {
        transform: translateX(5px);
    }
}


/* =========================================
   KEUNTUNGAN (HORIZONTAL SCROLL)
========================================= */
.benefits-section {
    background: #020617;
    position: relative;
}

.benefits-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.benefits-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.benefit-panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 10vw;
    z-index: 1;
    position: relative; /* Added for b-node */
}

/* Timeline node behind the card */
.b-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: #0f172a;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1; /* Behind the card so it glows through the glassmorphism */
    transition: all 0.5s ease;
}

.b-card.active .b-node {
    background: #60a5fa;
    border-color: #3b82f6;
    box-shadow: 0 0 40px 10px rgba(59, 130, 246, 0.8); /* Strong glow to penetrate glass */
}

.b-timeline {
    position: absolute;
    top: 50%;
    left: 100vw; /* Starts after the intro panel */
    width: calc(100% - 100vw - 32.5vw); /* Ends at the center of the last card */
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
    transform: translateY(-50%);
}

.b-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%; /* Animated via GSAP */
    background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa);
    box-shadow: 0 0 20px 2px rgba(59, 130, 246, 0.6);
}

.b-timeline-progress::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background: #93c5fd;
    border-radius: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0 0 20px 5px rgba(96, 165, 250, 0.8), 0 0 40px 10px rgba(59, 130, 246, 0.5);
    z-index: 2;
}

.b-intro {
    width: 100vw; /* Intro takes full viewport width */
}

.b-intro-content {
    max-width: 600px;
}

.b-intro-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #f8fafc;
    margin: 20px 0;
    letter-spacing: -0.02em;
}

.b-intro-content h2 span {
    color: #3b82f6;
}

.b-intro-content p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
}

.b-card {
    width: 65vw; /* Cards are slightly narrower so the next one peeks in */
}

.b-card-inner {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 32px;
    padding: 60px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
    opacity: 0.4;
    transform: scale(0.9);
    transition: transform 0.5s ease, opacity 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.b-card-inner.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(96, 165, 250, 0.8);
    box-shadow: 0 0 50px -10px rgba(59, 130, 246, 0.4);
}

.b-card-inner:hover {
    transform: scale(1) translateY(-10px);
    border-color: rgba(96, 165, 250, 1);
}

.b-metric {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
}

.b-card-inner h3 {
    font-size: 32px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.b-card-inner p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .benefits-section {
        height: auto !important; /* Disable GSAP pin height */
        padding: 80px 0;
    }
    
    .benefits-sticky-container {
        position: relative;
        height: auto;
        overflow: visible;
    }
    
    .benefits-track {
        flex-direction: column;
        transform: none !important; /* Disable GSAP translation */
    }
    
    .benefit-panel {
        width: 100%;
        height: auto;
        padding: 0 24px;
        margin-bottom: 40px;
    }
    
    .b-intro-content h2 {
        font-size: 36px;
    }
    
    .b-card {
        width: 100%;
    }
    
    .b-card-inner {
        padding: 40px 30px;
        opacity: 1;
        transform: scale(1);
    }
    
    .b-timeline {
        display: none;
    }
    
    .b-metric {
        font-size: 56px;
    }
    
    .b-card-inner h3 {
        font-size: 24px;
    }
}


/* =========================================
   LANGKAH (THE PIPELINE)
========================================= */
.pipeline-section {
    padding: 120px 0;
    background: #020617;
    margin-top: -2px; /* Fixes GSAP pin spacer 1px white gap */
    position: relative;
    z-index: 2;
}

.pipeline-section .section-head-center h2 {
    color: #f8fafc;
}

.pipeline-container {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
}

.p-line-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
}

.p-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Animated via GSAP */
    background: linear-gradient(180deg, transparent, #3b82f6, #60a5fa);
    box-shadow: 0 0 15px #3b82f6;
}

.p-line-progress::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #93c5fd;
    border-radius: 50%;
    transform: translate(-50%, 50%);
    box-shadow: 0 0 20px 5px rgba(96, 165, 250, 0.8), 0 0 40px 10px rgba(59, 130, 246, 0.5);
    z-index: 2;
}

.p-step {
    position: relative;
    width: 50%;
    margin-bottom: 80px;
}

.p-step:last-child {
    margin-bottom: 0;
}

.p-step.left {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.p-step.right {
    left: 50%;
    padding-left: 60px;
    text-align: left;
}

.p-node {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #0f172a;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.5s ease;
}

.p-step.left .p-node {
    right: -10px; /* Aligned with 50% line */
}

.p-step.right .p-node {
    left: -10px;
}

.p-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.3) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.3;
    transform: translateY(30px) scale(0.95);
}

.p-step.active .p-node {
    background: #60a5fa;
    border-color: #3b82f6;
    box-shadow: 0 0 20px #3b82f6;
}

.p-step.active .p-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.p-num {
    font-size: 64px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.p-step.active .p-num {
    color: #3b82f6;
}

.p-card h3 {
    font-size: 28px;
    color: #f8fafc;
    margin-bottom: 16px;
    font-weight: 700;
}

.p-card p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .p-line-bg {
        left: 20px;
    }
    
    .p-step.left, .p-step.right {
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .p-step.left .p-node, .p-step.right .p-node {
        left: 10px;
        right: auto;
    }
}
