/* =====================================================================
   CROCKYHOST - WCAG 2.2 COMPLIANT Design System 2025
   Accessible, Readable, Engaging - Premium Hosting Experience
   Performance Optimized - Instant Load Times
   ===================================================================== */

/* === PERFORMANCE OPTIMIZATIONS === */
/* Reduce layout shifts and improve paint performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === LINEICONS GLOBAL STYLING === */
/* Ensure LineIcons display properly across all contexts */
.lni {
    font-style: normal;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

i.lni {
    font-style: normal;
}

/* Enable hardware acceleration for smooth animations */
.feature-card, .pricing-cassette, .step-container, .news-card, .faq-item {
    will-change: transform;
    transform: translateZ(0);
}

/* Contain layout for better performance */
main, section {
    contain: layout style;
}

/* === GOOGLE FONTS IMPORT - Font Display Swap for faster rendering === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* === DESIGN TOKENS === */
:root {
    /* Brand Colors - WCAG AA Compliant (4.5:1 contrast ratio minimum) */
    --primary: #00C96F;           /* Saturated friendly green - passes AA on white */
    --primary-hover: #00A85C;     /* Darker for hover - better contrast */
    --primary-light: #E6FFF3;     /* Very light green for backgrounds */
    --primary-glow: rgba(0, 201, 111, 0.25);
    --primary-glow-intense: rgba(0, 201, 111, 0.4);
    
    /* Secondary & Accent - Saturated but accessible */
    --secondary: #6366F1;         /* Indigo - friendly and professional */
    --secondary-light: #EEF2FF;
    --secondary-glow: rgba(99, 102, 241, 0.25);
    --accent-blue: #0EA5E9;       /* Sky blue - energetic */
    --accent-cyan: #14B8A6;       /* Teal - fresh */
    --accent-coral: #F97316;      /* Coral/Orange - warm accent */
    --accent-pink: #EC4899;       /* Pink - playful */
    
    /* Dark Theme Specific */
    --dark-bg-solid: var(--dark-bg-solid);
    --dark-bg-hover: var(--dark-bg-hover);
    --dark-border-accent: rgba(0, 255, 136, 0.25);
    --dark-border-accent-hover: rgba(0, 255, 136, 0.4);
    
    /* Light Theme - Warm, Friendly, High Contrast */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFBFC;
    --bg-tertiary: #F4F6F8;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-page: linear-gradient(180deg, #FAFBFC 0%, #F0F4F8 50%, #E5EAF0 100%);
    
    /* Text Colors - WCAG AAA Compliant (7:1 ratio) */
    --text-primary: #1A202C;      /* Near black - AAA compliant */
    --text-secondary: #4A5568;    /* Dark gray - AA compliant */
    --text-muted: #718096;        /* Medium gray - AA for large text */
    --text-link: #0369A1;         /* Accessible blue link */
    --border-color: rgba(26, 32, 44, 0.12);
    
    /* Friendly Shadows - Softer, warmer */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 25px var(--primary-glow);
    --shadow-glow-intense: 0 0 40px var(--primary-glow-intense);
    --shadow-glow-blue: 0 0 25px rgba(14, 165, 233, 0.2);
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 72px;
    --section-gap: 100px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
    
    /* Typography - Premium Fonts with Better Readability */
    --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Font Sizes - Larger for readability */
    --font-size-xs: 0.875rem;     /* 14px */
    --font-size-sm: 1rem;         /* 16px */
    --font-size-base: 1.125rem;   /* 18px - larger base */
    --font-size-lg: 1.25rem;      /* 20px */
    --font-size-xl: 1.5rem;       /* 24px */
    --font-size-2xl: 2rem;        /* 32px */
    --font-size-3xl: 2.5rem;      /* 40px */
    --font-size-4xl: 3.25rem;     /* 52px */
    --font-size-5xl: 4rem;        /* 64px */
    
    /* Line Heights - Optimized for readability */
    --line-height-tight: 1.3;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    
    /* Letter Spacing */
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.02em;
    
    /* Focus States - WCAG compliant */
    --focus-ring: 0 0 0 3px rgba(0, 201, 111, 0.4);
    --focus-ring-offset: 0 0 0 2px var(--bg-primary);
    
    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 400ms;
}

/* Dark Theme - WCAG Compliant, Comfortable for Eyes */
.dark {
    --bg-primary: #0F1419;
    --bg-secondary: #161B22;
    --bg-tertiary: #1C2128;
    --bg-card: rgba(22, 27, 34, 0.95);
    --bg-page: linear-gradient(180deg, #0F1419 0%, #161B22 50%, #0F1419 100%);
    
    /* Dark theme text - High contrast */
    --text-primary: #F0F6FC;      /* Off-white - easier on eyes than pure white */
    --text-secondary: #C9D1D9;    /* Light gray - good contrast */
    --text-muted: #8B949E;        /* Muted but still readable */
    --text-link: #58A6FF;         /* Bright blue - accessible */
    --border-color: rgba(240, 246, 252, 0.1);
    
    /* Adjusted glows for dark */
    --primary-glow: rgba(0, 201, 111, 0.2);
    --primary-glow-intense: rgba(0, 201, 111, 0.35);
    --shadow-glow: 0 0 30px var(--primary-glow);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
    scroll-behavior: smooth; 
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    /* WCAG: Let browser use its default font size for user preference */
}

/* WCAG: Ensure body text has proper contrast and line height */
body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-primary);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    position: relative;
    /* WCAG: Prevent text from being too hard to read */
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

/* Subtle ambient background - softer colors */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 201, 111, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 10% 70%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

main {
    width: 100%;
    overflow-x: hidden;
}

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

/* WCAG: Links must be distinguishable */
a { 
    color: var(--text-link, inherit); 
    text-decoration: none; 
    transition: all var(--duration-fast) var(--ease);
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* WCAG 2.2: Focus indicators must be visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--bg-primary);
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

button { 
    font: inherit; 
    cursor: pointer; 
    border: none; 
    background: none; 
}

/* WCAG: Ensure minimum touch target size (44x44px) */
button, a, input[type="button"], input[type="submit"] {
    min-height: 44px;
}

/* === UTILITIES === */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Main content wrapper */
.main-content-wrapper {
    width: 100%;
    overflow-x: hidden;
}
.hero-background {
    display: none;
}

/* BOLD Gradient Text */
.text-gradient,
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 50%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

/* Glowing Text Effect */
.glow-text {
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow), 0 0 60px var(--primary-glow);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* === ANNOUNCEMENT BANNER WRAPPER === */
.announcement-banner-wrapper {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

/* === ANNOUNCEMENT BANNER - CUSTOMIZABLE === */
.announcement-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 16px 24px;
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.announcement-banner:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

/* Animated gradient border */
.announcement-banner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-blue), var(--primary));
    background-size: 300% 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: gradient-flow 4s ease infinite;
}

.announcement-banner:hover::before {
    opacity: 0.5;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary), #00e87a);
    color: #0a0f1a;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
}

.announcement-badge.sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
    color: #fff;
}

.announcement-badge.update {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, var(--secondary), #8b5cf6);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
    color: #fff;
}

.announcement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.announcement-text {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

.dark .announcement-text {
    color: var(--text-primary);
}

.announcement-date {
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.announcement-date::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
    text-decoration: none;
    margin-right: 40px; /* Space for close button */
}

.announcement-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0a0f1a;
    transform: translateX(4px);
    text-decoration: none;
}

.announcement-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.announcement-link:hover svg {
    transform: translateX(3px);
}

.announcement-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* Light theme announcement banner */
:not(.dark) .announcement-banner {
    background: linear-gradient(135deg, rgba(0, 201, 111, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-color: rgba(0, 201, 111, 0.25);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

:not(.dark) .announcement-text {
    color: #1A202C;
}

:not(.dark) .announcement-date {
    color: #718096;
}

:not(.dark) .announcement-link {
    background: rgba(0, 201, 111, 0.1);
    border-color: rgba(0, 201, 111, 0.25);
    color: #1A202C;
}

:not(.dark) .announcement-link:hover {
    background: #00b464;
    border-color: #00b464;
    color: #fff;
}

:not(.dark) .announcement-close {
    background: rgba(15, 23, 42, 0.1);
    color: #64748b;
}

:not(.dark) .announcement-close:hover {
    background: rgba(15, 23, 42, 0.2);
    color: #0f172a;
}

@media (max-width: 768px) {
    .announcement-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    
    .announcement-content {
        align-items: center;
    }
    
    .announcement-date {
        justify-content: center;
    }
}

/* === ANIMATED BACKGROUND ELEMENTS === */
@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Floating Orbs - BOLD & GLOWING */
.floating-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}

.floating-orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow-intense) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 25s ease-in-out infinite;
}

.floating-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 30s ease-in-out infinite reverse;
}

.floating-orb:nth-child(3) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 8s ease-in-out infinite;
}

/* === BUTTONS - BOLD & GLOWING === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: var(--font-size-base);
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all var(--duration-base) var(--ease-bounce);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
    color: #0a0f1a;
    box-shadow: var(--shadow-glow);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow-intense);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    color: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* === SECTIONS - PREMIUM SEAMLESS FLOW === */
section {
    padding: var(--section-gap) 0;
    position: relative;
    background: transparent;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 48px;
        padding: 0 20px;
    }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.4;
    text-align: center;
    padding-bottom: 0.1em; /* Prevent descender clipping */
    overflow: visible;
}

