/* High-Conversion Landing Page Design System */

:root {
    --primary: #007cf0;
    --primary-bright: #00dfd8;
    --primary-glow: rgba(0, 124, 240, 0.4);
    --secondary: #7928ca;
    --secondary-glow: rgba(121, 40, 202, 0.4);
    --dark: #000000;
    --surface: #0a0a0a;
    --surface-light: #111111;
    --text-main: #ffffff;
    --text-dim: #e4e4e7;
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-border-bright: rgba(255, 255, 255, 0.1);
    --bento-radius: 40px;
    --speed-fast: 0.3s;
    --speed-normal: 0.6s;
    --gold: #fcd34d;
}

.landing-body {
    background: var(--dark);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
    font-family: 'Inter', sans-serif;
    position: relative;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    /* Removed padding-top to fix background "cut" */
}

/* --- COMPONENT: DYNAMIC ISLAND NAVBAR --- */
.header {
    position: fixed;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 320px; /* Reduced to fit 2 items properly */
    height: 60px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0 8px 0 25px; 
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
}

.header:hover {
    background: #000;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(-50%) scale(1.02);
}

.header .container {
    padding: 0;
    width: 100%;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px; /* Tighter gap for better proximity */
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 25px;
    margin: 0 10px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.header .nav .logo img {
    height: 32px !important; /* Increased logo back to prominent size */
    width: auto;
    display: block;
}

.header .cta-aggressive {
    padding: 12px 30px !important; /* Slightly more padding for the button */
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
    border-radius: 50px !important;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(0, 124, 240, 0.4) !important;
}

@media (max-width: 991px) {
    .nav-links { display: none; }
    .header { min-width: 320px; }
}

@media (max-width: 768px) {
    .header {
        width: 92%;
        min-width: unset;
        top: 65px;
        height: 52px;
        padding: 0 8px 0 15px;
    }
    .nav { gap: 15px; }
}

/* Section Specific Backgrounds & Dividers */
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 124, 240, 0.4), transparent);
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 2px;
    background: var(--primary);
    filter: blur(25px);
    opacity: 0.3;
}

/* --- SECTION: HERO (Enhanced Stellar Theme) --- */
.hero-epic {
    padding: 220px 0 160px;
    position: relative;
    z-index: 10;
    background: #020202; /* Deeper black */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Deep Atmosphere & Noise */
.hero-epic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 124, 240, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 223, 216, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% -20%, rgba(0, 124, 240, 0.2), transparent 70%);
    z-index: -1;
}

.hero-epic .starfield {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: 
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1.2px);
    background-size: 80px 80px, 140px 140px;
    background-position: 0 0, 40px 40px;
    opacity: 0.15;
    animation: starfield-drift 60s linear infinite;
}

@keyframes starfield-drift {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

/* Cyber Luxury Grid Overlay */
.hero-epic::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

/* --- SECTION: BENTO (Flickering Blueprint Theme) --- */
.bento-section {
    padding: 140px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.bento-section .container {
    position: relative;
    z-index: 10;
}

/* Static Grid Lines */
.bento-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 124, 240, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 124, 240, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 90%);
    opacity: 0.8;
    z-index: 1;
}

/* Flickering Intersection Dots */
.bento-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    background-position: center center;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 90%);
    animation: demon-dots-flicker 5s infinite alternate;
    z-index: 2;
}

@keyframes demon-dots-flicker {
    0%, 100% { opacity: 0.2; transform: scale(1); filter: blur(0px); }
    40% { opacity: 0.8; filter: blur(1px); }
    60% { opacity: 0.4; transform: scale(1.1); }
    85% { opacity: 1; filter: blur(0px); }
}

/* Glass Bento Cards */
.bento-section .bento-card {
    background: rgba(10, 10, 10, 0.4) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(25px);
    position: relative;
    z-index: 10;
    border-radius: var(--bento-radius);
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary) !important;
    box-shadow: 0 0 50px var(--primary-glow);
}

/* --- SECTION: PRICING (Showroom Spotlight Theme) --- */
.pricing-epic {
    padding: 140px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.pricing-epic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 20px var(--primary-glow);
    z-index: 5;
}

.pricing-epic::after {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 124, 240, 0.1), transparent 60%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.pricing-epic .container {
    position: relative;
    z-index: 10;
}

