/*
Theme Name: BotifyPro
Description: Custom theme for BotifyPro - Chatbot Development Services. Netflix-inspired design with modern B2B functionality.
Author: BotifyPro Team
Version: 1.0.0
Text Domain: botifypro
*/

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Netflix Brand Colors */
    --netflix-red: #E50914;
    --netflix-dark: #141414;
    --netflix-black: #000000;
    --netflix-light: #F3F3F3;
    --netflix-white: #FFFFFF;
    --netflix-gray: #333333;
    --netflix-light-gray: #666666;
    
    /* Custom BotifyPro Colors */
    --primary-red: var(--netflix-red);
    --primary-dark: var(--netflix-dark);
    --primary-black: var(--netflix-black);
    --text-light: var(--netflix-light);
    --text-white: var(--netflix-white);
    --text-gray: var(--netflix-gray);
    --text-light-gray: var(--netflix-light-gray);
    
    /* Gradients */
    --gradient-red: linear-gradient(135deg, #E50914 0%, #B20710 100%);
    --gradient-dark: linear-gradient(135deg, #141414 0%, #000000 100%);
    
    /* Typography */
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --max-width: 1200px;
}

body {
    font-family: var(--font-primary);
    background: 
        radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%),
        linear-gradient(45deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Global Space Background - Fixed */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 250px 20px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 300px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 350px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 400px 10px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 450px 40px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 500px 70px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 550px 20px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 600px 60px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 650px 30px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 700px 80px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 750px 10px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 800px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 850px 20px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 900px 70px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 950px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 1000px 10px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 120px 60px;
    animation: globalSparkle 25s linear infinite;
    z-index: -2;
    pointer-events: none;
}

/* Global Nebula Effect - Fixed */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 20, 147, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 40% 60%, rgba(0, 191, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 30%, rgba(255, 69, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 10%, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: globalNebula 35s ease-in-out infinite alternate;
}

/* Global Star Animation */
@keyframes globalSparkle {
    0%, 100% { 
        opacity: 0.2;
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        opacity: 0.6;
        transform: translateY(-5px) rotate(90deg);
    }
}

/* Global Nebula Animation */
@keyframes globalNebula {
    0% { 
        opacity: 0.1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.3;
        transform: scale(1.05) rotate(90deg);
    }
    100% { 
        opacity: 0.2;
        transform: scale(0.95) rotate(180deg);
    }
}

/* Floating Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite linear;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.particle:nth-child(1) { width: 2px; height: 2px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 1px; height: 1px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { width: 1px; height: 1px; left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { width: 2px; height: 2px; left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { width: 1px; height: 1px; left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { width: 2px; height: 2px; left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { width: 1px; height: 1px; left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { width: 3px; height: 3px; left: 90%; animation-delay: 16s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-white);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* ===== LAYOUT & CONTAINER ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 20, 147, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-logo {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.logo-icon svg {
    transition: all 0.3s ease;
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1;
    transition: all 0.3s ease;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.site-logo:hover .logo-icon {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 6px 16px rgba(229, 9, 20, 0.4);
}

.site-logo:hover .logo-icon svg {
    transform: scale(1.1);
}

.site-logo:hover .logo-text {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-logo:hover .logo-tagline {
    color: var(--primary-red);
    opacity: 1;
}

.main-navigation {
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 0.25rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 24px;
    height: 18px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu-wrapper.menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
    }
    
        .header-content {
            padding: 0 1rem;
        }
        
        .logo-icon {
            width: 36px;
            height: 36px;
        }
        
        .logo-text {
            font-size: 1.4rem;
        }
        
        .logo-tagline {
            font-size: 0.65rem;
        }
    }
    
    @media (max-width: 480px) {
        .logo-icon {
            width: 32px;
            height: 32px;
        }
        
        .logo-text {
            font-size: 1.2rem;
        }
        
        .logo-tagline {
            font-size: 0.6rem;
        }
        
        .site-logo {
            gap: 0.5rem;
        }
    }

/* ===== HERO SECTION ===== */
.hero-section {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 30px 30px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 60px 60px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 90px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 120px 60px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 150px 30px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 180px 60px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 210px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 240px 60px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 270px 30px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 300px 60px, rgba(255,255,255,0.7), transparent);
    background-repeat: repeat;
    background-size: 60px 30px;
    animation: heroSparkle 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(138, 43, 226, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 20, 147, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 60%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: heroNebula 30s ease-in-out infinite alternate;
}

@keyframes heroSparkle {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(-3px) rotate(45deg);
    }
}

@keyframes heroNebula {
    0% { 
        opacity: 0.1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.3;
        transform: scale(1.1) rotate(45deg);
    }
    100% { 
        opacity: 0.2;
        transform: scale(0.9) rotate(90deg);
    }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.badge-icon svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-title-main {
    color: var(--text-white);
    display: block;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #E50914 0%, #FF6B6B 50%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
}

.hero-quote-card {
    background: var(--gradient-dark);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--netflix-gray);
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 500px;
}

.hero-quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
}

.hero-quote-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.quote-form {
    margin-bottom: 0;
}

.quote-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quote-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--primary-black);
    border: 1px solid var(--netflix-gray);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quote-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.quote-form input[type="email"]::placeholder {
    color: var(--text-light-gray);
}

.submit-btn {
    background: var(--gradient-red);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
}

.form-message {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid #ff0000;
}


