/* ============================================
   VAULTSRC - PREMIUM LANDING PAGE
   Modern, Professional, SEO-Optimized Design
   Consolidated & Optimized Stylesheet
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Color System - Dark Green Theme */
    --color-primary: #27ae60;
    --color-primary-dark: #229954;
    --color-primary-light: #2ecc71;
    --color-secondary: #27ae60;
    --color-accent: #1abc9c;
    --color-success: #27ae60;
    --color-warning: #f39c12;
    --color-error: #e74c3c;
    
    /* Neutral Colors - Dark Theme */
    --color-bg: #1a1a1a;
    --color-bg-elevated: #2a2a2a;
    --color-bg-card: #3d3d3d;
    --color-bg-subtle: #4a4a4a;
    --color-surface: #555555;
    
    /* Text Colors */
    --color-text-primary: #f9fafb;
    --color-text-secondary: #d1d5db;
    --color-text-tertiary: #9ca3af;
    --color-text-muted: #6b7280;
    --color-text: #f9fafb;
    
    /* Border & Divider */
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-strong: rgba(255, 255, 255, 0.15);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    --gradient-secondary: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    --gradient-accent: linear-gradient(135deg, #27ae60 0%, #1abc9c 100%);
    --gradient-mesh: radial-gradient(at 27% 37%, rgba(39, 174, 96, 0.15) 0px, transparent 50%),
                      radial-gradient(at 97% 21%, rgba(26, 188, 156, 0.15) 0px, transparent 50%),
                      radial-gradient(at 52% 99%, rgba(46, 204, 113, 0.15) 0px, transparent 50%),
                      radial-gradient(at 10% 29%, rgba(39, 174, 96, 0.15) 0px, transparent 50%),
                      radial-gradient(at 97% 96%, rgba(26, 188, 156, 0.15) 0px, transparent 50%);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    --shadow-glow-lg: 0 0 40px rgba(99, 102, 241, 0.4);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index Scale */
    --z-base: 0;
    --z-dropdown: 1000;
    --z-sticky: 1100;
    --z-fixed: 1200;
    --z-modal: 1300;
    --z-tooltip: 1400;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: #e5e5e5;
    background: #1d1d1d;
    background-image: var(--gradient-mesh);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

/* ===== VIDEO BACKGROUND ===== */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1d1d1d;
    z-index: -1;
}

.video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

/* ===== LUXURY PARTICLE SYSTEM ===== */
.luxury-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.luxury-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.8), transparent);
    border-radius: 50%;
    animation: floatParticle 20s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translate3d(var(--x, 100px), var(--y, -100px), 0) scale(0.5);
        opacity: 0;
    }
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(36, 36, 36, 0.884);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(39, 174, 96, 0.1);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: rgba(39, 174, 96, 0.2);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo svg {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a:not(.btn):hover {
    color: var(--color-text-primary);
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-menu a:not(.btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    padding: var(--space-2);
}

.menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: var(--space-2);
        padding: var(--space-6);
        background: var(--color-bg-elevated);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        width: 100%;
        padding: var(--space-3) 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4),
                0 4px 10px rgba(39, 174, 96, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-strong);
}

.btn-secondary:hover {
    background: var(--color-bg-subtle);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1.5px solid rgba(39, 174, 96, 0.5);
}

.btn-outline:hover {
    background: rgba(39, 174, 96, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary-light);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.product-btn {
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: transparent;
}

.grid-pattern {
    display: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float-orb 20s ease-in-out infinite, pulse-glow 8s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.3;
        filter: blur(100px) brightness(1);
    }
    50% { 
        opacity: 0.6;
        filter: blur(120px) brightness(1.3);
    }
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.4) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 6s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
}

