:root {
    --bg-dark: #000000;
    --card-bg: #0a0a0a;
    --accent-cyan: #00e5ff;
    --accent-emerald: #6ba3ff;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --gradient-primary: linear-gradient(135deg, #00e5ff 0%, #0070f3 100%);
    --shadow-neon: 0 0 20px rgba(0, 229, 255, 0.3);
    --glass-effect: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: var(--glass-effect);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 229, 255, 0.5);
    display: inline-block;
    border: 1px solid rgba(0, 229, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px -10px rgba(0, 229, 255, 0.8);
    background: linear-gradient(135deg, #00e5ff 20%, #0070f3 100%);
}

@keyframes bounceFast {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.btn-bounce {
    animation: bounceFast 0.5s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Header/Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.badge {
    background: var(--glass-effect);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.magenta-text {
    color: #00e5ff;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.35);
}

.white-text {
    color: #ffffff;
}

.hero-title .text-block {
    display: inline;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.pills-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.pill {
    background: var(--glass-effect);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-media {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glass-border);
}

.hero-media img {
    width: 100%;
    display: block;
}

/* Video Preview Section Styles */
.video-section-wrapper {
    max-width: 1000px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 5;
    padding: 0 1rem;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--glass-border);
}

.video-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 50px 110px -20px rgba(0, 229, 255, 0.25);
    border-color: rgba(0, 229, 255, 0.4);
}

.video-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transition: transform 0.8s ease, filter 0.5s ease;
}

.video-container:hover .placeholder-img {
    transform: scale(1.05);
    filter: brightness(0.7) contrast(1.1);
}

.play-icon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: all 0.4s ease;
}

.play-circle {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-circle svg {
    width: 36px;
    height: 36px;
    margin-left: 5px;
}

.video-container:hover .play-circle {
    background: #00e5ff;
    border-color: #00e5ff;
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.6);
}

.video-container:hover .play-circle svg path {
    fill: #000;
}

.coming-soon {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    background: rgba(0, 255, 136, 0.1);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.video-container:hover .coming-soon {
    transform: translateY(0);
    opacity: 1;
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--accent-cyan);
}

.video-container video {
    width: 100%;
    display: block;
}

/* Carousel / Marquee section */
.marquee-container {
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
}

.marquee-fade-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 15vw;
    background: linear-gradient(to right, var(--bg-dark), transparent);
    z-index: 20;
    pointer-events: none;
}

.marquee-fade-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15vw;
    background: linear-gradient(to left, var(--bg-dark), transparent);
    z-index: 20;
    pointer-events: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    padding-right: 1.5rem;
    animation: marquee 40s linear infinite;
    margin-bottom: 2rem;
}

.marquee-track-reverse {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    padding-right: 1.5rem;
    animation: marquee-reverse 45s linear infinite;
}

.marquee-track:hover, .marquee-track-reverse:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-item {
    width: 240px;
    aspect-ratio: 4 / 5;
    position: relative;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .marquee-item {
        width: 300px;
    }
}