/* --- SECTION: TRUST (Elite Cyber Theme) --- */
.trust-section {
    padding: 140px 0;
    background: #000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(142, 117, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 35px 35px;
    background-position: center;
    mask-image: radial-gradient(circle at 10% 50%, black, transparent 80%);
    z-index: 1;
}

.trust-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(142, 117, 255, 0.08), transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

/* Review Cards Upgrade */
.trust-section .review-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.45) 0%, rgba(10, 14, 23, 0.6) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(25px);
    border-radius: 24px !important;
    padding: 30px !important; /* Adjusted padding */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    height: 100%; /* Ensure all cards have same height */
    margin: 10px 0; /* Add small vertical margin for shadows */
    display: flex;
    flex-direction: column;
}

.trust-section .review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(142, 117, 255, 0.4) !important;
    box-shadow: 0 20px 60px rgba(142, 117, 255, 0.1);
}

.trust-section .review-header strong {
    color: var(--primary);
    font-size: 18px;
}

/* --- SECTION: FAQ (Clean Contrast) --- */
.faq-section {
    padding: 120px 0;
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* Updated Dividers */
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    position: relative;
    z-index: 5;
}

/* Mesh Gradient Blobs - Hero Only */
/* Advanced Mesh Blobs */
.mesh-blobs {
    position: absolute;
    inset: 0;
    z-index: -3;
    filter: blur(80px); /* Increased blur for more luxury melt */
    opacity: 0.6;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: blob-float 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 124, 240, 0.3), transparent);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.2), transparent);
    bottom: 5%;
    right: -5%;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 223, 216, 0.15), transparent);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(100px, -50px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-50px, 100px) scale(0.9) rotate(240deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

/* Section Connectivity Strategy */
/* Section Connectivity Strategy removed overlap to avoid duplication */

/* Floating Ornaments */
.hero-ornament {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.ornament-circle {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    top: 150px;
    left: -150px;
    animation: rotate-slow 30s linear infinite;
}

.ornament-circle-2 {
    width: 450px;
    height: 450px;
    border: 1px dashed rgba(14, 165, 233, 0.05);
    border-radius: 50%;
    top: 100px;
    left: -200px;
    animation: rotate-slow 45s linear infinite reverse;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating 3D Icons in Hero */
.floating-3d-asset {
    position: absolute;
    width: 120px;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    animation: float-asset 6s ease-in-out infinite;
    z-index: 5;
}

.asset-capcut-anchored {
    position: absolute;
    top: 80px; /* Better vertical alignment against the side */
    right: -45px;
    width: 100px;
    z-index: 101;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    animation: floating-logo 4s ease-in-out infinite;
}

@keyframes floating-logo {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-15px) rotate(-8deg); }
}

.asset-chatgpt {
    bottom: 120px;
    left: 8%;
    width: 110px;
    animation-delay: -3s;
}

@keyframes float-asset {
    0%, 100% { transform: translateY(0) rotate(5deg) scale(1); }
    50% { transform: translateY(-20px) rotate(-5deg) scale(1.05); }
}

.gradient-text {
    background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(0, 124, 240, 0.2));
}

.hero-epic-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-video-right {
    display: flex;
    justify-content: center;
}

.hero-video-right {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 2000px;
}

/* VSL iPhone Frame - 100% CSS Premium Mockup */
.vsl-iphone-wrapper {
    position: relative;
    width: 300px; /* Slightly larger */
    height: 620px; /* Scaling height to maintain aspect ratio */
    background: #080808;
    border-radius: 54px; /* Real iPhone radius */
    padding: 10px; /* The Bezel */
    box-shadow: 
        0 0 0 2px #1a1a1a, /* Inner metal ring */
        0 0 0 5px #0a0a0a, /* Outer frame */
        0 30px 100px -20px rgba(0,0,0,0.8),
        0 0 60px var(--primary-glow);
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vsl-iphone-wrapper:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
    box-shadow: 
        0 0 0 2px #222,
        0 0 0 6px #111,
        0 50px 120px -30px rgba(0,0,0,0.9),
        0 0 80px var(--primary-glow);
}

