/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
    --primary: #0f5b8c;
    --primary-dark: #0a4163;
    --primary-light: #1a7ab3;
    --accent: #00d4aa;
    --dark: #0a0e27;
    --dark-light: #1a1f3a;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --primary-dark-alt: #050b14;
    --gradient-bg: linear-gradient(135deg, #050b14 0%, #0a192f 50%, #112240 100%);
    --accent-teal: #00e5ff;
    --accent-purple: #7b2cbf;
    --danger-red: #ff3366;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #e6f1ff;
    --text-muted: #8892b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark-alt);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #00d4aa, #0ea5e9);
    color: #0a0e27;
    box-shadow: 0 8px 20px rgba(0,212,170,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,212,170,0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid #00d4aa;
    color: #00d4aa;
}

.btn-outline:hover {
    background: rgba(0,212,170,0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-glow {
    background: linear-gradient(45deg, #00e5ff, #0077ff);
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-glow.outline {
    background: transparent;
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.4);
}

.btn-checkout {
    width: 100%;
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,212,170,0.4);
}

.btn-view {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
    display: block;
    margin-top: 10px;
}

.btn-view:hover {
    background: rgba(0,212,170,0.1);
}

.add-to-cart, .add-bundle {
    background: var(--accent);
    border: none;
    color: var(--dark);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.add-to-cart:hover, .add-bundle:hover {
    transform: scale(0.98);
    background: #00e6b8;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,212,170,0.2);
    z-index: 100;
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
}

.logo i {
    color: var(--accent-teal);
    font-size: 1.8rem;
}

.logo span span {
    color: var(--accent-teal);
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* 3D DNA Hero */
.hero-dna {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background: radial-gradient(circle at 30% 20%, #0a0e27, #020617);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.dna-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-wrap {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    backdrop-filter: blur(4px);
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    border-radius: 2rem;
    margin: 2rem;
    border: 1px solid rgba(0,212,170,0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content-wrap h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #00d4aa, #2dd4bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.25rem;
}

.hero-content-wrap h1 span {
    background: linear-gradient(135deg, #00d4aa, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content-wrap p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    color: #00d4aa;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.product-hero { padding: 40px 0 60px; }

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1200px) { .hero-title { font-size: 4rem; } }

.pain-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 51, 102, 0.12);
    color: var(--danger-red);
    border: 1px solid rgba(255, 51, 102, 0.3);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 51, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0); }
}

.hero-subtitle { font-size: 1rem; color: var(--accent-teal); font-weight: 500; margin: 16px 0 20px; line-height: 1.5; }

/* ========== TRUST BAR v2 (GLASS + SEPARATION) ========== */
.trust-premium {
    margin: 20px 0 40px;
    position: relative;
    z-index: 5;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    background: rgba(5, 11, 20, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 48px;
    padding: 20px 32px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,229,255,0.05);
}

.trust-item-modern {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    border-radius: 40px;
    transition: all 0.25s ease;
    background: rgba(0, 229, 255, 0.02);
    min-width: 160px;
}

.trust-item-modern:hover {
    background: rgba(0, 229, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(0,229,255,0.3);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, rgba(0,229,255,0.12), rgba(123,44,191,0.05));
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-teal);
    border: 1px solid rgba(0,229,255,0.3);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.trust-text h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 4px;
}
.trust-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

/* ========== STATS SECTION (PREMIUM GRID, GLASSMORPHISM, ANIMATION) ========== */
.stats-luxury {
    padding: 60px 0 40px;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.stats-headline {
    text-align: center;
    margin-bottom: 56px;
}

.stats-headline h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--accent-teal), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}
.stats-headline p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 20px 0 40px;
}

.stat-card-glass {
    background: linear-gradient(145deg, rgba(10, 20, 35, 0.75), rgba(5, 11, 20, 0.6));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 32px;
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.stat-card-glass::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(circle at 30% 10%, rgba(0,229,255,0.2), transparent 70%);
    border-radius: 34px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card-glass:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 20px 32px rgba(0,0,0,0.4), 0 0 18px rgba(0,229,255,0.2);
}
.stat-card-glass:hover::before {
    opacity: 1;
}

.stat-icon-large {
    font-size: 2.6rem;
    color: var(--accent-teal);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(0,229,255,0.08);
    padding: 12px;
    border-radius: 60px;
    width: 70px;
    height: 70px;
    line-height: 1;
    text-align: center;
    border: 1px solid rgba(0,229,255,0.25);
}

.stat-number-premium {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--accent-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.stat-label-premium {
    font-weight: 600;
    font-size: 1rem;
    color: #cbd5e6;
    margin-bottom: 5px;
}

.stat-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ========== ADDITIONAL TRUST DECK (SEPARATION & CONTENT) ========== */
.trust-deck {
    margin: 40px 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.certificate-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 20px 24px;
    flex: 1;
    min-width: 220px;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.25s;
}
.certificate-card:hover {
    border-color: rgba(0,229,255,0.3);
    background: rgba(0,229,255,0.02);
}
.cert-icon {
    font-size: 2rem;
    color: var(--accent-teal);
}
.cert-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}
.cert-text p {
    font-size: 0.75rem;
    color: #94a3b8;
}

.urgency-note {
    background: linear-gradient(95deg, rgba(255,51,102,0.08), rgba(0,229,255,0.03));
    border-left: 4px solid var(--danger-red);
    border-radius: 20px;
    padding: 16px 24px;
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.urgency-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pulse-led {
    width: 12px;
    height: 12px;
    background: var(--danger-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255,51,102,0.7);
    animation: pulseRed 1.4s infinite;
}
@keyframes pulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,51,102,0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255,51,102,0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,51,102,0); }
}
.urgency-text strong {
    color: #ff8a8a;
}
.badge-limited {
    background: rgba(255,51,102,0.2);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ff8a8a;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .stats-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .trust-grid {
        flex-direction: column;
        border-radius: 32px;
        padding: 20px;
    }
    .trust-item-modern {
        width: 100%;
    }
}
@media (max-width: 640px) {
    .stats-grid-premium {
        grid-template-columns: 1fr;
    }
    .stats-headline h2 {
        font-size: 1.8rem;
    }
    .stat-number-premium {
        font-size: 2.2rem;
    }
    .certificate-card {
        min-width: 100%;
    }
}