/* Dark theme section title */
.dark .section-title {
    color: var(--text-primary);
    /* Add subtle text shadow for depth in dark mode */
    text-shadow: 0 2px 20px rgba(0, 201, 111, 0.15);
}

/* Light theme section title - friendly, warm color */
:not(.dark) .section-title {
    color: #1A202C;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}

/* Dark theme section subtitle */
.dark .section-subtitle {
    color: var(--text-secondary);
}

/* Light theme section subtitle */
:not(.dark) .section-subtitle {
    color: #4A5568;
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: var(--font-size-base);
    }
}

/* Section Dividers - HIDDEN for seamless flow */
.divider-container {
    display: none;
}

.section-divider {
    display: none;
}

.glow-divider {
    display: none;
}

.section-bumper {
    display: none;
}

/* === HERO - SEAMLESS, FLOWING, ENERGETIC === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 60px) 24px 100px;
    background: transparent;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Subtle animated grid pattern - flows into page */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(0, 255, 136, 0.02) 80px,
            rgba(0, 255, 136, 0.02) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(0, 255, 136, 0.02) 80px,
            rgba(0, 255, 136, 0.02) 81px
        );
    pointer-events: none;
    opacity: 0.6;
}

/* Top glow accent */
.hero-section::after {
    content: '';
    position: absolute;
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, var(--primary-glow-intense) 0%, transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.5;
}

/* Dark mode - no separate background needed */
.dark .hero-section {
    background: transparent;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(25px, 15px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* BOLD Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    box-shadow: 0 0 30px var(--primary-glow), inset 0 0 20px rgba(0, 255, 136, 0.1);
    animation: pulse-glow 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-icon {
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 8px var(--primary));
}

/* Light theme hero badge */
:not(.dark) .hero-badge {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 201, 111, 0.1) 100%);
    border-color: rgba(0, 201, 111, 0.3);
    color: #047857;
    box-shadow: 0 2px 12px rgba(0, 201, 111, 0.15);
}

/* Dark theme hero badge - EXPLICIT */
.dark .hero-badge {
    background: var(--dark-bg-solid) !important;
    border-color: rgba(0, 255, 136, 0.4) !important;
    color: var(--primary) !important;
    box-shadow: 0 0 30px var(--primary-glow), inset 0 0 20px rgba(0, 255, 136, 0.1);
}

/* HERO Title - Premium Typography */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: var(--letter-spacing-tight);
    padding-bottom: 0.1em; /* Prevent descender clipping */
    overflow: visible;
}

/* Light theme hero title */
:not(.dark) .hero-title {
    color: #1A202C;
}

/* Dark theme hero title */
.dark .hero-title {
    color: var(--text-primary);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.title-main {
    display: block;
}

:not(.dark) .title-main {
    text-shadow: none;
}

.title-sub {
    display: block;
    color: var(--primary);
    /* Use actual color instead of gradient for better accessibility */
}

.dark .title-sub {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

:not(.dark) .title-sub {
    color: #059669;
    text-shadow: none;
}

/* Hero Description - Better readability */
.hero-description {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

:not(.dark) .hero-description {
    color: #4A5568;
}

.dark .hero-description {
    color: var(--text-secondary);
}

/* Hero Benefits - Friendly Pills */
.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all var(--duration-base) var(--ease);
}

:not(.dark) .benefit-item {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 180, 100, 0.2);
    color: #334155;
}

/* Dark mode benefit items - Dark background with light text - EXPLICIT */
.dark .benefit-item {
    background: var(--dark-bg-solid) !important;
    border-color: rgba(0, 255, 136, 0.3) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    filter: drop-shadow(0 0 6px var(--primary));
}

i.benefit-icon,
.benefit-icon.lni {
    font-size: 20px;
    line-height: 1;
}

/* Hero Buttons - BOLD CTA */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: var(--font-size-lg);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
    color: #0a0f1a;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-bounce);
    box-shadow: var(--shadow-glow), 0 10px 40px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.primary-button:hover::before {
    transform: translateX(100%);
}

.primary-button:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-glow-intense), 0 20px 60px rgba(0, 255, 136, 0.4);
}

.glass-effect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: var(--font-size-lg);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all var(--duration-base) var(--ease);
}

/* Light theme glass effect button */
:not(.dark) .glass-effect {
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.2);
}

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-4px);
}

:not(.dark) .glass-effect:hover {
    background: rgba(0, 180, 100, 0.1);
    border-color: #00b464;
    box-shadow: 0 8px 30px rgba(0, 180, 100, 0.15);
    color: #00b464;
}

.button-icon {
    width: 22px;
    height: 22px;
    transition: transform var(--duration-base) var(--ease);
}

i.button-icon,
.button-icon.lni {
    font-size: 22px;
    line-height: 1;
}

.primary-button:hover .button-icon,
.glass-effect:hover .button-icon {
    transform: translateX(4px);
}

/* Social Proof Section - HIDDEN (removed fake logos) */
.hero-social-proof {
    display: none;
}

.social-proof-text {
    display: none;
}

.company-logos {
    display: none;
}

.company-logo {
    display: none;
}

.logo-icon {
    display: none;
}

/* Hero Stats - GLASSMORPHISM */
.hero-stats {
    position: relative;
    margin-top: 60px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.stat-item {
    padding: 24px 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all var(--duration-base) var(--ease);
    min-width: 140px;
}

:not(.dark) .stat-item {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 180, 100, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Dark theme stat items - EXPLICIT */
.dark .stat-item {
    background: var(--dark-bg-solid) !important;
    border-color: rgba(0, 255, 136, 0.25) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-4px);
}

:not(.dark) .stat-item:hover {
    border-color: #00b464;
    box-shadow: 0 8px 30px rgba(0, 180, 100, 0.15);
}

/* Dark theme stat item hover */
.dark .stat-item:hover {
    background: var(--dark-bg-hover) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 30px var(--primary-glow);
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

:not(.dark) .stat-number {
    color: #059669;
}

.dark .stat-number {
    color: var(--primary);
    text-shadow: 0 0 16px var(--primary-glow);
}

.stat-label {
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

:not(.dark) .stat-label {
    color: #718096;
}

.dark .stat-label {
    color: var(--text-muted);
}

/* === FEATURES - TRANSPARENT, FLOWING === */
#features {
    background: transparent;
    position: relative;
    overflow: hidden;
}

#features::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    filter: blur(80px);
    pointer-events: none;
}

:not(.dark) #features::before {
    background: radial-gradient(circle, rgba(0, 180, 100, 0.1) 0%, transparent 70%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--duration-base) var(--ease-bounce);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* Light theme feature card */
:not(.dark) .feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Dark theme feature card - explicit */
.dark .feature-card {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Glowing top border on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--secondary));
    transform: scaleX(0);
    transition: transform var(--duration-base) var(--ease);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px var(--primary-glow), 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
}

:not(.dark) .feature-card:hover {
    border-color: #00b464;
    box-shadow: 0 8px 40px rgba(0, 180, 100, 0.1), 0 20px 50px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 1);
}

/* Dark theme feature card hover - stay dark */
.dark .feature-card:hover {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(0, 201, 111, 0.4);
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    color: #0a0f1a;
    box-shadow: var(--shadow-glow);
    position: relative;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: var(--shadow-glow-intense);
}

:not(.dark) .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #00A85C 100%);
    box-shadow: 0 6px 20px rgba(0, 201, 111, 0.2);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0.2;
    filter: blur(10px);
    z-index: -1;
}

:not(.dark) .feature-icon::after {
    opacity: 0.12;
}

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

.feature-icon i,
.feature-icon .lni {
    font-size: 36px;
    line-height: 1;
}

/* Feature card headings - better contrast and readability */
.feature-card h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: var(--letter-spacing-tight);
}

:not(.dark) .feature-card h3 {
    color: #1A202C;
}

.dark .feature-card h3 {
    color: var(--text-primary);
}

/* Feature card paragraphs - friendly and readable */
.feature-card p {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

:not(.dark) .feature-card p {
    color: #4A5568;
}

.dark .feature-card p {
    color: var(--text-secondary);
}

/* === HOW IT WORKS - SEAMLESS === */
#how-it-works {
    position: relative;
    background: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    counter-reset: step;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Connection line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-blue));
    opacity: 0.3;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .steps-grid::before {
        display: none;
    }
}

/* Step containers with glassmorphism */
.step-container {
    text-align: center;
    counter-increment: step;
    padding: 32px 24px;
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: all var(--duration-base) var(--ease-bounce);
    position: relative;
    backdrop-filter: blur(20px);
}

/* Light theme step container */
:not(.dark) .step-container {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Dark theme step container - explicit */
.dark .step-container {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Dark theme step container hover - use dark background instead of white */
.dark .step-container:hover {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-8px);
    background: rgba(15, 23, 42, 0.9) !important;
}

:not(.dark) .step-container:hover {
    border-color: #00b464;
    box-shadow: 0 8px 40px rgba(0, 180, 100, 0.1), 0 20px 50px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 1);
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
    color: #0a0f1a;
    font-weight: 900;
    font-size: var(--font-size-xl);
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
    position: relative;
}