.hero-badge svg {
    color: var(--color-primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-title .gradient-text {
    display: block;
    margin-top: var(--space-2);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto var(--space-10);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-16);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    padding: var(--space-8) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: var(--space-2);
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.animate-in {
    animation: fade-in-up 0.6s ease-out backwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--space-24) 0;
    position: relative;
    background: transparent;
}

.products,
.hero,
.features,
.pricing,
.testimonials,
.cta {
    background: transparent;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-12);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

.product-card {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(30, 30, 30, 0.6) 0%, 
        rgba(20, 20, 20, 0.8) 50%,
        rgba(15, 15, 15, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-card.featured {
    background: linear-gradient(135deg, 
        rgba(39, 174, 96, 0.08) 0%, 
        rgba(25, 25, 25, 0.85) 50%,
        rgba(15, 15, 15, 0.95) 100%);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: rgba(20, 20, 20, 0.5);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-3);
    background: var(--color-bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.featured-badge {
    background: var(--gradient-primary);
    color: white;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-info {
    padding: 1.5rem;
    position: relative;
    background: transparent;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
}

.product-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-warning);
}

.product-description {
    font-size: 0.9375rem;
    color: var(--color-text-tertiary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.tag {
    padding: var(--space-1) var(--space-3);
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-tertiary);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
}

.product-btn-buy {
    font-size: 1.1rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-price {
    font-weight: 700;
    font-size: 1.2rem;
}

.product-price .price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.product-card.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(60%);
}

.product-card.coming-soon:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.product-card.coming-soon .product-badge {
    background: var(--color-bg-subtle);
    color: var(--color-text-muted);
}

.badge-coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: var(--space-4) var(--space-8);
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-border-strong);
    border-radius: var(--radius-xl);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    z-index: 5;
}

/* Coming Soon Teaser Card */
.coming-soon-teaser {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    background: linear-gradient(135deg, 
        rgba(39, 174, 96, 0.05) 0%, 
        rgba(25, 25, 25, 0.85) 50%,
        rgba(15, 15, 15, 0.95) 100%);
    border: 1px dashed rgba(39, 174, 96, 0.3);
}

.coming-soon-content {
    text-align: center;
    padding: 2rem;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
}

.coming-soon-teaser h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.coming-soon-teaser p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.coming-soon-teaser .cta-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-teaser .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.coming-soon-teaser .cta-link:hover {
    background: rgba(39, 174, 96, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.feature-card {
    padding: var(--space-8);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: white;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8),
                 3px 3px 0 rgba(0, 0, 0, 0.7),
                 4px 4px 0 rgba(0, 0, 0, 0.6),
                 5px 5px 10px rgba(0, 0, 0, 0.9);
}

.feature-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--space-5);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8),
                 2px 2px 0 rgba(0, 0, 0, 0.6),
                 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.feature-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: none;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    background: transparent;
    border: 1px solid rgba(39, 174, 96, 0.5);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .feature-card {
        padding: var(--space-6);
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    .feature-card {
        padding: var(--space-6);
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
    }
}

/* ===== TIMELINE ===== */
.timeline-container {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 2rem 1rem;
    position: relative;
}

.timeline-track {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(39, 174, 96, 0.2) 0%, 
        rgba(39, 174, 96, 0.6) 50%, 
        rgba(39, 174, 96, 0.2) 100%);
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
    position: relative;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-5);
}

.timeline-circle {
    width: 56px;
    height: 56px;
    background: var(--color-bg-card);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-circle {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(39, 174, 96, 0.15);
    border-color: var(--color-primary-light);
}

.circle-inner {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .circle-inner {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.4),
                0 6px 0 rgba(0, 0, 0, 0.2);
}

.timeline-card {
    width: 100%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-card {
    border-color: var(--color-primary);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.4),
                0 10px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: var(--space-3);
    line-height: 1;
}

.timeline-card h3 {
    color: var(--color-text);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.timeline-card p {
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.timeline-step {
    background: rgba(30, 30, 30, 0.8);
}

@media (max-width: 768px) {
    .timeline-items {
        flex-direction: column;
        gap: var(--space-8);
    }
    
    .timeline-track {
        top: 28px;
        left: 28px;
        width: 2px;
        height: calc(100% - 140px);
        transform: none;
        background: linear-gradient(180deg, 
            rgba(39, 174, 96, 0.2) 0%, 
            rgba(39, 174, 96, 0.6) 50%, 
            rgba(39, 174, 96, 0.2) 100%);
    }
    
    .timeline-item {
        flex-direction: row;
        text-align: left;
        gap: var(--space-4);
    }
    
    .timeline-circle {
        flex-shrink: 0;
    }
    
    .timeline-card {
        flex: 1;
    }
    
    .card-icon {
        margin-bottom: var(--space-2);
    }
    
    .timeline-card h3 {
        font-size: 1rem;
    }
    
    .timeline-card p {
        font-size: 0.8125rem;
    }
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: var(--space-10);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.4),
                0 12px 0 rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.4),
                0 12px 0 rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.pricing-header p {
    font-size: 0.9375rem;
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-8);
}

.pricing-price {
    margin-bottom: var(--space-8);
}

.pricing-price .price {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--color-text-tertiary);
}

