:root {
    --bg-color: #0b0e14;
    --bg-card: #151923;
    --primary: #00e676; /* Neon Green */
    --primary-glow: rgba(0, 230, 118, 0.4);
    --secondary: #3d5afe;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, .logo span {
    font-family: var(--font-heading);
    color: var(--text-main);
}

.highlight {
    color: var(--primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background-color: #00c853;
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-nav-cta {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #0b0e14;
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 14px rgba(0, 230, 118, 0.5), 0 0 0 0 rgba(0, 230, 118, 0.3);
    animation: navCtaPulse 2.5s ease-in-out infinite;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 230, 118, 0.75);
    color: #0b0e14;
}

@keyframes navCtaPulse {
    0%, 100% { box-shadow: 0 0 14px rgba(0,230,118,0.5), 0 0 0 0 rgba(0,230,118,0.3); }
    50%       { box-shadow: 0 0 22px rgba(0,230,118,0.7), 0 0 0 6px rgba(0,230,118,0); }
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-card);
    border-color: var(--text-muted);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--primary);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 3px 6px;
}

.nav {
    display: flex;
    gap: 32px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
}

.text-left {
    text-align: left;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, rgba(11, 14, 20, 0) 70%);
    z-index: -1;
}

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

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
    white-space: nowrap;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* Features Section */
.features {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(0, 230, 118, 0.05);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
}

.feature-icon i {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Proof Section */
.proof-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.proof-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.1);
}

.benefit-list {
    list-style: none;
    margin: 32px 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.benefit-list i {
    color: var(--primary);
    flex-shrink: 0;
}

.testimonial {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.quote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.author-info strong {
    display: block;
    line-height: 1.2;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* How It Works */
.how-it-works {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

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

.step-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 64px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -20px;
    text-align: left;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-muted);
}

/* Pricing */
.pricing {
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, rgba(11, 14, 20, 0) 70%);
    z-index: -1;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(21, 25, 35, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 230, 118, 0.1);
}

.pricing-header {
    text-align: center;
    padding: 40px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.05) 0%, transparent 100%);
}

.price {
    margin: 24px 0 8px;
}

.old-price {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 12px;
}

.current-price {
    font-size: 64px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
}

.pricing-desc {
    color: var(--text-muted);
}