:not(.dark) .step-number {
    background: linear-gradient(135deg, #00b464 0%, #00996b 100%);
    box-shadow: 0 8px 24px rgba(0, 180, 100, 0.25);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0.4;
    filter: blur(12px);
    z-index: -1;
    animation: pulse-glow 3s ease-in-out infinite;
}

:not(.dark) .step-number::after {
    opacity: 0.15;
}

.step-title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: var(--letter-spacing-tight);
}

:not(.dark) .step-title {
    color: #1A202C;
}

.dark .step-title {
    color: var(--text-primary);
}

.step-description {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

:not(.dark) .step-description {
    color: #4A5568;
}

.dark .step-description {
    color: var(--text-secondary);
}

/* === PRICING - ULTRA INTERACTIVE LIVE DESIGN === */
#pricing {
    background: transparent;
    border-radius: var(--radius-xl);
    margin: 0 auto;
    max-width: calc(var(--max-width) + 80px);
    padding: 100px 32px;
    position: relative;
    overflow: visible;
}

@media (max-width: 768px) {
    #pricing {
        padding: 60px 20px;
    }
}

/* Animated ambient glow that pulses */
#pricing::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, rgba(124, 58, 237, 0.06) 40%, transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Pricing Section Header - CENTERED */
#pricing .section-header {
    text-align: center;
    margin-bottom: 56px;
}

#pricing .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: var(--letter-spacing-tight);
}

/* Light theme pricing section title */
:not(.dark) #pricing .section-title {
    color: #1A202C;
}

.dark #pricing .section-title {
    color: var(--text-primary);
}

#pricing .section-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* Light theme pricing section subtitle */
:not(.dark) #pricing .section-subtitle {
    color: #4A5568;
}

.dark #pricing .section-subtitle {
    color: var(--text-secondary);
}

.pricing-tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

/* Premium pricing tabs */
.pricing-tabs {
    display: inline-flex;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 8px;
    gap: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    flex-wrap: wrap;
    justify-content: center;
}

/* Light theme pricing tabs */
:not(.dark) .pricing-tabs {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 180, 100, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

@media (max-width: 600px) {
    .pricing-tabs {
        border-radius: 24px;
        padding: 6px;
        gap: 4px;
        width: 100%;
        max-width: 340px;
    }
}

.pricing-tab {
    position: relative;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 130px;
    border: 2px solid transparent;
    background: transparent;
}

:not(.dark) .pricing-tab {
    color: #64748b;
}

@media (max-width: 600px) {
    .pricing-tab {
        padding: 12px 16px;
        min-width: auto;
        flex: 1;
        font-size: 0.85rem;
    }
}

.pricing-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.15);
}

:not(.dark) .pricing-tab:hover {
    color: #334155;
    background: rgba(0, 180, 100, 0.08);
    border-color: rgba(0, 180, 100, 0.15);
}

.pricing-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
    color: #0a0f1a;
    box-shadow: 0 4px 24px rgba(0, 255, 136, 0.35), 0 0 40px rgba(0, 255, 136, 0.2);
    transform: scale(1.02);
    border-color: transparent;
}

.pricing-tab .tab-name { 
    font-weight: 800; 
    letter-spacing: -0.01em;
}

.pricing-tab .tab-price {
    font-size: 0.75rem;
    opacity: 0.75;
    margin-top: 4px;
    font-weight: 600;
}

.pricing-tab .hot-badge {
    position: absolute;
    top: -12px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
    letter-spacing: 0.5px;
}

/* Premium Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 700px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 24px;
        padding: 0 16px;
    }
}

/* Premium pricing cards with 3D tilt effect */
.pricing-card {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 44px 36px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: visible;
    backdrop-filter: blur(24px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Light theme pricing cards */
:not(.dark) .pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 32px 24px;
        border-radius: 20px;
    }
}

/* Animated gradient border on hover */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent-blue), var(--primary));
    background-size: 300% 300%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradient-flow 4s ease infinite;
}

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

/* Inner glow effect with sparkle */
.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    animation: sparkle-move 8s ease-in-out infinite;
}

@keyframes sparkle-move {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5%, -5%) rotate(2deg); }
    50% { transform: translate(-3%, 3%) rotate(-1deg); }
    75% { transform: translate(4%, 2%) rotate(1deg); }
}

.pricing-card:hover {
    border-color: transparent;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 
                0 0 100px rgba(0, 255, 136, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
    background: rgba(15, 23, 42, 0.85);
}

:not(.dark) .pricing-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 
                0 0 60px rgba(0, 180, 100, 0.1);
    background: rgba(255, 255, 255, 1);
}

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

:not(.dark) .pricing-card:hover::before {
    opacity: 0.6;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 120px rgba(0, 255, 136, 0.2),
                inset 0 0 40px rgba(0, 255, 136, 0.05);
    transform: scale(1.05);
    background: rgba(15, 23, 42, 0.8);
    z-index: 10;
}

:not(.dark) .pricing-card.featured {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 
                0 0 80px rgba(0, 180, 100, 0.15);
    background: rgba(255, 255, 255, 1);
}

.pricing-card.featured::before {
    opacity: 0.7;
}

.pricing-card.featured::after {
    opacity: 1;
}

/* Floating popular indicator */
.pricing-card.featured .popular-indicator {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #00e87a);
    color: #0a0f1a;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* Premium badges */
.pricing-card .plan-badge,
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
    color: #0a0f1a;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 8px 22px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

:not(.dark) .pricing-card .plan-badge,
:not(.dark) .pricing-badge {
    background: linear-gradient(135deg, #00b464 0%, #00996b 100%);
    box-shadow: 0 4px 20px rgba(0, 180, 100, 0.3);
}

.pricing-badge.free {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.pricing-badge.popular {
    background: linear-gradient(135deg, var(--secondary), #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.pricing-card-header h3,
.pricing-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}

:not(.dark) .pricing-card-header h3,
:not(.dark) .pricing-card h3 {
    color: #0f172a;
}

.pricing-price-container {
    margin-bottom: 32px;
}

.pricing-card .price,
.pricing-price {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
    line-height: 1;
}

:not(.dark) .pricing-card .price,
:not(.dark) .pricing-price {
    color: #00b464;
    text-shadow: none;
}

.pricing-card .price span,
.pricing-period {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

:not(.dark) .pricing-card .price span,
:not(.dark) .pricing-period {
    color: #64748b;
}

.pricing-card ul,
.pricing-features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    padding: 0;
}

.pricing-card li,
.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

:not(.dark) .pricing-card li,
:not(.dark) .pricing-feature-item {
    color: #475569;
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.pricing-card li:last-child,
.pricing-feature-item:last-child {
    border-bottom: none;
}

.dark .pricing-card li,
.dark .pricing-feature-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card li svg,
.pricing-feature-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px var(--primary-glow));
}

.pricing-card li i,
.pricing-card li .lni {
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px var(--primary-glow));
    margin-right: 8px;
}

:not(.dark) .pricing-card li svg,
:not(.dark) .pricing-feature-icon {
    color: #00b464;
    filter: none;
}

:not(.dark) .pricing-card li i,
:not(.dark) .pricing-card li .lni {
    color: #00b464;
    filter: none;
}

.pricing-card .btn,
.pricing-button {
    width: 100%;
    padding: 20px 36px;
    font-size: var(--font-size-base);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
    color: #0a0f1a;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 255, 136, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.pricing-card .btn:hover,
.pricing-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5), 
                0 0 60px rgba(0, 255, 136, 0.2),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.pricing-button:active {
    transform: translateY(-2px) scale(1.01);
}

.pricing-button.web {
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
}

.pricing-button.wordpress {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.pricing-button.game {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

/* Domain Search - SEPARATED & PROFESSIONAL */
.domain-search-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 24px;
    text-align: center;
}

/* Remove the green decorative line */

@media (max-width: 600px) {
    .domain-search-container {
        padding: 32px 16px;
    }
}

/* Premium domain search form */
.domain-search-form {
    display: flex;
    background: rgba(15, 23, 42, 0.7);
    border: 2px solid rgba(0, 255, 136, 0.25);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 255, 136, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
}

/* Light theme domain search */
:not(.dark) .domain-search-form {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 180, 100, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 500px) {
    .domain-search-form {
        flex-direction: column;
        border-radius: 18px;
    }
}

.domain-search-form:focus-within {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), 0 0 80px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.domain-input {
    flex: 1;
    padding: 22px 28px;
    border: none;
    background: transparent;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    outline: none;
    letter-spacing: -0.01em;
}

:not(.dark) .domain-input {
    color: #0f172a;
}

@media (max-width: 500px) {
    .domain-input {
        padding: 18px 20px;
        font-size: 1rem;
        text-align: center;
    }
}

.domain-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

:not(.dark) .domain-input::placeholder {
    color: #94a3b8;
}

.domain-search-button {
    padding: 22px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
    color: #0a0f1a;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    min-width: 70px;
}

@media (max-width: 500px) {
    .domain-search-button {
        padding: 18px;
        border-radius: 0 0 16px 16px;
    }
}

.domain-search-button:hover {
    background: linear-gradient(135deg, #00e87a 0%, var(--primary) 100%);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.domain-search-button:active {
    transform: scale(0.98);
}

.domain-search-button svg {
    width: 26px;
    height: 26px;
}

/* Premium TLD prices */
.tld-prices {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    padding: 0 16px;
}

@media (max-width: 600px) {
    .tld-prices {
        gap: 10px;
        margin-top: 24px;
    }
}

.tld-item {
    padding: 14px 24px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 600px) {
    .tld-item {
        padding: 12px 18px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
}

.tld-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
    background: rgba(15, 23, 42, 0.75);
}

/* Light theme TLD items */
:not(.dark) .tld-item {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 180, 100, 0.2);
    color: #334155;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

:not(.dark) .tld-item:hover {
    border-color: rgba(0, 180, 100, 0.4);
    box-shadow: 0 8px 24px rgba(0, 180, 100, 0.1);
    background: rgba(255, 255, 255, 1);
}

:not(.dark) .tld-price {
    color: #00b464;
    text-shadow: none;
}

.tld-price {
    color: var(--primary);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* === NEWS & UPDATES SECTION === */
.news-section {
    background: transparent;
    position: relative;
    padding: 100px 0;
    overflow: visible;
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.news-section .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: var(--letter-spacing-tight);
}

/* Light theme news section title */
:not(.dark) .news-section .section-title {
    color: #1A202C;
}

.dark .news-section .section-title {
    color: var(--text-primary);
}

.news-section .section-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* Light theme news section subtitle */
:not(.dark) .news-section .section-subtitle {
    color: #4A5568;
}

.dark .news-section .section-subtitle {
    color: var(--text-secondary);
}

/* News container with horizontal scroll */
.news-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* News scroll arrows */
.news-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 201, 111, 0.15);
    border: 2px solid rgba(0, 201, 111, 0.3);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.news-scroll-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.news-scroll-btn:hover {
    background: rgba(0, 201, 111, 0.25);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 201, 111, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.news-scroll-btn.prev {
    left: 0;
}

.news-scroll-btn.next {
    right: 0;
}

.news-scroll-btn svg {
    width: 24px;
    height: 24px;
}

:not(.dark) .news-scroll-btn {
    background: rgba(0, 180, 100, 0.1);
    border-color: rgba(0, 180, 100, 0.3);
    color: #00b464;
}

:not(.dark) .news-scroll-btn:hover {
    background: rgba(0, 180, 100, 0.2);
    border-color: #00b464;
    box-shadow: 0 4px 20px rgba(0, 180, 100, 0.2);
}

.news-grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.news-grid::-webkit-scrollbar {
    display: none;
}

.news-grid.has-overflow {
    justify-content: flex-start;
}

.news-card {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(24px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    flex: 0 0 340px;
    min-width: 300px;
    max-width: 380px;
}

.news-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent-blue));
    background-size: 200% 200%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradient-flow 3s ease infinite;
}

.news-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 80px rgba(0, 255, 136, 0.1);
    transform: translateY(-8px);
    background: rgba(15, 23, 42, 0.8);
}

.news-card:hover::before {
    opacity: 0.6;
}

/* Light theme news cards */
:not(.dark) .news-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Dark theme news cards - explicit */
.dark .news-card {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

:not(.dark) .news-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 
                0 0 40px rgba(0, 180, 100, 0.05);
    background: rgba(255, 255, 255, 1);
}

.dark .news-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                0 0 60px rgba(0, 201, 111, 0.1);
    background: rgba(15, 23, 42, 0.85);
}

:not(.dark) .news-card:hover::before {
    opacity: 0.4;
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary), #00e87a);
    color: #0a0f1a;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
}