/* Dynamic Island */
.vsl-iphone-wrapper::before {
    content: '';
    position: absolute;
    top: 24px;
    width: 85px;
    height: 26px;
    background: #000;
    border-radius: 20px;
    z-index: 100;
    box-shadow: inset 0 0 4px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Glass Screen Container */
.vsl-screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 44px; /* Inner radius */
    background: #000;
    overflow: hidden;
    z-index: 5;
    -webkit-mask-image: -webkit-radial-gradient(white, black); /* Fix for overflow: hidden on Safari */
    mask-image: radial-gradient(white, black);
}

.vsl-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Vertical fit */
    display: block;
}

/* Realistic Screen Glare */
.vsl-screen-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.07) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
    opacity: 0.5;
}

/* Cleanup old styles */
.iphone-frame-img {
    display: none;
}

.hero-epic h1 {
    font-size: clamp(32px, 5.5vw, 68px) !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    margin-bottom: 24px;
    letter-spacing: -2px !important;
    text-transform: uppercase;
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero-epic .hook-badge {
    background: rgba(0, 124, 240, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 124, 240, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 124, 240, 0.2);
}

.hero-epic .hero-title {
    font-size: clamp(40px, 6vw, 85px);
    line-height: 1.0;
    margin: 30px 0;
    letter-spacing: -3px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-epic .sub-hook {
    font-size: clamp(16px, 1.2vw, 19px);
    color: var(--text-dim);
    max-width: 550px;
    margin: 0 0 40px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-actions-main {
    text-align: left;
    margin-top: 40px;
}

.btn-hero-main {
    padding: 24px 48px !important;
    border-radius: 50px !important;
}

/* Pain Points Section */
.pain-section {
    padding: 100px 0;
    background: #080808;
}

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

.pain-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 20px;
    transition: 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pain-card:hover {
    border-color: var(--ruyter-red);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

.pain-card i {
    font-size: 32px;
    color: #ff4757;
    margin-bottom: 24px;
}

.pain-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pain-card p {
    color: var(--text-secondary);
}

/* Method Section Refined */
.hero-video-right .vsl-container {
    width: 100%;
    transform: scale(1.05); /* Slight pop for the video */
    transform-origin: center;
}
/* --- SECTION: HIGH-TECH BENEFITS GRID --- */
.benefits-tech-section {
    padding: 140px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.tech-grid-wrapper {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    margin-top: 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 2;
}

.tech-card {
    padding: 60px 40px;
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, rgba(0, 124, 240, 0.05) 0%, rgba(0, 223, 216, 0.05) 50%, rgba(0, 0, 0, 1) 100%);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    cursor: default;
}

.tech-card.highlighted {
    background: linear-gradient(135deg, rgba(0, 124, 240, 0.2) 0%, rgba(0, 223, 216, 0.1) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 0 50px rgba(0, 124, 240, 0.3);
    transform: scale(1.05);
    z-index: 5;
    animation: card-pulse-highlight 3s infinite alternate;
}

@keyframes card-pulse-highlight {
    0% { box-shadow: 0 0 30px rgba(0, 124, 240, 0.2); border-color: var(--primary); }
    100% { box-shadow: 0 0 60px rgba(0, 223, 216, 0.4); border-color: var(--primary-bright); }
}

.tech-card.highlighted::before {
    content: 'MAIS IMPORTANTE';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    font-weight: 900;
    padding: 6px 14px;
    background: linear-gradient(90deg, var(--primary), var(--primary-bright));
    color: #000;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px rgba(0, 223, 216, 0.5);
}

.tech-card.highlighted h3 {
    background: linear-gradient(90deg, #fff, var(--primary-bright));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    margin-bottom: 25px;
}

.tech-card.highlighted p strong {
    color: var(--primary-bright);
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 223, 216, 0.5);
}

.tech-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 124, 240, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.tech-card:hover {
    background: linear-gradient(135deg, rgba(0, 124, 240, 0.1) 0%, rgba(0, 223, 216, 0.08) 50%, rgba(10, 10, 10, 1) 100%);
    transform: translateY(-5px);
    border-color: rgba(0, 124, 240, 0.3);
}

.tech-card:hover .tech-card-glow {
    opacity: 1;
}

/* Crosshair Ornaments */
.crosshair {
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    font-size: 18px;
    z-index: 10;
    pointer-events: none;
}

.ch-tl { top: -10px; left: -10px; }
.ch-tr { top: -10px; right: -10px; }
.ch-bl { bottom: -10px; left: -10px; }
.ch-br { bottom: -10px; right: -10px; }
.ch-tc { top: -10px; left: 33.33%; transform: translateX(-50%); }
.ch-tc::after { content: '+'; position: absolute; left: 100%; transform: translateX(33.33vw); } /* Approximation for center columns */
.ch-bc { bottom: -10px; left: 50%; transform: translateX(-50%); }
.ch-lc { top: 50%; left: -10px; transform: translateY(-50%); }
.ch-rc { top: 50%; right: -10px; transform: translateY(-50%); }

/* Feature Icons */
.tech-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    position: relative;
}

.tech-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 124, 240, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    background: rgba(0, 124, 240, 0.05);
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 124, 240, 0.1);
}

.tech-card:hover .tech-icon-inner {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    background: rgba(0, 124, 240, 0.15);
}

.tech-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.5px;
}

.tech-card p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .tech-grid {
        grid-template-columns: 1fr 1fr;
    }
    .crosshair { display: none; } /* Simplify for mobile */
}