/* Responsive Space Backgrounds */
@media (max-width: 768px) {
    /* Reduce star density on tablets */
    body::before {
        background-size: 80px 40px;
    }
    
    .hero-section::before {
        background-size: 40px 20px;
    }
    
    .features-section::before {
        background-size: 35px 18px;
    }
    
    /* Reduce nebula intensity on mobile */
    body::after {
        opacity: 0.7;
    }
    
    .hero-section::after {
        opacity: 0.8;
    }
    
    .features-section::after {
        opacity: 0.6;
    }
}

@media (max-width: 480px) {
    /* Further reduce effects on small mobile */
    body::before {
        background-size: 60px 30px;
    }
    
    .hero-section::before {
        background-size: 30px 15px;
    }
    
    .features-section::before {
        background-size: 25px 12px;
    }
    
    /* Minimize nebula on small screens */
    body::after {
        opacity: 0.5;
    }
    
    .hero-section::after {
        opacity: 0.6;
    }
    
    .features-section::after {
        opacity: 0.4;
    }
}

/* Responsive Design for Quote Card */
@media (max-width: 768px) {
    .hero-quote-card {
        padding: 1.25rem;
        max-width: 100%;
    }
    
    .hero-quote-card h3 {
        font-size: 1.2rem;
    }
    
    .quote-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-quote-card {
        padding: 1rem;
    }
    
    .hero-quote-card h3 {
        font-size: 1.1rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--gradient-red);
    color: var(--text-white);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
    color: var(--text-white);
    text-decoration: none;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--netflix-gray);
}