.news-badge.new {
    background: linear-gradient(135deg, var(--secondary), #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.news-badge.update {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.news-badge.promo {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.news-badge.maintenance {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

/* News loading state */
.news-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    gap: 1rem;
    color: var(--text-muted);
}

.news-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 201, 111, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-size: var(--font-size-base);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* Light theme news date */
:not(.dark) .news-date {
    color: #718096;
}

.dark .news-date {
    color: var(--text-muted);
}

.news-date svg {
    opacity: 0.7;
}

.news-title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
}

/* Light theme news title */
:not(.dark) .news-title {
    color: #1A202C;
}

.dark .news-title {
    color: var(--text-primary);
}

.news-excerpt {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 16px;
}

/* Light theme news excerpt */
:not(.dark) .news-excerpt {
    color: #4A5568;
}

.dark .news-excerpt {
    color: var(--text-secondary);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

/* Light theme news link */
:not(.dark) .news-link {
    color: #059669;
}

.dark .news-link {
    color: var(--primary);
}

.news-link svg {
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

:not(.dark) .news-link:hover {
    color: #047857;
}

.news-link:hover svg {
    transform: translateX(4px);
}

/* === FAQ - ULTRA INTERACTIVE LIVE DESIGN === */
#faq {
    background: transparent;
    position: relative;
    padding: 120px 0;
    overflow: visible;
}

/* Animated background glow - neutral colors */
#faq::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.06) 0%, rgba(148, 163, 184, 0.03) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    pointer-events: none;
    animation: faq-glow-pulse 6s ease-in-out infinite;
}

:not(.dark) #faq::before {
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.03) 0%, rgba(148, 163, 184, 0.02) 50%, transparent 70%);
}

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

/* Section header with animated underline */
#faq .section-header,
#faq .text-center.mb-8 {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
}

/* FAQ Title - Accessible, no gradient text */
#faq .section-title,
#faq .text-4xl {
    font-family: var(--font-display) !important;
    font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: unset !important;
    background: none !important;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: var(--letter-spacing-tight);
    position: relative;
}

:not(.dark) #faq .section-title,
:not(.dark) #faq .text-4xl {
    color: #1A202C !important;
}

.dark #faq .section-title,
.dark #faq .text-4xl {
    color: var(--text-primary) !important;
    text-shadow: none;
}

/* Decorative animated underline - neutral */
#faq .section-title::after,
#faq .text-4xl::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(148, 163, 184, 0.3);
    border-radius: 4px;
}

:not(.dark) #faq .section-title::after,
:not(.dark) #faq .text-4xl::after {
    background: rgba(26, 32, 44, 0.15);
}

#faq .section-subtitle,
#faq .text-xl {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* Light theme FAQ subtitle */
:not(.dark) #faq .section-subtitle,
:not(.dark) #faq .text-xl {
    color: #4A5568;
}

.dark #faq .section-subtitle,
.dark #faq .text-xl {
    color: var(--text-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .faq-grid {
        padding: 0 16px;
        gap: 20px;
    }
    
    #faq {
        padding: 60px 0;
    }
}

/* FAQ items with clean dark/light theming */
.faq-item {
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(24px);
    position: relative;
    transform: translateZ(0);
}

:not(.dark) .faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Dark theme FAQ item - clean dark styling */
.dark .faq-item {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Remove green gradient border - use subtle neutral border instead */
.faq-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    background-size: 200% 200%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

/* Light theme uses darker gradient */
:not(.dark) .faq-item::before {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.04));
}

/* Remove green inner highlight - use neutral highlight */
.faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

:not(.dark) .faq-item::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(-6px) scale(1.01);
}

/* Dark theme FAQ hover - keep dark background */
.dark .faq-item:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
}

:not(.dark) .faq-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(15, 23, 42, 0.12);
}

.faq-item:hover::before {
    opacity: 0.2;
}

:not(.dark) .faq-item:hover::before {
    opacity: 0.15;
}

.faq-item:hover::after {
    opacity: 0.3;
}

.faq-item.active,
.faq-item.open {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    background: rgba(15, 23, 42, 0.85);
}

:not(.dark) .faq-item.active,
:not(.dark) .faq-item.open {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(15, 23, 42, 0.15);
}

.faq-item.active::before,
.faq-item.open::before {
    opacity: 0.25;
}

:not(.dark) .faq-item.active::before,
:not(.dark) .faq-item.open::before {
    opacity: 0.2;
}

.faq-item.active::after,
.faq-item.open::after {
    opacity: 0.3;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    text-align: left;
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    line-height: var(--line-height-normal);
    position: relative;
}

:not(.dark) .faq-question {
    color: #1A202C;
}

.dark .faq-question {
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .faq-question {
        padding: 22px 20px;
        font-size: 1rem;
    }
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

:not(.dark) .faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* FAQ icon - neutral colors, no green */
.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
    margin-left: 16px;
    filter: none;
}

:not(.dark) .faq-question svg {
    color: #4A5568;
    filter: none;
}

.faq-item.open .faq-question svg,
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--text-primary);
    filter: none;
}

:not(.dark) .faq-item.open .faq-question svg,
:not(.dark) .faq-item.active .faq-question svg {
    color: #1A202C;
    filter: none;
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 480px) {
    .faq-answer {
        padding: 0 20px;
    }
}

.faq-item.open .faq-answer,
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 28px;
}

@media (max-width: 480px) {
    .faq-item.open .faq-answer,
    .faq-item.active .faq-answer {
        padding: 0 20px 22px;
    }
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

:not(.dark) .faq-answer p {
    color: #4A5568;
    border-top-color: rgba(26, 32, 44, 0.08);
}

.dark .faq-answer p {
    color: var(--text-secondary);
    border-top-color: rgba(240, 246, 252, 0.08);
}

/* === FLOATING TRUST BAR - SLIM & ELEGANT === */
.floating-trust-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    z-index: 100;
    transform: translateY(100%);
    opacity: 0;
    transition: all var(--duration-slow) var(--ease);
    border-top: 1px solid rgba(0, 201, 111, 0.2);
}