/* extra spacing & separator */
.separator-glow {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), var(--accent-purple), transparent);
    width: 80%;
    margin: 20px auto;
    border-radius: 4px;
    opacity: 0.5;
}

.footer-note {
    text-align: center;
    margin: 50px 0 30px;
    color: #4b5568;
    font-size: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 28px;
}
/* ========================================
   PRODUCTS SECTION - PREMIUM STACK CARDS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 10px auto 0;
}

.section-header p {
    color: var(--gray-light);
    margin-top: 8px;
}

/* Products & Bundles Grid - Premium layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

/* Premium Card Style (replaces original .product-card) */
.product-card {
    background: linear-gradient(145deg, rgba(10, 20, 35, 0.85), rgba(5, 11, 20, 0.75));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 28px;
    padding: 28px 24px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.4), 0 0 18px rgba(0, 229, 255, 0.2);
}

/* Badge styling - teal/purple gradient instead of green */
.product-card .product-badge {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(123, 44, 191, 0.1));
    border: 1px solid rgba(0, 229, 255, 0.4);
    color: var(--accent-teal, #00e5ff);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

/* Product icon - larger, glass style */
.product-card .product-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(123, 44, 191, 0.08));
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    transition: all 0.2s;
}

.product-card:hover .product-icon {
    transform: scale(1.03);
    border-color: var(--accent-purple, #7b2cbf);
    box-shadow: 0 0 12px rgba(123, 44, 191, 0.3);
}

/* Product title */
.product-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #fff, var(--accent-teal, #00e5ff));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

/* Description */
.product-card .product-description {
    color: var(--text-muted, #8892b0);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 12px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Price styling */
.product-card .product-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--accent-teal, #00e5ff);
    margin: 12px 0 8px;
    letter-spacing: -1px;
}

/* Stock indicator */
.product-card .product-stock {
    font-size: 0.7rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-card .stock-low {
    color: #ffaa66;
}
.product-card .stock-normal {
    color: #5ee0fa;
}

/* Buttons container */
.product-card .product-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

/* Add to cart button - teal/purple gradient, no green */
.product-card .add-to-cart,
.product-card .add-bundle {
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.12), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-teal, #00e5ff);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.product-card .add-to-cart:hover,
.product-card .add-bundle:hover {
    background: linear-gradient(90deg, var(--accent-teal, #00e5ff), var(--accent-purple, #7b2cbf));
    color: #050b14;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 229, 255, 0.3);
}

/* View Details button */
.product-card .btn-view {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted, #8892b0);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card .btn-view:hover {
    background: rgba(0, 229, 255, 0.08);
    color: var(--accent-teal, #00e5ff);
    border-color: rgba(0, 229, 255, 0.4);
}

/* Bundle card specific - same premium style */
.product-card.bundle-card .product-badge {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.25), rgba(0, 229, 255, 0.1));
    border-color: rgba(123, 44, 191, 0.5);
    color: #c084fc;
}

/* Bundle savings highlight */
.product-card .price-save {
    display: inline-block;
    background: rgba(0, 229, 255, 0.15);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-teal, #00e5ff);
    margin-left: 10px;
}

/* Section header enhancement (keep consistent but ensure no green) */
.section-header h2::after {
    background: linear-gradient(90deg, var(--accent-teal, #00e5ff), var(--accent-purple, #7b2cbf));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .product-card .product-price {
        font-size: 1.6rem;
    }
}
.stacks-section-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.stacks-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.stacks-section-title .badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #00e5ff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.stacks-section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #00e5ff, #7b2cbf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.stacks-section-title p {
    color: #8892b0;
    font-size: 0.95rem;
}

.stacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

/* Stack Card - Premium Glassmorphism */
.stack-card {
    background: linear-gradient(145deg, rgba(10, 20, 35, 0.85), rgba(5, 11, 20, 0.75));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 28px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.stack-card:hover::before {
    left: 100%;
}

.stack-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.4), 0 0 18px rgba(0, 229, 255, 0.2);
}

.stack-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stack-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(123, 44, 191, 0.1));
    border: 1.5px solid rgba(0, 229, 255, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00e5ff;
    transition: all 0.3s ease;
}

.stack-card:hover .stack-icon {
    transform: scale(1.05) rotate(2deg);
    border-color: #7b2cbf;
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.4);
}

.stack-titles {
    flex: 1;
}

.stack-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #fff, #00e5ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.stack-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.12);
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #00e5ff;
    letter-spacing: 0.3px;
}