.pricing-body {
    padding: 40px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.pricing-features i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

/* Footer */
.footer {
    background-color: #050609;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 8px;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: #475569;
    max-width: 800px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .proof-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .text-left {
        text-align: center;
    }

    .benefit-list li {
        justify-content: center;
        text-align: left;
    }

    .testimonial {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .features-grid, .steps-grid, .footer-top {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 14, 20, 0.98);
        flex-direction: column;
        padding: 24px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .nav.active {
        display: flex;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    .section-title {
        font-size: 28px;
    }
    .feature-card, .step-card {
        padding: 24px;
    }
    .pricing-body {
        padding: 24px;
    }
    .current-price {
        font-size: 48px;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-property: opacity, transform;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-in"] {
    transform: translateY(0);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
}

.hover-float {
    transition: transform 0.3s ease;
}
.hover-float:hover {
    transform: translateY(-8px);
}

/* CRO STYLES */
/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #ff8f00 0%, #ff5252 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
}
.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.highlight-text {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    background: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 4px;
}

/* Pulsing CTA */
.btn-pulse {
    background: linear-gradient(90deg, #ffab00 0%, #ff6d00 100%);
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(255, 171, 0, 0.4);
    animation: btn-pulse 2s infinite;
}
.btn-pulse:hover {
    background: linear-gradient(90deg, #ffc400 0%, #ff9100 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 171, 0, 0.6);
}

@keyframes btn-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 171, 0, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(255, 171, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 171, 0, 0); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Header Adjust */
.header { top: 40px; } /* Push down below banner */

/* Countdown */
.countdown-wrapper { margin-bottom: 40px; }
.countdown-text { color: var(--primary); font-weight: 600; margin-bottom: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px;}
.countdown { display: flex; gap: 12px; align-items: center; font-size: 24px; font-weight: 800; font-family: var(--font-heading); }
.time-box { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border-color); min-width: 80px;}
.time-label { font-size: 11px; color: var(--text-muted); font-weight: 400; text-transform: uppercase; }

/* Proof Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item { background: var(--bg-card); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; border-bottom: 1px solid var(--border-color); }
.gallery-caption { padding: 16px; font-size: 14px; color: var(--text-main); font-weight: 500; text-align: center; }

/* Comparison Table */
.comparison-table { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; background: var(--bg-card); border-radius: 24px; padding: 40px; border: 1px solid var(--border-color); }
.comp-col { padding: 32px; border-radius: 16px; }
.comp-bad { background: rgba(255, 82, 82, 0.05); border: 1px solid rgba(255, 82, 82, 0.2); }
.comp-good { background: rgba(0, 230, 118, 0.05); border: 1px solid rgba(0, 230, 118, 0.2); }
.comp-col h3 { font-size: 24px; margin-bottom: 24px; text-align: center; }
.comp-list { list-style: none; }
.comp-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.comp-bad i { color: #ff5252; flex-shrink: 0; }
.comp-good i { color: var(--primary); flex-shrink: 0; }

/* Enhanced Pricing Layout */
.pricing-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.guarantee-card { padding: 40px; background: rgba(255,255,255,0.02); border-left: 4px solid var(--primary); border-radius: 16px; }
.guarantee-icon { color: var(--primary); width: 48px; height: 48px; margin-bottom: 24px; }
.guarantee-icon i { width: 100%; height: 100%; }
.guarantee-card h3 { font-size: 28px; margin-bottom: 16px; }
.guarantee-list { margin: 24px 0; list-style: disc; padding-left: 20px; color: var(--text-muted); }
.guarantee-list strong { color: var(--text-main); }
.guarantee-note { font-style: italic; color: var(--primary); font-size: 14px; }

/* FAQ Section */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 24px; font-size: 18px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-q:hover { color: var(--primary); }
.faq-q i { transition: transform 0.3s; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-muted); }
.faq-item.active .faq-a { padding: 0 24px 24px; max-height: 500px; }
.faq-item.active .faq-q i { transform: rotate(180deg); }

/* Responsive Adjustments for new elements */
@media (max-width: 992px) {
    .pricing-wrapper, .comparison-table { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr !important; }
    .comp-col { padding: 24px; }
    .top-banner { font-size: 12px; padding: 8px; }
    .header { top: 35px; }
}

/* =============================================
   PRICING — 3 TIER GRID
   ============================================= */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: start;
}

.pricing-card-new {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.pricing-card-new:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

.pricing-card-new.popular {
    border: 2px solid var(--primary);
    background: rgba(0,230,118,0.04);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,230,118,0.15);
}

.pricing-card-new.popular:hover { transform: translateY(-14px); }

.pricing-card-new.best-value {
    border: 2px solid var(--secondary);
    background: rgba(61,90,254,0.04);
}

.pricing-card-new.best-value:hover { border-color: #6b7fff; }

.pcn-popular-badge, .pcn-best-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.pcn-popular-badge { background: var(--primary); color: #000; }
.pcn-best-badge    { background: var(--secondary); color: #fff; }

.pcn-header { margin-bottom: 24px; }

.pcn-plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.pcn-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.pcn-old-price {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pcn-new-price {
    font-size: 52px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1;
}

.popular  .pcn-new-price { color: var(--primary); }
.best-value .pcn-new-price { color: #7c8fff; }

.pcn-per-month {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pcn-saving {
    display: inline-block;
    background: rgba(0,230,118,0.12);
    color: var(--primary);
    border: 1px solid rgba(0,230,118,0.25);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.best-value .pcn-saving {
    background: rgba(61,90,254,0.12);
    color: #7c8fff;
    border-color: rgba(61,90,254,0.25);
}

.pcn-features {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pcn-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.pcn-features li.yes { color: var(--text-main); }
.pcn-features li.no  { color: var(--text-muted); opacity: 0.45; text-decoration: line-through; }
.pcn-features i      { width: 16px; height: 16px; flex-shrink: 0; }
.pcn-features li.yes i { color: var(--primary); }
.pcn-features li.no  i { color: var(--text-muted); }

.pcn-cta { font-size: 15px; padding: 14px; }

/* Guarantee Full Width */
.guarantee-full-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--primary);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,230,118,0.07);
}

.guarantee-full-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.guarantee-full-icon i { width: 52px; height: 52px; }

.guarantee-full-content h3 { font-size: 22px; margin-bottom: 12px; }
.guarantee-full-content p  { color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }

@media (max-width: 992px) {
    .pricing-cards-grid { grid-template-columns: 1fr; }
    .pricing-card-new.popular { transform: none; }
    .guarantee-full-card { flex-direction: column; gap: 16px; }
}

@media (max-width: 768px) {
    .guarantee-full-card { padding: 24px; }
    .pcn-new-price { font-size: 44px; }
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Channel Cards */
.contact-channels-title,
.contact-form-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
}

.contact-channel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.contact-channel-card:hover {
    transform: translateX(6px);
    border-color: var(--primary);
    background: rgba(0, 230, 118, 0.05);
}

.zalo-card:hover { border-color: #0068FF; background: rgba(0, 104, 255, 0.05); }
.whatsapp-card:hover { border-color: #25D366; background: rgba(37, 211, 102, 0.05); }
.telegram-card:hover { border-color: #229ED9; background: rgba(34, 158, 217, 0.05); }
.phone-card:hover { border-color: var(--primary); }
.email-card:hover { border-color: #ff6d00; background: rgba(255, 109, 0, 0.05); }

.channel-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.channel-icon svg {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    width: 22px;
    height: 22px;
}

.phone-bg { background: var(--primary); color: #000; }
.email-bg { background: linear-gradient(135deg, #ff6d00, #ff8f00); color: #fff; }

.channel-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.channel-name {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.channel-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.channel-arrow {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-channel-card:hover .channel-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
    width: 100%;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(0, 230, 118, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    font-size: 16px;
    padding: 16px;
    margin-top: 8px;
    transition: var(--transition);
}

.contact-submit:hover {
    transform: translateY(-2px);
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
}

.form-success.show {
    display: flex;
}

.form-success i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Contact responsive */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
}

/* =============================================
   FLOATING SOCIAL WIDGET
   ============================================= */
.floating-social {
    position: fixed;
    bottom: 32px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-social-toggle {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.5);
    transition: var(--transition);
    animation: btn-pulse 2.5s infinite;
    gap: 2px;
}

.floating-social-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0, 230, 118, 0.7);
}

.floating-social-toggle i {
    width: 24px;
    height: 24px;
}

.floating-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.floating-social-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.floating-social-items.open {
    max-height: 400px;
    opacity: 1;
    pointer-events: all;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    white-space: nowrap;
}

.float-btn:hover {
    transform: translateX(-4px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.float-btn i,
.float-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.float-zalo    { background: #0068FF; }
.float-whatsapp { background: #25D366; }
.float-telegram { background: #229ED9; }
.float-phone   { background: var(--primary); color: #000; }
.float-email   { background: linear-gradient(135deg, #ff6d00, #ff8f00); }

@media (max-width: 480px) {
    .floating-social { bottom: 20px; right: 16px; }
    .floating-social-toggle { width: 50px; height: 50px; }
    .float-btn span { display: none; }
    .float-btn { padding: 10px; border-radius: 50%; }
}

/* Spin animation for loading icon */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.spin-icon { animation: spin 0.8s linear infinite; }

/* =============================================
   MODAL SHARED BASE
   ============================================= */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: rgba(255,255,255,0.15);
    color: var(--text-main);
}

.modal-close i { width: 16px; height: 16px; }

/* =============================================
   PAYMENT MODAL
   ============================================= */
.payment-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.open .payment-modal {
    transform: translateY(0) scale(1);
}

/* Order Summary */
.modal-order-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 24px 20px;
    background: linear-gradient(135deg, rgba(0,230,118,0.07) 0%, rgba(61,90,254,0.05) 100%);
    border-bottom: 1px solid var(--border-color);
}

.modal-product-name {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
}

.modal-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-old-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.modal-new-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
}

.modal-save-badge {
    background: rgba(0, 230, 118, 0.15);
    color: var(--primary);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.modal-guarantee-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
}

.modal-guarantee-note i { width: 15px; height: 15px; }

/* Payment Tabs Nav */
.payment-tabs-nav {
    display: flex;
    gap: 4px;
    padding: 16px 24px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.payment-tabs-nav::-webkit-scrollbar { display: none; }

.pay-tab-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.pay-tab-btn:hover {
    color: var(--text-main);
    border-color: rgba(255,255,255,0.2);
}

.pay-tab-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* Pay Panels */
.pay-panel {
    display: none;
    padding: 20px 24px 28px;
    flex-direction: column;
    gap: 16px;
}

.pay-panel.active { display: flex; }

.pay-method-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.pay-security-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pay-security-row span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}

.pay-security-row i { width: 13px; height: 13px; color: var(--primary); }

/* Payment Method Buttons */
.btn-pay-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-pay-method:hover { transform: translateY(-2px); }
.btn-pay-method i { width: 20px; height: 20px; }
.ext-icon { width: 14px; height: 14px; margin-left: auto; opacity: 0.6; }

.stripe-pay {
    background: linear-gradient(135deg, #635bff, #7c74ff);
    color: #fff;
    box-shadow: 0 4px 20px rgba(99, 91, 255, 0.4);
}

.stripe-pay:hover { box-shadow: 0 6px 28px rgba(99, 91, 255, 0.6); }

.paypal-pay {
    background: linear-gradient(135deg, #003087, #009cde);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 48, 135, 0.4);
}

.paypal-pay:hover { box-shadow: 0 6px 28px rgba(0, 48, 135, 0.5); }

.momo-pay {
    background: linear-gradient(135deg, #a50064, #d4007a);
    color: #fff;
    box-shadow: 0 4px 20px rgba(165, 0, 100, 0.4);
}

.momo-pay:hover { box-shadow: 0 6px 28px rgba(165, 0, 100, 0.6); }

.momo-icon-text {
    width: 24px;
    height: 24px;
    background: #fff;
    color: #a50064;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}

/* Confirm paid button */
.btn-confirm-paid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-confirm-paid:hover {
    background: rgba(0, 230, 118, 0.08);
}

.btn-confirm-paid i { width: 17px; height: 17px; }

/* Bank Details Card */
.bank-details-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 12px;
}

.bank-row:last-child { border-bottom: none; }
.bank-row span { font-size: 13px; color: var(--text-muted); flex-shrink: 0; }
.bank-val { font-size: 14px; font-weight: 600; text-align: right; }
.bank-val.highlight { color: var(--primary); }

.copyable {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border-radius: 6px;
    padding: 2px 6px;
    transition: var(--transition);
}

.copyable:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
}

.copy-icon { width: 13px; height: 13px; }

/* Bank QR Placeholder */
.bank-qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bank-qr-placeholder {
    width: 160px;
    height: 160px;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    padding: 16px;
}

.bank-qr-placeholder i { width: 40px; height: 40px; color: var(--text-muted); }
.qr-caption { font-size: 12px; color: var(--text-muted); }

/* ===================== WAITLIST SECTION ===================== */
.waitlist {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 230, 118, 0.03) 50%, var(--bg-color) 100%);
    border-top: 1px solid var(--border-color);
}

.waitlist-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.waitlist-form {
    background: var(--bg-card);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.06);
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-main);
}

.checkbox-item:hover,
.radio-item:hover {
    border-color: rgba(0, 230, 118, 0.4);
    background: rgba(0, 230, 118, 0.05);
}

.radio-item:has(input:checked),
.checkbox-item:has(input:checked) {
    border-color: var(--primary);
    background: rgba(0, 230, 118, 0.12);
    color: var(--primary);
    font-weight: 600;
}

.checkbox-item input,
.radio-item input {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-diagnose {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #00e676 0%, #00c853 60%, #00e676 100%);
    background-size: 200% auto;
    color: #0b0e14;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 24px rgba(0, 230, 118, 0.45), 0 0 0 0 rgba(0, 230, 118, 0.3);
    animation: diagnosePulse 2.2s ease-in-out infinite, shimmer 3s linear infinite;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
    overflow: hidden;
}

.btn-diagnose::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: btnShimmer 2.8s ease-in-out infinite;
}

@keyframes btnShimmer {
    0%   { left: -75%; }
    60%  { left: 125%; }
    100% { left: 125%; }
}

@keyframes diagnosePulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(0,230,118,0.45), 0 0 0 0 rgba(0,230,118,0.25); }
    50%       { box-shadow: 0 6px 32px rgba(0,230,118,0.6), 0 0 0 8px rgba(0,230,118,0); }
}

.btn-diagnose:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(0, 230, 118, 0.6);
}

.btn-diagnose:active {
    transform: translateY(0);
}

.btn-diagnose-main {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.btn-diagnose-main [data-lucide] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-diagnose-sub {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.75;
    line-height: 1;
}

.waitlist-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 20px;
}

.waitlist-divider::before,
.waitlist-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.waitlist-divider span {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.waitlist-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

#waitlist-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
}

#waitlist-success.visible {
    display: flex;
}

@media (max-width: 600px) {
    .waitlist-form {
        padding: 24px 16px;
    }
}
/* ============================================================ */

/* MoMo Card */
.momo-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(165, 0, 100, 0.08);
    border: 1px solid rgba(165, 0, 100, 0.25);
    border-radius: 12px;
}

.momo-logo {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #a50064, #d4007a);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
}

.momo-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.momo-number { font-size: 22px; font-weight: 800; letter-spacing: 1px; }
.momo-name { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.momo-details { display: flex; flex-direction: column; gap: 6px; }

/* =============================================
   LICENSE DELIVERY MODAL
   ============================================= */
.delivery-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 40px 32px;
    position: relative;
    text-align: center;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.open .delivery-modal {
    transform: translateY(0) scale(1);
}

.delivery-emoji { font-size: 56px; line-height: 1; margin-bottom: 16px; }
.delivery-title { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.delivery-desc { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }

.delivery-timer-badge {
    display: inline-block;
    background: rgba(0,230,118,0.1);
    border: 1px solid rgba(0,230,118,0.3);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 24px;
}

.delivery-steps {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
}

.d-step {
    flex: 1;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
}

.d-step-num {
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.d-step p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.delivery-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.d-channel-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    transition: var(--transition);
}

.d-channel-btn i { width: 18px; height: 18px; flex-shrink: 0; }
.d-channel-btn i:last-child { margin-left: auto; opacity: 0.6; }
.d-channel-btn:hover { transform: translateX(4px); }

.d-zalo { background: linear-gradient(135deg, #0068ff, #3d8bff); }
.d-telegram { background: linear-gradient(135deg, #229ED9, #52b9e8); }
.d-email { background: linear-gradient(135deg, #ff6d00, #ff9100); }

.delivery-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: left;
}

.delivery-note i { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; margin-top: 2px; }
.delivery-note span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* =============================================
   EMAIL CAPTURE POPUP
   ============================================= */
.email-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    z-index: 1999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.email-popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.email-popup-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 460px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-popup-overlay.open .email-popup-box {
    transform: scale(1) translateY(0);
}

.popup-x-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.popup-x-btn:hover { background: rgba(255,255,255,0.15); color: var(--text-main); }
.popup-x-btn i { width: 14px; height: 14px; }

.popup-gift-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff8f00, #ff5252);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.popup-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.popup-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.popup-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.popup-form input::placeholder { color: var(--text-muted); opacity: 0.7; }

.popup-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,230,118,0.1);
}

.popup-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.popup-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.25);
    border-radius: 10px;
    text-align: left;
    margin-bottom: 12px;
}

.popup-success.show { display: flex; }
.popup-success i { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; }
.popup-success strong { color: var(--primary); font-size: 15px; display: block; margin-bottom: 2px; }
.popup-success p { font-size: 13px; color: var(--text-muted); }

.popup-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}

.popup-privacy i { width: 12px; height: 12px; }

/* Responsive Modals */
@media (max-width: 768px) {
    .modal-order-summary { flex-direction: column; align-items: flex-start; gap: 8px; }
    .payment-modal { border-radius: 16px; }
    .delivery-steps { flex-direction: column; }
    .email-popup-box { padding: 28px 20px; }
    .popup-title { font-size: 22px; }
    .delivery-modal { padding: 28px 20px; }
    .delivery-title { font-size: 20px; }
}