.floating-trust-bar.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Light theme trust bar */
:not(.dark) .floating-trust-bar {
    background: rgba(255, 255, 255, 0.95);
    border-top-color: rgba(0, 201, 111, 0.3);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.dark .floating-trust-bar {
    background: rgba(15, 20, 25, 0.95);
    border-top-color: rgba(0, 201, 111, 0.2);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 201, 111, 0.08);
    border: 1px solid rgba(0, 201, 111, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--duration-base) var(--ease);
    min-height: 36px;
}

/* Light theme trust items */
:not(.dark) .trust-item {
    background: rgba(0, 201, 111, 0.06);
    border-color: rgba(0, 201, 111, 0.2);
    color: #1A202C;
}

/* Dark theme trust items - EXPLICIT */
.dark .trust-item {
    background: rgba(10, 15, 26, 0.8) !important;
    border-color: rgba(0, 255, 136, 0.3) !important;
    color: #f8fafc !important;
}

.trust-item:hover {
    background: rgba(0, 201, 111, 0.12);
    border-color: var(--primary);
    transform: translateY(-1px);
}

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

.trust-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Light theme icon color */
:not(.dark) .trust-icon svg {
    color: #059669;
}

.trust-text {
    color: inherit;
}

:not(.dark) .trust-text {
    color: #0f172a;
}

/* === SCROLL TO TOP - BOLD & GLOWING === */
#scrollToTop {
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #00e87a 100%);
    color: #0a0f1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-bounce);
    z-index: 99;
    border: none;
    cursor: pointer;
}

#scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: var(--shadow-glow-intense);
}

#scrollToTop svg {
    width: 24px;
    height: 24px;
}

/* === RESPONSIVE - BOLD MOBILE STYLES === */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --section-gap: 80px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Hero Mobile - Still Bold */
    .hero-section {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 20px 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .hero-title { 
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        padding: 0 10px;
    }
    
    .primary-button,
    .glass-effect {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
        font-size: var(--font-size-base);
    }
    
    .hero-stats { 
        margin-top: 40px;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-item {
        min-width: 100%;
        padding: 20px;
    }
    
    .stat-number { 
        font-size: var(--font-size-xl); 
    }
    
    .stat-label { 
        font-size: 11px; 
    }
    
    /* Hero benefits mobile */
    .hero-benefits {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .benefit-item {
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    /* Social proof mobile */
    .hero-social-proof {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .company-logos {
        gap: 24px;
    }
    
    .company-logo,
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Features Mobile */
    .features-grid { 
        grid-template-columns: 1fr;
        gap: 24px; 
    }
    
    .feature-card { 
        padding: 32px 24px; 
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    /* Steps Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: var(--font-size-lg);
    }
    
    /* Pricing Mobile */
    #pricing {
        margin: 40px 16px;
        padding: 48px 20px;
        border-radius: var(--radius-xl);
    }
    
    .pricing-tabs { 
        flex-wrap: wrap; 
        justify-content: center;
        gap: 8px;
        padding: 4px;
    }
    
    .pricing-tab { 
        min-width: auto;
        flex: 1;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-price {
        font-size: var(--font-size-3xl);
    }
    
    .domain-search-form {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }
    
    .domain-input {
        border-radius: var(--radius-lg);
        padding: 16px 20px;
        text-align: center;
    }
    
    .domain-search-button {
        border-radius: var(--radius-lg);
        width: 100%;
        padding: 16px;
        margin-top: 12px;
    }
    
    .tld-prices {
        gap: 12px;
    }
    
    .tld-item {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    /* FAQ Mobile */
    .faq-grid { 
        grid-template-columns: 1fr; 
    }
    
    .faq-question {
        font-size: 15px;
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    /* Trust bar mobile */
    .floating-trust-bar {
        padding: 16px 0;
    }
    
    .trust-indicators {
        gap: 10px;
        justify-content: center;
    }
    
    .trust-item {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .trust-icon svg {
        width: 16px;
        height: 16px;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: 48px;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Scroll to top mobile */
    #scrollToTop {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    
    .hero-section {
        padding: calc(var(--header-height) + 20px) 12px 32px;
    }
    
    .hero-title { 
        font-size: 1.375rem;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-stats { 
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 12px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 60px;
    }
    
    .pricing-tabs { 
        width: 100%; 
    }
    .pricing-tab { 
        flex: 1; 
        min-width: 0;
    }
    
    /* Feature cards on very small screens */
    .feature-card {
        padding: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-card h3 {
        font-size: 15px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
}

/* === NO-JS FALLBACK === */
noscript .hero-stats { display: flex; }
.no-js .faq-answer { max-height: none; padding: 0 20px 18px; }

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* === PRINT STYLES === */
@media print {
    .hero-section::before,
    .hero-section::after,
    .trust-bar,
    #scrollToTop { display: none !important; }
}

/* === ADDITIONAL UTILITIES === */

/* Glassmorphism effect */
.glass-morphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.dark .glass-morphism {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Light theme glassmorphism */
:not(.dark) .glass-morphism {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Ribbon badge for HOT items */
.ribbon-hot {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

/* Starting from label */
.starting-from-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.75;
    margin-top: 4px;
}

/* Slider background for tabs */
.slider-bg {
    display: none;
}

/* === NEW PRICING SHOWCASE - COMPACT & PROFESSIONAL === */
.pricing-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.showcase-card {
    position: relative;
    padding: 28px 24px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

/* Animated gradient border on hover */
.showcase-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), #7c3aed, #3b82f6, var(--primary));
    background-size: 400% 400%;
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
    animation-play-state: paused;
}

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

.showcase-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.25);
}

:not(.dark) .showcase-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.showcase-card.featured {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
}

/* Pulsing glow animation for featured card */
.showcase-card.featured::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
    border-radius: 24px;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    will-change: opacity, transform;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale3d(1, 1, 1); }
    50% { opacity: 0.6; transform: scale3d(1.02, 1.02, 1); }
}

.showcase-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--primary), #00e87a);
    color: #0a0f1a;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 136, 0.8); }
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.showcase-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.05));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-icon {
    background: linear-gradient(135deg, var(--primary), #00e87a);
    transform: rotate(-5deg) scale(1.1);
}

.showcase-card:hover .showcase-icon svg {
    stroke: #0a0f1a;
}

.showcase-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    transition: all 0.3s ease;
}

.showcase-header h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: var(--letter-spacing-tight);
}

:not(.dark) .showcase-header h3 {
    color: #1A202C;
}

.showcase-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}

.showcase-price .from {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

:not(.dark) .showcase-price .from {
    color: #718096;
}

.showcase-price .amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

:not(.dark) .showcase-price .amount {
    color: #059669;
}

.showcase-price .period {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

:not(.dark) .showcase-price .period {
    color: #718096;
}

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

.showcase-features li {
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

:not(.dark) .showcase-features li {
    color: #4A5568;
    border-bottom-color: rgba(26, 32, 44, 0.06);
}

.dark .showcase-features li {
    border-bottom-color: rgba(240, 246, 252, 0.06);
}

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

.showcase-cta {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(0, 201, 111, 0.1);
    border: 2px solid rgba(0, 201, 111, 0.3);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    min-height: 48px;
}

:not(.dark) .showcase-cta {
    color: #1A202C;
    background: rgba(0, 201, 111, 0.08);
    border-color: rgba(0, 201, 111, 0.25);
}

.showcase-cta:hover {
    background: rgba(0, 201, 111, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}

.showcase-cta.primary {
    color: #0a0f1a;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 201, 111, 0.25);
}

.showcase-cta.primary:hover {
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.5);
}

/* Comparison Strip */
.pricing-comparison {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 32px;
    background: rgba(0, 201, 111, 0.06);
    border: 1px solid rgba(0, 201, 111, 0.15);
    border-radius: 20px;
    max-width: 900px;
    margin: 48px auto 0;
    flex-wrap: wrap;
}

:not(.dark) .pricing-comparison {
    background: rgba(0, 180, 100, 0.05);
    border-color: rgba(0, 180, 100, 0.15);
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
}

:not(.dark) .comparison-item {
    color: #4A5568;
}

.comp-check {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2em;
}

:not(.dark) .comp-check {
    color: #059669;
}

/* Responsive Pricing Showcase */
@media (max-width: 1024px) {
    .pricing-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-comparison {
        flex-wrap: wrap;
        gap: 16px 32px;
    }
}

/* === NEWSLETTER SECTION - MARKETING BOOST === */
.newsletter-section {
    padding: 80px 0;
    position: relative;
}

.newsletter-card {
    position: relative;
    padding: 60px 40px;
    background: rgba(15, 23, 42, 0.7);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    text-align: center;
}

:not(.dark) .newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 180, 100, 0.2);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.08);
}

/* Dark theme newsletter - explicit */
.dark .newsletter-card {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(0, 201, 111, 0.25);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4);
}

.newsletter-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: newsletterGlow 4s ease-in-out infinite;
}

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

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: var(--radius-lg);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.newsletter-icon svg {
    width: 36px;
    height: 36px;
    stroke: #0a0f1a;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: var(--letter-spacing-tight);
}

:not(.dark) .newsletter-content h2 {
    color: #1A202C;
}

.newsletter-content > p {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--line-height-relaxed);
}

:not(.dark) .newsletter-content > p {
    color: #4A5568;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(0, 201, 111, 0.2);
    border-radius: 60px;
    transition: all 0.3s ease;
}

:not(.dark) .newsletter-input-group {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(26, 32, 44, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.newsletter-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(0, 201, 111, 0.15);
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-primary);
}

:not(.dark) .newsletter-input-group input {
    color: #1A202C;
}

.newsletter-input-group input::placeholder {
    color: var(--text-muted);
}

:not(.dark) .newsletter-input-group input::placeholder {
    color: #A0AEC0;
}

.newsletter-input-group button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #0a0f1a;
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px;
}

