/* ============================================
   EDITPRO - PREMIUM VIDEO EDITING BUNDLE
   Modern Dark Theme | Purple & Neon Blue
   ============================================ */

/* ========================
   1. ROOT & VARIABLES
   ======================== */

:root {
    /* Colors */
    --bg-primary: #000000;
    --bg-secondary: #0a0e27;
    --bg-tertiary: #111840;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #808080;
    
    /* Brand Colors */
    --purple-main: #7c3aed;
    --purple-light: #a855f7;
    --purple-dark: #6d28d9;
    --blue-neon: #00d4ff;
    --blue-neon-dark: #0099cc;
    --pink-accent: #ec4899;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7c3aed, #a855f7);
    --gradient-secondary: linear-gradient(135deg, #00d4ff, #0099cc);
    --gradient-neon: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
    --gradient-glow: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-Index */
    --z-navbar: 1000;
    --z-modal: 2000;
    --z-sticky: 999;
}

/* ========================
   2. RESET & BASE STYLES
   ======================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Remove scrollbar for Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--purple-main) var(--bg-secondary);
}

/* Remove scrollbar for Chrome, Edge */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-main);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-light);
}

/* ========================
   3. CONTAINER & LAYOUT
   ======================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* ========================
   4. LOADING ANIMATION
   ======================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeOut 0.6s ease forwards;
    animation-delay: 2s;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        pointer-events: none;
    }
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
}

.loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--purple-main);
    border-right-color: var(--blue-neon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========================
   5. PARTICLES BACKGROUND
   ======================== */

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--blue-neon);
    border-radius: 50%;
    opacity: 0.3;
}

/* ========================
   6. TYPOGRAPHY
   ======================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.gradient-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ========================
   7. BUTTONS
   ======================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-neon);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: rgba(124, 58, 237, 0.2);
    color: var(--text-primary);
    border: 2px solid var(--purple-main);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.btn-secondary:hover {
    background: var(--purple-main);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.6), 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-bundle {
    width: 100%;
    margin-top: var(--spacing-lg);
    background: rgba(124, 58, 237, 0.2);
    color: var(--text-primary);
    border: 2px solid var(--purple-main);
    justify-content: center;
}

.btn-bundle:hover {
    background: var(--purple-main);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.btn-icon {
    font-size: 1.2rem;
}

/* ========================
   8. NAVIGATION
   ======================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    z-index: var(--z-navbar);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================
   9. HERO SECTION
   ======================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(10, 14, 39, 1) 50%, rgba(0, 0, 0, 1) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid var(--purple-main);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xxl);
    flex-wrap: wrap;
}

.hero-countdown {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-lg);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Mono', monospace;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.hero-graphics {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.graphic {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.graphic-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.graphic-2 {
    bottom: 15%;
    left: 5%;
    animation-delay: 1s;
}

.graphic-3 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.glow-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
    filter: blur(40px);
}

.glow-square {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    transform: rotate(45deg);
    filter: blur(40px);
}

/* ========================
   10. SECTION HEADER
   ======================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================
   11. BUNDLE CARDS
   ======================== */

.bundles {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(10, 14, 39, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
    position: relative;
}

.bundles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.bundle-card {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.1);
    opacity: 0;
    transition: var(--transition-base);
}

.bundle-card:hover::before {
    opacity: 1;
}

.bundle-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bundle-card.advanced-card {
    transform: scale(1.05);
    border-color: var(--purple-main);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bundle-card.advanced-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.card-content {
    position: relative;
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-neon);
    color: var(--bg-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.bundle-name {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.bundle-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

.bundle-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.currency {
    font-size: 1.25rem;
    color: var(--blue-neon);
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    color: var(--text-tertiary);
    text-decoration: line-through;
    font-size: 1rem;
    margin-left: auto;
}

.features-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features-list li.unavailable {
    color: var(--text-tertiary);
    opacity: 0.6;
}

.check {
    color: var(--blue-neon);
    font-weight: 800;
    font-size: 1.2rem;
}

.cross {
    color: var(--text-tertiary);
    font-weight: 800;
}

/* ========================
   12. FEATURES SECTION
   ======================== */

.features {
    background: var(--bg-primary);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--purple-main);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    animation: bounce 2s ease infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
}

/* ========================
   13. PREVIEW SECTION
   ======================== */

.preview-section {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.5) 0%, rgba(0, 0, 0, 1) 100%);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.preview-card {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    border-color: var(--purple-main);
}

.preview-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-secondary);
}

.preview-video iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.preview-card h3 {
    padding: var(--spacing-md);
    color: var(--text-primary);
}

/* ========================
   14. WHY US SECTION
   ======================== */