@media (max-width: 640px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .tech-card {
        padding: 40px 30px;
    }
}

/* --- PREMIUM ANIMATED BUTTONS --- */
.cta-aggressive {
    background: linear-gradient(90deg, var(--primary), var(--primary-bright));
    color: #fff !important;
    padding: 24px 52px;
    font-size: 17px;
    font-weight: 900;
    border-radius: 100px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--primary-glow);
    z-index: 1;
}

.cta-aggressive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
    z-index: -1;
}

.cta-aggressive:hover::before {
    left: 100%;
}

.cta-aggressive:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 20px 60px var(--primary);
}

.cta-aggressive i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-aggressive:hover i {
    transform: translateX(5px);
}

@keyframes pulse-primary {
    0% { box-shadow: 0 0 0 0 rgba(0, 124, 240, 0.6); }
    70% { box-shadow: 0 0 0 25px rgba(0, 124, 240, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 124, 240, 0); }
}

/* Scarcity Bar */
.scarcity-bar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 10px 0; /* Reduced padding */
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px; /* Smaller font */
    letter-spacing: 2px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 11000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* Scarcity Timer Highlights */
#landing-timer {
    color: #fff;
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Inter', monospace;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 0 15px var(--primary-glow);
}

@keyframes timer-pulse {
    from { transform: scale(1); filter: brightness(1); }
    to { transform: scale(1.05); filter: brightness(1.2); }
}

/* Pricing Grid Remodel */
/* Services Showcase Strategy */
.suite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.plan-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    text-align: center;
    backdrop-filter: blur(20px);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-logo-vibe {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Brand Specific Glows */
.card-capcut { border: 2px solid var(--primary) !important; background: linear-gradient(180deg, rgba(0, 124, 240, 0.08) 0%, rgba(10, 10, 10, 0.6) 100%) !important; }
.card-capcut .service-logo-vibe { color: var(--primary); text-shadow: 0 0 15px var(--primary-glow); border-color: var(--primary); }
.card-capcut .price-main { color: var(--primary); }

.card-chatgpt .service-logo-vibe { color: #10a37f; text-shadow: 0 0 15px rgba(16, 163, 127, 0.4); }
.card-gemini .service-logo-vibe { color: var(--primary); text-shadow: 0 0 15px var(--primary-glow); }
.card-canva .service-logo-vibe { color: #00c4cc; text-shadow: 0 0 15px rgba(0, 196, 204, 0.4); }

.price-main {
    font-size: 38px;
    font-weight: 900;
    margin: 10px 0;
    letter-spacing: -1px;
}

.price-main span {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 500;
}

.plan-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 42px;
}

.plan-card .btn-buy {
    margin-top: auto;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.card-capcut .btn-buy {
    background: var(--primary);
    color: #000;
    border: none;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.card-capcut .btn-buy:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px var(--primary);
}

@media (max-width: 991px) {
    .suite-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 500px) {
    .suite-grid { grid-template-columns: 1fr !important; }
}

/* Infinite Scroll for Logos */
.trust-bar-scroll {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
}

.trust-bar-scroll .scroll-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    min-width: 100%;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 40px)); }
}