.newsletter-input-group button:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(0, 201, 111, 0.35);
}

.newsletter-input-group button svg {
    width: 20px;
    height: 20px;
}

.newsletter-privacy {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: 16px;
}

:not(.dark) .newsletter-privacy {
    color: #718096;
}

@media (max-width: 640px) {
    .newsletter-card {
        padding: 40px 24px;
    }
    
    .newsletter-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 12px;
    }
    
    .newsletter-input-group button {
        width: 100%;
        justify-content: center;
    }
}

/* === ACCESSIBILITY: Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    .showcase-card::before,
    .showcase-card.featured::after,
    .showcase-badge,
    .newsletter-glow,
    .newsletter-icon,
    .feature-icon {
        animation: none !important;
    }
    
    .showcase-card:hover,
    .showcase-cta:hover,
    .newsletter-input-group button:hover,
    .feature-card:hover,
    .feature-card:hover .feature-icon {
        transform: none !important;
    }
}

/* === LEGACY TIER SELECTOR STYLES (kept for compatibility) === */
.tier-selector-pro {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 8px;
}

.tier-selector-track {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(0, 255, 136, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    position: relative;
}

:not(.dark) .tier-selector-track {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 180, 100, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.tier-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 16px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.tier-btn:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.2);
}

.tier-btn.active {
    background: linear-gradient(135deg, var(--primary), #00e87a);
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.tier-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-icon svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

:not(.dark) .tier-icon svg {
    stroke: #64748b;
}

.tier-btn.active .tier-icon svg {
    stroke: #0a0f1a;
}

.tier-label {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

:not(.dark) .tier-label {
    color: #334155;
}

.tier-btn.active .tier-label {
    color: #0a0f1a;
}

.tier-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

:not(.dark) .tier-desc {
    color: #94a3b8;
}

.tier-btn.active .tier-desc {
    color: rgba(10, 15, 26, 0.7);
}

.tier-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

/* === HOSTING PLANS GRID === */
.hosting-plans-grid {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.tier-plans {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    animation: fadeInUp 0.5s ease;
}

.tier-plans.active {
    display: grid;
}

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

/* === PLAN CARDS - PROFESSIONAL DESIGN === */
.plan-card {
    position: relative;
    padding: 32px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

:not(.dark) .plan-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

.plan-card.featured {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.2);
}

.plan-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    padding: 6px 40px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
}

.plan-ribbon.free {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
}

.plan-ribbon.popular {
    background: linear-gradient(135deg, var(--primary), #00e87a);
    color: #0a0f1a;
}

.plan-ribbon.enterprise {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
}

.plan-header {
    margin-bottom: 20px;
    text-align: center;
}

.plan-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.plan-tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.08);
    border-radius: 16px;
}

:not(.dark) .plan-pricing {
    background: rgba(0, 200, 100, 0.08);
}

.plan-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.plan-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.plan-period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

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

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

:not(.dark) .plan-features li {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

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

.plan-features li.disabled {
    color: var(--text-muted);
    opacity: 0.6;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.x-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #ef4444;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.plan-cta {
    display: block;
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #0a0f1a;
    background: linear-gradient(135deg, var(--primary), #00e87a);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.5);
}

.plan-cta.primary {
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.5);
}

/* Responsive tier selector */
@media (max-width: 768px) {
    .tier-selector-track {
        flex-direction: column;
        gap: 4px;
    }
    
    .tier-btn {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .tier-icon {
        width: 40px;
        height: 40px;
    }
    
    .tier-desc {
        display: none;
    }
    
    .tier-plans {
        grid-template-columns: 1fr;
    }
    
    .plan-ribbon {
        right: -40px;
        padding: 4px 45px;
        font-size: 10px;
    }
}

/* === LEGACY STYLES - BACKWARD COMPATIBILITY ===
 * TODO: These styles are deprecated and will be removed in a future version.
 * They are retained for any remaining pages that may still use the old
 * Basic/Premium switch component. The new tier-selector-pro component
 * should be used instead.
 * Target removal: After all pages are migrated to the new tier selector.
 */

.basic-premium-switch {
    display: inline-flex;
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--radius-full);
    padding: 6px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Light theme switch */
:not(.dark) .basic-premium-switch {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 180, 100, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.basic-premium-switch input[type="radio"] {
    display: none;
}

.basic-premium-switch .switch-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 2;
    user-select: none;
}

:not(.dark) .basic-premium-switch .switch-option {
    color: #64748b;
}

.basic-premium-switch .switch-option:hover {
    color: rgba(255, 255, 255, 0.9);
}

:not(.dark) .basic-premium-switch .switch-option:hover {
    color: #334155;
}

.basic-premium-switch input[type="radio"]:checked + .switch-option {
    color: #0a0f1a;
    text-shadow: none;
}

/* Animated sliding bubble with checkmark */
.basic-premium-switch .switch-bubble {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, var(--primary), #00e87a);
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.2);
}

/* Checkmark indicator on selected option */
.basic-premium-switch .switch-option::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

:not(.dark) .basic-premium-switch .switch-option::before {
    border-color: rgba(100, 116, 139, 0.4);
}

.basic-premium-switch input[type="radio"]:checked + .switch-option::before {
    background: #0a0f1a;
    border-color: #0a0f1a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300FF88' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* === WORDPRESS TOGGLE - PROFESSIONAL ANIMATED === */
.webhosting-switch-container {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.wordpress-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    padding: 14px 28px;
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

:not(.dark) .wordpress-toggle {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.wordpress-toggle:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.wordpress-checkbox {
    width: 52px;
    height: 28px;
    appearance: none;
    background: rgba(100, 116, 139, 0.4);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent;
}

.wordpress-checkbox::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Checkmark inside the toggle circle */
.wordpress-checkbox::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 2px;
    left: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233b82f6' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 1;
}

.wordpress-checkbox:checked {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.wordpress-checkbox:checked::before {
    transform: translateX(24px);
    background: #fff;
}

.wordpress-checkbox:checked::after {
    opacity: 1;
    transform: translateX(24px) scale(1);
}

.wordpress-label {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

:not(.dark) .wordpress-label {
    color: #334155;
}

/* WordPress icon next to label */
.wordpress-label::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233b82f6'%3E%3Cpath d='M12 2C6.477 2 2 6.477 2 12c0 5.522 4.477 10 10 10 5.522 0 10-4.478 10-10 0-5.523-4.478-10-10-10zm-.001 1.5c4.685 0 8.5 3.814 8.5 8.5s-3.815 8.5-8.5 8.5c-4.686 0-8.5-3.814-8.5-8.5s3.814-8.5 8.5-8.5zM5.5 12c0 1.33.39 2.57 1.062 3.61l3.294-9.022A6.493 6.493 0 005.5 12zm6.5 6.5c-.711 0-1.393-.117-2.032-.333l2.158-6.27 2.21 6.057c.015.035.033.068.052.1A6.475 6.475 0 0112 18.5zm.892-9.396c.433-.023.823-.068.823-.068.387-.046.341-.614-.046-.591 0 0-1.165.091-1.916.091-.705 0-1.893-.091-1.893-.091-.387-.023-.433.568-.046.591 0 0 .366.045.753.068l1.12 3.067-1.573 4.715-2.616-7.782c.433-.023.823-.068.823-.068.387-.046.341-.614-.046-.591 0 0-1.165.091-1.916.091-.135 0-.293-.003-.459-.008A6.47 6.47 0 0112 5.5c1.723 0 3.295.672 4.462 1.768-.028-.002-.056-.006-.084-.006-.705 0-1.205.614-1.205 1.273 0 .591.341 1.091.705 1.682.273.477.591 1.091.591 1.977 0 .614-.236 1.327-.55 2.32l-.72 2.405-2.607-7.755z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
}

/* Webhosting cards container */
.webhosting-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.webhosting-layout-wrapper {
    width: 100%;
}

/* Pricing card header */
.pricing-card-header {
    margin-bottom: 16px;
}

.pricing-card-footer {
    margin-top: auto;
}

.pricing-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Pricing tab content */
.pricing-tab-content {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Standard and WordPress hosting containers */
.standard-hosting-container,
.wordpress-hosting-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* SVG Icon Sizing - Clean */
svg {
    flex-shrink: 0;
}

.w-4 { width: 16px !important; }
.w-5 { width: 20px !important; }
.w-6 { width: 24px !important; }
.w-8 { width: 32px !important; }
.w-12 { width: 48px !important; }
.h-4 { height: 16px !important; }
.h-5 { height: 20px !important; }
.h-6 { height: 24px !important; }
.h-8 { height: 32px !important; }
.h-12 { height: 48px !important; }

/* Hero animated gradient */
.hero-animated-gradient {
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, var(--secondary-glow) 0%, transparent 50%),
        linear-gradient(180deg, #0a1628 0%, #0f172a 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Badge styles */
.badge-free {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

/* === ACCESSIBILITY - Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-orb,
    .hero-section::after,
    .product-hero::after {
        animation: none !important;
    }
}

/* =====================================================================
   NEW PRICING CASSETTES - PREMIUM CROCKYHOST DESIGN
   ===================================================================== */

.pricing-section {
    padding: 80px 0 100px;
    position: relative;
    background: transparent;
}

/* === PRICING CASSETTE BASE === */
.pricing-cassette {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(0, 201, 111, 0.15);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Light theme cassettes */
:not(.dark) .pricing-cassette {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 180, 100, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

/* Dark theme cassettes - explicit */
.dark .pricing-cassette {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(0, 201, 111, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.pricing-cassette:hover {
    border-color: rgba(0, 201, 111, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 201, 111, 0.08);
}

:not(.dark) .pricing-cassette:hover {
    border-color: rgba(0, 180, 100, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 0 30px rgba(0, 180, 100, 0.06);
}

.dark .pricing-cassette:hover {
    border-color: rgba(0, 201, 111, 0.35);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 201, 111, 0.1);
}

/* === CASSETTE HEADER === */
.cassette-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cassette-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #00e87a);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 201, 111, 0.3);
    flex-shrink: 0;
}

.cassette-icon svg {
    width: 28px;
    height: 28px;
    stroke: #0a0f1a;
}

.cassette-icon.gaming-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.cassette-title {
    flex: 1;
}

.cassette-title h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}

:not(.dark) .cassette-title h3 {
    color: #1A202C;
}

.cassette-title p {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
}

:not(.dark) .cassette-title p {
    color: #4A5568;
}

.cassette-badge {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), #00e87a);
    color: #0a0f1a;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 201, 111, 0.3);
}

/* === DOMAIN SEARCH === */
.domain-search-container {
    margin-bottom: 32px;
}

.domain-search-form {
    display: flex;
    gap: 0;
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(0, 201, 111, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

:not(.dark) .domain-search-form {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 180, 100, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Dark theme domain search - explicit */
.dark .domain-search-form {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.domain-search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(0, 201, 111, 0.2);
}

.domain-input {
    flex: 1;
    padding: 18px 24px;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-primary);
}

:not(.dark) .domain-input {
    color: #1A202C;
}

.dark .domain-input {
    color: #f8fafc;
}

.domain-input::placeholder {
    color: var(--text-muted);
}

:not(.dark) .domain-input::placeholder {
    color: #A0AEC0;
}

.dark .domain-input::placeholder {
    color: rgba(248, 250, 252, 0.5);
}

.domain-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--primary), #00e87a);
    color: #0a0f1a;
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domain-search-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(0, 201, 111, 0.4);
}

.domain-search-btn svg {
    width: 20px;
    height: 20px;
}

/* === TLD PRICING GRID === */
.tld-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.tld-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(0, 201, 111, 0.08);
    border: 1px solid rgba(0, 201, 111, 0.15);
    border-radius: 100px;
    transition: all 0.3s ease;
}

:not(.dark) .tld-item {
    background: rgba(0, 180, 100, 0.08);
    border-color: rgba(0, 180, 100, 0.15);
}

.tld-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 201, 111, 0.15);
    transform: translateY(-2px);
}

.tld-item.featured {
    background: linear-gradient(135deg, var(--primary), #00e87a);
    border-color: transparent;
}

.tld-item.featured .tld-name,
.tld-item.featured .tld-price {
    color: #0a0f1a;
}

.tld-name {
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-primary);
}

:not(.dark) .tld-name {
    color: #1A202C;
}

.tld-price {
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary);
}

:not(.dark) .tld-price {
    color: #059669;
}

/* === CASSETTE FEATURES === */
.cassette-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 201, 111, 0.1);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-secondary);
}

:not(.dark) .feature-tag {
    background: rgba(0, 180, 100, 0.1);
    color: #4A5568;
}

.feature-tag svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

:not(.dark) .feature-tag svg {
    color: #059669;
}

/* === HOSTING TOGGLE CONTAINER === */
.hosting-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* === TIER SWITCH (Basic/Premium) === */
.tier-switch {
    display: inline-flex;
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(0, 201, 111, 0.2);
    border-radius: 100px;
    padding: 4px;
}

:not(.dark) .tier-switch {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 180, 100, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Dark theme tier switch - explicit */
.dark .tier-switch {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.tier-switch input[type="radio"] {
    display: none;
}

.tier-label {
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

:not(.dark) .tier-label {
    color: #4A5568;
}

.dark .tier-label {
    color: rgba(255, 255, 255, 0.7);
}

.tier-switch input[type="radio"]:checked + .tier-label {
    color: #0a0f1a;
}

.tier-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, var(--primary), #00e87a);
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 201, 111, 0.3);
}

.tier-switch input#tier-premium:checked ~ .tier-slider {
    left: calc(50%);
}

/* === WORDPRESS TOGGLE === */
.wordpress-toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    transition: all 0.3s ease;
}

:not(.dark) .wordpress-toggle-label {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
}

.wordpress-toggle-label:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.wordpress-toggle-label .wordpress-checkbox {
    display: none;
}

.toggle-track {
    position: relative;
    width: 48px;
    height: 26px;
    background: rgba(100, 116, 139, 0.4);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.wordpress-toggle-label .wordpress-checkbox:checked + .toggle-track {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.wordpress-toggle-label .wordpress-checkbox:checked + .toggle-track .toggle-thumb {
    left: calc(100% - 23px);
}

.toggle-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
}

:not(.dark) .toggle-text {
    color: #4A5568;
}

.wp-icon {
    width: 20px;
    height: 20px;
    color: #3b82f6;
}

/* === HOSTING PLANS GRID === */
.hosting-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hosting-plans.hidden {
    display: none;
}

.servers-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

/* Center single card in servers grid */
.servers-grid.hosting-plans:has(.plan-card:only-child) {
    display: flex;
    justify-content: center;
}

.servers-grid .plan-card:only-child {
    max-width: 380px;
    width: 100%;
}

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

@media (max-width: 640px) {
    .hosting-plans,
    .servers-grid {
        grid-template-columns: 1fr;
    }
}

/* === PLAN CARD === */
.plan-card {
    position: relative;
    padding: 28px 24px;
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

:not(.dark) .plan-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Dark theme plan card - explicit */
.dark .plan-card {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.plan-card:hover {
    border-color: rgba(0, 201, 111, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

:not(.dark) .plan-card:hover {
    border-color: rgba(0, 180, 100, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.dark .plan-card:hover {
    border-color: rgba(0, 201, 111, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 201, 111, 0.1);
}

.plan-card.featured {
    border-color: rgba(0, 201, 111, 0.3);
    box-shadow: 0 0 40px rgba(0, 201, 111, 0.1);
}

:not(.dark) .plan-card.featured {
    border-color: rgba(0, 180, 100, 0.35);
}

.dark .plan-card.featured {
    border-color: rgba(0, 201, 111, 0.35);
    box-shadow: 0 0 50px rgba(0, 201, 111, 0.15);
}

.plan-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 0 10px 10px;
}

.plan-badge.free {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.plan-badge.popular {
    background: linear-gradient(135deg, var(--primary), #00e87a);
    color: #0a0f1a;
    box-shadow: 0 4px 12px rgba(0, 201, 111, 0.3);
}

.plan-name {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
    text-align: center;
}

:not(.dark) .plan-name {
    color: #1A202C;
}

.plan-specs {
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 12px;
}

:not(.dark) .plan-specs {
    color: #718096;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(0, 201, 111, 0.08);
    border-radius: 12px;
}

:not(.dark) .plan-price {
    background: rgba(0, 180, 100, 0.06);
}

.price-currency {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary);
}

:not(.dark) .price-currency {
    color: #059669;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

:not(.dark) .price-amount {
    color: #1A202C;
}

.price-period {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

:not(.dark) .price-period {
    color: #718096;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

:not(.dark) .plan-features li {
    color: #4A5568;
    border-bottom-color: rgba(26, 32, 44, 0.06);
}

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

.plan-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

:not(.dark) .plan-features li svg {
    color: #059669;
}

.plan-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(0, 201, 111, 0.1);
    border: 2px solid rgba(0, 201, 111, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: auto;
}

:not(.dark) .plan-cta {
    color: #1A202C;
    background: rgba(0, 180, 100, 0.08);
    border-color: rgba(0, 180, 100, 0.25);
}

.plan-cta:hover {
    background: rgba(0, 201, 111, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}

.plan-cta.primary {
    color: #0a0f1a;
    background: linear-gradient(135deg, var(--primary), #00e87a);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 201, 111, 0.3);
}

.plan-cta.primary:hover {
    box-shadow: 0 8px 28px rgba(0, 201, 111, 0.4);
}

/* === GAME SERVERS GRID === */
.game-servers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

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

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

.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: rgba(139, 92, 246, 0.08);
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

:not(.dark) .game-card {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.15);
}

.game-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    transform: translateY(-4px);
    text-decoration: none;
}

.game-card.more {
    background: rgba(0, 201, 111, 0.08);
    border-color: rgba(0, 201, 111, 0.2);
}

.game-card.more:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 201, 111, 0.15);
}

.game-icon {
    font-size: 2rem;
}

.game-name {
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-primary);
}

:not(.dark) .game-name {
    color: #1A202C;
}

.game-price {
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    color: #8b5cf6;
}

.game-card.more .game-icon {
    color: var(--primary);
    font-weight: bold;
}

.game-card.more .game-price {
    color: var(--primary);
}

.gaming-features {
    justify-content: center;
}

/* === RESPONSIVE CASSETTES === */
@media (max-width: 768px) {
    .pricing-cassette {
        padding: 28px 20px;
    }
    
    .cassette-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cassette-badge {
        align-self: flex-start;
    }
    
    .hosting-toggle-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .domain-search-form {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .domain-search-btn {
        justify-content: center;
    }
    
    .tld-pricing-grid {
        justify-content: center;
    }
}

/* === DARK THEME FIXES FOR VIEW DEMO BUTTON === */
.dark .glass-effect {
    background: var(--dark-bg-solid) !important;
    color: #fff !important;
    border-color: rgba(0, 255, 136, 0.3) !important;
}

.dark .glass-effect:hover {
    background: rgba(0, 201, 111, 0.2) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 30px rgba(0, 201, 111, 0.3);
}

/* === DARK THEME GLOBAL FIXES === */

/* Plan features dark theme */
.dark .plan-features li {
    color: rgba(248, 250, 252, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Plan CTA buttons dark theme */
.dark .plan-cta {
    color: #f8fafc;
    background: rgba(0, 201, 111, 0.12);
    border-color: rgba(0, 201, 111, 0.3);
}

.dark .plan-cta:hover {
    background: rgba(0, 201, 111, 0.2);
    border-color: var(--primary);
}

/* Game cards dark theme */
.dark .game-card {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.dark .game-name {
    color: #f8fafc;
}

/* TLD items dark theme */
.dark .tld-item {
    background: rgba(0, 201, 111, 0.1);
    border-color: rgba(0, 201, 111, 0.2);
}

.dark .tld-name {
    color: #f8fafc;
}

/* Section titles dark theme */
.dark .section-title {
    color: #f8fafc;
}

.dark .section-subtitle {
    color: rgba(248, 250, 252, 0.7);
}

/* Cassette title dark theme */
.dark .cassette-title h3 {
    color: #f8fafc;
}

.dark .cassette-title p {
    color: rgba(248, 250, 252, 0.7);
}

/* Plan name dark theme */
.dark .plan-name {
    color: #f8fafc;
}

/* Plan specs dark theme */
.dark .plan-specs {
    color: rgba(248, 250, 252, 0.6);
}

/* Plan price dark theme */
.dark .price-amount {
    color: #f8fafc;
}

/* Feature tag dark theme */
.dark .feature-tag {
    background: rgba(0, 201, 111, 0.12);
    color: rgba(248, 250, 252, 0.8);
}

/* Comparison items dark theme */
.dark .comparison-item {
    color: rgba(248, 250, 252, 0.8);
}

/* WordPress toggle dark theme */
.dark .wordpress-toggle-label {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
}

.dark .toggle-text {
    color: rgba(248, 250, 252, 0.8);
}

/* =====================================================================
   COMPREHENSIVE DARK THEME FIXES
   Ensures all text and inputs are properly visible in dark mode
   ===================================================================== */

/* === TRUST BAR DARK THEME FIX === */
.dark .floating-trust-bar {
    background: rgba(10, 15, 26, 0.98);
    border-top-color: rgba(0, 201, 111, 0.3);
}

.dark .trust-item {
    background: rgba(0, 201, 111, 0.08) !important;
    border-color: rgba(0, 201, 111, 0.25) !important;
    color: #f0f6fc !important;
}

.dark .trust-text {
    color: #f0f6fc !important;
}

.dark .trust-icon svg {
    color: #00c96f !important;
}

/* === NEWSLETTER DARK THEME FIX === */
.dark .newsletter-card {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 201, 111, 0.2);
}

.dark .newsletter-content h2 {
    color: #f0f6fc !important;
}

.dark .newsletter-content > p {
    color: #c9d1d9 !important;
}

.dark .newsletter-input-group {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: rgba(0, 201, 111, 0.3) !important;
}

.dark .newsletter-input-group input {
    color: #f0f6fc !important;
    background: transparent !important;
}

.dark .newsletter-input-group input::placeholder {
    color: rgba(248, 250, 252, 0.5) !important;
}

.dark .newsletter-privacy {
    color: #8b949e !important;
}

/* === ANNOUNCEMENT BANNER DARK THEME FIX === */
.dark .announcement-banner {
    background: rgba(0, 201, 111, 0.08);
    border-color: rgba(0, 201, 111, 0.25);
}

.dark .announcement-text {
    color: #f0f6fc !important;
}

.dark .announcement-text strong {
    color: #00c96f !important;
}

.dark .announcement-date {
    color: #8b949e !important;
}

.dark .announcement-link {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #f0f6fc !important;
}

/* === ALL INPUT FIELDS DARK THEME FIX === */
.dark input,
.dark textarea,
.dark select {
    background: rgba(15, 23, 42, 0.8) !important;
    color: #f0f6fc !important;
    border-color: rgba(0, 201, 111, 0.25) !important;
}

.dark input::placeholder,
.dark textarea::placeholder {
    color: rgba(248, 250, 252, 0.5) !important;
}

/* Domain search input fix */
.dark .domain-input {
    color: #f0f6fc !important;
    background: transparent !important;
}

.dark .domain-input::placeholder {
    color: rgba(248, 250, 252, 0.5) !important;
}

.dark .domain-search-form {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: rgba(0, 201, 111, 0.3) !important;
}

/* === SECTION HEADERS DARK THEME === */
.dark .section-title,
.dark .section-header h2,
.dark h2,
.dark h3,
.dark h4 {
    color: #f0f6fc;
}

.dark .section-subtitle,
.dark .section-header p {
    color: #c9d1d9;
}

/* === FAQ DARK THEME FIX === */
.dark .faq-item {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: rgba(0, 201, 111, 0.2) !important;
}

.dark .faq-question {
    color: #f0f6fc !important;
    background: transparent !important;
}

.dark .faq-answer {
    color: #c9d1d9 !important;
    background: transparent !important;
}

.dark .faq-answer p {
    color: #c9d1d9 !important;
}

/* === PRICING CARDS DARK THEME === */
.dark .pricing-cassette {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(0, 201, 111, 0.2);
}

.dark .cassette-header h3 {
    color: #f0f6fc !important;
}

.dark .cassette-header p {
    color: #c9d1d9 !important;
}

/* === PLAN CARDS DARK THEME === */
.dark .plan-card {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.15);
}

.dark .plan-card.featured {
    border-color: rgba(0, 201, 111, 0.35);
}

.dark .plan-name {
    color: #f8fafc !important;
}

.dark .plan-specs {
    color: rgba(248, 250, 252, 0.6) !important;
}

.dark .plan-features li {
    color: rgba(248, 250, 252, 0.8) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

/* === FOOTER DARK THEME === */
.dark footer {
    background: rgba(15, 23, 42, 0.8);
    border-top-color: rgba(0, 201, 111, 0.15);
}

.dark footer h4 {
    color: #f0f6fc !important;
}

.dark footer p,
.dark footer li,
.dark footer a {
    color: #c9d1d9 !important;
}

.dark footer a:hover {
    color: #00c96f !important;
}

/* === GAME CARDS DARK THEME === */
.dark .game-card {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
}

.dark .game-name {
    color: #f8fafc !important;
}

/* === FEATURE CARDS DARK THEME === */
.dark .feature-card {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.15);
}

.dark .feature-card h3 {
    color: #f0f6fc !important;
}

.dark .feature-card p {
    color: #c9d1d9 !important;
}

/* === STEP CARDS DARK THEME === */
.dark .step-container {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.15);
}

.dark .step-title {
    color: #f0f6fc !important;
}

.dark .step-description {
    color: #c9d1d9 !important;
}

/* === TLD ITEMS DARK THEME === */
.dark .tld-item {
    background: rgba(0, 201, 111, 0.08);
    border-color: rgba(0, 201, 111, 0.2);
}

.dark .tld-name {
    color: #f8fafc !important;
}

.dark .tld-price {
    color: #00c96f !important;
}

/* === NEWS CARDS DARK THEME === */
.dark .news-card,
.dark article {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(0, 201, 111, 0.15);
}

.dark .news-card h3,
.dark article h3 {
    color: #f0f6fc !important;
}

.dark .news-card p,
.dark article p {
    color: #c9d1d9 !important;
}

/* === HERO SECTION DARK THEME === */
.dark .hero-title {
    color: #f0f6fc !important;
}

.dark .hero-description {
    color: #c9d1d9 !important;
}

.dark .benefit-item {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 201, 111, 0.3);
    color: rgba(255, 255, 255, 0.9) !important;
}

/* === STAT ITEMS DARK THEME === */
.dark .stat-item {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 201, 111, 0.25);
}

.dark .stat-number {
    color: #00c96f !important;
}

.dark .stat-label {
    color: #8b949e !important;
}

/* === COMPARISON STRIP DARK THEME === */
.dark .pricing-comparison {
    background: rgba(0, 201, 111, 0.05);
}

.dark .comparison-item {
    color: rgba(248, 250, 252, 0.8) !important;
}

.dark .comp-check {
    color: #00c96f !important;
}
