:root {
    --bg-dark: #060810;
    --bg-card: #0f1219;
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --secondary: #10b981;
    --accent: #8b5cf6;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --danger: #f87171;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --container-width: 900px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Animated background grid */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* ========== VIDEO SECTION ========== */
.video-section {
    margin: 1.5rem 0;
    text-align: center;
}

.video-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== ONE COLUMN LAYOUT ========== */
.one-column-layout {
    padding: 2rem 0 4rem;
    text-align: center;
    position: relative;
}

/* Hero glow orb */
.one-column-layout::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.logo-center {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.main-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

.vsl-header {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.video-cta {
    font-size: 1rem;
    color: var(--text-muted);
    animation: pulse-gentle 2s ease-in-out infinite;
}

@keyframes pulse-gentle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ========== VIDEO ========== */
.video-container {
    padding: 0.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 20px 60px rgba(0,0,0,0.5),
        0 0 40px rgba(59, 130, 246, 0.1);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ========== CONNECTOR ========== */
.connector-section {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.connector-hook {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.connector-hook strong {
    color: var(--text-main);
    font-weight: 600;
}

/* ========== STRUGGLE SECTION ========== */
.struggle-section {
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.08) 0%, rgba(248, 113, 113, 0.02) 100%);
    border: 1px solid rgba(248, 113, 113, 0.15);
    position: relative;
    z-index: 1;
}

.struggle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.struggle-item {
    text-align: center;
}

.struggle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.struggle-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.struggle-item p strong {
    color: var(--danger);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

/* ========== INTRO SOLUTION ========== */
.sub-headline-v2 {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.sub-headline-v2 strong {
    color: var(--text-main);
    font-weight: 600;
}

.intro-solution {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.intro-solution p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.intro-solution p strong {
    color: var(--primary);
}

.video-label {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 1.1rem;
}

/* ========== SOCIAL PROOF MARQUEE ========== */
.social-proof-section {
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.social-proof-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-proof-container {
    padding: 1rem 0;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    overflow: hidden;
}

/* Fade edges */
.social-proof-container::before,
.social-proof-container::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.social-proof-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.social-proof-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.social-proof-track {
    display: flex;
    white-space: nowrap;
    gap: 0.8rem;
    width: max-content;
}

.social-proof-track:hover { animation-play-state: paused; }
.social-proof-track.left { animation: marquee-left 200s linear infinite; }
.social-proof-track.right { animation: marquee-right 200s linear infinite; }

.user-badge {
    background: rgba(255, 255, 255, 0.04);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ========== SECTION HEADERS ========== */
.section-header-compact {
    margin-bottom: 2.5rem;
    position: relative;
}

.sub-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.section-header-compact > p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.zoom-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.text-danger { color: var(--danger); }
.text-success { color: var(--secondary); }

/* ========== PAIN vs SOLUTION ========== */
.pain-solution-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.ps-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.ps-item {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}

.ps-pain, .ps-sol {
    flex: 1;
    padding: 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
    font-size: 0.88rem;
    line-height: 1.5;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.ps-pain {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.06), rgba(239, 68, 68, 0.02));
    border-color: rgba(248, 113, 113, 0.12);
}

.ps-sol {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.03));
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.04);
}

.ps-sol:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.ps-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.ps-arrow {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    opacity: 0.5;
}

/* ========== FEATURES SHOWCASE ========== */
.features-showcase-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* ========== ROADMAP JOURNEY (ZIG-ZAG) ========== */
.roadmap-container {
    position: relative;
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 1rem 0 6rem; /* Ditambah padding bawah karena margin negatif */
}

/* The vertical path line */
.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary) 0,
        var(--primary) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateX(-50%);
    opacity: 0.3;
}

.roadmap-item {
    position: relative;
    width: 50%;
    margin-bottom: -3.5rem; /* Menarik item berikutnya ke atas */
    padding: 0 1.5rem;
    display: flex;
    cursor: pointer;
}

.roadmap-item.left {
    left: 0;
    justify-content: flex-end;
    text-align: right;
}

.roadmap-item.right {
    left: 50%;
    justify-content: flex-start;
    text-align: left;
}

.roadmap-dot {
    position: absolute;
    top: 20px;
    width: 32px;
    height: 32px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.roadmap-item.left .roadmap-dot {
    right: -16px;
}

.roadmap-item.right .roadmap-dot {
    left: -16px;
}

.roadmap-content {
    padding: 0.8rem;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.pos-images {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pos-images img {
    flex: 1;
    width: 48%; /* Sedikit kurang dari setengah agar ada gap */
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    background: #000;
}

.roadmap-item:hover .roadmap-content {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.05);
}

.roadmap-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.roadmap-text h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.roadmap-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Goal Step */
.roadmap-goal-wrap {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 5;
}

.roadmap-dot.goal {
    position: relative;
    top: 0;
    right: auto;
    left: auto;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    margin-bottom: 1.5rem;
}

.huge-goal-text {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.goal-text-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ========== LIGHTBOX ========== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightbox-in 0.3s ease;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(59, 130, 246, 0.15);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -45px; right: 0;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }

.lightbox-caption {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

@keyframes lightbox-in {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* ========== GLASSMORPHISM ========== */
.glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .one-column-layout { padding: 1.5rem 0 3rem; }
    .main-headline { font-size: 1.5rem; }
    .video-container { padding: 0.4rem; border-radius: 14px; }
    .social-proof-container { border-radius: 14px; }
    .struggle-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .pillars-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .struggle-section { padding: 1.5rem; }
    .ps-item { flex-direction: column; gap: 0.4rem; }
    .ps-arrow { transform: rotate(90deg); margin: 0.1rem 0; }
    .ps-pain, .ps-sol { width: 100%; }
    
    /* Roadmap Mobile */
    .roadmap-line { left: 20px; }
    .roadmap-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3.5rem;
        padding-right: 0;
        text-align: left !important;
        justify-content: flex-start !important;
        margin-bottom: 2rem;
    }
    .roadmap-item .roadmap-dot { left: 4px !important; right: auto !important; }
    .roadmap-content { max-width: 100%; }
    .huge-goal-text { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-img-wrapper { height: auto; aspect-ratio: 16/9; }
}

/* ========== PRICING & CTA ========== */
.pricing-section {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 600px;
    width: 100%;
    padding: 3rem 2rem;
    border-radius: 32px;
    text-align: center;
    position: relative;
    border: 1px solid var(--primary);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(15, 18, 25, 0.8) 100%);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.price-box {
    margin: 2.5rem 0;
}

.price-current {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.price-tag {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.urgency-box {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
}

.urgency-box p {
    color: #ffb8b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px var(--primary-glow);
}

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

/* ✅ HIGH-CONVERTING BUY BUTTON */
.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #1a1200;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    letter-spacing: 0.01em;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
    animation: btn-pulse 2.5s infinite;
    transition: transform 0.2s ease, filter 0.2s ease;
    width: 100%;
    max-width: 380px;
}

.btn-buy:hover {
    transform: translateY(-4px) scale(1.02);
    filter: brightness(1.08);
    animation: none;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}

.btn-buy:hover .btn-arrow {
    transform: translateX(5px);
}

@keyframes btn-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.55); }
    60%  { box-shadow: 0 0 0 16px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.trial-box {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    width: 100%;
}

.trial-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.btn-secondary {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.btn-secondary:hover {
    opacity: 0.8;
}

/* Quick Buy Wrapper (under video) */
.quick-buy-wrapper {
    margin-top: 2rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.quick-buy-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .price-current { font-size: 3rem; }
    .pricing-card { padding: 2.5rem 1.5rem; }
}

/* ========== HERO CTA WRAP ========== */
.hero-cta-wrap {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* ========== CTA MICROCOPY ========== */
.cta-microcopy {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* ========== PRICE OLD ========== */
.price-old {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.price-old s {
    color: var(--danger);
    opacity: 0.8;
}

/* ========== BONUS SECTION ========== */
.bonus-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(52,211,153,0.1));
    border: 1px solid rgba(16,185,129,0.4);
    color: #34d399;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    animation: pulse-gentle 2.5s ease-in-out infinite;
}

.bonus-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.bonus-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(16,185,129,0.2);
    background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(52,211,153,0.02));
    text-align: left;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-video-wrap .video-label {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.bonus-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.bonus-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bonus-features li {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.bonus-features li strong {
    color: var(--text-main);
}

.bonus-value-wrap {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.bonus-value-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.value-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-price {
    font-size: 1.1rem;
    font-weight: 700;
}

.value-price.strikethrough {
    color: var(--text-muted);
    text-decoration: line-through;
}

.value-price.free {
    color: #34d399;
    font-size: 1.3rem;
}

/* ========== VALUE STACK ========== */
.value-stack {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem 2rem;
}

.value-stack-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.value-stack-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vs-row.total {
    color: var(--text-main);
    font-weight: 600;
}

.vs-row.you-pay {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(139,92,246,0.08));
    border-radius: 12px;
    border: 1px solid rgba(59,130,246,0.2);
}

.vs-price {
    font-weight: 700;
    white-space: nowrap;
}

.vs-price.highlight {
    color: #60a5fa;
    font-size: 1.15rem;
}

.vs-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 0.25rem 0;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 700px;
    margin: 1.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(59,130,246,0.3);
}

.faq-q {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

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

.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 1.25rem 1.1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ========== RESPONSIVE: BONUS + FAQ ========== */
.bonus-video-wrap, .bonus-img-wrap {
    flex: 1;
}

.bonus-img-wrap .video-label {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.bonus-app-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-app-img {
    transform: scale(1.02);
}

.roi-logic-box {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1.25rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: left;
}

.roi-logic-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-main);
    margin: 0;
}

.roi-logic-box strong {
    color: #60a5fa;
}

@media (max-width: 768px) {
    .bonus-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.25rem;
    }
    .value-stack { padding: 1.25rem; }
    .bonus-value-wrap { flex-wrap: wrap; gap: 1rem; }
}