.pricing-features {
    margin-bottom: var(--space-8);
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.pricing-features svg {
    flex-shrink: 0;
    color: var(--color-success);
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    padding: var(--space-8);
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15) 0%, rgba(30, 30, 30, 0.95) 60%, rgba(20, 20, 20, 1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    color: var(--color-warning);
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    padding: var(--space-24) 0;
    background: transparent;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: transparent;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
}

.cta-content > p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-10);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-6);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(36, 36, 36, 0.884);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
}

.footer-newsletter {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(26, 188, 156, 0.05));
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-bottom: var(--space-12);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.newsletter-header p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.newsletter-input::placeholder {
    color: var(--color-text-tertiary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.footer-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-5);
    font-size: 0.9375rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

.contact-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--color-text-tertiary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-item a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: var(--space-5);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--space-3);
}

.footer-column ul li a {
    color: var(--color-text-tertiary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-divider {
    height: 1px;
    background: var(--color-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.copyright {
    color: var(--color-text-tertiary);
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.trust-badge svg {
    color: var(--color-primary);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.payment-label {
    font-size: 0.8125rem;
    color: var(--color-text-tertiary);
    margin-right: var(--space-2);
}

.payment-icons {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.payment-icons svg {
    transition: all var(--transition-base);
}

.payment-icons svg:hover {
    opacity: 1 !important;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: var(--space-12) 0 var(--space-6);
    }
    
    .footer-newsletter {
        padding: var(--space-6);
        margin-bottom: var(--space-10);
    }
    
    .newsletter-header h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
    
    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-badges {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .payment-icons {
        flex-wrap: wrap;
    }
}

/* ===== MODAL STYLES ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 150px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 900px;
    max-height: 400px;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1500px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.modal-close {
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.modal-close:hover {
    background: rgba(231, 76, 60, 0.95);
    border-color: rgba(231, 76, 60, 1);
    color: white;
    transform: translateY(-50%) rotate(90deg) scale(1.15);
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.6);
}

.modal-product-image {
    position: relative;
    width: auto;
    height: auto;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: 
        -8px 12px 40px rgba(0, 0, 0, 0.9),
        -4px 8px 25px rgba(0, 0, 0, 0.8),
        0 5px 20px rgba(39, 174, 96, 0.25);
    transform: rotateY(-15deg) rotateX(5deg) translateZ(30px) translateY(250px);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    flex-shrink: 0;
}

.modal-product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}

.modal-product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.modal-product-image img {
    height: 1250px;
    width: auto;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content:hover .modal-product-image {
    transform: rotateY(-18deg) rotateX(7deg) translateZ(40px) translateY(250px);
}

.modal-content:hover .modal-product-image img {
    transform: scale(1.03);
}

.modal-body {
    flex: 0 0 auto;
    max-width: 380px;
    max-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-3);
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transform: rotateY(8deg) rotateX(-3deg) translateZ(25px);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.modal-content:hover .modal-body {
    transform: rotateY(10deg) rotateX(-4deg) translateZ(35px);
}

.modal-body h2 {
    font-size: 1.625rem;
    font-weight: 900;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 1),
        0 2px 3px rgba(0, 0, 0, 0.9),
        0 5px 15px rgba(39, 174, 96, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    transform: translateZ(10px);
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-weight: 600;
    transform: translateZ(8px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 1), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.modal-rating svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    filter: drop-shadow(0 2px 4px rgba(39, 174, 96, 0.8)) drop-shadow(0 1px 2px rgba(0, 0, 0, 1));
}

.modal-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
    transform: translateZ(8px);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 1), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.modal-price-section {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    padding: var(--space-3) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateZ(9px);
}

.price-large {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 3px 8px rgba(39, 174, 96, 0.8)) drop-shadow(0 2px 4px rgba(0, 0, 0, 1));
}

.price-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 1), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.modal-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    transform: translateZ(10px);
}

.modal-cta .btn {
    width: 100%;
    padding: var(--space-3);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.7);
}

.modal-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.9), 0 3px 10px rgba(0, 0, 0, 0.8);
}

.modal-cta .btn svg {
    width: 16px;
    height: 16px;
}

.modal-footer {
    padding: var(--space-6) var(--space-8);
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: var(--space-4);
    justify-content: flex-end;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(12px);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .modal {
        padding: var(--space-3);
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 1rem;
    }
    
    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.125rem;
    }
    
    .modal-product-image {
        max-height: 160px;
        margin-bottom: var(--space-3);
    }
    
    .price-large {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: var(--space-3) var(--space-6);
        font-size: 1rem;
    }
}

/* ===== CATALOG SPECIFIC ===== */
.catalog-controls input,
.catalog-controls select {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #e5e5e5;
}

.catalog-controls input:focus,
.catalog-controls select:focus {
    border-color: rgba(39, 174, 96, 0.6);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.catalog-controls input::placeholder {
    color: #6b7280;
}

.category-btn {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #d1d5db;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-color: transparent;
    color: white;
}

/* ===== PREMIUM CATALOG ENHANCEMENTS ===== */
.catalog-toolbar {
    position: relative;
    z-index: 10;
}

.catalog-toolbar::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
    border-radius: 21px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-toolbar:hover::before {
    opacity: 1;
}

/* Product Card Premium Styles */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(46, 204, 113, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover::after {
    transform: translateX(0) translateY(0) rotate(45deg);
}

/* Glass Morphism Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-effect-strong {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Premium Gradient Text */
.gradient-text-premium {
    background: linear-gradient(135deg, #2ecc71, #27ae60, #16a085);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Premium Button Hover Effects */
.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-premium:hover::before {
    transform: translateX(0);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

/* Premium Badge Styles */
.badge-premium {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge-premium:hover::before {
    opacity: 1;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    animation: shimmer 2s infinite;
}

/* Premium Scrollbar */
.premium-scroll::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.premium-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.premium-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.premium-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-smooth {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.float-animation {
    animation: float-smooth 6s ease-in-out infinite;
}

/* Glow Effect */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: inherit;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glow-effect:hover::before {
    opacity: 0.6;
}

/* Smooth Reveal Animation */
@keyframes smoothReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.smooth-reveal {
    animation: smoothReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 3D Card Perspective */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.02);
}

/* Premium Grid Layouts */
.premium-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Status Indicators */
.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 currentColor;
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 0 4px rgba(46, 204, 113, 0);
    }
}

.status-dot.status-online {
    background: #2ecc71;
}

.status-dot.status-offline {
    background: #95a5a6;
}

.status-dot.status-busy {
    background: #f39c12;
}

/* Tooltip Enhancement */
.tooltip-premium {
    position: relative;
}

.tooltip-premium::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    font-size: 0.875rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.tooltip-premium:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

/* ===== FORM STYLES ===== */
input,
textarea,
select {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #e5e5e5;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(39, 174, 96, 0.6);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: #6b7280;
}

/* ===== PREMIUM PROMO CAROUSEL BAR ===== */
.promo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 9999;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.85) 0%, 
        rgba(15, 15, 15, 0.90) 50%,
        rgba(8, 8, 8, 0.92) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    box-shadow: 
        0 -4px 25px rgba(0, 0, 0, 0.6),
        0 -1px 0 rgba(46, 204, 113, 0.4),
        inset 0 1px 0 rgba(46, 204, 113, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(46, 204, 113, 0.3);
}

.promo-bar.show {
    opacity: 1;
    transform: translateY(0);
    animation: promo-pulse 3s ease-in-out infinite;
}

.promo-bar.hiding {
    opacity: 0;
    transform: translateY(100%);
}

@keyframes promo-pulse {
    0%, 100% { border-top-color: rgba(46, 204, 113, 0.3); }
    50% { border-top-color: rgba(46, 204, 113, 0.6); }
}

.promo-bar-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.12;
}

.promo-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: float-smooth 25s ease-in-out infinite;
    opacity: 0.6;
}

.promo-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.2), transparent);
    bottom: -180px;
    left: 15%;
    animation-delay: 0s;
}

.promo-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.12), transparent);
    bottom: -140px;
    right: 20%;
    animation-delay: -12s;
}

.promo-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(46, 204, 113, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 204, 113, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.25;
    animation: grid-scroll 30s linear infinite;
}

@keyframes grid-scroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.promo-carousel-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 120px;
}

.promo-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.promo-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 1.5rem 3rem;
    opacity: 0;
    transform: translateX(80px) scale(0.98);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.promo-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.promo-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.06), rgba(39, 174, 96, 0.10));
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: #2ecc71;
    box-shadow: 
        0 4px 15px rgba(46, 204, 113, 0.2),
        inset 0 1px 0 rgba(46, 204, 113, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.promo-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.4), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.promo-slide:hover .promo-icon {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(46, 204, 113, 0.5);
    box-shadow: 
        0 8px 25px rgba(46, 204, 113, 0.35),
        inset 0 1px 0 rgba(46, 204, 113, 0.2);
}

