/* ==========================================================================
   Built by JJ - Main Stylesheet
   Professional Freelance Web Development
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - BuiltByJJ Signature Color Scheme
   -------------------------------------------------------------------------- */
:root {
    /* Primary Brand Colors - Electric Blue to Violet */
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --primary-glow: rgba(124, 58, 237, 0.5);
    
    /* Secondary - Vivid Cyan */
    --secondary: #06b6d4;
    --secondary-dark: #0891b2;
    --secondary-light: #22d3ee;
    
    /* Accent - Hot Coral/Orange for CTAs */
    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-light: #fb923c;
    --accent-glow: rgba(249, 115, 22, 0.4);
    
    /* Neon Highlights */
    --neon-purple: #c084fc;
    --neon-blue: #38bdf8;
    --neon-pink: #f472b6;
    --neon-green: #4ade80;
    
    /* Rich Dark Theme */
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    --gray-950: #0c0c0e;
    
    --white: #ffffff;
    --black: #000000;
    
    /* Status Colors */
    --success: #22c55e;
    --warning: #eab308;
    --error: #ef4444;
    
    /* Signature Gradients */
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    --gradient-dark: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    --gradient-hero: linear-gradient(135deg, #0c0c0e 0%, #1e1b4b 50%, #0c0c0e 100%);
    --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    --gradient-text: linear-gradient(135deg, #a78bfa 0%, #38bdf8 50%, #4ade80 100%);
    --gradient-card: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
    
    /* Typography - Modern & Bold */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-3xl) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-2xl) 0;
    }
}

/* ==========================================================================
   SITE HEADER - Professional High-Class Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.98) 0%, rgba(9, 9, 11, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(9, 9, 11, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

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

/* ==================== LOGO ==================== */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    position: relative;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.logo-initials {
    font-weight: 800;
    font-size: 1rem;
    color: white;
    letter-spacing: -0.5px;
}

.logo-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== DESKTOP NAVIGATION ==================== */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: #ffffff;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.nav-dropdown-btn:hover,
.nav-dropdown:hover .nav-dropdown-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown-btn.active {
    color: #ffffff;
}

.nav-dropdown-btn i {
    font-size: 0.5rem;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-btn i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: #0f0f12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.15s ease;
}

.nav-dropdown-item:hover {
    background: rgba(124, 58, 237, 0.15);
}

.nav-dropdown-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #a78bfa;
    margin-top: 2px;
    flex-shrink: 0;
}

.nav-dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.dropdown-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.nav-dropdown-item:hover .dropdown-title {
    color: #ffffff;
}

.nav-dropdown-item.highlight-green i,
.nav-dropdown-item.highlight-green .dropdown-title {
    color: #34d399;
}

.nav-dropdown-item.highlight-green:hover {
    background: rgba(16, 185, 129, 0.15);
}

.nav-dropdown-item.highlight-pink i,
.nav-dropdown-item.highlight-pink .dropdown-title {
    color: #f472b6;
}

.nav-dropdown-item.highlight-pink:hover {
    background: rgba(244, 114, 182, 0.15);
}

.nav-dropdown-item.highlight-green:hover {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.nav-dropdown-item.highlight-red {
    color: #f87171;
}

.nav-dropdown-item.highlight-red i {
    color: #f87171;
}

.nav-dropdown-item.highlight-red:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.dropdown-badge {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: auto;
}

/* Navigation Divider - Hidden now */
.nav-divider {
    display: none;
}

/* Special Nav Links - Hidden now, moved to dropdown */
.nav-special {
    display: none;
}

.nav-special i {
    font-size: 0.875rem;
}

.payment-processing-link {
    color: #10b981;
}

.payment-processing-link:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

.sponsor-link {
    color: #ef4444;
}

.sponsor-link:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

/* Navigation Badge */
.nav-badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

.partner-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

/* ==================== HEADER CTA ==================== */
.header-cta {
    flex-shrink: 0;
}

.btn-primary-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #7c3aed;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary-nav:hover {
    background: #8b5cf6;
    color: #ffffff;
}

.btn-primary-nav i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.btn-primary-nav:hover i {
    transform: translateX(2px);
}

/* ==================== MOBILE MENU BUTTON ==================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==================== MOBILE NAVIGATION OVERLAY ==================== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==================== MOBILE NAVIGATION PANEL ==================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 340px;
    max-width: 90vw;
    height: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: linear-gradient(180deg, #0f0f11 0%, #09090b 100%);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    display: none;
    overflow: visible;
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    color: white;
}

.mobile-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Mobile Nav Content */
.mobile-nav-content {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.75rem 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    min-height: 0; /* Important for flex scrolling */
}

.mobile-nav-group {
    padding: 0.5rem 1rem;
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.5rem 1.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    margin: 0.125rem 0;
    color: #e4e4e7;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.mobile-nav-link.active {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: #71717a;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    color: #a78bfa;
}

.mobile-nav-link.green {
    color: #10b981;
}

.mobile-nav-link.green i {
    color: #10b981;
}

.mobile-nav-link.red {
    color: #ef4444;
}

.mobile-nav-link.red i {
    color: #ef4444;
}

.mobile-badge {
    margin-left: auto;
    padding: 0.2rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 4px;
}

/* Legacy mobile-nav-item styles for compatibility */
.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem;
    margin: 0.125rem 0;
    color: #e4e4e7;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.mobile-nav-item.active {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.2);
}

.mobile-item-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #71717a;
    font-size: 1rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-nav-item:hover .mobile-item-icon,
.mobile-nav-item.active .mobile-item-icon {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.mobile-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
}

.mobile-item-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
}

.mobile-item-desc {
    font-size: 0.75rem;
    color: #71717a;
    line-height: 1.3;
}

.mobile-item-badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Featured Mobile Items */
.mobile-item-featured.green .mobile-item-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.mobile-item-featured.green .mobile-item-label {
    color: #10b981;
}

.mobile-item-featured.green .mobile-item-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.mobile-item-featured.red .mobile-item-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.mobile-item-featured.red .mobile-item-label {
    color: #ef4444;
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: 1rem 1.25rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
    color: #ffffff;
}

.mobile-footer-text {
    text-align: center;
    font-size: 0.75rem;
    color: #52525b;
    margin-top: 0.75rem;
}

/* ==================== RESPONSIVE NAVIGATION ==================== */
@media (max-width: 1200px) {
    .desktop-nav {
        gap: 0.125rem;
    }
    
    .nav-link {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .nav-badge {
        display: none;
    }
}

@media (max-width: 1024px) {
    /* Hide desktop elements */
    .desktop-nav {
        display: none !important;
    }
    
    .header-cta {
        display: none !important;
    }
    
    /* Show mobile hamburger button */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Enable mobile nav (starts off-screen due to transform) */
    .mobile-nav {
        display: flex !important;
    }
    
    /* Enable overlay (starts invisible) */
    .mobile-nav-overlay {
        display: block !important;
    }
    
    .header-container {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
        height: 64px;
    }
    
    .logo-brand {
        display: none;
    }
    
    .logo-mark {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
    }
    
    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }
}

/* Legacy nav classes for compatibility */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-menu > li {
    list-style: none;
}

/* ============================================================
   MOBILE NAVIGATION - Force Hidden Until Toggle Clicked
   ============================================================ */