.why-us {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(10, 14, 39, 1) 50%, rgba(0, 0, 0, 1) 100%);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.why-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--transition-slow);
    opacity: 0;
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue-neon);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.why-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ========================
   15. TESTIMONIALS
   ======================== */

.testimonials {
    background: var(--bg-primary);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(124, 58, 237, 0.1);
    transition: var(--transition-base);
}

.testimonial-card:hover::before {
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-main);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.2);
}

.star-rating {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

/* ========================
   16. FAQ SECTION
   ======================== */

.faq {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.5) 0%, rgba(0, 0, 0, 1) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--purple-main);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    user-select: none;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-question span:first-child {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-icon {
    color: var(--blue-neon);
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-base);
    background: rgba(0, 212, 255, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================
   17. FINAL CTA SECTION
   ======================== */

.final-cta {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border-top: 2px solid rgba(124, 58, 237, 0.5);
    border-bottom: 2px solid rgba(0, 212, 255, 0.5);
}

.cta-content {
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.cta-content h2 {
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

/* ========================
   18. STICKY BUY BUTTON
   ======================== */

.sticky-buy-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    z-index: var(--z-sticky);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    transition: var(--transition-base);
    transform: scale(0);
    animation: scaleIn 0.5s ease forwards;
    animation-delay: 1s;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.sticky-buy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.sticky-buy-btn:active {
    transform: scale(0.95);
}

/* ========================
   19. FOOTER
   ======================== */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
    margin-bottom: var(--spacing-sm);
}

.footer-section a:hover {
    color: var(--blue-neon);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--purple-main);
    border-color: var(--purple-main);
    color: var(--bg-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* ========================
   20. WHATSAPP BUTTON
   ======================== */

.whatsapp-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    z-index: 999;
    animation: scaleIn 0.5s ease forwards;
    animation-delay: 1.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* ========================
   21. MODALS
   ======================== */

.payment-modal,
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    animation: fadeIn 0.3s ease;
}

.payment-modal.active,
.preview-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.payment-modal-content,
.preview-modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.preview-modal-content {
    max-width: 90%;
    width: 100%;
    max-height: 90vh;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: 10;
}

.modal-close:hover {
    color: var(--blue-neon);
    transform: rotate(90deg);
}

.payment-header {
    background: rgba(124, 58, 237, 0.1);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    padding: var(--spacing-lg);
    text-align: center;
}

.payment-header h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.payment-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.payment-body {
    padding: var(--spacing-lg);
}

.payment-info {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.bundle-selected,
.payment-amount {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.payment-amount strong,
.bundle-selected strong {
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 0.875rem;
    margin-bottom: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--purple-main);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.razorpay-container {
    margin: var(--spacing-lg) 0;
}

.btn-razorpay {
    width: 100%;
}

.payment-disclaimer {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-top: var(--spacing-md);
}

/* ========================
   22. RESPONSIVE DESIGN
   ======================== */

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        padding: var(--spacing-lg);
        border-top: 1px solid rgba(124, 58, 237, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.025rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-countdown {
        gap: var(--spacing-md);
        flex-wrap: wrap;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .bundles-grid {
        gap: var(--spacing-md);
    }
    
    .bundle-card.advanced-card {
        transform: scale(1);
    }
    
    .bundle-card.advanced-card:hover {
        transform: translateY(-10px);
    }
    
    .features-grid,
    .preview-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-buy-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 0.75rem;
    }
    
    .whatsapp-btn {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    h2 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .hero {
        min-height: 80vh;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-countdown {
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .countdown-number {
        font-size: 1.25rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .navbar .container {
        height: 60px;
    }
    
    .navbar {
        height: 60px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .sticky-buy-btn {
        width: 55px;
        height: 55px;
        font-size: 0.65rem;
    }
}

/* ========================
   23. UTILITIES
   ======================== */

.text-center {
    text-align: center;
}

.mt {
    margin-top: var(--spacing-lg);
}

.mb {
    margin-bottom: var(--spacing-lg);
}

.py {
    padding: var(--spacing-lg) 0;
}

/* Smooth scrolling is handled by the html scroll-behavior */

/* Hide scrollbar while keeping functionality */
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Prevent overflow on body */
body {
    position: relative;
    width: 100%;
}

/* ========================
   24. ANIMATIONS & TRANSITIONS
   ======================== */

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
}

/* ========================
   25. PRINT STYLES
   ======================== */

@media print {
    .navbar,
    .sticky-buy-btn,
    .whatsapp-btn,
    .final-cta,
    .loading-screen {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .bundle-card,
    .feature-card,
    .testimonial-card {
        page-break-inside: avoid;
    }
}