.stack-price-area {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.stack-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00e5ff;
}

.stack-price-original {
    font-size: 1rem;
    color: #8892b0;
    text-decoration: line-through;
}

.stack-save {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(123, 44, 191, 0.1));
    border: 1px solid rgba(0, 229, 255, 0.4);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #a5f3ff;
}

.stack-description {
    color: #8892b0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex: 1;
}

.synergy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.synergy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #cbd5e6;
}

.synergy-item i {
    width: 22px;
    color: #00e5ff;
    font-size: 0.85rem;
}

.stack-btn {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.12), rgba(123, 44, 191, 0.08));
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00e5ff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.stack-btn:hover {
    background: linear-gradient(90deg, #00e5ff, #7b2cbf);
    color: #050b14;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

.btn-view-stack {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #8892b0;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
}

.btn-view-stack:hover {
    background: rgba(0, 229, 255, 0.08);
    color: #00e5ff;
    border-color: rgba(0, 229, 255, 0.4);
}

.bundle-note {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    font-size: 0.85rem;
    color: #8892b0;
}

.bundle-note i {
    color: #00e5ff;
    margin-right: 8px;
}

.loading-stacks {
    text-align: center;
    padding: 60px;
    color: #8892b0;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .stacks-section-wrapper { padding: 30px 16px 40px; }
    .stacks-grid { grid-template-columns: 1fr; gap: 24px; }
    .stacks-section-title h2 { font-size: 1.8rem; }
    .stack-name { font-size: 1.2rem; }
    .stack-price { font-size: 1.5rem; }
}
/* Product Stock */
.product-stock {
    font-size: 0.75rem;
    margin: 12px 0;
}

.stock-low {
    color: #ffaa44;
}

/* Stack CTA Button */
.stack-btn {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.12), rgba(123, 44, 191, 0.08));
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-teal);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.stack-btn:hover {
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-purple));
    color: #050b14;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