/* Pulsing CTA */
.pulse-gold {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(252, 205, 77, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(252, 205, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(252, 205, 77, 0); }
}


@keyframes pulse-mini {
    0% { box-shadow: 0 0 10px var(--primary-glow); }
    50% { box-shadow: 0 0 25px var(--primary-glow); }
    100% { box-shadow: 0 0 10px var(--primary-glow); }
}

.gradient-text {
    background: linear-gradient(90deg, #fff 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Minimalist Landing Footer */
.footer-landing {
    padding: 80px 0 40px;
    background: var(--dark);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-brand-landing img {
    height: 50px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.footer-links-landing {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links-landing a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links-landing a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 12px;
    color: #475569;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
}

.footer-bottom-landing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-payments-landing {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #94a3b8;
}

.footer-payments-landing i:hover {
    color: var(--primary);
}

/* 3D CapCut Experience Redefined */
.capcut-3d-box {
    position: relative;
    width: 100%;
    height: 180px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capcut-logo-3d {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 35px var(--primary-glow));
    animation: rotate-deep-3d 5s infinite ease-in-out alternate;
    transform-style: preserve-3d;
}

@keyframes rotate-deep-3d {
    0% { transform: rotateY(-25deg) rotateX(15deg) scale(0.9); }
    100% { transform: rotateY(25deg) rotateX(-15deg) scale(1.1); }
}

.neon-cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px var(--primary-glow);
}

@keyframes float-money {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-20px) rotate(calc(var(--rot, 0deg) + 10deg)); }
}

@media (max-width: 1200px) {
    .suite-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 991px) {
    html {
        scroll-behavior: auto !important;
    }
    
    .hero-epic-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px;
    }
    
    .hero-content-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-epic { padding: 160px 0 60px; }
    .hero-epic .hero-title { 
        font-size: clamp(32px, 10vw, 42px) !important; 
        letter-spacing: -1px !important;
        margin-bottom: 20px;
        line-height: 1.1 !important;
    }
    .hero-actions-main {
        text-align: center;
        margin-top: 20px;
    }
    .sub-hook { 
        margin: 0 auto 30px; 
        font-size: 16px !important;
        max-width: 90%;
        line-height: 1.5 !important;
    }
    .hook-badge {
        background: rgba(0, 124, 240, 0.1) !important;
        color: var(--primary) !important;
        border: 1px solid rgba(0, 124, 240, 0.3) !important;
        font-size: 11px !important;
        padding: 6px 16px !important;
        border-radius: 50px !important;
        display: inline-block !important;
    }
    
    /* Hide or reposition intrusive ornaments on mobile */
    .floating-3d-asset {
        display: none; /* Hide by default to avoid clutter */
    }
    
    .asset-capcut-anchored {
        display: none;
    }
    
    .hero-ornament {
        display: none;
    }

    .vsl-iphone-wrapper {
        width: 260px;
        height: 540px;
        margin: 0 auto;
    }

    .vsl-container {
        width: 100%;
        max-width: 260px;
        height: auto;
        margin: 0 auto;
    }

    .pain-grid { grid-template-columns: 1fr; }
    .method-item { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .method-step-num { display: none; }
    
    .suite-grid { 
        grid-template-columns: 1fr !important; 
        gap: 20px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }

    .bento-item {
        width: 100%;
        min-height: auto;
    }
    
    .bento-wide {
        grid-column: span 1 !important;
    }
}

/* Premium Footer Remodel */
.footer-landing {
    background: #000;
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-content-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand-side img {
    height: 50px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.footer-brand-side p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
}

.footer-nav-col h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.footer-link-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-link-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-legal-bar {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.disclaimer-text {
    color: #475569;
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.footer-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.payment-group {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 24px;
    color: #cbd5e1;
}

.payment-group i:hover {
    color: #fff;
}

@media (max-width: 968px) {
    .footer-content-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-link-list {
        align-items: center;
    }

    .footer-bottom-info {
        flex-direction: column;
        text-align: center;
    }
}

/* VSL Unmute Button - Premium Dynamic Style */
.vsl-unmute-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 25;
    background: var(--primary);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 30px var(--primary-glow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-audio 2s infinite;
}

.vsl-unmute-btn:hover {
    transform: scale(1.15);
    background: #fff;
}

/* VSL Unmute Button - Premium Glass Style */
.vsl-unmute-btn {
    position: absolute;
    bottom: 50px; /* Further offset to stay inside the inner screen */
    right: 40px;  /* Further offset to stay inside the inner screen */
    z-index: 50;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-glass 3s infinite;
}

.vsl-unmute-btn:hover {
    background: var(--primary);
    transform: scale(1.15);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.vsl-unmute-btn i {
    font-size: 22px;
}

@keyframes pulse-glass {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(255, 255, 255, 0); }
}

/* Member Avatars Enhancement */
.member-avatars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-stack {
    display: flex;
    position: relative;
    padding-left: 10px;
}

.avatar-stack img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #000;
    margin-left: -15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.avatar-stack img:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
    border-color: var(--primary);
}

.member-count-text {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.member-count-text span {
    color: var(--primary);
    font-weight: 800;
}

/* --- COMPARISON SECTION --- */
.comparison-section {
    position: relative;
    z-index: 10;
    will-change: transform; /* Hint for browser stability */
}

/* Stable Headers Fix */
.section-title, .section-subtitle, .hook-badge, .comparison-card {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-tag {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.card-tag.pro {
    background: var(--primary);
    color: #000;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.comparison-list li {
    font-size: 17px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main);
}

.comparison-list i {
    font-size: 20px;
}

.free-card i { color: #ef4444; }
.pro-card i { color: var(--primary); }

.pro-card {
    border: 1px solid var(--primary-glow);
    background: linear-gradient(135deg, rgba(0, 124, 240, 0.1) 0%, rgba(0,0,0,0) 100%);
}

.pro-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.3;
}

/* --- MODERN OFFERS SECTION --- */
.offers-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto 0;
    align-items: start;
}

.main-offer-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.main-offer-card.highlighted {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 124, 240, 0.2);
}

.badge-exclusive {
    position: absolute;
    top: 30px;
    left: 40px;
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    z-index: 5;
    letter-spacing: 1px;
}

.product-banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-banner img {
    width: 260px;
    height: auto;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    transition: 0.5s;
}

.main-offer-card:hover .product-banner img {
    transform: scale(1.05);
}

.offer-info {
    padding: 40px;
}

.offer-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.offer-info p {
    color: var(--text-dim);
    margin-bottom: 30px;
    line-height: 1.6;
}

.price-box {
    margin-bottom: 35px;
}

.old-price {
    font-size: 22px;
    color: #ff3b3b;
    text-decoration: line-through;
    opacity: 1;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 59, 59, 0.4);
    letter-spacing: 0.5px;
}

.new-price {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
}

.new-price span {
    font-size: 18px;
    color: var(--text-dim);
}

.btn-buy-now {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
    text-transform: uppercase;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--primary-glow);
    filter: brightness(1.1);
}

/* Bumps */
.bumps-container {
    background: rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 35px;
    padding: 30px;
}

.bump-header {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-bright);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.bump-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.bump-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.bump-logo {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.bump-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bump-info {
    flex: 1;
}

.bump-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.bump-info p {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 5px;
}

.bump-price {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.btn-add-bump {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.btn-add-bump:hover {
    background: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 991px) {
    .offers-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

.reviews-carousel {
    position: relative;
    padding: 60px 0 !important;
    /* Ultra smooth fade for the entire container */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    pointer-events: none !important; /* Block ALL touch from reaching Swiper */
}

.reviews-carousel::before,
.reviews-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.reviews-carousel::before {
    left: 0;
    background: linear-gradient(to right, #000 10%, transparent 100%);
    /* Masking the blur itself so it doesn't have a sharp edge */
    -webkit-mask-image: linear-gradient(to right, #000 30%, transparent 100%);
    mask-image: linear-gradient(to right, #000 30%, transparent 100%);
}

.reviews-carousel::after {
    right: 0;
    background: linear-gradient(to left, #000 10%, transparent 100%);
    /* Masking the blur itself so it doesn't have a sharp edge */
    -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 100%);
    mask-image: linear-gradient(to left, #000 30%, transparent 100%);
}

.reviews-carousel .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: stretch; /* Crucial for equal height */
}

.reviews-carousel .swiper-slide {
    height: auto;
    display: flex;
}

.review-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    transition: 0.4s;
    width: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: none !important; /* The nuclear fix: card is invisible to touch/clicks */
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.review-profile .review-avatar-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    background: rgba(0, 124, 240, 0.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.profile-meta {
    display: flex;
    flex-direction: column;
}

.profile-meta strong {
    font-size: 16px;
    color: #fff;
}

.profile-meta span {
    font-size: 13px;
    color: var(--text-dim);
}

.review-stars {
    margin-bottom: 20px;
    color: var(--gold);
    display: flex;
    gap: 4px;
}

.review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
    font-style: italic;
}

.swiper-pagination-bullet {
    background: var(--text-dim) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .reviews-carousel::before,
    .reviews-carousel::after {
        display: none; /* Removed overlays on mobile as they cause the 'so dark' bug */
    }
    .reviews-carousel {
        padding: 30px 0 !important;
        /* Using ONLY mask-image for mobile fade - much safer and cleaner */
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    }
    .review-card {
        padding: 30px !important;
        background: rgba(15, 23, 42, 0.6) !important; /* Original subtle dark */
        -webkit-tap-highlight-color: transparent !important; /* Disable mobile tap blue highlight */
        user-select: none !important;
        -webkit-user-select: none !important;
        pointer-events: none !important; /* Ensuring it remains invisible to touch on mobile */
    }
    .review-card:hover,
    .review-card:active,
    .review-card:focus {
        background: rgba(15, 23, 42, 0.6) !important;
        transform: none !important;
        box-shadow: none !important;
    }
    .review-card p {
        color: #cbd5e1 !important;
    }
}

/* /* --- NEXT LEVEL SECTION (PREMIUM OVERHAUL) --- */
.next-level-section {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 700px;
}

/* Dynamic Background */
.next-level-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float-orb 15s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #0044ff;
    bottom: -15%;
    right: -10%;
    animation-delay: -5s;
}

.circuit-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 124, 240, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 124, 240, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
}

@keyframes float-orb {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.1); }
}

.next-level-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.next-level-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-badge {
    background: rgba(0, 124, 240, 0.1);
    border: 1px solid rgba(0, 124, 240, 0.3);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.mega-logo {
    width: clamp(180px, 15vw, 240px);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.next-level-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.section-tagline {
    color: var(--text-dim);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Visual Display - Icons Orb */
.main-visual-display {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.glass-orb-container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.icon-orb {
    width: clamp(100px, 10vw, 150px);
    height: clamp(100px, 10vw, 150px);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.icon-orb:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 30px 60px var(--primary-glow);
}

.orb-icon {
    width: 65%;
    height: 65%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.astral-orb {
    background: linear-gradient(135deg, var(--primary), #0044ff);
}

.astral-orb .orb-icon {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255,255,255,0.3));
}

.orb-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    position: relative;
}

.connector-pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0 0 15px #fff;
    animation: move-pulse 3s infinite linear;
}

@keyframes move-pulse {
    0% { left: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Feature Grid Pills */
.premium-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pill-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 124, 240, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.site-logo-small img {
    width: 24px;
}

.pill-info {
    display: flex;
    flex-direction: column;
}

.pill-label {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.pill-meta {
    font-size: 12px;
    color: #cbd5e1;
    font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .premium-feature-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .glass-orb-container {
        flex-direction: column;
        gap: 30px;
    }

    .orb-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, transparent, var(--primary), transparent);
    }

    .connector-pulse {
        width: 8px;
        height: 8px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: move-pulse-vertical 3s infinite linear;
    }

    @keyframes move-pulse-vertical {
        0% { top: 0; opacity: 0; }
        50% { opacity: 1; }
        100% { top: 100%; opacity: 0; }
    }

    .next-level-header h2 {
        font-size: 32px;
    }
}

/* --- INTERACTIVE GUIDANCE --- */
@keyframes ctaPulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 124, 240, 0.4); }
    50% { transform: scale(1.08); box-shadow: 0 0 50px rgba(0, 124, 240, 1); filter: brightness(1.3); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 124, 240, 0.4); }
}

.cta-flash-highlight {
    animation: ctaPulseGlow 0.8s ease-in-out infinite;
    z-index: 100;
    position: relative;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    z-index: 2400;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
}