.cta-button.secondary:hover {
    background: var(--netflix-gray);
    color: var(--text-white);
    text-decoration: none;
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.button-icon svg {
    width: 16px;
    height: 16px;
}

.cta-button.primary:hover .button-icon {
    transform: translateX(3px);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon svg {
    width: 12px;
    height: 12px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light-gray);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.code-window {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--netflix-gray);
    position: relative;
}

.window-header {
    background: #2a2a2a;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--netflix-gray);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close {
    background: #ff5f57;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #28ca42;
}

.window-title {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.window-content {
    padding: 1.5rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.line-number {
    color: var(--text-light-gray);
    width: 2rem;
    text-align: right;
    margin-right: 1rem;
    font-size: 0.8rem;
}

.code-text {
    flex: 1;
}

.keyword {
    color: #ff79c6;
    font-weight: 600;
}

.variable {
    color: #8be9fd;
}

.function {
    color: #50fa7b;
}

.property {
    color: #f1fa8c;
}

.string {
    color: #f1fa8c;
}

.cursor-line {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.cursor-blink {
    color: var(--primary-red);
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--netflix-gray);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 4s;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.card-text {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .code-window {
        transform: scale(0.9);
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ===== CUSTOM CHATBOTS SECTION ===== */
.custom-chatbots-section {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.custom-chatbots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 20px 20px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 40px 40px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 60px 20px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 80px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 100px 20px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 120px 40px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 140px 20px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 160px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 180px 20px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 200px 40px, rgba(255,255,255,0.5), transparent);
    background-repeat: repeat;
    background-size: 40px 20px;
    animation: customChatbotsSparkle 24s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.custom-chatbots-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(138, 43, 226, 0.16) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 20, 147, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 60%, rgba(0, 191, 255, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 69, 0, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: customChatbotsNebula 34s ease-in-out infinite alternate;
}

@keyframes customChatbotsSparkle {
    0%, 100% { 
        opacity: 0.2;
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        opacity: 0.7;
        transform: translateY(-2px) rotate(15deg);
    }
}

@keyframes customChatbotsNebula {
    0% { 
        opacity: 0.06;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.18;
        transform: scale(1.05) rotate(15deg);
    }
    100% { 
        opacity: 0.1;
        transform: scale(0.95) rotate(30deg);
    }
}

.custom-chatbots-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.custom-chatbots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.custom-chatbot-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.custom-chatbot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(229, 9, 20, 0.1) 0%, rgba(138, 43, 226, 0.05) 50%, rgba(0, 191, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.custom-chatbot-card:hover::before {
    opacity: 1;
}

.custom-chatbot-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(229, 9, 20, 0.2), 0 0 30px rgba(138, 43, 226, 0.1);
    border-color: var(--primary-red);
}

.custom-chatbot-card.full-width {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 300px;
}

.card-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.custom-chatbot-card.full-width .card-image {
    border-radius: 16px 0 0 16px;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(229, 9, 20, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.custom-chatbot-card:hover .card-image::after {
    opacity: 1;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.custom-chatbot-card:hover .card-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.custom-chatbot-card.full-width .card-content {
    padding: 3rem;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.2rem;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.custom-chatbot-card:hover .card-title::after {
    width: 60px;
}

.card-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
}

.card-description::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5L12 2z' fill='%23ffd700'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.custom-chatbot-card:hover .card-description::before {
    opacity: 1;
    transform: translateX(0);
}

/* Add floating animation to cards */
.custom-chatbot-card:nth-child(1) {
    animation: floatCard1 6s ease-in-out infinite;
}

.custom-chatbot-card:nth-child(2) {
    animation: floatCard2 6s ease-in-out infinite;
    animation-delay: 2s;
}

.custom-chatbot-card:nth-child(3) {
    animation: floatCard3 6s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

/* Add friendly SVG icons to each card */
.custom-chatbot-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z' fill='%2300bfff'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 3;
    transition: all 0.3s ease;
}

.custom-chatbot-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='%23ffd700'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 3;
    transition: all 0.3s ease;
}

.custom-chatbot-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z' fill='%23e50914'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 3;
    transition: all 0.3s ease;
}

.custom-chatbot-card:hover::after {
    opacity: 0.8;
    transform: scale(1.2) rotate(10deg);
}

/* Add subtle pulse effect */
.custom-chatbot-card {
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    50% { 
        box-shadow: 0 8px 32px rgba(229, 9, 20, 0.1), 0 0 20px rgba(138, 43, 226, 0.05);
    }
}

/* Add friendly hover text effect */
.card-description {
    position: relative;
    overflow: hidden;
}

.card-description::after {
    content: 'Learn More →';
    position: absolute;
    bottom: -25px;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.custom-chatbot-card:hover .card-description::after {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Custom Chatbots */
@media (max-width: 768px) {
    .custom-chatbots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .custom-chatbot-card.full-width {
        grid-column: 1;
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .custom-chatbot-card.full-width .card-image {
        border-radius: 16px 16px 0 0;
    }
    
    .card-image img {
        height: 220px;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .custom-chatbot-card.full-width .card-content {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .custom-chatbot-card::after {
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .custom-chatbots-section {
        padding: 80px 0;
    }
    
    .custom-chatbots-grid {
        gap: 1.5rem;
    }
    
    .card-image img {
        height: 200px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
    
    .custom-chatbot-card::after {
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }
    
    .card-description::before {
        left: -25px;
        font-size: 1rem;
    }
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 125px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 175px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 225px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 250px 50px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 50px 25px;
    animation: featuresSparkle 22s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: featuresNebula 32s ease-in-out infinite alternate;
}

@keyframes featuresSparkle {
    0%, 100% { 
        opacity: 0.2;
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        opacity: 0.6;
        transform: translateY(-2px) rotate(30deg);
    }
}

@keyframes featuresNebula {
    0% { 
        opacity: 0.08;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.2;
        transform: scale(1.08) rotate(30deg);
    }
    100% { 
        opacity: 0.12;
        transform: scale(0.92) rotate(60deg);
    }
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-red);
    color: var(--text-white);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for Features */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 80px 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== PRICING SECTION (HOMEPAGE) ===== */
.pricing-section {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 20px 20px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 40px 40px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 60px 20px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 80px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 100px 20px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 120px 40px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 140px 20px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 160px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 180px 20px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 200px 40px, rgba(255,255,255,0.7), transparent);
    background-repeat: repeat;
    background-size: 40px 20px;
    animation: heroSparkle 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 10%, rgba(138, 43, 226, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 90%, rgba(255, 20, 147, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 60%, rgba(0, 191, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 20%, rgba(255, 69, 0, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    animation: heroNebula 25s ease-in-out infinite alternate;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.pricing-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pricing-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-badges .badge:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.pricing-badges .badge svg {
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

/* Responsive Design for Homepage Pricing Section */
@media (max-width: 768px) {
    .pricing-section::before {
        background-size: 35px 18px;
        animation-duration: 20s;
    }
    
    .pricing-section::after {
        animation-duration: 30s;
    }
    
    .pricing-header .section-title {
        font-size: 2.5rem;
    }
    
    .pricing-badges {
        gap: 1rem;
    }
    
    .pricing-badges .badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section::before {
        background-size: 25px 12px;
        animation-duration: 15s;
    }
    
    .pricing-section::after {
        animation-duration: 25s;
    }
    
    .pricing-header .section-title {
        font-size: 2rem;
    }
    
    .pricing-header .section-subtitle {
        font-size: 1.1rem;
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 125px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 175px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 225px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 250px 50px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 50px 25px;
    animation: featuresSparkle 22s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: featuresNebula 32s ease-in-out infinite alternate;
}

@keyframes pricingSparkle {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(-2px) rotate(15deg);
    }
}

@keyframes pricingNebula {
    0% { 
        opacity: 0.08;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.18;
        transform: scale(1.08) rotate(15deg);
    }
    100% { 
        opacity: 0.12;
        transform: scale(0.96) rotate(30deg);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
    animation: pulseGlow 4s ease-in-out infinite;
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.pricing-card:hover .card-title::after {
    width: 60px;
}

.card-description {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

.card-description::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5L12 2z' fill='%23ffd700'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.pricing-card:hover .card-description::before {
    opacity: 1;
    transform: translateX(0);
}

.card-description::after {
    content: 'Learn More →';
    position: absolute;
    bottom: -25px;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.pricing-card:hover .card-description::after {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(229, 9, 20, 0.1) 0%, rgba(138, 43, 226, 0.05) 50%, rgba(0, 191, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(229, 9, 20, 0.2), 
        0 0 30px rgba(138, 43, 226, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--primary-red);
    background: rgba(0, 0, 0, 0.3);
}

.plan-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 191, 255, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8a2be2;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
}

.pricing-card.featured .plan-icon {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2) 0%, rgba(255, 20, 147, 0.2) 100%);
    color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.pricing-card:hover .plan-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
}

.pricing-card.featured:hover .plan-icon {
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}

.plan-icon svg {
    width: 24px;
    height: 24px;
}

.pricing-card.featured {
    border-color: rgba(229, 9, 20, 0.3);
    background: rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateX(2deg) rotateY(-1deg) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(229, 9, 20, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-card.featured:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(229, 9, 20, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

/* Add friendly SVG icons to each pricing card */
.pricing-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='%23ffd700'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 3;
    transition: all 0.3s ease;
}

.pricing-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5L12 2z' fill='%23e50914'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 3;
    transition: all 0.3s ease;
}

.pricing-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='%2300bfff'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 3;
    transition: all 0.3s ease;
}

.pricing-card:hover::after {
    opacity: 0.8;
    transform: scale(1.2) rotate(10deg);
}

/* Add floating animations to pricing cards */
.pricing-card:nth-child(1) {
    animation: floatCard1 6s ease-in-out infinite;
}

.pricing-card:nth-child(2) {
    animation: floatCard2 6s ease-in-out infinite;
}

.pricing-card:nth-child(3) {
    animation: floatCard3 6s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.plan-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.pricing-card:hover .plan-name::after {
    width: 60px;
}

.plan-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

.plan-description::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l2.5 7.5h7.5l-6 4.5 2.5 7.5-6-4.5-6 4.5 2.5-7.5-6-4.5h7.5L12 2z' fill='%23ffd700'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.3s ease;
}

.pricing-card:hover .plan-description::before {
    opacity: 0.8;
    left: -20px;
}

.plan-description::after {
    content: 'Learn More →';
    position: absolute;
    bottom: -25px;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.pricing-card:hover .plan-description::after {
    opacity: 1;
    transform: translateY(0);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    padding-left: 1rem;
    position: relative;
}

.feature-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-cta {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.pricing-button:hover::before {
    left: 100%;
}

.pricing-button:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pricing-button.primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.pricing-button.primary:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, var(--primary-red) 100%);
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.price-disclaimer {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-section::before {
        background-size: 30px 15px;
        animation-duration: 25s;
    }
    
    .pricing-section::after {
        animation-duration: 35s;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: perspective(1000px) rotateX(1deg) rotateY(-0.5deg) scale(1.02);
    }
    
    .pricing-card.featured:hover {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px) scale(1.02);
    }
    
    .plan-name {
        font-size: 1.6rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-section::before {
        background-size: 25px 12px;
        animation-duration: 20s;
    }
    
    .pricing-section::after {
        animation-duration: 30s;
    }
    
    .pricing-card {
        padding: 1.5rem;
        transform: perspective(1000px) rotateX(1deg) rotateY(-0.5deg);
    }
    
    .pricing-card:hover {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-5px) scale(1.01);
    }
    
    .plan-name {
        font-size: 1.4rem;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .pricing-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ===== TRY BOTIFYPRO NOW SECTION ===== */
.try-botifypro-section {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.try-botifypro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 15px 15px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 30px 30px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 45px 15px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 60px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 75px 15px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 30px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 105px 15px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 120px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 135px 15px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 150px 30px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 30px 15px;
    animation: heroSparkle 26s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.try-botifypro-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: heroNebula 36s ease-in-out infinite alternate;
}


.try-botifypro-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.chatbot-widget {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.chatbot-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(229, 9, 20, 0.1) 0%, rgba(138, 43, 226, 0.05) 50%, rgba(0, 191, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.chatbot-widget:hover::before {
    opacity: 1;
}

.chatbot-header {
    background: var(--primary-red);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.demo-mode-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.chatbot-messages {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
    position: relative;
    z-index: 2;
}

.message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: var(--primary-red);
    color: white;
    border: 1px solid var(--primary-red);
}

.user-message .message-content p {
    color: white;
}

.user-message .avatar-icon {
    background: #4ade80;
}

.message-avatar {
    flex-shrink: 0;
}

.avatar-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.message-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-content p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
}

.message-time {
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.quick-questions {
    padding: 0 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
}

.quick-questions-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.quick-questions-header svg {
    color: var(--primary-red);
}

.quick-questions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.quick-question-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-question-btn:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: var(--primary-red);
    color: white;
}

.quick-question-btn svg {
    color: var(--primary-red);
}

.chatbot-input-area {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.message-input-container {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.message-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.message-input::placeholder {
    color: #888;
}

.message-input:focus {
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
}

.send-button {
    background: var(--primary-red);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-button:hover {
    background: #ff6b6b;
    transform: scale(1.05);
}

.message-counter {
    color: #888;
    font-size: 0.8rem;
    text-align: center;
}

/* Chatbot Message Animations */
.message {
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Indicator */
.message-content p:contains("typing") {
    font-style: italic;
    color: #888;
}

/* Disabled State */
.message-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.send-button:disabled:hover {
    background: var(--primary-red);
    transform: none;
}

/* Quick Question Button States */
.quick-question-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quick-question-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

/* Message Content Line Breaks */
.message-content p {
    white-space: pre-line;
}

/* Scrollbar Styling for Messages */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #ff6b6b;
}

/* Responsive Design for Try BotifyPro Section */
@media (max-width: 768px) {
    .try-botifypro-section::before {
        background-size: 25px 12px;
        animation-duration: 20s;
    }
    
    .try-botifypro-section::after {
        animation-duration: 30s;
    }
    
    .chatbot-widget {
        margin: 0 1rem;
    }
    
    .quick-questions-list {
        flex-direction: column;
    }
    
    .quick-question-btn {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .try-botifypro-section {
        padding: 80px 0;
    }
    
    .try-botifypro-section::before {
        background-size: 20px 10px;
        animation-duration: 15s;
    }
    
    .try-botifypro-section::after {
        animation-duration: 25s;
    }
    
    .chatbot-header {
        padding: 0.75rem 1rem;
    }
    
    .chatbot-title {
        font-size: 1rem;
    }
    
    .chatbot-messages {
        padding: 1rem;
    }
    
    .message-content {
        padding: 0.75rem;
    }
    
    .quick-questions {
        padding: 0 1rem 1rem;
    }
    
    .chatbot-input-area {
        padding: 1rem;
    }
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    animation: heroSparkle 8s ease-in-out infinite;
    z-index: 1;
}

.social-proof-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(255, 107, 107, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(229, 9, 20, 0.08) 0%, transparent 60%);
    animation: heroNebula 12s ease-in-out infinite;
    z-index: 1;
}

/* Floating particles for social proof section */
.social-proof-section .floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(229, 9, 20, 0.6);
    border-radius: 50%;
    animation: floatUp 15s linear infinite;
    z-index: 2;
}

.social-proof-section .floating-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.social-proof-section .floating-particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.social-proof-section .floating-particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.social-proof-section .floating-particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.social-proof-section .floating-particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.social-proof-section .floating-particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.social-proof-section .floating-particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.social-proof-section .floating-particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.social-proof-section .floating-particle:nth-child(9) { left: 90%; animation-delay: 16s; }

.user-avatars {
    position: relative;
    margin-bottom: 3rem;
    z-index: 20;
}

.avatar-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        #e50914 0%, 
        #ff6b6b 20%, 
        #ff8e8e 40%, 
        #ffa8a8 60%, 
        #ff6b6b 80%, 
        #e50914 100%);
    transform: translateY(-50%);
    animation: gradientShift 3s ease-in-out infinite;
}

.avatars-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.user-avatar {
    position: relative;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.user-avatar:hover .avatar-circle {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.user-count {
    margin-left: 1rem;
}

.count-circle {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.cta-frame {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 20;
}

.frame-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
        #e50914, 
        #ff6b6b, 
        #ff8e8e, 
        #ffa8a8, 
        #ff6b6b, 
        #e50914);
    border-radius: 24px;
    animation: gradientShift 3s ease-in-out infinite;
    z-index: -1;
}

.frame-border::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, 
        #e50914, 
        #ff6b6b, 
        #ff8e8e, 
        #ffa8a8, 
        #ff6b6b);
    border-radius: 50%;
    animation: gradientShift 3s ease-in-out infinite;
}

.frame-content {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #e50914 0%, #ff6b6b 50%, #ff8e8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.cta-btn.primary {
    background: white;
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-btn.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.mascot-character {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    animation: mascotFloat 4s ease-in-out infinite;
}

.mascot-head {
    width: 120px;
    height: 120px;
    position: relative;
}

.mascot-face {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e50914 0%, #ff6b6b 100%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.mascot-eyes {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.eye {
    width: 12px;
    height: 12px;
    background: #8b4513;
    border-radius: 50%;
    animation: mascotBlink 3s ease-in-out infinite;
}

.mascot-mouth {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background: #8b4513;
    border-radius: 0 0 20px 20px;
}

.mascot-hair {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hair-spike {
    width: 8px;
    height: 30px;
    background: linear-gradient(135deg, #e50914 0%, #ff6b6b 100%);
    border-radius: 4px;
    animation: hairWave 2s ease-in-out infinite;
}

.hair-spike:nth-child(1) { animation-delay: 0s; }
.hair-spike:nth-child(2) { animation-delay: 0.2s; }
.hair-spike:nth-child(3) { animation-delay: 0.4s; }
.hair-spike:nth-child(4) { animation-delay: 0.6s; }

/* Animations */
@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes mascotFloat {
    0%, 100% { 
        transform: translateY(-50%) translateY(0px); 
    }
    50% { 
        transform: translateY(-50%) translateY(-10px); 
    }
}

@keyframes mascotBlink {
    0%, 90%, 100% { 
        transform: scaleY(1); 
    }
    95% { 
        transform: scaleY(0.1); 
    }
}

@keyframes hairWave {
    0%, 100% { 
        transform: rotate(0deg); 
    }
    50% { 
        transform: rotate(5deg); 
    }
}

/* Responsive Design for Social Proof Section */
@media (max-width: 768px) {
    .social-proof-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .frame-content {
        padding: 3rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .mascot-character {
        right: 2%;
        width: 80px;
        height: 80px;
    }
    
    .mascot-head {
        width: 80px;
        height: 80px;
    }
    
    .avatars-container {
        gap: 0.5rem;
    }
    
    .avatar-circle,
    .count-circle {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .frame-content {
        padding: 2.5rem 1.5rem;
    }
    
    .mascot-character {
        display: none;
    }
    
    .avatar-circle,
    .count-circle {
        width: 36px;
        height: 36px;
    }
    
    .count-text {
        font-size: 0.7rem;
    }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 15px 15px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 30px 30px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 45px 15px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 60px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 75px 15px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 30px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 105px 15px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 120px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 135px 15px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 150px 30px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 30px 15px;
    animation: heroSparkle 26s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: heroNebula 36s ease-in-out infinite alternate;
}

.newsletter-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
    transition: all 0.3s ease;
}

.newsletter-card:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.newsletter-info {
    flex: 1;
    color: white;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.newsletter-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e0e0;
    margin: 0 0 0.5rem 0;
    font-family: 'Inter', sans-serif;
}

.newsletter-brand {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
    font-family: 'Inter', sans-serif;
}

.newsletter-description {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.newsletter-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: #2a2a2a;
    border: 2px solid #4a4a4a;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #c40812;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.newsletter-button:active {
    transform: translateY(0);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.newsletter-privacy svg {
    color: #ffd700;
    flex-shrink: 0;
}

.newsletter-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    animation: slideInUp 0.3s ease-out;
}

.newsletter-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.newsletter-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.newsletter-message svg {
    flex-shrink: 0;
}

.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design for Newsletter Section */
@media (max-width: 768px) {
    .newsletter-section::before {
        background-size: 25px 12px;
        animation-duration: 20s;
    }
    
    .newsletter-section::after {
        animation-duration: 30s;
    }
    
    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .newsletter-form-container {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-section::before {
        background-size: 20px 10px;
        animation-duration: 15s;
    }
    
    .newsletter-section::after {
        animation-duration: 25s;
    }
    
    .newsletter-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .newsletter-brand {
        font-size: 2rem;
    }
    
    .newsletter-icon {
        width: 50px;
        height: 50px;
    }
}

/* ===== INTEGRATIONS SECTION ===== */
.integrations-section {
    background: var(--primary-dark);
    padding: 100px 0;
}

.integrations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.integration-category {
    background: var(--gradient-dark);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--netflix-gray);
    transition: all 0.3s ease;
}

.integration-category:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(229, 9, 20, 0.1);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tool-card {
    background: var(--primary-black);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--netflix-gray);
    cursor: pointer;
}

.tool-card:hover {
    background: rgba(229, 9, 20, 0.05);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.tool-logo {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 8px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.tool-card:hover .tool-logo {
    background: var(--gradient-red);
    color: var(--text-white);
    transform: scale(1.1);
}

.tool-logo svg {
    width: 24px;
    height: 24px;
}

.tool-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    display: block;
    line-height: 1.2;
}

.integrations-cta {
    text-align: center;
    background: var(--gradient-dark);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--netflix-gray);
    max-width: 600px;
    margin: 0 auto;
}

.integrations-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.integrations-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design for Integrations */
@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .tool-card {
        padding: 1rem 0.75rem;
    }
    
    .tool-logo {
        width: 35px;
        height: 35px;
    }
    
    .tool-logo svg {
        width: 20px;
        height: 20px;
    }
    
    .tool-name {
        font-size: 0.8rem;
    }
    
    .integrations-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .integrations-section {
        padding: 80px 0;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-category {
        padding: 1.5rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--primary-dark);
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--gradient-dark);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--netflix-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    background: var(--primary-black);
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--gradient-dark);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--netflix-gray);
}

.portfolio-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-red);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.portfolio-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--primary-dark);
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--gradient-dark);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    border: 1px solid var(--netflix-gray);
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--netflix-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--primary-black);
    padding: 100px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--netflix-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-black);
    border: 1px solid var(--netflix-gray);
    border-radius: 5px;
    color: var(--text-white);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--gradient-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--netflix-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--netflix-gray);
    color: var(--text-light-gray);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-links a {
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-legal-links .separator {
    color: var(--text-light-gray);
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        gap: 0.75rem;
    }
    
    .footer-legal-links {
        gap: 0.25rem;
    }
    
    .footer-legal-links a {
        font-size: 0.8rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== PRICING PAGE ===== */
.pricing-page {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.pricing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 125px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 175px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 225px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 250px 50px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 50px 25px;
    animation: featuresSparkle 22s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.pricing-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: featuresNebula 32s ease-in-out infinite alternate;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.pricing-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(1deg) rotateY(-0.5deg);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-red);
    box-shadow: 
        0 8px 32px rgba(229, 9, 20, 0.2),
        0 0 0 1px rgba(229, 9, 20, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.card-features {
    margin-bottom: 2rem;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features svg {
    color: #22c55e;
    flex-shrink: 0;
}

.card-features span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.card-footer {
    text-align: center;
}

.pricing-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    text-align: center;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: var(--gradient-red);
    border-color: var(--primary-red);
}

.pricing-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
    transform: translateY(-2px);
}

.addons-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
    text-align: center;
}

.addons-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.addons-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.addon-item {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.addon-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-5px);
}

.addon-icon {
    width: 48px;
    height: 48px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.addon-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.addon-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
}

.pricing-faq {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
}

.pricing-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--primary-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.pricing-cta {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--gradient-red);
    color: var(--text-white);
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.cta-button.secondary {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .pricing-page::before {
        background-size: 35px 18px;
        animation-duration: 20s;
    }
    
    .pricing-page::after {
        animation-duration: 30s;
    }
    
    .pricing-header h1 {
        font-size: 2.5rem;
    }
    
    .pricing-badges {
        gap: 1rem;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
        transform: none;
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-page {
        padding: 100px 0 60px;
    }
    
    .pricing-page::before {
        background-size: 25px 12px;
        animation-duration: 15s;
    }
    
    .pricing-page::after {
        animation-duration: 25s;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .addons-section,
    .pricing-faq,
    .pricing-cta {
        padding: 2rem;
    }
    
    .addon-item {
        padding: 1.5rem;
    }
}

/* ===== ABOUT PAGE ===== */
.about-page {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 20px 20px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 40px 40px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 60px 20px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 80px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 100px 20px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 120px 40px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 140px 20px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 160px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 180px 20px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 200px 40px, rgba(255,255,255,0.7), transparent);
    background-repeat: repeat;
    background-size: 40px 20px;
    animation: heroSparkle 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.about-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 10%, rgba(138, 43, 226, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 90%, rgba(255, 20, 147, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 60%, rgba(0, 191, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 20%, rgba(255, 69, 0, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    animation: heroNebula 25s ease-in-out infinite alternate;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.mission-card,
.vision-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    margin: 0 auto 2rem;
}

.mission-card h2,
.vision-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.story-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.values-section {
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.team-section {
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    margin: 0 auto;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-red);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.stats-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.stats-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.about-cta {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 10;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--gradient-red);
    color: var(--text-white);
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.cta-button.secondary {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-page::before {
        background-size: 30px 15px;
        animation-duration: 18s;
    }
    
    .about-page::after {
        animation-duration: 22s;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-vision-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .story-section,
    .stats-section,
    .about-cta {
        padding: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 100px 0 60px;
    }
    
    .about-page::before {
        background-size: 25px 12px;
        animation-duration: 15s;
    }
    
    .about-page::after {
        animation-duration: 20s;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .story-section,
    .stats-section,
    .about-cta {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===== FAQ PAGE ===== */
.faq-page {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.faq-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 125px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 175px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 225px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 250px 50px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 50px 25px;
    animation: featuresSparkle 22s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.faq-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: featuresNebula 32s ease-in-out infinite alternate;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.faq-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.search-icon {
    color: var(--text-light-gray);
    margin-right: 1rem;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.search-box input::placeholder {
    color: var(--text-light-gray);
}

.search-clear {
    background: none;
    border: none;
    color: var(--text-light-gray);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.search-clear:hover {
    color: var(--primary-red);
    background: rgba(229, 9, 20, 0.1);
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(229, 9, 20, 0.3);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-red);
}

.category-icon {
    color: var(--primary-red);
    flex-shrink: 0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-icon {
    color: var(--primary-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none !important;
}

.faq-item.active .faq-answer {
    display: block !important;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.faq-answer ul {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-answer li::marker {
    color: var(--primary-red);
}

.faq-answer strong {
    color: var(--text-white);
    font-weight: 600;
}

.faq-cta {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-red);
    color: var(--text-white);
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.cta-button.secondary {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .faq-page::before {
        background-size: 35px 18px;
        animation-duration: 20s;
    }
    
    .faq-page::after {
        animation-duration: 30s;
    }
    
    .faq-header h1 {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-cta {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-page {
        padding: 100px 0 60px;
    }
    
    .faq-page::before {
        background-size: 25px 12px;
        animation-duration: 15s;
    }
    
    .faq-page::after {
        animation-duration: 25s;
    }
    
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .search-box {
        padding: 0.75rem 1rem;
    }
    
    .category-title {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .faq-cta {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 125px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 175px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 225px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 250px 50px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 50px 25px;
    animation: featuresSparkle 22s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.contact-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: featuresNebula 32s ease-in-out infinite alternate;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(1deg) rotateY(-0.5deg);
    transition: all 0.3s ease;
}

.contact-info-section:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
    border-radius: 2px;
}

.contact-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method:hover {
    background: rgba(0, 0, 0, 0.1);
    margin: 0 -1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
}

.method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.method-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.method-content p {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.response-time {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

.business-hours {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.day {
    color: var(--text-light);
    font-weight: 500;
}

.time {
    color: var(--text-white);
    font-weight: 600;
}

.contact-form-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(1deg) rotateY(0.5deg);
    transition: all 0.3s ease;
}

.contact-form-section:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
    border-radius: 2px;
}

.form-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light-gray);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--primary-red);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: var(--gradient-red);
    color: var(--text-white);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.faq-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
    border-radius: 2px;
}

.faq-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--primary-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none !important;
}

.faq-item.active .faq-answer {
    display: block !important;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-page::before {
        background-size: 35px 18px;
        animation-duration: 20s;
    }
    
    .contact-page::after {
        animation-duration: 30s;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-badges {
        gap: 1rem;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 2rem;
        transform: none;
    }
    
    .contact-info-section:hover,
    .contact-form-section:hover {
        transform: translateY(-2px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 100px 0 60px;
    }
    
    .contact-page::before {
        background-size: 25px 12px;
        animation-duration: 15s;
    }
    
    .contact-page::after {
        animation-duration: 25s;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-section,
    .contact-form-section,
    .faq-section {
        padding: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem 0;
    }
    
    .business-hours {
        padding: 1.5rem;
    }
}

/* ===== TERMS OF SERVICE PAGE ===== */
.terms-of-service-page {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.terms-of-service-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 125px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 175px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 225px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 250px 50px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 50px 25px;
    animation: featuresSparkle 22s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.terms-of-service-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: featuresNebula 32s ease-in-out infinite alternate;
}

.terms-of-service-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.terms-of-service-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-of-service-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.terms-of-service-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.service-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #22c55e;
    margin-top: 0.25rem;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.responsibility-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.responsibility-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.responsibility-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.responsibility-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.responsibility-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.prohibited-uses {
    margin-top: 2rem;
}

.prohibited-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prohibited-item:last-child {
    border-bottom: none;
}

.prohibited-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #ef4444;
    margin-top: 0.25rem;
}

.prohibited-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.payment-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payment-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.3);
    transform: translateY(-2px);
}

.payment-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4500;
}

.payment-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.payment-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.ip-rights {
    margin-top: 2rem;
}

.ip-section {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.ip-section:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

.ip-section:last-child {
    margin-bottom: 0;
}

.ip-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.ip-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.sla-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sla-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.sla-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 191, 255, 0.3);
    transform: translateY(-2px);
}

.sla-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bfff;
}

.sla-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.sla-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.liability-limits {
    margin-top: 2rem;
}

.limit-item {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.limit-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
}

.limit-item:last-child {
    margin-bottom: 0;
}

.limit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.limit-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.termination-terms {
    margin-top: 2rem;
}

.termination-item {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.termination-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 20, 147, 0.3);
    transform: translateY(-2px);
}

.termination-item:last-child {
    margin-bottom: 0;
}

.termination-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.termination-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.dispute-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dispute-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.dispute-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--primary-red), rgba(229, 9, 20, 0.3));
    z-index: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Terms of Service */
@media (max-width: 768px) {
    .terms-of-service-page::before {
        background-size: 35px 18px;
        animation-duration: 20s;
    }
    
    .terms-of-service-page::after {
        animation-duration: 30s;
    }
    
    .terms-of-service-header h1 {
        font-size: 2.5rem;
    }
    
    .responsibilities-grid,
    .payment-terms,
    .sla-terms,
    .dispute-process {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .responsibility-item,
    .payment-item,
    .sla-item {
        padding: 1.5rem;
    }
    
    .dispute-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .terms-of-service-page {
        padding: 100px 0 60px;
    }
    
    .terms-of-service-page::before {
        background-size: 25px 12px;
        animation-duration: 15s;
    }
    
    .terms-of-service-page::after {
        animation-duration: 25s;
    }
    
    .terms-of-service-header h1 {
        font-size: 2rem;
    }
    
    .responsibility-item,
    .payment-item,
    .sla-item,
    .ip-section,
    .limit-item,
    .termination-item {
        padding: 1rem;
    }
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-policy-page {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.privacy-policy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 125px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 175px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 225px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 250px 50px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 50px 25px;
    animation: featuresSparkle 22s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.privacy-policy-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: featuresNebula 32s ease-in-out infinite alternate;
}

.privacy-policy-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.privacy-policy-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-policy-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.privacy-policy-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.info-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-category {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-category:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.category-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a2be2;
}

.category-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.category-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.category-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.usage-purposes {
    margin-top: 2rem;
}

.usage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.usage-item:last-child {
    border-bottom: none;
}

.usage-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #22c55e;
    margin-top: 0.25rem;
}

.usage-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.sharing-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.scenario-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.scenario-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.scenario-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bfff;
}

.scenario-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.scenario-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.security-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.security-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.security-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.right-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

.right-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a2be2;
}

.right-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.right-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cookie-type {
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.cookie-type:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.3);
    transform: translateY(-2px);
}

.cookie-type h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.cookie-type p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.retention-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.retention-list li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-page::before {
        background-size: 35px 18px;
        animation-duration: 20s;
    }
    
    .privacy-policy-page::after {
        animation-duration: 30s;
    }
    
    .privacy-policy-header h1 {
        font-size: 2.5rem;
    }
    
    .info-collection-grid,
    .sharing-scenarios,
    .security-measures,
    .rights-grid,
    .cookie-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-category,
    .scenario-item,
    .security-item,
    .right-item,
    .cookie-type {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-page {
        padding: 100px 0 60px;
    }
    
    .privacy-policy-page::before {
        background-size: 25px 12px;
        animation-duration: 15s;
    }
    
    .privacy-policy-page::after {
        animation-duration: 25s;
    }
    
    .privacy-policy-header h1 {
        font-size: 2rem;
    }
    
    .info-category,
    .scenario-item,
    .security-item,
    .right-item,
    .cookie-type {
        padding: 1rem;
    }
}

/* ===== REFUND POLICY PAGE ===== */
.refund-policy-page {
    background: 
        radial-gradient(ellipse at center, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.refund-policy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 75px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 125px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 150px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 175px 25px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 225px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 250px 50px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 50px 25px;
    animation: featuresSparkle 22s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.refund-policy-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 15%, rgba(138, 43, 226, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 85%, rgba(255, 20, 147, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 45% 45%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: featuresNebula 32s ease-in-out infinite alternate;
}

.refund-policy-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.refund-policy-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.refund-policy-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.update-label {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

.update-date {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
}

.refund-policy-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.policy-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(1deg) rotateY(-0.5deg);
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
    border-radius: 2px;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.eligibility-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.eligibility-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.eligibility-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.eligibility-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.eligibility-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--primary-red), rgba(229, 9, 20, 0.3));
    z-index: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.non-refundable-list {
    margin-top: 1.5rem;
}

.non-refundable-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.non-refundable-item:last-child {
    border-bottom: none;
}

.non-refundable-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #ef4444;
    margin-top: 0.25rem;
}

.non-refundable-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.partial-refund-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.partial-refund-list li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.response-time {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

.policy-footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 50%, var(--primary-red) 100%);
}

.policy-footer-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.policy-footer-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--gradient-red);
    color: var(--text-white);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
    color: var(--text-white);
    text-decoration: none;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Refund Policy */
@media (max-width: 768px) {
    .refund-policy-page::before {
        background-size: 35px 18px;
        animation-duration: 20s;
    }
    
    .refund-policy-page::after {
        animation-duration: 30s;
    }
    
    .refund-policy-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 2rem;
        transform: none;
    }
    
    .policy-section:hover {
        transform: translateY(-2px);
    }
    
    .eligibility-grid,
    .process-steps,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .refund-policy-page {
        padding: 100px 0 60px;
    }
    
    .refund-policy-page::before {
        background-size: 25px 12px;
        animation-duration: 15s;
    }
    
    .refund-policy-page::after {
        animation-duration: 25s;
    }
    
    .refund-policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .eligibility-item,
    .contact-method {
        padding: 1rem;
    }
    
    .policy-footer {
        padding: 2rem;
    }
}

/* ===== WORDPRESS SPECIFIC STYLES ===== */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-button .wp-block-button__link {
    background: var(--gradient-red);
    border-radius: 5px;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wp-block-button .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}