/* Legacy product badge (keep for compatibility) */
.product-badge {
    background: var(--accent);
    color: var(--dark);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-description {
    color: var(--gray-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.product-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    margin-bottom: 30px;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--gray-light);
    font-size: 0.85rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    line-height: 1;
    text-align: center;
}

.feature-icon i,
.feature-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
}

.faq-question {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-teal);
}

.faq-answer {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ========================================
   EMAIL SECTION
   ======================================== */
.email-card {
    background: linear-gradient(135deg, rgba(0,212,170,0.1), rgba(0,100,80,0.2));
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.email-card h3 {
    margin-bottom: 8px;
}

.email-card p {
    color: var(--gray-light);
    margin-bottom: 24px;
}

.email-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.email-form input {
    padding: 12px 20px;
    border-radius: 40px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    width: 280px;
    font-size: 0.95rem;
}

.email-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.email-message {
    margin-top: 16px;
    font-size: 0.85rem;
}

/* ========================================
   CART SIDEBAR
   ======================================== */
.cart-icon {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-count {
    background: var(--accent-teal);
    color: #000;
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 200;
    display: none;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: #0f1322;
    z-index: 201;
    transition: right 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--accent);
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0,212,170,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.4rem;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.cart-close:hover {
    transform: scale(1.1);
    color: var(--accent);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: var(--gray);
    padding: 40px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.cart-item-remove {
    background: rgba(255,68,68,0.2);
    border: 1px solid #ff4444;
    color: #ff8888;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.7rem;
    margin-top: 5px;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    background: #ff4444;
    color: white;
}

.cart-item-add {
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid #00E5FFFF;
    color: #00E5FFFF;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: all 0.25s ease;
}

.cart-item-add:hover {
    background: #00E5FFFF;
    color: #000;
    transform: translateY(-1px);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(0,212,170,0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

/* ========================================
   STICKY CTA
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,14,39,0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--accent);
    padding: 12px 20px;
    z-index: 95;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.sticky-total {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.sticky-total strong {
    font-size: 1.2rem;
    color: var(--accent);
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.checkout-page {
    background: var(--dark);
}

.header-simple {
    position: relative;
}

.checkout-main {
    padding: 48px 0 80px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.checkout-form-section h1 {
    margin-bottom: 32px;
}

.checkout-form {
    background: var(--dark-light);
    padding: 32px;
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--dark);
    color: var(--white);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group small {
    display: block;
    margin-top: 4px;
    color: var(--gray);
    font-size: 0.7rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.order-summary-card {
    background: var(--dark-light);
    padding: 32px;
    border-radius: var(--radius-xl);
    position: sticky;
    top: 100px;
}

.order-summary-card h3 {
    margin-bottom: 20px;
}

.order-items {
    margin-bottom: 24px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.order-totals {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.grand-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    padding-top: 16px;
}

.btn-payfast {
    width: 100%;
    margin: 24px 0 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
}

.secure-note i {
    margin-right: 4px;
}

/* ========================================
   TIMELINE V5 - SCROLL-DRIVEN PROGRESS
   ======================================== */
html {
    scroll-behavior: smooth;
}

.timeline-v5-wrapper {
    position: relative;
    padding: 20px 0 40px 0;
    margin: 30px 0;
}

.timeline-v5-track {
    position: absolute;
    left: 42px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: rgba(0, 229, 255, 0.12);
    border-radius: 3px;
    z-index: 1;
}

.timeline-v5-progress {
    position: absolute;
    left: 39px;
    top: 50px;
    width: 5px;
    height: 0%;
    background: linear-gradient(180deg, #00e5ff 0%, #7b2cbf 55%, #10b981 100%);
    border-radius: 3px;
    z-index: 2;
    transition: height 0.1s cubic-bezier(0.2, 0.9, 0.3, 1);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
    will-change: height;
}

.timeline-v5-progress::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: -6px;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #ffffff, #00e5ff);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.7));
    animation: tipPulse 0.6s ease-in-out infinite;
}

@keyframes tipPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.timeline-v5-node {
    display: flex;
    gap: 24px;
    margin-bottom: 55px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.timeline-v5-node.revealed {
    opacity: 1;
    transform: translateY(0);
}

.timeline-v5-marker {
    flex-shrink: 0;
    position: relative;
    z-index: 11;
}

.timeline-v5-icon {
    width: 56px;
    height: 56px;
    background: rgba(5, 11, 20, 0.85);
    border: 2px solid rgba(0, 229, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #00e5ff;
    backdrop-filter: blur(8px);
    position: relative;
    left: 14px;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.12);
    transition: all 0.3s ease;
}

.timeline-v5-node:hover .timeline-v5-icon {
    transform: scale(1.08) rotate(4deg);
    border-color: #7b2cbf;
    color: #7b2cbf;
}

.timeline-v5-icon.success {
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.timeline-v5-node:hover .timeline-v5-icon.success {
    border-color: #34d399;
    color: #34d399;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.45);
}

@keyframes nodePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
    25% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(0, 229, 255, 0.35); }
    60% { transform: scale(1.05); box-shadow: 0 0 0 18px rgba(0, 229, 255, 0.15); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.timeline-v5-icon.pulse-active {
    animation: nodePulse 0.5s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

@keyframes nodePulseSuccess {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    25% { transform: scale(1.12); box-shadow: 0 0 0 12px rgba(16, 185, 129, 0.35); }
    60% { transform: scale(1.06); box-shadow: 0 0 0 20px rgba(16, 185, 129, 0.15); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.timeline-v5-icon.success.pulse-active {
    animation: nodePulseSuccess 0.55s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

.timeline-v5-content {
    flex: 1;
    background: linear-gradient(145deg, rgba(10, 20, 35, 0.85), rgba(5, 11, 20, 0.75));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 24px;
    padding: 22px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-v5-node:hover .timeline-v5-content {
    transform: translateX(6px);
    border-color: rgba(0, 229, 255, 0.3);
}

.timeline-v5-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.12);
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #00e5ff;
    margin-bottom: 14px;
}

.timeline-v5-badge.success {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
}

.timeline-v5-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.timeline-v5-text {
    color: #cbd5e6;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-v5-track, .timeline-v5-progress { left: 28px; }
    .timeline-v5-icon { width: 44px; height: 44px; left: 6px; }
    .timeline-v5-content { padding: 16px 20px; }
}

@media (max-width: 480px) {
    .timeline-v5-track, .timeline-v5-progress { left: 22px; }
    .timeline-v5-icon { width: 38px; height: 38px; left: 3px; }
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-wrapper {
    margin: 40px 0;
}

.comparison-desktop-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.25);
    font-size: 0.85rem;
}

.comparison-desktop-table th, .comparison-desktop-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-desktop-table th {
    background: rgba(0,0,0,0.55);
    font-weight: 700;
}

.comparison-desktop-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-desktop-table td.bpc-col {
    background: rgba(0, 229, 255, 0.05);
    border-left: 1px solid rgba(0, 229, 255, 0.2);
    border-right: 1px solid rgba(0, 229, 255, 0.2);
}

.comparison-desktop-table th.bpc-col {
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.18), rgba(0, 229, 255, 0.08));
    color: var(--accent-teal);
}

.comparison-mobile-cards {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.comparison-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.comparison-card .metric-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,229,255,0.3);
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.comparison-row:last-child { border-bottom: none; }

.comparison-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.comparison-nsaid {
    flex: 1;
    text-align: center;
    color: #ccc;
    font-size: 0.85rem;
}

.comparison-bpc {
    flex: 1;
    text-align: center;
    color: var(--accent-teal);
    font-weight: 500;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .comparison-desktop-table { display: none; }
    .comparison-mobile-cards { display: flex; }
    .cart-sidebar { width: 100%; right: -100%; }
    .email-card { padding: 32px 24px; }
    .products-grid { grid-template-columns: 1fr; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #050812;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(0,212,170,0.1);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 32px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--accent-teal);
}

.footer-section a, .footer-section p {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-teal);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: var(--accent-teal);
    transition: all 0.25s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent-teal);
    color: #0a0e27;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,212,170,0.1);
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* ========================================
   WHATSAPP BUTTON & BACK TO TOP
   ======================================== */
.whatsapp-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 96;
    transition: transform 0.2s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-button { bottom: 70px; width: 48px; height: 48px; font-size: 1.3rem; }
}

.back-to-top {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background: var(--accent-teal);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    z-index: 96;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   NOTIFICATION
   ======================================== */
.notification {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ========================================
   AMBIENT & DNA BACKGROUNDS
   ======================================== */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: var(--gradient-bg);
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 229, 255, 0.2);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 150px) scale(1.2); }
}

.global-dna-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.15;
}

.dna-strand-global {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent), #00ffaa, var(--accent), transparent);
    animation: floatDNA 20s ease-in-out infinite;
}

.dna-strand-global:nth-child(1) { left: 5%; animation-delay: 0s; width: 3px; }
.dna-strand-global:nth-child(2) { left: 15%; animation-delay: -2s; height: 85%; top: 7.5%; opacity: 0.6; }
.dna-strand-global:nth-child(3) { left: 28%; animation-delay: -5s; width: 1.5px; }
.dna-strand-global:nth-child(4) { left: 42%; animation-delay: -8s; height: 90%; top: 5%; opacity: 0.5; }
.dna-strand-global:nth-child(5) { left: 55%; animation-delay: -11s; width: 2.5px; }
.dna-strand-global:nth-child(6) { left: 68%; animation-delay: -14s; height: 75%; top: 12.5%; }
.dna-strand-global:nth-child(7) { left: 82%; animation-delay: -17s; width: 2px; }
.dna-strand-global:nth-child(8) { left: 94%; animation-delay: -20s; height: 88%; top: 6%; }

@keyframes floatDNA {
    0%, 100% { transform: translateY(-10%); opacity: 0.2; }
    50% { transform: translateY(10%); opacity: 0.7; }
}

/* ========================================
   UTILITIES & MISC
   ======================================== */
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(to right, var(--accent-teal), #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-weight: 900;
    font-size: 2.2rem;
    margin-top: 30px;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ffffff, var(--accent-teal), #7b2cbf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent-teal), #7b2cbf);
    box-shadow: 0 0 12px rgba(0,229,255,0.6);
}

.cta-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0,229,255,0.08), transparent 70%), linear-gradient(to top, #050b14, transparent);
}

.cta-section .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #fff, var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-title span {
    background: linear-gradient(90deg, var(--accent-teal), #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

.cta-section .btn-glow {
    font-size: 1.05rem;
    padding: 16px 34px;
    border-radius: 50px;
    background: linear-gradient(45deg, #00e5ff, #7b2cbf);
    box-shadow: 0 10px 30px rgba(0,229,255,0.4);
}

.cta-section .btn-glow:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,229,255,0.6);
}

@media (max-width: 768px) {
    .cta-section { padding: 70px 0; }
    .cta-title { font-size: 1.8rem; }
    .cta-subtitle { font-size: 0.95rem; }
    .hero-content-wrap h1 { font-size: 2rem; }
    .hero-content-wrap p { font-size: 1rem; }
    .hero-title { font-size: 2rem; }
    .btn-glow { width: 100%; text-align: center; }
}

.trust-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(123,44,191,0.06));
    border: 1px solid rgba(0,229,255,0.2);
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.guarantee-badge i {
    color: #00e5ff;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(0,229,255,0.5));
}