@media screen and (max-width: 991px) {
    /* Hide nav menu by default on mobile */
    #navMenu {
        display: none !important;
        position: fixed !important;
        top: 72px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #09090b !important;
        flex-direction: column !important;
        padding: 1.5rem !important;
        gap: 0.5rem !important;
        overflow-y: auto !important;
        z-index: 1000 !important;
    }
    
    /* Show nav menu when active */
    #navMenu.active {
        display: flex !important;
    }
    
    /* Show hamburger button */
    #navToggle {
        display: flex !important;
        z-index: 1001 !important;
    }
    
    /* Style nav links for mobile */
    #navMenu .nav-link {
        display: block !important;
        padding: 1rem 1.25rem !important;
        width: 100% !important;
        text-align: left !important;
        font-size: 1.1rem !important;
        border-radius: 0.5rem !important;
        background: rgba(24, 24, 27, 0.8) !important;
        margin-bottom: 0.5rem !important;
        color: #ffffff !important;
    }
    
    #navMenu .nav-link:hover,
    #navMenu .nav-link.active {
        background: rgba(124, 58, 237, 0.3) !important;
    }
    
    /* Mobile dropdown - always visible */
    #navMenu .nav-dropdown {
        width: 100% !important;
    }
    
    #navMenu .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        padding-left: 1rem !important;
        margin-top: 0 !important;
    }
    
    #navMenu .nav-dropdown-menu a {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 0.875rem 1rem !important;
        background: rgba(24, 24, 27, 0.5) !important;
        border-radius: 0.5rem !important;
        margin-bottom: 0.375rem !important;
        font-size: 1rem !important;
        color: #d4d4d8 !important;
    }
    
    #navMenu .nav-dropdown-menu a:hover {
        background: rgba(124, 58, 237, 0.2) !important;
        color: #ffffff !important;
    }
    
    /* Mobile CTA button */
    #navMenu .btn-nav {
        display: block !important;
        text-align: center !important;
        margin-top: 1rem !important;
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
        width: 100% !important;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--gray-400);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    color: var(--white) !important;
}

.btn-nav::after {
    display: none !important;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(24, 24, 27, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(63, 63, 70, 0.5);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #d4d4d8;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(124, 58, 237, 0.15);
    color: #ffffff;
}

.nav-dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: #a1a1aa;
}

.nav-dropdown-menu a:hover i {
    color: #10b981;
}

.nav-dropdown-menu .processing-link {
    color: #10b981;
}

.nav-dropdown-menu .processing-link:hover {
    background: rgba(16, 185, 129, 0.15);
}

.nav-dropdown-menu .sponsor-link {
    color: #ef4444;
}

.nav-dropdown-menu .sponsor-link:hover {
    background: rgba(239, 68, 68, 0.15);
}

.dropdown-divider {
    height: 1px;
    background: rgba(63, 63, 70, 0.5);
    margin: 0.5rem 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(124, 58, 237, 0.1);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-xl);
        gap: var(--spacing-xs);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.25rem;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        border-radius: var(--radius-md);
        background: rgba(24, 24, 27, 0.5);
        margin-bottom: 0.5rem;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(124, 58, 237, 0.2);
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        background: rgba(24, 24, 27, 0.5);
        border-radius: var(--radius-md);
        margin-bottom: 0.5rem;
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        padding-left: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .nav-dropdown-menu a {
        padding: 0.875rem 1rem;
        background: rgba(24, 24, 27, 0.3);
        border-radius: var(--radius-md);
        margin-bottom: 0.375rem;
        font-size: 1rem;
    }
    
    .nav-dropdown-menu a:hover {
        background: rgba(124, 58, 237, 0.15);
    }
    
    .dropdown-divider {
        margin: 0.75rem 0;
        background: rgba(63, 63, 70, 0.3);
    }
    
    /* Mobile CTA Button */
    .btn-nav {
        display: block;
        text-align: center;
        margin-top: var(--spacing-md);
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
    }
}

/* --------------------------------------------------------------------------
   Buttons - Signature Style with Glow Effects
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
    color: var(--white);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-600);
    color: var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--gray-900);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--gray-900);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* Glow Button Variant */
.btn-glow {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    animation: button-glow 2s ease-in-out infinite;
}

@keyframes button-glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(6, 182, 212, 0.3); }
}