.promo-slide:hover .promo-icon::before {
    opacity: 1;
}

.promo-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.4));
}

.promo-content {
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.promo-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.015em;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.promo-description strong {
    font-weight: 700;
    color: #2ecc71;
    text-shadow: 0 0 12px rgba(46, 204, 113, 0.4);
    position: relative;
}

.promo-description strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.5), transparent);
}

.promo-code {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.12), rgba(39, 174, 96, 0.18));
    border: 1px solid rgba(46, 204, 113, 0.45);
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.82rem;
    color: #2ecc71;
    letter-spacing: 0.1em;
    margin-left: 0.4rem;
    text-shadow: 0 0 12px rgba(46, 204, 113, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer-code 3s infinite;
}

@keyframes shimmer-code {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(46, 204, 113, 0.6);
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 18px rgba(46, 204, 113, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.promo-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.promo-cta:hover::before {
    width: 300px;
    height: 300px;
}

.promo-cta:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #34d87f, #2ecc71);
    box-shadow: 
        0 8px 30px rgba(46, 204, 113, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.promo-cta:active {
    transform: translateY(-1px) scale(1);
}

.promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(46, 204, 113, 0.25);
    border-radius: 6px;
    color: rgba(46, 204, 113, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.promo-nav svg {
    width: 18px;
    height: 18px;
}

.promo-nav:hover {
    background: rgba(46, 204, 113, 0.12);
    border-color: rgba(46, 204, 113, 0.5);
    color: #2ecc71;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.promo-nav-prev {
    left: 1.5rem;
}

.promo-nav-next {
    right: 1.5rem;
}

.promo-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.promo-close svg {
    width: 16px;
    height: 16px;
}

.promo-close:hover {
    background: rgba(255, 59, 48, 0.12);
    border-color: rgba(255, 59, 48, 0.35);
    color: rgba(255, 59, 48, 0.95);
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.25);
}

.promo-dots {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    z-index: 10;
}

.promo-dot {
    width: 5px;
    height: 5px;
    background: rgba(46, 204, 113, 0.25);
    border: 1px solid rgba(46, 204, 113, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.promo-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: border-color 0.25s ease;
}

.promo-dot:hover {
    background: rgba(46, 204, 113, 0.5);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.4);
}

.promo-dot:hover::before {
    border-color: rgba(46, 204, 113, 0.3);
}

.promo-dot.active {
    background: #2ecc71;
    height: 18px;
    border-radius: 2.5px;
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.5);
    border-color: rgba(46, 204, 113, 0.6);
}

.promo-dot.active::before {
    border-color: rgba(46, 204, 113, 0.4);
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-bar {
        height: 85px;
    }
    
    .promo-carousel-container {
        padding: 0 80px;
    }
    
    .promo-slide {
        gap: 1.5rem;
    }
    
    .promo-icon {
        width: 70px;
        height: 70px;
    }
    
    .promo-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .promo-title {
        font-size: 1.25rem;
    }
    
    .promo-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .promo-bar {
        height: 120px;
    }
    
    .promo-carousel-container {
        padding: 0 60px;
    }
    
    .promo-slide {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .promo-icon {
        width: 60px;
        height: 60px;
    }
    
    .promo-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .promo-title {
        font-size: 1.1rem;
    }
    
    .promo-description {
        font-size: 0.85rem;
    }
    
    .promo-cta {
        padding: 0.65rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .promo-nav {
        width: 40px;
        height: 40px;
    }
    
    .promo-nav-prev {
        left: 1rem;
    }
    
    .promo-nav-next {
        right: 1rem;
    }
    
    .promo-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
    }
    
    .promo-dots {
        right: 60px;
    }
}

@media (max-width: 480px) {
    .promo-bar {
        height: 140px;
    }
    
    .promo-carousel-container {
        padding: 0 50px;
    }
    
    .promo-slide {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
    }
    
    .promo-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .promo-title {
        font-size: 1rem;
    }
    
    .promo-description {
        font-size: 0.8rem;
    }
    
    .promo-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .promo-code {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
    
    .promo-nav {
        width: 36px;
        height: 36px;
    }
    
    .promo-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .promo-dots {
        right: 50px;
    }
}

/* Add bottom padding to body when promo bar is visible */
body:has(.promo-bar.show) {
    padding-bottom: 90px;
    transition: padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    body:has(.promo-bar.show) {
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    body:has(.promo-bar.show) {
        padding-bottom: 140px;
    }
}

/* ===== 3D POLY GEOMETRIC ENHANCEMENTS ===== */

/* Subtle triangular poly mesh overlay */
body {
    background-image: 
        var(--gradient-mesh),
        repeating-linear-gradient(
            60deg, transparent, transparent 119px,
            rgba(39, 174, 96, 0.018) 119px, rgba(39, 174, 96, 0.018) 120px
        ),
        repeating-linear-gradient(
            -60deg, transparent, transparent 119px,
            rgba(39, 174, 96, 0.018) 119px, rgba(39, 174, 96, 0.018) 120px
        ),
        repeating-linear-gradient(
            0deg, transparent, transparent 103px,
            rgba(39, 174, 96, 0.012) 103px, rgba(39, 174, 96, 0.012) 104px
        );
}

/* Product card subtle poly border & depth */
.product-card {
    border: 1px solid rgba(39, 174, 96, 0.06);
}

.product-card:hover {
    border-color: rgba(39, 174, 96, 0.15);
}

/* Geometric corner fold accent on product images */
.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent rgba(39, 174, 96, 0.06) transparent;
    z-index: 4;
    transition: all 0.3s ease;
}

.product-card:hover .product-image::after {
    border-width: 0 0 28px 28px;
    border-color: transparent transparent rgba(39, 174, 96, 0.15) transparent;
}

/* Section label faceted gradient */
.section-label {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(39, 174, 96, 0.06) 100%);
}

/* Section title poly depth */
.section-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero badge shimmer sweep */
.hero-badge {
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(39, 174, 96, 0.08), transparent);
    animation: poly-shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes poly-shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Hero stats interactive depth */
.hero-stats .stat-item {
    position: relative;
    padding: var(--space-4);
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
}

.hero-stats .stat-item:hover {
    transform: translateY(-3px);
    background: rgba(39, 174, 96, 0.03);
}

/* Feature icon 3D depth */
.feature-icon {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3), 0 8px 20px rgba(39, 174, 96, 0.15);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3), 0 12px 30px rgba(39, 174, 96, 0.25);
    transform: translateY(-2px);
}

/* Pricing card faceted top edge */
.pricing-card {
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(39, 174, 96, 0.15), transparent);
    z-index: 1;
}

.pricing-card.featured::before {
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--color-primary) 50%, transparent 95%);
}

/* Testimonial card geometric side accent */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 0 2px 2px 0;
    transition: height 0.4s ease;
}

.testimonial-card:hover::before {
    height: 100%;
}

/* Button 3D press depth */
.btn-primary {
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(0, 0, 0, 0.2);
}

/* Tags poly micro-interaction */
.tag {
    transition: all 0.2s ease;
}

.tag:hover {
    border-color: rgba(39, 174, 96, 0.3);
    background: rgba(39, 174, 96, 0.05);
    transform: translateY(-1px);
}

/* Footer newsletter geometric diamond */
.footer-newsletter {
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: rgba(39, 174, 96, 0.04);
    transform: rotate(45deg);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