.trust-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.trust-row i {
    color: #5cff00;
}

.compliance-box {
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 80, 80, 0.05);
    border: 1px solid rgba(255, 80, 80, 0.25);
    color: #ff7b7b;
    font-size: 0.78rem;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.compliance-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,80,80,0.08), transparent);
    animation: complianceSweep 4s infinite;
}

@keyframes complianceSweep {
    0% { left: -50%; }
    100% { left: 150%; }
}

.compliance-title {
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: #ff9a9a;
}

.compliance-text {
    opacity: 0.9;
}

.who-for {
    margin-top: 30px;
    padding: 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,229,255,0.05), rgba(123,44,191,0.05));
    border: 1px solid rgba(0,229,255,0.15);
}

.who-for h4 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1rem;
}

.who-for ul {
    list-style: none;
    padding: 0;
}

.who-for li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.who-for li::before {
    content: "✔";
    color: #00e5ff;
    text-shadow: 0 0 8px rgba(0,229,255,0.6);
}

.reviews-section {
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(123,44,191,0.08), transparent);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.review-card {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,229,255,0.4);
    box-shadow: 0 12px 35px rgba(0,229,255,0.15);
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 10px;
}

.review-card span {
    font-size: 0.8rem;
    color: #888;
}

.review-card::before {
    content: "★★★★★";
    font-size: 0.7rem;
    color: #00e5ff;
    position: absolute;
    top: 10px;
    right: 14px;
    opacity: 0.7;
}