.marquee-item-glow {
    position: absolute;
    inset: 0;
    background: rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.marquee-item:hover .marquee-item-glow {
    opacity: 1;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    transition: transform 0.5s ease;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.marquee-item:hover img {
    transform: scale(1.02);
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-item {
    padding: 2.5rem;
    transition: transform 0.3s;
}

.bento-item:hover {
    transform: translateY(-5px);
}

.bento-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bento-item p {
    color: var(--text-secondary);
}

.bento-1 { grid-column: span 2; }
.bento-2 { grid-column: span 1; }
.bento-3 { grid-column: span 1; }
.bento-4 { grid-column: span 2; }

/* Pricing */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '✓';
    color: var(--accent-cyan);
    margin-right: 10px;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .container { padding: 0 1.2rem; }
    section { padding: 3rem 0; }
    .section-head { margin-bottom: 2rem; }
    .section-head h2 { font-size: 1.8rem; }
    .hero { padding: 5rem 0 3rem; }
    
    /* Optimized Typography to match screenshot */
    .hero h1.hero-title { 
        font-size: 2.3rem; /* Make it large and punchy */
        line-height: 1.1; 
        letter-spacing: -1px;
    }
    .hero-title .text-block {
        display: block; /* Break lines naturally for impact */
    }

    .hero p { margin: 0 auto 1.5rem; font-size: 1rem; line-height: 1.4; }
    .badge { margin-bottom: 1rem; padding: 0.3rem 0.8rem; font-size: 0.7rem; }
    .hero-media { margin-top: 1rem; }
    
    .pills-container { gap: 0.5rem; margin-bottom: 2.5rem; }
    .pill { font-size: 0.65rem; padding: 0.4rem 0.8rem; }
    .nav-links { display: none; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-1, .bento-2, .bento-3, .bento-4 { grid-column: span 1; }
    .btn-primary { width: auto; text-align: center; padding: 0.8rem 2rem; font-size: 1rem; display: block; margin-left: auto; margin-right: auto; }
    section .container { text-align: center; }
    section .container .glass { text-align: left; }
    section .container .bento-item { text-align: left; }
    .pricing-card { padding: 2rem 1.5rem; }
    
    /* Video Full Width on Mobile */
    .video-section-wrapper {
        margin-left: -1.2rem;
        margin-right: -1.2rem;
        width: 100vw;
        padding: 0;
        margin-bottom: 2rem;
    }
    .video-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .video-poster, .video-container video {
        border-radius: 0;
    }
}

/* ==========================================
   Value Stack Grid
   ========================================== */
.value-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.value-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 60px -15px rgba(0, 229, 255, 0.15);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
}

.value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.value-tag {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(0, 229, 255, 0.2);
    letter-spacing: 0.5px;
}

/* ==========================================
   Value Total Bar
   ========================================== */
.value-total-bar {
    margin-bottom: 3rem;
}

.value-total-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    backdrop-filter: blur(12px);
}

.value-total-left,
.value-total-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.value-total-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.value-total-amount {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: line-through;
    opacity: 0.4;
    color: var(--text-primary);
}

.value-total-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.value-total-price small {
    font-size: 1rem;
    -webkit-text-fill-color: var(--text-secondary);
}

/* ==========================================
   Pricing Badge
   ========================================== */
.pricing-badge {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==========================================
   Steps Row
   ========================================== */
.steps-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 3rem 0;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 300px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px -5px rgba(0, 229, 255, 0.4);
}

.step-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.step-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-cyan), transparent);
    align-self: center;
    margin-top: -2rem;
    opacity: 0.4;
}

/* ==========================================
   Desktop CTA Optimizations
   ========================================== */
@media (min-width: 769px) {
    .btn-primary {
        padding: 1rem 3rem;
        font-size: 1.15rem;
        letter-spacing: 0.5px;
    }
    
    .btn-hero {
        padding: 1.2rem 4rem !important;
        font-size: 1.3rem !important;
    }
    
    /* Nav Button shouldn't be massive */
    nav .btn-primary {
        padding: 0.6rem 1.8rem !important;
        font-size: 0.95rem !important;
    }
}

/* ==========================================
   Enhanced Mobile Optimizations
   ========================================== */
@media (max-width: 768px) {
    /* Value Stack: single column on mobile */
    .value-stack-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .value-card h4 {
        font-size: 1.05rem;
    }

    /* Value Total Bar mobile */
    .value-total-inner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .value-total-amount {
        font-size: 1.5rem;
    }

    .value-total-price {
        font-size: 2rem;
    }

    /* Steps vertical on mobile */
    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-item {
        padding: 1.5rem 1rem;
    }

    .step-divider {
        width: 2px;
        height: 30px;
        background: linear-gradient(to bottom, var(--accent-cyan), transparent);
        margin: 0;
    }

    /* Pricing card mobile */
    .pricing-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

    .pricing-card .price {
        font-size: 3rem;
    }

    /* Better spacing for mobile sections */
    .section-head p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Ensure touch targets are large enough */
    .features-list li {
        padding: 0.4rem 0;
        font-size: 0.95rem;
    }
}

/* ==========================================
   Purchase Popup Modal
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-popup {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 80px rgba(0, 229, 255, 0.25), 0 0 200px rgba(0, 229, 255, 0.08);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-popup {
    transform: translateY(0) scale(1);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
}
.modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(0, 229, 255, 0.4);
}
.modal-badge {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: pulseBadge 2s ease-in-out infinite;
}
.modal-popup h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.modal-popup .modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.modal-popup .price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}
.modal-popup .old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.5;
}
.modal-popup .features-list {
    text-align: left;
    margin: 1.5rem 0;
    list-style: none;
}
.modal-popup .features-list li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.modal-popup .features-list li::before {
    content: '✓';
    color: var(--accent-cyan);
    margin-right: 10px;
    font-weight: bold;
}
.modal-btn-cart {
    background: var(--gradient-primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    width: 100%;
    border: 1px solid rgba(0, 229, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 229, 255, 0.5);
    box-sizing: border-box;
}
.modal-btn-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px -10px rgba(0, 229, 255, 0.8);
}
.modal-secure {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .modal-popup {
        padding: 2rem 1.2rem;
    }
    .modal-popup .price {
        font-size: 2.5rem;
    }
}