/* --------------------------------------------------------------------------
   Hero Section - Dark Mode with Glow Effects
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: var(--gray-950);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(6, 182, 212, 0.15), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(249, 115, 22, 0.1), transparent),
        var(--gray-950);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: var(--neon-green);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(34, 197, 94, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.2); }
    50% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.4); }
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Code Window - Neon Glow Effect */
.hero-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.code-window {
    background: linear-gradient(180deg, rgba(39, 39, 42, 0.9) 0%, rgba(24, 24, 27, 0.95) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: rotateY(-2deg) rotateX(2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.code-window:hover {
    transform: rotateY(0) rotateX(0);
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(124, 58, 237, 0.2),
        0 0 0 1px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.code-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(39, 39, 42, 0.8);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.dot.red { background: #ff5f56; color: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.code-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-400);
}

.code-content {
    padding: var(--spacing-lg);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.8;
    overflow-x: auto;
}

.code-content code {
    color: var(--gray-300);
}

.code-content .keyword { color: #c792ea; }
.code-content .variable { color: #82aaff; }
.code-content .property { color: #f78c6c; }
.code-content .string { color: #c3e88d; }
.code-content .function { color: #82aaff; }
.code-content .comment { color: #546e7a; }

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-400);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

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

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: var(--spacing-lg);
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header .section-title {
    color: var(--white);
}

.section-header p {
    color: var(--gray-300);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(124, 58, 237, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.125rem;
    color: #d4d4d8;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* --------------------------------------------------------------------------
   Services Section - Glass Cards with Glow
   -------------------------------------------------------------------------- */
.services-section {
    background: var(--gray-950);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services-section .section-tag {
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-desc {
    color: var(--gray-400);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(124, 58, 237, 0.15);
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Service Card Image */
.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(39, 39, 42, 1), transparent);
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Service Card Content */
.service-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    margin-top: -40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.service-desc {
    color: var(--gray-400);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-features {
    margin-bottom: var(--spacing-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.service-features i {
    color: var(--neon-green);
    font-size: 0.75rem;
}

.service-price {
    display: inline-block;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   About Preview Section - Dark Theme
   -------------------------------------------------------------------------- */
.about-preview {
    background: #18181b;
}

.about-preview .section-title {
    color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text {
    color: #d4d4d8;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.tech-stack {
    margin: var(--spacing-xl) 0;
}

.tech-stack h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    color: #ffffff;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tech-tag {
    background: #27272a;
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: #d4d4d8;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    border-color: #7c3aed;
    color: #a78bfa;
}

.about-card {
    background: #09090b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
}

.about-avatar {
    width: 150px;
    height: 150px;
    background: url('/images/about-avatar-bg.png') center center / cover no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(124, 58, 237, 0.5);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-avatar span {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.about-card h3 {
    margin-bottom: var(--spacing-xs);
    color: #ffffff;
}

.about-card p {
    color: #a1a1aa;
    margin-bottom: var(--spacing-lg);
}

.about-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.about-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #27272a;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    color: #d4d4d8;
    transition: all var(--transition-fast);
}

.about-links a:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   Portfolio Section - Dark Theme
   -------------------------------------------------------------------------- */
.portfolio-preview {
    background: #09090b;
}

.portfolio-preview .section-header .section-title {
    color: #ffffff;
}

.portfolio-preview .section-header .section-desc {
    color: #d4d4d8;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.portfolio-card {
    display: block;
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16/10;
    background: #27272a;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    color: #52525b;
}

.portfolio-info {
    padding: var(--spacing-lg);
}

.portfolio-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: var(--spacing-sm);
}

.portfolio-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

.portfolio-desc {
    font-size: 0.9375rem;
    color: #d4d4d8;
}

.portfolio-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-3xl);
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
}

.portfolio-empty i {
    font-size: 3rem;
    color: #52525b;
    margin-bottom: var(--spacing-lg);
}

.portfolio-empty p {
    color: #a1a1aa;
}

/* --------------------------------------------------------------------------
   Process Section - Dark Theme
   -------------------------------------------------------------------------- */
.process-section {
    background: #18181b;
}

.process-section .section-header .section-title {
    color: #ffffff;
}

.process-section .section-header .section-desc {
    color: #d4d4d8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.process-grid .process-step {
    position: relative;
    padding: var(--spacing-xl);
    background: #09090b;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.process-grid .process-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.process-grid .process-step h3 {
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

.process-grid .process-step p {
    font-size: 0.9375rem;
    color: #d4d4d8;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   CTA Section - Dark Theme
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-content h2.original-style {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   Page Hero - Dark Theme
   -------------------------------------------------------------------------- */
.page-hero {
    padding: calc(72px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: var(--gray-950);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(124, 58, 237, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    position: relative;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124, 58, 237, 0.2), transparent),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(6, 182, 212, 0.1), transparent);
    pointer-events: none;
}

.page-hero .section-tag {
    position: relative;
}

.page-title {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    position: relative;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    line-height: 1.7;
}

/* Services Full Section */
.services-full {
    background: var(--gray-950);
}

/* --------------------------------------------------------------------------
   About Page - Dark Theme
   -------------------------------------------------------------------------- */
.about-section {
    background: #09090b;
}

.about-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.about-profile {
    position: sticky;
    top: 100px;
}

.about-avatar-large {
    width: 200px;
    height: 200px;
    background: url('/images/about-avatar-bg.png') center center / cover no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto var(--spacing-xl);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.about-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-avatar-large span {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.about-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #27272a;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    color: #d4d4d8;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #ffffff;
}

.about-bio h2 {
    margin-bottom: var(--spacing-lg);
    color: #ffffff;
}

.about-bio p {
    color: #d4d4d8;
    margin-bottom: var(--spacing-lg);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

.highlight {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.highlight i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    color: #a78bfa;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight strong {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: #ffffff;
}

.highlight span {
    color: #a1a1aa;
    font-size: 0.9375rem;
}

@media (max-width: 900px) {
    .about-main {
        grid-template-columns: 1fr;
    }
    
    .about-profile {
        position: static;
    }
}

/* --------------------------------------------------------------------------
   Skills Section - Dark Theme
   -------------------------------------------------------------------------- */
.skills-section {
    background: #18181b;
}

.skills-section .section-header .section-title {
    color: #ffffff;
}

.skills-section .section-header .section-desc {
    color: #d4d4d8;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.skill-category {
    background: #09090b;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.skill-category h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
    color: #ffffff;
}

.skill-category h3 i {
    color: #a78bfa;
}

.skill-item {
    margin-bottom: var(--spacing-md);
}

.skill-name {
    display: block;
    font-size: 0.9375rem;
    color: #d4d4d8;
    margin-bottom: var(--spacing-xs);
}

.skill-bar {
    height: 8px;
    background: #27272a;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    border-radius: var(--radius-full);
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Values Section - Dark Theme
   -------------------------------------------------------------------------- */
.values-section {
    background: #09090b;
}

.values-section .section-header .section-title {
    color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.value-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: #18181b;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all var(--transition-normal);
}

.value-card:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.5rem;
    color: #a78bfa;
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    color: #ffffff;
}

.value-card p {
    font-size: 0.9375rem;
    color: #d4d4d8;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Services Full Page
   -------------------------------------------------------------------------- */
.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.service-full-card {
    background: rgba(39, 39, 42, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: stretch;
}

.service-full-card.reversed {
    grid-template-columns: 1fr 400px;
}

.service-full-card.reversed .service-full-image {
    order: 2;
}

.service-full-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

.service-full-card:hover .service-full-image img {
    transform: scale(1.05);
}

/* Service Full Image */
.service-full-image {
    overflow: hidden;
    position: relative;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    min-height: 300px;
}

.service-full-content {
    padding: var(--spacing-2xl);
    display: flex;
    gap: var(--spacing-xl);
}

.service-full-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.service-full-info {
    flex: 1;
}

.service-full-info h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    font-size: 1.5rem;
}

.service-full-desc {
    font-size: 1.0625rem;
    color: #d4d4d8;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.service-full-info p {
    color: #d4d4d8;
    line-height: 1.7;
}

.service-full-features {
    margin: var(--spacing-lg) 0;
}

.service-full-features h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.service-full-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.service-full-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #d4d4d8;
}

.service-full-features i {
    color: #22c55e;
}

.service-full-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.service-price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services Page Responsive */
@media (max-width: 991px) {
    .service-full-card,
    .service-full-card.reversed {
        grid-template-columns: 1fr;
    }
    
    .service-full-card.reversed .service-full-image {
        order: 0;
    }
    
    .service-full-image img {
        min-height: 220px;
    }
    
    .service-full-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .service-full-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .service-full-features ul {
        grid-template-columns: 1fr;
    }
    
    .service-full-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-full-meta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-full-content {
        flex-direction: column;
    }
    
    .service-full-features ul {
        grid-template-columns: 1fr;
    }
    
    .service-full-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --------------------------------------------------------------------------
   FAQ Section - Dark Theme
   -------------------------------------------------------------------------- */
.faq-section {
    background: #09090b;
}

.faq-section .section-header .section-title {
    color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.faq-item {
    padding: var(--spacing-xl);
    background: #18181b;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.faq-item h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

.faq-item p {
    color: #d4d4d8;
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Portfolio Page
   -------------------------------------------------------------------------- */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.portfolio-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.portfolio-card-full {
    display: block;
    background: #18181b !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
}

.portfolio-card-full:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-card-full:hover .portfolio-overlay {
    opacity: 1;
}

.view-project {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    font-weight: 600;
}

.portfolio-details {
    padding: var(--spacing-lg);
}

.portfolio-category-tag {
    display: inline-block;
    background: rgba(124, 58, 237, 0.2);
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
}

.portfolio-details h3 {
    margin-bottom: var(--spacing-sm);
    color: #ffffff !important;
}

.portfolio-details p {
    color: #a1a1aa !important;
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.tech-tag-small {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(124, 58, 237, 0.15) !important;
    border-radius: var(--radius-sm);
    color: #a78bfa !important;
}

/* Portfolio Mobile Responsive */
@media (max-width: 767px) {
    .portfolio-grid-full {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-card-full {
        background: #18181b !important;
        border: 1px solid rgba(124, 58, 237, 0.2) !important;
    }
    
    .portfolio-details {
        padding: 1.25rem !important;
        background: #18181b !important;
    }
    
    .portfolio-details h3 {
        color: #ffffff !important;
        font-size: 1.125rem !important;
    }
    
    .portfolio-details p {
        color: #a1a1aa !important;
        font-size: 0.875rem !important;
    }
    
    .portfolio-category-tag {
        background: rgba(124, 58, 237, 0.2) !important;
        color: #a78bfa !important;
    }
    
    .tech-tag-small {
        background: rgba(124, 58, 237, 0.15) !important;
        color: #a78bfa !important;
    }
}

.portfolio-coming-soon {
    text-align: center;
    padding: var(--spacing-3xl);
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
}

.coming-soon-content i {
    font-size: 4rem;
    color: #a78bfa;
    margin-bottom: var(--spacing-lg);
}

.coming-soon-content h2 {
    margin-bottom: var(--spacing-md);
    color: #ffffff;
}

.coming-soon-content p {
    color: #a1a1aa;
    margin-bottom: var(--spacing-lg);
}

/* --------------------------------------------------------------------------
   Single Project Page
   -------------------------------------------------------------------------- */
.project-hero {
    padding: calc(72px + var(--spacing-2xl)) 0 var(--spacing-2xl);
    background: linear-gradient(180deg, #0c0c0e 0%, #18181b 100%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #a1a1aa;
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-lg);
}

.back-link:hover {
    color: #a78bfa;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
}

.meta-value {
    color: var(--gray-900);
}

.project-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.project-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-2xl);
}

.project-image-main img {
    width: 100%;
}

.project-description {
    margin-bottom: var(--spacing-2xl);
}

.project-description h2 {
    margin-bottom: var(--spacing-lg);
}

.project-description p {
    color: #a1a1aa;
    line-height: 1.8;
}

.project-gallery h2 {
    margin-bottom: var(--spacing-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
}

.sidebar-card {
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.sidebar-card h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
}

.sidebar-card p {
    color: #a1a1aa;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.sidebar-cta {
    background: var(--gray-50);
    border: none;
}

.sidebar-cta p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
}

@media (max-width: 900px) {
    .project-layout {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-2xl);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--gray-900);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-group textarea {
    resize: vertical;
}

.contact-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
}

.contact-card h3 {
    margin-bottom: var(--spacing-md);
}

.contact-card > p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-method {
    display: flex;
    gap: var(--spacing-md);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
}

.method-info a {
    color: var(--gray-900);
    font-weight: 500;
}

.contact-social {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-200);
}

.contact-social h4 {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.response-time {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
}

.response-time i {
    color: var(--accent);
    font-size: 1.25rem;
}

.response-time strong {
    display: block;
    font-size: 0.9375rem;
}

.response-time p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

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

/* --------------------------------------------------------------------------
   Alerts
   -------------------------------------------------------------------------- */
.alert {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

/* --------------------------------------------------------------------------
   Error Pages
   -------------------------------------------------------------------------- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
}

.error-content {
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
}

.error-content h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.error-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
}

.error-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* --------------------------------------------------------------------------
   Footer - Rich Dark with Gradient Accents
   -------------------------------------------------------------------------- */
.footer {
    background: var(--gray-950);
    color: var(--gray-300);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-accent {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: var(--gray-400);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--gray-400);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-contact a {
    color: var(--gray-400);
}

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

.footer-extras {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-extras a {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

.footer-extras a i {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Blog Section
   -------------------------------------------------------------------------- */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    align-items: center;
}

.blog-search {
    display: flex;
    flex: 1;
    min-width: 250px;
}

.blog-search input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 0.9375rem;
}

.blog-search input:focus {
    outline: none;
    border-color: var(--primary);
}

.blog-search button {
    padding: 0 1.25rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    cursor: pointer;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.category-tag {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.category-tag:hover,
.category-tag.active {
    background: var(--primary);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-link {
    display: block;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--gray-100);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 2.5rem;
    color: var(--gray-300);
}

.blog-card-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: var(--spacing-lg);
}

.blog-card-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-sm);
}

.blog-card-meta i {
    margin-right: 0.25rem;
}

.blog-card-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-info {
    color: var(--gray-500);
}

.blog-empty {
    text-align: center;
    padding: var(--spacing-3xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.blog-empty i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
}

.blog-empty h2 {
    margin-bottom: var(--spacing-sm);
}

.blog-empty p {
    color: var(--gray-600);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.widget-author {
    text-align: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto var(--spacing-md);
}

.widget-author h3 {
    margin-bottom: 0.25rem;
}

.widget-author p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.author-bio {
    margin-top: var(--spacing-md);
    color: var(--gray-600);
}

.widget-title {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--gray-200);
}

.featured-posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.featured-posts-list li a {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.featured-posts-list img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.featured-post-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.4;
}

.featured-post-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.widget-cta {
    background: var(--gray-50);
    text-align: center;
}

.widget-cta h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.widget-cta p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-lg);
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

/* --------------------------------------------------------------------------
   Single Blog Post
   -------------------------------------------------------------------------- */
.blog-post {
    padding-top: 72px;
}

.post-header {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.post-category {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.post-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar-small {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
}

.post-date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.post-share {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.post-share span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.post-share a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.post-share a:hover {
    background: var(--primary);
    color: white;
}

.post-featured-image {
    margin-bottom: var(--spacing-2xl);
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-2xl);
    align-items: start;
    padding: var(--spacing-2xl) 0;
}

.post-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.post-content h2 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.post-content h3 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
}

.post-content p {
    margin-bottom: var(--spacing-lg);
}

.post-content ul,
.post-content ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.post-content li {
    margin-bottom: var(--spacing-sm);
    list-style: disc;
}

.post-content pre {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: var(--spacing-lg);
}

.post-content code {
    font-family: var(--font-mono);
    font-size: 0.9em;
}

.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    font-style: italic;
    color: var(--gray-600);
}

.post-content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-200);
}

.post-tags span {
    font-weight: 600;
    color: var(--gray-700);
}

.tag {
    padding: 0.375rem 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.tag:hover {
    background: var(--primary);
    color: white;
}

.post-sidebar {
    position: sticky;
    top: 100px;
}

.related-posts {
    background: var(--gray-50);
    padding: var(--spacing-2xl) 0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.related-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.related-card:hover {
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-info {
    padding: var(--spacing-md);
}

.related-info h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--gray-900);
}

.related-info span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

@media (max-width: 900px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 1.75rem;
    }
}

/* --------------------------------------------------------------------------
   Testimonials Section - Dark Theme
   -------------------------------------------------------------------------- */
.testimonials-section {
    background: #09090b;
}

.testimonials-section .section-header .section-title {
    color: #ffffff;
}

.testimonials-section .section-header .section-desc {
    color: #d4d4d8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-lg);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(124, 58, 237, 0.2);
    line-height: 1;
}

.testimonial-content {
    font-size: 1rem;
    color: #d4d4d8;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: #ffffff;
    display: block;
}

.testimonial-title {
    font-size: 0.875rem;
    color: #a1a1aa;
    display: block;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 0.875rem;
}

/* Home Page Testimonials */
.home-testimonials {
    margin-top: var(--spacing-3xl);
}

.home-testimonials .section-header {
    margin-bottom: var(--spacing-2xl);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-page {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.legal-header .last-updated {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-notice {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.legal-notice.important {
    background: #fef2f2;
    border-left-color: var(--error);
}

.legal-notice strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.legal-notice p {
    margin-bottom: 0;
}

.legal-highlight {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.legal-highlight.warning {
    background: #fffbeb;
    border: 1px solid #f59e0b;
}

.legal-highlight p {
    font-weight: 500;
    color: var(--gray-700);
}

.legal-highlight ul {
    margin-bottom: 0;
}

.legal-footer {
    background: var(--gray-900);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
}

.legal-footer p {
    color: var(--gray-300);
}

.legal-footer strong {
    color: white;
}

.legal-footer ul {
    margin-bottom: 1rem;
}

.legal-footer li {
    color: var(--gray-300);
}

.no-refund-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.no-refund-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 0.5rem;
    border-left: 3px solid var(--error);
}

.no-refund-item i {
    color: var(--error);
    margin-top: 0.25rem;
}

.no-refund-item span {
    color: var(--gray-700);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
}

.cookie-table td {
    color: var(--gray-600);
}

/* Footer Legal Links */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-legal-links a {
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links span {
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Giveback Banner (Homepage) - Dark Theme
   ========================================================================== */
.giveback-banner {
    background: #18181b;
    border-top: 1px solid rgba(248, 113, 113, 0.3);
    border-bottom: 1px solid rgba(248, 113, 113, 0.3);
    position: relative;
    overflow: hidden;
}

.giveback-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(248, 113, 113, 0.15), transparent),
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(124, 58, 237, 0.15), transparent);
    pointer-events: none;
}

.giveback-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.giveback-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: heartbeat 1.5s ease-in-out infinite;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.giveback-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.giveback-text h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.giveback-text p {
    color: #d4d4d8;
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.giveback-text strong {
    color: #ffffff;
}

.giveback-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.giveback-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.giveback-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

@media (max-width: 768px) {
    .giveback-content {
        flex-direction: column;
        text-align: center;
    }
    
    .giveback-icon {
        width: 100px;
        height: 100px;
    }
    
    .giveback-icon i {
        font-size: 2.5rem;
    }
    
    .giveback-text h2 {
        font-size: 1.5rem;
    }
    
    .giveback-actions {
        justify-content: center;
    }
}

/* ==========================================================================
   Animated Code Typing Effect
   ========================================================================== */
.animated-code {
    position: relative;
}

.animated-code .code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.animated-code .typing-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.animated-code .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
    animation: pulse-dot 1s ease-in-out infinite;
}

.animated-code .status-dot.ready {
    background: #10b981;
    animation: none;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.animated-code .code-content {
    min-height: 280px;
    position: relative;
}

.animated-code .cursor {
    display: inline-block;
    color: #6366f1;
    font-weight: bold;
    animation: none;
}

.animated-code .cursor.blink {
    animation: cursor-blink 1s step-end infinite;
}

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

/* Code syntax highlighting colors */
.code-content .keyword {
    color: #c678dd;
}

.code-content .variable {
    color: #e06c75;
}

.code-content .property {
    color: #e5c07b;
}

.code-content .string {
    color: #98c379;
}

.code-content .function {
    color: #61afef;
}

.code-content .comment {
    color: #5c6370;
    font-style: italic;
}

.code-content .number {
    color: #d19a66;
}

/* Glow effect on the code window */
.animated-code {
    box-shadow: 
        0 20px 50px rgba(124, 58, 237, 0.2),
        0 0 0 1px rgba(124, 58, 237, 0.1);
    transition: box-shadow 0.3s ease;
}

.animated-code:hover {
    box-shadow: 
        0 25px 60px rgba(124, 58, 237, 0.3),
        0 0 0 1px rgba(124, 58, 237, 0.2);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile-First, Touch-Friendly, All Devices
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base Mobile Improvements (All Screens)
   -------------------------------------------------------------------------- */
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

/* Touch-friendly tap targets (minimum 44x44px) */
a, button, .btn, .nav-link, input, select, textarea {
    min-height: 44px;
}

input, select, textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
}

/* Improve readability on all screens */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Better image handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   Large Desktop (1400px+)
   -------------------------------------------------------------------------- */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* --------------------------------------------------------------------------
   Desktop (1200px - 1399px)
   -------------------------------------------------------------------------- */
@media (max-width: 1399px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

/* --------------------------------------------------------------------------
   Small Desktop / Large Tablet (992px - 1199px)
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content {
        gap: var(--spacing-2xl);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .code-window {
        max-width: 450px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* --------------------------------------------------------------------------
   Tablet Landscape (768px - 991px)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 var(--spacing-lg);
    }
    
    /* Navigation - Mobile/Tablet */
    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-xl);
        gap: var(--spacing-xs);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu > li {
        width: 100%;
        list-style: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.25rem;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        border-radius: var(--radius-md);
        background: rgba(24, 24, 27, 0.5);
        margin-bottom: 0.5rem;
        color: #ffffff;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(124, 58, 237, 0.2);
        color: #ffffff;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 1.25rem !important;
        font-size: 1.1rem;
        background: rgba(24, 24, 27, 0.5);
        border-radius: var(--radius-md);
        margin-bottom: 0.5rem;
        color: #ffffff !important;
    }
    
    .nav-dropdown-toggle i {
        transform: rotate(0deg);
    }
    
    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: 100%;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0;
        padding-left: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .nav-dropdown-menu li {
        list-style: none;
    }
    
    .nav-dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
        background: rgba(24, 24, 27, 0.3);
        border-radius: var(--radius-md);
        margin-bottom: 0.375rem;
        font-size: 1rem;
        color: #d4d4d8;
    }
    
    .nav-dropdown-menu a:hover {
        background: rgba(124, 58, 237, 0.15);
        color: #ffffff;
    }
    
    .nav-dropdown-menu a i {
        width: 20px;
        text-align: center;
        color: #a1a1aa;
    }
    
    .nav-dropdown-menu .processing-link {
        color: #10b981;
    }
    
    .nav-dropdown-menu .sponsor-link {
        color: #ef4444;
    }
    
    .dropdown-divider {
        height: 1px;
        margin: 0.75rem 0;
        background: rgba(63, 63, 70, 0.3);
    }
    
    /* Mobile CTA Button */
    .btn-nav {
        display: block !important;
        text-align: center;
        margin-top: var(--spacing-md);
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
        width: 100%;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-xl);
    }
    
    .code-window {
        max-width: 100%;
        transform: none;
    }
    
    .code-window:hover {
        transform: none;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* --------------------------------------------------------------------------
   Tablet Portrait / Large Phone (576px - 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 var(--spacing-md);
    }
    
    /* Typography scaling */
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    /* Hero Stats */
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    /* Buttons */
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-lg {
        padding: 1rem 1.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
    
    /* Code Window */
    .animated-code .code-content {
        min-height: 240px;
        font-size: 0.8125rem;
    }
    
    .code-header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .typing-status .status-text {
        display: none;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links ul,
    .footer-contact ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    /* Legal Pages */
    .legal-header h1 {
        font-size: 1.75rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Giveback Banner */
    .giveback-content {
        flex-direction: column;
        text-align: center;
    }
    
    .giveback-icon {
        width: 80px;
        height: 80px;
    }
    
    .giveback-icon i {
        font-size: 2rem;
    }
    
    .giveback-text h2 {
        font-size: 1.375rem;
    }
    
    .giveback-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .giveback-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Mobile (up to 575px)
   -------------------------------------------------------------------------- */
@media (max-width: 575px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Navigation */
    .nav-container {
        height: 64px;
    }
    
    .nav-logo {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        top: 64px;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Section spacing */
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Code Window */
    .code-content {
        padding: var(--spacing-md) !important;
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .animated-code .code-content {
        min-height: 200px;
    }
    
    /* Service Cards */
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Cards and spacing */
    .card {
        border-radius: var(--radius-lg);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form */
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

/* --------------------------------------------------------------------------
   Small Mobile (up to 375px)
   -------------------------------------------------------------------------- */
@media (max-width: 375px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 1.625rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .code-content {
        font-size: 0.6875rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-sm);
        flex-direction: row;
    }
}

/* --------------------------------------------------------------------------
   Landscape Orientation (Mobile)
   -------------------------------------------------------------------------- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-scroll {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   High Resolution Displays (Retina)
   -------------------------------------------------------------------------- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .dot {
        border: 0.5px solid rgba(255, 255, 255, 0.1);
    }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .nav, .hero-scroll, .footer-social, .btn {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .hero-title, .section-title {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* --------------------------------------------------------------------------
   Reduced Motion (Accessibility)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .gradient-text {
        animation: none;
    }
    
    .hero-badge::before {
        animation: none;
    }
    
    .giveback-icon {
        animation: none;
    }
}

/* --------------------------------------------------------------------------
   Dark Mode Preference (if user prefers light, keep dark anyway - brand identity)
   -------------------------------------------------------------------------- */
/* Our brand is dark mode, so we keep it consistent */

/* --------------------------------------------------------------------------
   Focus States (Accessibility)
   -------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.nav-link:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 4px;
}

/* --------------------------------------------------------------------------
   Touch Device Optimizations
   -------------------------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .code-window:hover {
        transform: none;
    }
    
    /* Make tap targets larger */
    .nav-link {
        padding: var(--spacing-md);
    }
    
    .footer-social a {
        width: 48px;
        height: 48px;
    }
}

/* --------------------------------------------------------------------------
   Safe Area Insets (Notched Phones)
   -------------------------------------------------------------------------- */
@supports (padding: max(0px)) {
    .nav-container {
        padding-left: max(var(--spacing-lg), env(safe-area-inset-left));
        padding-right: max(var(--spacing-lg), env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(var(--spacing-xl), env(safe-area-inset-bottom));
    }
}

/* ==========================================================================
   SPONSOR PAGE STYLES
   ========================================================================== */

/* Sponsor Navigation Link */
.sponsor-link {
    color: #ef4444 !important;
}

.sponsor-link:hover {
    color: #dc2626 !important;
}

/* Processing Navigation Link */
.processing-link {
    color: #10b981 !important;
}

.processing-link:hover {
    color: #059669 !important;
}

.processing-link i {
    margin-right: 0.35rem;
}

.sponsor-link i {
    margin-right: 0.35rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    56% { transform: scale(1); }
}

/* Sponsor Hero */
.sponsor-hero {
    padding: calc(72px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: var(--gray-950);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sponsor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(248, 113, 113, 0.15), transparent),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(124, 58, 237, 0.15), transparent),
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(6, 182, 212, 0.1), transparent);
    pointer-events: none;
}

.sponsor-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.sponsor-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
    line-height: 1.7;
    position: relative;
}

.sponsor-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    position: relative;
    flex-wrap: wrap;
}

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

.sponsor-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sponsor-stat .stat-label {
    color: var(--gray-300);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Why Sponsor Section */
.why-sponsor {
    background: var(--gray-950);
}

.why-sponsor .section-header p {
    color: var(--gray-300);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.why-card {
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.why-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.why-card p {
    color: var(--gray-300);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Sponsor Tiers Section */
.sponsor-tiers {
    background: var(--gray-900);
}

.sponsor-tiers .section-header p {
    color: var(--gray-300);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.tier-card {
    background: rgba(39, 39, 42, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.4);
}

.tier-card.featured {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
    border-color: rgba(124, 58, 237, 0.5);
    transform: scale(1.02);
}

.tier-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.tier-card.premium {
    border-color: rgba(251, 191, 36, 0.3);
}

.tier-card.legendary {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.1), rgba(248, 113, 113, 0.1));
    border-color: rgba(251, 191, 36, 0.5);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-card.legendary .tier-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.tier-popular {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--neon-green);
    color: var(--gray-900);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.tier-name {
    color: var(--white);
    font-size: 1.25rem;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    text-align: center;
}

.tier-price {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-price .price-amount {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-price .price-period {
    display: block;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-xl);
    flex: 1;
}

.tier-benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--gray-300);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.tier-benefits li i {
    color: var(--neon-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tier-card .btn {
    width: 100%;
    justify-content: center;
}

/* Monthly Sponsor */
.monthly-sponsor {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

.monthly-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.monthly-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.monthly-text {
    flex: 1;
}

.monthly-text h3 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.monthly-text p {
    color: var(--gray-300);
    margin: 0;
    line-height: 1.6;
}

/* Sponsor Process */
.sponsor-process {
    background: #09090b;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    transform: none !important;
    background: rgba(24, 24, 27, 0.9);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.step-content h4 {
    color: #ffffff !important;
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.step-content p {
    color: #d4d4d8 !important;
    font-size: 1rem;
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Current Sponsors */
.current-sponsors {
    background: var(--gray-900);
}

.current-sponsors .section-header p {
    color: var(--gray-300);
}

.sponsors-placeholder {
    text-align: center;
    padding: var(--spacing-3xl);
    background: rgba(39, 39, 42, 0.5);
    border: 2px dashed rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-xl);
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
    margin: 0 auto var(--spacing-lg);
}

.sponsors-placeholder h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.sponsors-placeholder p {
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
    font-size: 1.0625rem;
}

/* Sponsor FAQ */
.sponsor-faq {
    background: var(--gray-950);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.faq-item {
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.faq-item h4 {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 1.0625rem;
}

.faq-item h4 i {
    color: var(--primary-light);
}

.faq-item p {
    color: var(--gray-300);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Sponsor CTA */
.sponsor-cta {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.1));
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.sponsor-cta h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.sponsor-cta > .container > p {
    color: var(--gray-300);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.cta-note {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.cta-note a {
    color: var(--primary-light);
}

/* Sponsor Page Responsive */
@media (max-width: 1200px) {
    .tiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tier-card.featured {
        transform: none;
    }
    
    .tier-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .monthly-content {
        flex-direction: column;
        text-align: center;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-content p {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .sponsor-title {
        font-size: 2.25rem;
    }
    
    .sponsor-stats {
        gap: var(--spacing-lg);
    }
    
    .sponsor-stat .stat-number {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}


/* ==========================================================================
   Payment Processing Partner Page - Enhanced Styling
   ========================================================================== */

/* Payment Hero - Enhanced */
.payment-hero {
    padding: calc(72px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: var(--gray-950);
    background-image: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.1), transparent);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.payment-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-hero .hero-badge i {
    font-size: 1rem;
}

.payment-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.payment-hero .hero-subtitle {
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    color: var(--gray-300);
    font-size: 1.25rem;
    line-height: 1.7;
}

.payment-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-800);
}

.payment-hero .stat-item {
    text-align: center;
    padding: 0 var(--spacing-lg);
}

.payment-hero .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.payment-hero .stat-label {
    color: var(--gray-400);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Guarantee Banner - Enhanced */
.guarantee-banner {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #06b6d4 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.guarantee-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-50%) translateY(-50%); }
    50% { transform: translateX(0%) translateY(0%); }
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    text-align: left;
    position: relative;
    z-index: 1;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(255, 255, 255, 0); }
}

.guarantee-icon i {
    font-size: 2rem;
    color: white;
}

.guarantee-text h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.guarantee-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
}

.guarantee-text strong {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Processing Services Grid - Enhanced */
.processing-services {
    background: #09090b !important;
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.processing-services .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.processing-services .section-header h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.processing-services .section-header p {
    color: #a1a1aa !important;
    font-size: 1.1rem;
}

.processing-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.processing-card {
    background: #18181b !important;
    border: 1px solid #27272a !important;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.processing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.processing-card:hover {
    border-color: #10b981;
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(16, 185, 129, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.1);
}

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

.processing-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.processing-card .card-icon i {
    font-size: 1.75rem;
    color: white;
}

.processing-card h3 {
    color: #ffffff !important;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

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

.processing-card li {
    color: #d4d4d8 !important;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #27272a;
    font-size: 0.95rem;
}

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

.processing-card li i {
    color: #10b981 !important;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Why Choose Processing - Enhanced */
.why-choose-processing {
    background: linear-gradient(180deg, #18181b 0%, #09090b 100%) !important;
    padding: var(--spacing-3xl) 0;
}

.why-choose-processing .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.why-choose-processing .section-header h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.why-choose-processing .section-header p {
    color: #a1a1aa !important;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: #18181b !important;
    border: 1px solid #27272a !important;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #10b981;
    transform: translateX(5px);
    box-shadow: -5px 0 20px rgba(16, 185, 129, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
}

.benefit-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.benefit-icon.green i {
    color: #10b981;
}

.benefit-icon.purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.benefit-icon.purple i {
    color: var(--neon-purple);
}

.benefit-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.benefit-icon.cyan i {
    color: var(--neon-cyan);
}

.benefit-icon.coral {
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.2), rgba(255, 111, 97, 0.1));
    border: 1px solid rgba(255, 111, 97, 0.3);
}

.benefit-icon.coral i {
    color: var(--neon-coral);
}

.benefit-content h4 {
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #a1a1aa !important;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Industries Section - Enhanced */
.industries-section {
    background: #09090b !important;
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-700), transparent);
}

.industries-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.industries-section .section-header h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.industries-section .section-header p {
    color: #a1a1aa !important;
    font-size: 1.1rem;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-tag {
    background: #18181b !important;
    border: 1px solid #3f3f46 !important;
    border-radius: 50px;
    padding: 0.875rem 1.5rem;
    color: #d4d4d8 !important;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-tag:hover {
    border-color: #10b981;
    color: white;
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.15);
}

.industry-tag i {
    color: #10b981;
    font-size: 1rem;
}

/* Trust Section - Enhanced */
.trust-section {
    background: linear-gradient(180deg, #18181b 0%, #09090b 100%) !important;
    padding: var(--spacing-3xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.trust-card {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: #18181b !important;
    border: 1px solid #27272a !important;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-5px);
}

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

.trust-card .trust-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.25);
}

.trust-card .trust-icon i {
    font-size: 2.25rem;
    color: white;
}

.trust-card h3 {
    color: #ffffff !important;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.trust-card p {
    color: #a1a1aa !important;
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* Processing Form Section - Enhanced */
.processing-form-section {
    background: #09090b !important;
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.processing-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-700), transparent);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.form-info h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.form-info > p {
    color: var(--gray-300);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.form-benefits {
    display: grid;
    gap: var(--spacing-md);
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-300);
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid #10b981;
}

.form-benefit i {
    color: #10b981;
    font-size: 1.25rem;
}

.form-container {
    background: linear-gradient(145deg, var(--gray-900) 0%, rgba(24, 24, 27, 0.95) 100%);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
}

.processing-form .form-group {
    margin-bottom: var(--spacing-lg);
}

.processing-form label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.processing-form .required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.processing-form input,
.processing-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--gray-950);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.processing-form input:focus,
.processing-form select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    background: var(--gray-900);
}

.processing-form input::placeholder {
    color: var(--gray-500);
}

.processing-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.processing-form .btn-full {
    width: 100%;
    padding: 1.125rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border: none;
    color: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.processing-form .btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.processing-form .btn-full i {
    font-size: 1rem;
}

.form-disclaimer {
    color: var(--gray-500);
    font-size: 0.85rem;
    text-align: center;
    margin-top: var(--spacing-lg);
    line-height: 1.6;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-800);
}

.form-success {
    text-align: center;
    padding: var(--spacing-2xl);
}

.form-success .success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    animation: success-pulse 2s ease-in-out infinite;
}

@keyframes success-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-success .success-icon i {
    font-size: 3rem;
    color: #10b981;
}

.form-success h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.form-success p {
    color: var(--gray-400);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Processing CTA - Enhanced */
.processing-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #06b6d4 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.processing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.processing-cta .cta-content {
    position: relative;
    z-index: 1;
}

.processing-cta h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.processing-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.processing-cta .btn {
    background: white;
    color: #059669;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.processing-cta .btn:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.processing-cta .btn i {
    margin-right: 0.5rem;
}

/* Partner Callout Section */
.partner-callout {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
    padding: var(--spacing-xl) 0;
}

.partner-callout-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.partner-callout-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-callout-icon i {
    font-size: 1.75rem;
    color: white;
}

.partner-callout-text {
    flex: 1;
    min-width: 300px;
}

.partner-callout-text h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.partner-callout-text p {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.partner-callout-text strong {
    color: #10b981;
}

.partner-callout .btn {
    flex-shrink: 0;
    background: #10b981;
    border-color: #10b981;
}

.partner-callout .btn:hover {
    background: #059669;
    border-color: #059669;
}

@media (max-width: 767px) {
    .partner-callout-content {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-callout-text {
        min-width: auto;
    }
}

/* ==========================================================================
   PAYMENT PROCESSING PAGE - MOBILE RESPONSIVE STYLES
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
    .processing-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    /* Payment Hero */
    .payment-hero {
        padding: 100px 0 40px !important;
        min-height: auto !important;
    }
    
    .payment-hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .payment-hero .hero-subtitle {
        font-size: 0.9375rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .payment-hero .hero-stats {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem !important;
    }
    
    .payment-hero .stat-item {
        min-width: 90px;
        text-align: center;
    }
    
    .payment-hero .stat-number {
        font-size: 1.5rem !important;
    }
    
    .payment-hero .stat-label {
        font-size: 0.6875rem !important;
    }
    
    .hero-badge {
        font-size: 0.75rem !important;
        padding: 0.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Guarantee Banner */
    .guarantee-banner {
        padding: 1.25rem 0 !important;
    }
    
    .guarantee-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .guarantee-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .guarantee-text h3 {
        font-size: 1.125rem !important;
    }
    
    .guarantee-text p {
        font-size: 0.875rem !important;
    }
    
    /* Section Headers */
    .processing-services .section-header h2,
    .why-choose-processing .section-header h2,
    .industries-section .section-header h2,
    .processing-form-section .form-info h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .processing-services .section-header p,
    .why-choose-processing .section-header p,
    .industries-section .section-header p {
        font-size: 0.875rem !important;
    }
    
    /* Services Grid */
    .processing-services {
        padding: 2.5rem 0 !important;
    }
    
    .processing-services .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .processing-card {
        padding: 1.25rem !important;
    }
    
    .processing-card .card-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.125rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .processing-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .processing-card ul {
        gap: 0.375rem !important;
    }
    
    .processing-card li {
        font-size: 0.8125rem !important;
        padding: 0.25rem 0 !important;
    }
    
    .processing-card li i {
        font-size: 0.625rem !important;
    }
    
    /* Benefits Grid */
    .why-choose-processing {
        padding: 2.5rem 0 !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .benefit-item {
        padding: 1rem !important;
        gap: 1rem !important;
    }
    
    .benefit-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 1rem !important;
    }
    
    .benefit-content h4 {
        font-size: 0.9375rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .benefit-content p {
        font-size: 0.8125rem !important;
        line-height: 1.4 !important;
    }
    
    /* Industries */
    .industries-section {
        padding: 2.5rem 0 !important;
    }
    
    .industries-grid {
        gap: 0.5rem !important;
    }
    
    .industry-tag {
        font-size: 0.75rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .industry-tag i {
        font-size: 0.875rem !important;
    }
    
    /* Trust Section */
    .trust-section {
        padding: 2rem 0 !important;
    }
    
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .trust-card {
        padding: 1.25rem !important;
        text-align: center !important;
    }
    
    .trust-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
        margin: 0 auto 0.75rem !important;
    }
    
    .trust-card h3 {
        font-size: 1rem !important;
    }
    
    .trust-card p {
        font-size: 0.8125rem !important;
    }
    
    /* Form Section */
    .processing-form-section {
        padding: 2.5rem 0 !important;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .form-info {
        text-align: center !important;
    }
    
    .form-info h2 {
        font-size: 1.5rem !important;
    }
    
    .form-info > p {
        font-size: 0.875rem !important;
    }
    
    .form-benefits {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
    }
    
    .form-benefit {
        font-size: 0.75rem !important;
        padding: 0.5rem !important;
        justify-content: flex-start !important;
    }
    
    .form-container {
        padding: 1.25rem !important;
    }
    
    .processing-form .form-group {
        margin-bottom: 1rem !important;
    }
    
    .processing-form label {
        font-size: 0.8125rem !important;
        margin-bottom: 0.375rem !important;
    }
    
    .processing-form input,
    .processing-form select {
        padding: 0.75rem 1rem !important;
        font-size: 0.9375rem !important;
    }
    
    .processing-form button[type="submit"] {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
    }
    
    .form-disclaimer {
        font-size: 0.6875rem !important;
        margin-top: 1rem !important;
    }
    
    /* CTA Section */
    .processing-cta {
        padding: 2.5rem 0 !important;
    }
    
    .processing-cta h2 {
        font-size: 1.375rem !important;
    }
    
    .processing-cta p {
        font-size: 0.875rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .processing-cta .btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .payment-hero {
        padding: 90px 0 30px !important;
    }
    
    .payment-hero h1 {
        font-size: 1.5rem !important;
    }
    
    .payment-hero .hero-stats {
        gap: 0.75rem !important;
    }
    
    .payment-hero .stat-item {
        min-width: 80px;
    }
    
    .form-benefits {
        grid-template-columns: 1fr !important;
    }
    
    .industry-tag {
        font-size: 0.6875rem !important;
        padding: 0.375rem 0.625rem !important;
    }
}

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */

.pricing-section {
    padding: var(--spacing-3xl) 0;
    background: #09090b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.pricing-card {
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, #18181b 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.pricing-header p {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.pricing-price {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.pricing-price .period {
    color: var(--gray-400);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--neon-green);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.pricing-btn:hover {
    background: var(--primary);
    color: white;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

/* Add-ons Section */
.addons-section {
    margin-top: var(--spacing-3xl);
}

.addons-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--white);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.addon-card {
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-fast);
}

.addon-card:hover {
    border-color: var(--primary);
}

.addon-card i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.addon-card h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.addon-card p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.addon-price {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Guarantee Section */
.guarantee-section {
    margin-top: var(--spacing-3xl);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.guarantee-content i {
    font-size: 3rem;
    color: var(--neon-green);
}

.guarantee-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: var(--gray-300);
}

/* FAQ Preview */
.faq-preview {
    padding: var(--spacing-3xl) 0;
    background: #0c0c0e;
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.faq-grid .faq-item {
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.faq-grid .faq-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.faq-grid .faq-item p {
    color: var(--gray-400);
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

.faq-section {
    padding: var(--spacing-3xl) 0;
    background: #09090b;
}

.faq-categories {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: var(--spacing-2xl);
}

.faq-category h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category h2 i {
    color: var(--primary-light);
}

.faq-accordion .faq-item {
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-question i {
    color: var(--primary-light);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--gray-300);
    line-height: 1.7;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: calc(var(--spacing-lg) + 1.5rem);
}

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

.faq-answer a {
    color: var(--primary-light);
}

.faq-cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-xl);
}

.faq-cta h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: var(--gray-400);
    margin-bottom: var(--spacing-lg);
}

/* ==========================================================================
   CASE STUDIES PAGE STYLES
   ========================================================================== */

.case-studies-section {
    padding: var(--spacing-3xl) 0;
    background: #09090b;
}

.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
}

.case-study-card {
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.case-study-card:nth-child(even) {
    direction: rtl;
}

.case-study-card:nth-child(even) > * {
    direction: ltr;
}

.case-study-image {
    position: relative;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: var(--spacing-xl);
}

.case-study-category {
    display: inline-block;
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.case-study-content h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.case-study-content > p {
    color: var(--gray-400);
    margin-bottom: var(--spacing-lg);
}

.case-study-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.case-study-stats .stat {
    text-align: center;
}

.case-study-stats .stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neon-green);
}

.case-study-stats .stat-label {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.case-study-details h4 {
    color: var(--white);
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.case-study-details p,
.case-study-details ul {
    color: var(--gray-400);
    line-height: 1.7;
}

.case-study-details ul {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.case-study-details li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-card {
        grid-template-columns: 1fr;
    }
    
    .case-study-card:nth-child(even) {
        direction: ltr;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   LIVE CHAT WIDGET STYLES
   ========================================================================== */

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: inherit;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transition: all var(--transition-fast);
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.5);
}

.chat-toggle i {
    font-size: 1.5rem;
    color: white;
}

.chat-toggle .chat-close {
    display: none;
}

.chat-widget.open .chat-toggle .chat-open {
    display: none;
}

.chat-widget.open .chat-toggle .chat-close {
    display: block;
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: #18181b;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-widget.open .chat-window {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

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

.chat-header-info h4 {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.chat-header-info span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.chat-status {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.25rem;
}

.chat-messages {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.chat-message {
    max-width: 85%;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: #27272a;
    color: var(--gray-200);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message .time {
    display: block;
    font-size: 0.6875rem;
    margin-top: 0.25rem;
    opacity: 0.7;
}

.chat-input-area {
    padding: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: var(--spacing-sm);
}

.chat-input-area input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #27272a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.9375rem;
}

.chat-input-area input::placeholder {
    color: var(--gray-500);
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.chat-send:hover {
    background: var(--primary-dark);
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: 400px;
        right: -10px;
    }
}