.product-feature-image {
    text-align: center;
    margin: 20px 0;
}

.product-feature-image img {
    max-width: 180px;
    width: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(123,44,191,0.1));
    padding: 12px;
    border: 1px solid rgba(0,229,255,0.25);
}

.urgency-box {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--danger-red);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--danger-red);
    border-radius: 50%;
    animation: pulseDotAnim 1.5s infinite;
}

@keyframes pulseDotAnim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 51, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 102, 0); }
}

.price-large {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 15px 0 10px;
}

@media (min-width: 768px) {
    .price-large { font-size: 3.5rem; }
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

/* ========================================
   SYNERGISTIC STACKS SECTION
   Premium styling matching TB-500 theme
======================================== */
:root {
    --primary-dark-alt: #050b14;
    --accent-teal: #00e5ff;
    --accent-purple: #7b2cbf;
    --accent: #00d4aa;
    --text-main: #e6f1ff;
    --text-muted: #8892b0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --danger-red: #ff3366;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at 20% 30%, #0a0f1a, #03060c);
    color: var(--text-main);
    line-height: 1.5;
    padding: 0px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ffffff, var(--accent-teal), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-purple));
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

/* Stacks Grid */
.stacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

/* Stack Card - Premium Glassmorphism */
.stack-card {
    background: linear-gradient(145deg, rgba(10, 20, 35, 0.85), rgba(5, 11, 20, 0.75));
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    position: relative;
    overflow: hidden;
}

.stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.stack-card:hover::before {
    left: 100%;
}

.stack-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.15);
}

/* Card Header with Icons */
.stack-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stack-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(123, 44, 191, 0.1));
    border: 1.5px solid rgba(0, 229, 255, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.stack-card:hover .stack-icon {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.4);
}

.stack-titles {
    flex: 1;
}

.stack-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #fff, var(--accent-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.stack-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.12);
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-teal);
    letter-spacing: 0.3px;
}

/* Price Area */
.stack-price-area {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.stack-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-teal);
}

.stack-price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.stack-save {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #34d399;
}

/* Description */
.stack-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Synergy Highlights */
.synergy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.synergy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #cbd5e6;
}

.synergy-item i {
    width: 22px;
    color: var(--accent-teal);
    font-size: 0.85rem;
}

/* CTA Button */
.stack-btn {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.12), rgba(123, 44, 191, 0.08));
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-teal);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.stack-btn:hover {
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-purple));
    color: #050b14;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

/* Bundle Note */
.bundle-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bundle-note i {
    color: var(--accent-teal);
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .stacks-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .stack-name {
        font-size: 1.2rem;
    }
    .stack-price {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stack-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stack-card:nth-child(1) { animation-delay: 0.1s; }
.stack-card:nth-child(2) { animation-delay: 0.2s; }
.stack-card:nth-child(3) { animation-delay: 0.3s; }

@media (min-width: 480px) {
    .cta-group { flex-direction: row; }
    .btn-glow { width: auto; padding: 14px 32px; }
}