/*
 * Nova Modern Hosting Theme
 * Premium WiseCP Theme for Hosting, Domain, Software & E-commerce
 * Version: 2.0.0 - Professional Edition with Light/Dark Mode
 */

/* ============================================
   CSS VARIABLES & DESIGN TOKENS - DARK MODE (DEFAULT)
   ============================================ */
:root,
[data-theme="dark"] {
    /* Primary Colors - Premium Purple Gradient */
    --nova-primary: #667eea;
    --nova-primary-light: #818cf8;
    --nova-primary-dark: #5a67d8;
    --nova-secondary: #764ba2;

    /* Accent Colors */
    --nova-accent: #00d9ff;
    --nova-accent-pink: #f093fb;
    --nova-accent-gold: #fbbf24;
    --nova-success: #10b981;
    --nova-warning: #f59e0b;
    --nova-danger: #ef4444;
    --nova-info: #3b82f6;

    /* Background Colors - Dark Mode */
    --nova-bg-body: #0a0a1a;
    --nova-bg-dark: #0f0f23;
    --nova-bg-darker: #050510;
    --nova-bg-card: #1a1a2e;
    --nova-bg-card-hover: #252542;
    --nova-bg-input: #12121f;
    --nova-border: rgba(255, 255, 255, 0.08);
    --nova-border-light: rgba(255, 255, 255, 0.15);

    /* Text Colors - Dark Mode */
    --nova-text-primary: #ffffff;
    --nova-text-secondary: #a0aec0;
    --nova-text-muted: #64748b;
    --nova-text-inverse: #0f0f23;

    /* Gradients */
    --nova-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --nova-gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --nova-gradient-accent: linear-gradient(135deg, #00d9ff 0%, #667eea 100%);
    --nova-gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --nova-gradient-dark: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
    --nova-gradient-card: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 35, 0.95));
    --nova-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Premium Shadows */
    --nova-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --nova-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --nova-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --nova-shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.6);
    --nova-shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
    --nova-shadow-glow-accent: 0 0 40px rgba(0, 217, 255, 0.4);
    --nova-shadow-glow-pink: 0 0 40px rgba(240, 147, 251, 0.3);
    --nova-shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.3);

    /* Border Radius - More Modern */
    --nova-radius-xs: 6px;
    --nova-radius-sm: 10px;
    --nova-radius-md: 16px;
    --nova-radius-lg: 24px;
    --nova-radius-xl: 32px;
    --nova-radius-2xl: 40px;
    --nova-radius-full: 9999px;

    /* Transitions - Smooth */
    --nova-transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --nova-transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nova-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --nova-transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Typography */
    --nova-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nova-font-heading: 'Poppins', 'Inter', sans-serif;
    --nova-font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --nova-space-xs: 0.25rem;
    --nova-space-sm: 0.5rem;
    --nova-space-md: 1rem;
    --nova-space-lg: 1.5rem;
    --nova-space-xl: 2rem;
    --nova-space-2xl: 3rem;
    --nova-space-3xl: 4rem;
    --nova-space-4xl: 6rem;

    /* Header Height */
    --nova-header-height: 80px;
}

/* ============================================
   LIGHT MODE
   ============================================ */
[data-theme="light"] {
    /* ============================================
       SILVER & DEEP BLUE PALETTE (PREMIUM)
       ============================================ */

    /* Backgrounds - Distinct & Solid (No blending) */
    --nova-bg-body: #f1f5f9;
    /* Slate 100 - Silver Grey Body */
    --nova-bg-dark: #ffffff;
    /* Pure White Content Areas */
    --nova-bg-darker: #e2e8f0;
    /* Slate 200 - Distinct Silver for Sections */
    --nova-bg-card: #ffffff;
    /* Pure White Cards */
    --nova-bg-card-hover: #f8fafc;
    /* Slight off-white hover */
    --nova-bg-input: #ffffff;

    /* Borders - Strong Metallic Blue/Grey */
    --nova-border: #94a3b8;
    /* Slate 400 - Visible strong border */
    --nova-border-light: #cbd5e1;
    /* Slate 300 */

    /* Text - Deep Blue & High Contrast */
    --nova-text-primary: #020617;
    /* Slate 950 - Deepest Blue Black */
    --nova-text-secondary: #334155;
    /* Slate 700 - Dark Blue Grey */
    --nova-text-muted: #475569;
    /* Slate 600 - Metallic Grey */
    --nova-text-inverse: #ffffff;

    /* Primary Colors - Royal Blue Override */
    --nova-primary: #2563eb;
    /* Royal Blue */
    --nova-primary-light: #3b82f6;
    --nova-primary-dark: #1d4ed8;
    --nova-secondary: #4f46e5;
    /* Indigo */

    /* Accents */
    --nova-accent: #0ea5e9;
    /* Sky Blue */

    /* Gradients - Blue & Silver */
    --nova-gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --nova-gradient-secondary: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    --nova-gradient-dark: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    --nova-gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --nova-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);
    /* Less transparent */

    /* Shadows - Deep Blue Tinted for Depth */
    --nova-shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.1);
    --nova-shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
    --nova-shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --nova-shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    --nova-shadow-glow: 0 0 30px rgba(37, 99, 235, 0.2);
    --nova-shadow-inner: inset 0 2px 4px 0 rgba(15, 23, 42, 0.06);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body.nova-theme {
    font-family: var(--nova-font-primary);
    background: var(--nova-bg-body);
    color: var(--nova-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Theme Toggle Button */
.nova-theme-toggle {
    position: relative;
    overflow: hidden;
}

.nova-theme-toggle .nova-icon-light,
.nova-theme-toggle .nova-icon-dark {
    position: absolute;
    transition: all 0.3s ease;
}

[data-theme="dark"] .nova-icon-light {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="dark"] .nova-icon-dark {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-theme="light"] .nova-icon-light {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="light"] .nova-icon-dark {
    opacity: 1;
    transform: rotate(0deg);
}

/* Light Mode Header Adjustments */
[data-theme="light"] .nova-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nova-nav-link,
[data-theme="light"] .nova-action-btn {
    color: var(--nova-text-secondary);
}

[data-theme="light"] .nova-action-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nova-action-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

/* ============================================
   GLASSMORPHISM UTILITIES
   ============================================ */
.nova-glass {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--nova-border);
}

.nova-glass-light {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   BUTTONS
   ============================================ */
.nova-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--nova-radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--nova-transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nova-btn-primary {
    background: var(--nova-gradient-primary);
    color: white;
    box-shadow: var(--nova-shadow-glow);
}

.nova-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.5);
}

.nova-btn-secondary {
    background: transparent;
    color: var(--nova-text-primary);
    border: 2px solid var(--nova-primary);
}

.nova-btn-secondary:hover {
    background: var(--nova-primary);
    color: white;
}

.nova-btn-accent {
    background: var(--nova-gradient-accent);
    color: var(--nova-bg-dark);
    font-weight: 700;
}

.nova-btn-accent:hover {
    box-shadow: var(--nova-shadow-glow-accent);
    transform: translateY(-2px);
}

/* Button Ripple Effect */
.nova-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
}

.nova-btn:active::after {
    transform: scale(2);
    opacity: 1;
    transition: 0s;
}

/* ============================================
   CARDS
   ============================================ */
.nova-card {
    background: var(--nova-bg-card);
    border-radius: var(--nova-radius-lg);
    border: 1px solid var(--nova-border);
    padding: var(--nova-space-xl);
    transition: all var(--nova-transition-normal);
}

.nova-card:hover {
    background: var(--nova-bg-card-hover);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--nova-shadow-lg);
}

.nova-card-glow:hover {
    box-shadow: var(--nova-shadow-glow);
}

/* Pricing Card */
.nova-pricing-card {
    background: var(--nova-gradient-card);
    border-radius: var(--nova-radius-lg);
    border: 1px solid var(--nova-border);
    padding: var(--nova-space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nova-pricing-card.popular {
    border-color: var(--nova-primary);
    box-shadow: var(--nova-shadow-glow);
}

.nova-pricing-card.popular::before {
    content: 'Popüler';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--nova-gradient-primary);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.nova-price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--nova-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-price-period {
    font-size: 1rem;
    color: var(--nova-text-secondary);
    font-weight: 400;
}

/* ============================================
   HERO SECTION
   ============================================ */
.nova-hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: var(--nova-gradient-dark);
    padding-top: 80px;
    box-sizing: border-box;
}

.nova-hero-slider {
    height: 100%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.nova-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.nova-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.nova-hero-title {
    font-family: var(--nova-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--nova-space-lg);
    background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--nova-text-secondary);
    margin-bottom: var(--nova-space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Decorations */
.nova-hero-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.nova-hero-decor-1 {
    width: 400px;
    height: 400px;
    background: var(--nova-primary);
    top: -100px;
    left: -100px;
}

.nova-hero-decor-2 {
    width: 300px;
    height: 300px;
    background: var(--nova-secondary);
    bottom: -50px;
    right: -50px;
    animation-delay: -3s;
}

/* Hero Slide Grid Layout */
.nova-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.nova-slide.active {
    display: grid;
}

.nova-hero-content {
    text-align: left;
    max-width: none;
    padding: 0;
}

/* Hero Badges */
.nova-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.nova-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.nova-badge-hot {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: white;
    animation: pulse 2s infinite;
}

.nova-badge-discount {
    background: var(--nova-success);
    color: white;
}

.nova-badge-purple {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: white;
}

.nova-badge-gift {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: white;
}

.nova-badge-cyan {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
}

/* Hero Stats */
.nova-hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.nova-hero-stat {
    text-align: center;
}

.nova-hero-stat .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--nova-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-hero-stat .label {
    font-size: 13px;
    color: var(--nova-text-muted);
}

/* Hero Specs */
.nova-hero-specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.nova-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-sm);
}

.nova-spec i {
    color: var(--nova-primary);
    font-size: 18px;
}

.nova-spec strong {
    font-size: 14px;
}

/* Hero TLD Prices */
.nova-hero-tld-prices {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.nova-tld-price {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-sm);
    font-size: 16px;
    font-weight: 700;
}

.nova-tld-price span {
    color: var(--nova-primary);
    margin-left: 10px;
}

/* Hero Visual Area */
.nova-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Website Mockup */
.nova-hero-mockup {
    position: relative;
}

.nova-mockup-screen {
    width: 400px;
    background: var(--nova-bg-darker);
    border: 1px solid var(--nova-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.nova-mockup-header {
    display: flex;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--nova-border);
}

.nova-mockup-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.nova-mockup-header span:nth-child(1) {
    background: #ef4444;
}

.nova-mockup-header span:nth-child(2) {
    background: #eab308;
}

.nova-mockup-header span:nth-child(3) {
    background: #22c55e;
}

.nova-mockup-content {
    padding: 20px;
}

.nova-mockup-nav {
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
}

.nova-mockup-hero {
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 12px;
    margin-bottom: 15px;
}

.nova-mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.nova-mockup-grid span {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Floating Cards */
.nova-hero-float-card {
    position: absolute;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--nova-shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}

.nova-hero-float-card i {
    color: var(--nova-success);
}

.nova-hfc-1 {
    top: 20px;
    right: -20px;
}

.nova-hfc-2 {
    top: 50%;
    left: -40px;
    animation-delay: -1s;
}

.nova-hfc-3 {
    bottom: 40px;
    right: 0;
    animation-delay: -2s;
}

/* Hero Price Card */
.nova-hero-price-card {
    margin-top: 30px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    padding: 25px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.nova-price-label {
    font-size: 13px;
    color: var(--nova-text-muted);
    display: block;
    margin-bottom: 8px;
}

.nova-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nova-old-price {
    font-size: 24px;
    color: var(--nova-text-muted);
    text-decoration: line-through;
}

.nova-new-price {
    font-size: 56px;
    font-weight: 800;
    background: var(--nova-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-price-period {
    font-size: 12px;
    color: var(--nova-text-muted);
    display: block;
    margin-top: 5px;
}

/* Server Dashboard Mockup */
.nova-server-dashboard {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 16px;
    overflow: hidden;
    width: 380px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg);
}

.nova-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--nova-border);
    font-size: 14px;
    font-weight: 600;
}

.nova-status-badge {
    color: var(--nova-success);
    font-size: 12px;
}

.nova-status-badge i {
    font-size: 8px;
    margin-right: 5px;
}

.nova-dashboard-metrics {
    padding: 20px;
}

.nova-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.nova-metric .label {
    width: 40px;
    font-size: 12px;
    color: var(--nova-text-muted);
}

.nova-metric .bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.nova-metric .fill {
    height: 100%;
    background: var(--nova-primary);
    border-radius: 4px;
    transition: width 1s ease;
}

.nova-metric .fill.ram {
    background: var(--nova-success);
}

.nova-metric .fill.disk {
    background: var(--nova-accent);
}

.nova-metric .val {
    width: 35px;
    text-align: right;
    font-size: 12px;
    font-weight: 600;
}

/* Floating OS Icons */
.nova-floating-os {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.nova-floating-os span {
    width: 50px;
    height: 50px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--nova-text-muted);
    animation: floatBadge 3s ease-in-out infinite;
}

.nova-floating-os span:nth-child(2) {
    animation-delay: -1s;
}

.nova-floating-os span:nth-child(3) {
    animation-delay: -2s;
}

/* Domain Globe Visual */
.nova-domain-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nova-domain-globe {
    font-size: 120px;
    color: var(--nova-primary);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.nova-domain-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nova-domain-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
}

.ring-2 {
    width: 280px;
    height: 280px;
    animation-delay: -1s;
}

.ring-3 {
    width: 360px;
    height: 360px;
    animation-delay: -2s;
}

@keyframes ringPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Domain Cards */
.nova-domain-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.nova-domain-card {
    position: absolute;
    padding: 10px 20px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--nova-shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}

.dc-1 {
    top: 10%;
    right: 0;
}

.dc-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: -1s;
}

.dc-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: -2s;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .nova-slide {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 30px 60px;
    }

    .nova-hero-content {
        text-align: center;
    }

    .nova-hero-badges {
        justify-content: center;
    }

    .nova-hero-stats {
        justify-content: center;
    }

    .nova-hero-specs {
        justify-content: center;
    }

    .nova-hero-tld-prices {
        justify-content: center;
    }

    .nova-hero-cta {
        justify-content: center;
    }

    .nova-hero-visual {
        display: none;
    }
}


/* ============================================
   DOMAIN SEARCH
   ============================================ */
.nova-domain-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: var(--nova-bg-darker);
    position: relative;
    box-sizing: border-box;
}

.nova-domain-search {
    background: var(--nova-bg-card);
    border-radius: var(--nova-radius-xl);
    padding: 50px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid var(--nova-border);
    box-shadow: var(--nova-shadow-xl);
}

.nova-domain-input-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: var(--nova-space-md);
}

.nova-domain-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    background: var(--nova-bg-darker);
    border: 2px solid var(--nova-border);
    border-radius: var(--nova-radius-md);
    color: var(--nova-text-primary);
    transition: all var(--nova-transition-normal);
}

.nova-domain-input:focus {
    outline: none;
    border-color: var(--nova-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.nova-domain-input::placeholder {
    color: var(--nova-text-muted);
}

.nova-tld-slider {
    width: 100%;
    overflow: hidden;
    margin: 25px 0;
    position: relative;
}

.nova-tld-slider::before,
.nova-tld-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.nova-tld-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--nova-bg-card), transparent);
}

.nova-tld-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--nova-bg-card), transparent);
}

.nova-tld-chips {
    display: flex;
    gap: 15px;
    animation: tldScroll 25s linear infinite;
    width: max-content;
}

.nova-tld-chips:hover {
    animation-play-state: paused;
}

@keyframes tldScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nova-tld-chip {
    padding: 12px 24px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: var(--nova-radius-md);
    color: var(--nova-text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--nova-transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.nova-tld-chip small {
    color: var(--nova-primary);
    margin-left: 8px;
    font-weight: 700;
}

.nova-tld-chip:hover {
    background: var(--nova-primary);
    color: white;
    border-color: var(--nova-primary);
    transform: scale(1.05);
}

.nova-tld-chip:hover small {
    color: white;
}

.nova-tld-chip.popular {
    background: var(--nova-gradient-primary);
    color: white;
    border-color: transparent;
}

.nova-tld-chip.popular small {
    color: rgba(255, 255, 255, 0.9);
}

/* Domain Mode Toggle */
.nova-domain-mode-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.nova-mode-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-sm);
    color: var(--nova-text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nova-mode-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--nova-primary);
}

.nova-mode-btn.active {
    background: var(--nova-gradient-primary);
    color: white;
    border-color: transparent;
}

/* AI Mode Special Styling */
.nova-mode-btn[data-mode="ai"] {
    position: relative;
    overflow: hidden;
}

.nova-mode-btn[data-mode="ai"] i {
    color: #a855f7;
    transition: all 0.3s ease;
}

.nova-mode-btn[data-mode="ai"]:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
    border-color: #a855f7;
}

.nova-mode-btn[data-mode="ai"]:hover i {
    animation: sparkle 0.6s ease infinite;
}

.nova-mode-btn[data-mode="ai"].active {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5), 0 0 50px rgba(236, 72, 153, 0.3);
    animation: aiPulse 2s ease-in-out infinite;
}

.nova-mode-btn[data-mode="ai"].active i {
    color: white;
    animation: sparkle 1s ease infinite;
}

.nova-mode-btn[data-mode="ai"].active::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-10deg) scale(1.1);
    }

    50% {
        transform: rotate(10deg) scale(1.2);
    }

    75% {
        transform: rotate(-5deg) scale(1.1);
    }
}

@keyframes aiPulse {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(168, 85, 247, 0.5), 0 0 50px rgba(236, 72, 153, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(168, 85, 247, 0.7), 0 0 70px rgba(236, 72, 153, 0.5);
    }
}

/* AI Form */
.nova-ai-form {
    margin-bottom: 30px;
    position: relative;
}

.nova-ai-input-wrap {
    display: flex;
    gap: 10px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(236, 72, 153, 0.05));
    border: 2px solid transparent;
    border-radius: var(--nova-radius-lg);
    padding: 8px;
    align-items: center;
    background-clip: padding-box;
    position: relative;
}

.nova-ai-input-wrap::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #a855f7, #ec4899, #a855f7);
    border-radius: var(--nova-radius-lg);
    z-index: -1;
    animation: aiGradient 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes aiGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.nova-ai-input-wrap .nova-input-icon i {
    color: #a855f7;
    font-size: 20px;
}

.nova-ai-form .nova-btn-primary {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border: none;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.nova-ai-form .nova-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.6);
}

.nova-ai-form .nova-btn-primary i {
    animation: sparkle 2s ease infinite;
}

.nova-ai-hint {
    text-align: center;
    font-size: 13px;
    color: var(--nova-text-muted);
    margin-top: 15px;
}

.nova-ai-hint i {
    color: #a855f7;
    margin-right: 5px;
}

/* AI Results */
.nova-ai-results {
    margin-top: 30px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    padding: 25px;
}

.nova-ai-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nova-ai-results-header h4 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nova-ai-results-header h4 i {
    color: var(--nova-accent);
}

.nova-ai-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nova-border);
    border-radius: 50%;
    color: var(--nova-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nova-ai-close:hover {
    background: var(--nova-danger);
    color: white;
    border-color: var(--nova-danger);
}

/* AI Loading */
.nova-ai-loading {
    text-align: center;
    padding: 40px;
}

.nova-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--nova-border);
    border-top-color: var(--nova-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

/* AI Suggestions Grid */
.nova-ai-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.nova-ai-domain-card {
    background: var(--nova-bg-darker);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-md);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.nova-ai-domain-card:hover {
    border-color: var(--nova-primary);
    transform: translateY(-3px);
    box-shadow: var(--nova-shadow-lg);
}

.nova-ai-domain-card .domain-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--nova-text-primary);
    margin-bottom: 10px;
    word-break: break-all;
}

.nova-ai-domain-card .domain-status {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.nova-ai-domain-card .status-available {
    background: rgba(16, 185, 129, 0.15);
    color: var(--nova-success);
}

.nova-ai-domain-card .status-taken {
    background: rgba(239, 68, 68, 0.15);
    color: var(--nova-danger);
}

.nova-ai-domain-card .domain-action {
    padding: 10px 20px;
    background: var(--nova-gradient-primary);
    color: white;
    border: none;
    border-radius: var(--nova-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nova-ai-domain-card .domain-action:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}



/* ============================================
   FEATURES SECTION
   ============================================ */
.nova-features {
    padding: var(--nova-space-3xl) 0;
    background: var(--nova-bg-darker);
}

.nova-section-title {
    font-family: var(--nova-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--nova-space-sm);
}

.nova-section-subtitle {
    text-align: center;
    color: var(--nova-text-secondary);
    margin-bottom: var(--nova-space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nova-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--nova-space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nova-feature-card {
    background: var(--nova-bg-card);
    border-radius: var(--nova-radius-lg);
    padding: var(--nova-space-xl);
    border: 1px solid var(--nova-border);
    text-align: center;
    transition: all var(--nova-transition-normal);
}

.nova-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--nova-primary);
    box-shadow: var(--nova-shadow-glow);
}

.nova-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--nova-gradient-primary);
    border-radius: var(--nova-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--nova-space-lg);
    font-size: 28px;
    color: white;
}

.nova-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--nova-space-sm);
}

.nova-feature-desc {
    color: var(--nova-text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   WHY CHOOSE US - PREMIUM
   ============================================ */
.nova-why-us {
    padding: 100px 0;
    background: var(--nova-bg-darker);
    position: relative;
}

.nova-why-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.nova-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--nova-primary);
    margin-bottom: 15px;
}

.nova-why-text .nova-section-title,
.nova-why-text .nova-section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.nova-why-stats {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.nova-stat-box {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    padding: 25px 30px;
    text-align: center;
    min-width: 120px;
}

.nova-stat-box .nova-stat-number {
    font-size: 28px;
    font-weight: 800;
    display: block;
}

.nova-stat-box .nova-stat-label {
    font-size: 12px;
    color: var(--nova-text-muted);
    display: block;
    margin-top: 5px;
}

/* Why Grid - Slider */
.nova-why-slider-container {
    overflow: hidden;
    margin-bottom: 60px;
    position: relative;
}

.nova-why-slider-container::before,
.nova-why-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.nova-why-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--nova-bg-darker), transparent);
}

.nova-why-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--nova-bg-darker), transparent);
}

.nova-why-grid {
    display: flex;
    gap: 30px;
    animation: whyScroll 30s linear infinite;
    width: max-content;
}

.nova-why-grid:hover {
    animation-play-state: paused;
}

@keyframes whyScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Why Card */
.nova-why-card {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-xl);
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 350px;
    flex-shrink: 0;
    text-align: center;
}

.nova-why-card:hover {
    transform: translateY(-8px);
    border-color: var(--nova-primary);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.nova-why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--nova-text-primary);
    text-align: center;
}

.nova-why-card p {
    color: var(--nova-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Why Icon */
.nova-why-icon {
    width: 70px;
    height: 70px;
    background: var(--nova-gradient-primary);
    border-radius: var(--nova-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 25px auto;
    position: relative;
}

.nova-why-icon.accent {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.nova-why-icon.pink {
    background: linear-gradient(135deg, #ec4899, #a855f7);
}

.nova-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
}

/* Progress Bar */
.nova-why-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.nova-bar-fill {
    height: 100%;
    background: var(--nova-gradient-primary);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Why Badge */
.nova-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--nova-primary);
}

.nova-why-badge.accent {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.nova-why-badge.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

/* Support Icons */
.nova-support-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.nova-support-icons span {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nova-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--nova-text-muted);
    transition: all 0.3s ease;
}

.nova-support-icons span:hover {
    background: var(--nova-primary);
    color: white;
    border-color: var(--nova-primary);
}

/* Tech Stack */
.nova-tech-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.nova-tech-badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nova-border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--nova-text-secondary);
}

/* Security Features */
.nova-security-features,
.nova-backup-visual {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.nova-security-features span,
.nova-backup-visual span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--nova-text-secondary);
}

.nova-security-features span i,
.nova-backup-visual span i {
    color: var(--nova-success);
}

/* Price Feature */
.nova-price-feature {
    margin-bottom: 20px;
}

.nova-big-price {
    font-size: 36px;
    font-weight: 800;
    background: var(--nova-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-big-price small {
    font-size: 14px;
    -webkit-text-fill-color: var(--nova-text-muted);
}

/* Trust Logos */
.nova-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    flex-wrap: wrap;
}

.nova-trust-label {
    font-size: 14px;
    color: var(--nova-text-muted);
    font-weight: 600;
}

.nova-trust-items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nova-trust-items span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--nova-text-secondary);
}

.nova-trust-items span i {
    font-size: 24px;
    color: var(--nova-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .nova-why-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nova-why-text .nova-section-title,
    .nova-why-text .nova-section-subtitle {
        text-align: center;
    }

    .nova-why-stats {
        justify-content: center;
    }

    .nova-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nova-why-grid {
        grid-template-columns: 1fr;
    }

    .nova-why-stats {
        flex-wrap: wrap;
    }
}

/* ============================================
   STATS COUNTER
   ============================================ */
.nova-stats {
    display: flex;
    justify-content: center;
    gap: var(--nova-space-3xl);
    flex-wrap: wrap;
    padding: var(--nova-space-2xl) 0;
}

.nova-stat-item {
    text-align: center;
}

.nova-stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--nova-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-stat-label {
    color: var(--nova-text-secondary);
    font-size: 0.95rem;
    margin-top: var(--nova-space-xs);
}

/* ============================================
   HEADER
   ============================================ */
.nova-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--nova-transition-normal);
}

.nova-header.scrolled {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--nova-border);
    padding: 10px 0;
}

.nova-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nova-logo img {
    height: 45px;
    width: auto;
}

.nova-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nova-nav-link {
    color: var(--nova-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--nova-transition-fast);
    position: relative;
}

.nova-nav-link:hover {
    color: var(--nova-text-primary);
}

.nova-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nova-gradient-primary);
    transition: width var(--nova-transition-normal);
}

.nova-nav-link:hover::after {
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.nova-footer {
    background: var(--nova-bg-darker);
    padding: var(--nova-space-3xl) 0 var(--nova-space-xl);
    border-top: 1px solid var(--nova-border);
}

.nova-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--nova-space-2xl);
    max-width: 1200px;
    margin: 0 auto var(--nova-space-2xl);
    padding: 0 20px;
}

.nova-footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--nova-space-lg);
    color: var(--nova-text-primary);
}

.nova-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nova-footer-links li {
    margin-bottom: var(--nova-space-sm);
}

.nova-footer-links a {
    color: var(--nova-text-secondary);
    text-decoration: none;
    transition: color var(--nova-transition-fast);
}

.nova-footer-links a:hover {
    color: var(--nova-primary);
}

.nova-footer-bottom {
    text-align: center;
    padding-top: var(--nova-space-xl);
    border-top: 1px solid var(--nova-border);
    color: var(--nova-text-muted);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.nova-animate-float {
    animation: float 6s ease-in-out infinite;
}

.nova-animate-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

.nova-animate-slide-up {
    animation: slide-up 0.6s ease-out;
}

.nova-animate-fade-in {
    animation: fade-in 0.5s ease-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nova-hero-title {
        font-size: 2rem;
    }

    .nova-domain-input-wrap {
        flex-direction: column;
    }

    .nova-nav {
        display: none;
    }

    .nova-stats {
        gap: var(--nova-space-xl);
    }

    .nova-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .nova-card,
    .nova-pricing-card {
        padding: var(--nova-space-lg);
    }

    .nova-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.nova-text-gradient {
    background: var(--nova-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-text-center {
    text-align: center;
}

.nova-text-left {
    text-align: left;
}

.nova-text-right {
    text-align: right;
}

.nova-mt-1 {
    margin-top: var(--nova-space-sm);
}

.nova-mt-2 {
    margin-top: var(--nova-space-md);
}

.nova-mt-3 {
    margin-top: var(--nova-space-lg);
}

.nova-mt-4 {
    margin-top: var(--nova-space-xl);
}

.nova-mb-1 {
    margin-bottom: var(--nova-space-sm);
}

.nova-mb-2 {
    margin-bottom: var(--nova-space-md);
}

.nova-mb-3 {
    margin-bottom: var(--nova-space-lg);
}

.nova-mb-4 {
    margin-bottom: var(--nova-space-xl);
}

.nova-py-1 {
    padding-top: var(--nova-space-sm);
    padding-bottom: var(--nova-space-sm);
}

.nova-py-2 {
    padding-top: var(--nova-space-md);
    padding-bottom: var(--nova-space-md);
}

.nova-py-3 {
    padding-top: var(--nova-space-lg);
    padding-bottom: var(--nova-space-lg);
}

.nova-py-4 {
    padding-top: var(--nova-space-xl);
    padding-bottom: var(--nova-space-xl);
}

.nova-hidden {
    display: none;
}

.nova-visible {
    display: block;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.nova-testimonials {
    padding: 100px 0;
    background: var(--nova-bg-darker);
}

.nova-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.nova-testimonial-card {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
}

.nova-testimonial-card:hover {
    border-color: var(--nova-primary);
    transform: translateY(-5px);
}

.nova-testimonial-stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

.nova-testimonial-card p {
    color: var(--nova-text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.nova-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nova-testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--nova-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.nova-testimonial-author h4 {
    color: var(--nova-text-primary);
    font-size: 15px;
    margin: 0;
}

.nova-testimonial-author span {
    color: var(--nova-text-muted);
    font-size: 13px;
}

/* ============================================
   PACKAGES SHOWCASE
   ============================================ */
.nova-packages-showcase {
    padding: 100px 0;
    background: var(--nova-bg-dark);
}

.nova-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.nova-package-card {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.nova-package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nova-shadow-lg);
}

.nova-package-card.popular {
    border-color: var(--nova-primary);
    box-shadow: var(--nova-shadow-glow);
}

.nova-package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nova-gradient-primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.nova-package-header {
    margin-bottom: 25px;
}

.nova-package-name {
    display: block;
    color: var(--nova-text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nova-package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.nova-package-price .currency {
    font-size: 24px;
    color: var(--nova-text-muted);
}

.nova-package-price .amount {
    font-size: 48px;
    font-weight: 800;
    background: var(--nova-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-package-price .period {
    color: var(--nova-text-muted);
    font-size: 14px;
}

.nova-package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.nova-package-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--nova-border);
    color: var(--nova-text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nova-package-card li:last-child {
    border-bottom: none;
}

.nova-package-card li i {
    color: var(--nova-success);
    width: 16px;
}

.nova-packages-more {
    text-align: center;
    margin-top: 40px;
}

.nova-link-arrow {
    color: var(--nova-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.nova-link-arrow:hover {
    gap: 15px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.nova-cta-section {
    padding: 80px 0;
}

.nova-cta-box {
    background: var(--nova-gradient-primary);
    border-radius: var(--nova-radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nova-cta-content {
    position: relative;
    z-index: 2;
}

.nova-cta-box h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.nova-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.nova-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.nova-cta-box .nova-btn-secondary {
    border-color: white;
    color: white;
}

.nova-cta-box .nova-btn-secondary:hover {
    background: white;
    color: var(--nova-primary);
}

/* ============================================
   PARTNERS
   ============================================ */
.nova-partners {
    padding: 60px 0 80px;
    background: var(--nova-bg-darker);
}

.nova-partners-title {
    text-align: center;
    color: var(--nova-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.nova-partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.nova-partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--nova-text-muted);
    transition: all 0.3s ease;
}

.nova-partner-item i {
    font-size: 36px;
}

.nova-partner-item span {
    font-size: 12px;
}

.nova-partner-item:hover {
    color: var(--nova-primary);
    transform: translateY(-5px);
}

/* ============================================
   SERVER LOCATIONS
   ============================================ */
.nova-locations {
    padding: 100px 0;
    background: var(--nova-bg-dark);
}

.nova-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.nova-location-card {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nova-location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--nova-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nova-location-card:hover::before {
    transform: scaleX(1);
}

.nova-location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nova-shadow-lg);
}

.nova-location-icon {
    width: 60px;
    height: 60px;
    background: var(--nova-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

.nova-location-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--nova-text-primary);
}

.nova-location-ping {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--nova-success);
    font-size: 14px;
    margin-right: 10px;
}

.nova-location-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.nova-location-status.online {
    background: rgba(16, 185, 129, 0.15);
    color: var(--nova-success);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.nova-comparison {
    padding: 100px 0;
    background: var(--nova-bg-darker);
}

.nova-comparison-table {
    max-width: 800px;
    margin: 50px auto 0;
    background: var(--nova-bg-card);
    border-radius: var(--nova-radius-lg);
    overflow: hidden;
    border: 1px solid var(--nova-border);
}

.nova-comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--nova-gradient-primary);
    padding: 20px;
    font-weight: 600;
    color: white;
}

.nova-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 18px 20px;
    border-bottom: 1px solid var(--nova-border);
    transition: background 0.2s ease;
}

.nova-comparison-row:last-child {
    border-bottom: none;
}

.nova-comparison-row:hover {
    background: rgba(102, 126, 234, 0.05);
}

.nova-col-feature {
    color: var(--nova-text-primary);
    font-weight: 500;
}

.nova-col-us,
.nova-col-others {
    text-align: center;
}

.nova-col-us i {
    color: var(--nova-success);
    font-size: 20px;
}

.nova-col-others i {
    color: var(--nova-danger);
    font-size: 20px;
}

.nova-col-others i.partial {
    color: var(--nova-warning);
}

/* ============================================
   GUARANTEES
   ============================================ */
.nova-guarantees {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.nova-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.nova-guarantee-item {
    text-align: center;
    padding: 30px 20px;
}

.nova-guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--nova-bg-card);
    border: 2px solid var(--nova-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--nova-primary);
    transition: all 0.3s ease;
}

.nova-guarantee-item:hover .nova-guarantee-icon {
    background: var(--nova-gradient-primary);
    color: white;
    transform: scale(1.1);
}

.nova-guarantee-item h4 {
    font-size: 18px;
    color: var(--nova-text-primary);
    margin-bottom: 8px;
}

.nova-guarantee-item p {
    color: var(--nova-text-secondary);
    font-size: 14px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.nova-faq {
    padding: 100px 0;
    background: var(--nova-bg-dark);
}

.nova-faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
    display: grid;
    gap: 15px;
}

.nova-faq-item {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.nova-faq-item.active {
    border-color: var(--nova-primary);
}

.nova-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--nova-text-primary);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.nova-faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.nova-faq-question i {
    font-size: 14px;
    color: var(--nova-primary);
    transition: transform 0.3s ease;
}

.nova-faq-item.active .nova-faq-question i {
    transform: rotate(180deg);
}

.nova-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.nova-faq-item.active .nova-faq-answer {
    max-height: 200px;
}

.nova-faq-answer p {
    padding: 0 25px 20px;
    color: var(--nova-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Light Mode Adjustments for New Sections */
[data-theme="light"] .nova-location-card,
[data-theme="light"] .nova-comparison-table,
[data-theme="light"] .nova-faq-item {
    box-shadow: var(--nova-shadow-sm);
}

[data-theme="light"] .nova-guarantee-icon {
    background: white;
}

/* ============================================
   PROMO SLIDER
   ============================================ */
.nova-promo-slider {
    padding: 60px 0;
    background: var(--nova-bg-darker);
}

.nova-promo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--nova-radius-xl);
}

.nova-promo-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nova-promo-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 50px 50px 50px 80px;
    background: var(--nova-gradient-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-xl);
}

.nova-promo-content h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--nova-text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.nova-promo-content p {
    color: var(--nova-text-secondary);
    margin-bottom: 25px;
    font-size: 16px;
}

.nova-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--nova-gradient-primary);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.nova-promo-badge.nova-badge-accent {
    background: var(--nova-gradient-accent);
    color: var(--nova-bg-dark);
}

.nova-promo-badge.nova-badge-pink {
    background: var(--nova-gradient-secondary);
}

.nova-promo-visual {
    text-align: center;
}

.nova-promo-icon-box {
    width: 120px;
    height: 120px;
    background: var(--nova-gradient-primary);
    border-radius: var(--nova-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: white;
    box-shadow: var(--nova-shadow-glow);
    animation: float 4s ease-in-out infinite;
}

.nova-promo-icon-box.accent {
    background: var(--nova-gradient-accent);
}

.nova-promo-icon-box.pink {
    background: var(--nova-gradient-secondary);
}

.nova-promo-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.nova-promo-price .old {
    font-size: 20px;
    color: var(--nova-text-muted);
    text-decoration: line-through;
}

.nova-promo-price .new {
    font-size: 48px;
    font-weight: 800;
    background: var(--nova-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-promo-price .period {
    font-size: 16px;
    color: var(--nova-text-secondary);
}

.nova-promo-domains {
    font-size: 18px;
    color: var(--nova-text-secondary);
    font-weight: 600;
    letter-spacing: 2px;
}

.nova-promo-specs {
    font-size: 14px;
    color: var(--nova-accent);
    font-weight: 600;
    background: rgba(0, 217, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
}

.nova-promo-features {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.nova-promo-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--nova-success);
    font-size: 14px;
    font-weight: 500;
}

.nova-promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nova-text-primary);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.nova-promo-nav:hover {
    background: var(--nova-primary);
    color: white;
    border-color: var(--nova-primary);
}

.nova-promo-prev {
    left: 20px;
}

.nova-promo-next {
    right: 20px;
}

.nova-promo-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.nova-promo-dots span {
    width: 12px;
    height: 12px;
    background: var(--nova-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nova-promo-dots span.active {
    background: var(--nova-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .nova-promo-slide {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }

    .nova-promo-nav {
        display: none;
    }

    .nova-promo-icon-box {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .nova-promo-price .new {
        font-size: 36px;
    }
}

/* Light Mode Promo Slider */
[data-theme="light"] .nova-promo-slide {
    box-shadow: var(--nova-shadow-md);
}

/* ============================================
   PREMIUM PROMO ENHANCEMENTS
   ============================================ */
.nova-premium-promo {
    padding: 80px 0;
    background: var(--nova-bg-dark);
    position: relative;
}

.nova-promo-header {
    text-align: center;
    margin-bottom: 50px;
}

.nova-promo-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.nova-promo-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.nova-promo-decor-1 {
    width: 300px;
    height: 300px;
    background: var(--nova-primary);
    top: -100px;
    left: -100px;
}

.nova-promo-decor-2 {
    width: 250px;
    height: 250px;
    background: var(--nova-secondary);
    bottom: -80px;
    right: -80px;
}

.nova-promo-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
}

.nova-promo-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.nova-badge-hot {
    background: linear-gradient(135deg, #f97316, #ef4444) !important;
    animation: shimmer 3s infinite;
}

.nova-badge-discount {
    background: var(--nova-success) !important;
}

.nova-badge-free {
    background: var(--nova-info) !important;
}

.nova-badge-gift {
    background: linear-gradient(135deg, #a855f7, #6366f1) !important;
}

.nova-promo-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.nova-promo-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
}

.nova-promo-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.nova-promo-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--nova-text-secondary);
}

.nova-promo-highlight i {
    color: var(--nova-success);
    font-size: 16px;
}

.nova-promo-tlds {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.nova-tld-item {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--nova-text-primary);
}

.nova-tld-item span {
    color: var(--nova-primary);
    margin-left: 8px;
}

.nova-promo-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.nova-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-sm);
}

.nova-spec-item i {
    font-size: 24px;
    color: var(--nova-primary);
}

.nova-spec-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--nova-text-primary);
}

.nova-promo-trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.nova-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--nova-text-secondary);
}

.nova-trust-item i {
    width: 36px;
    height: 36px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nova-primary);
}

.nova-promo-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nova-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.nova-btn-ghost {
    background: transparent;
    border: none;
    color: var(--nova-text-secondary);
    padding: 16px 24px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nova-btn-ghost:hover {
    color: var(--nova-primary);
}

.nova-btn-ghost i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.nova-btn-ghost:hover i {
    transform: translateX(5px);
}

.nova-promo-counter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 14px;
    color: var(--nova-text-muted);
    font-weight: 500;
}

.nova-promo-counter span:first-child {
    color: var(--nova-primary);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .nova-promo-highlights {
        grid-template-columns: 1fr;
    }

    .nova-promo-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nova-promo-trust {
        flex-direction: column;
    }

    .nova-promo-counter {
        display: none;
    }
}

/* ============================================
   ULTRA PREMIUM SLIDER ELEMENTS
   ============================================ */

/* Background Effects */
.nova-slide-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Badges */
.nova-badge-animated {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: pulse 2s infinite;
}

.nova-badge-percent {
    background: var(--nova-success);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
}

/* Features List */
.nova-promo-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.nova-pf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--nova-text-secondary);
}

.nova-pf-item i {
    color: var(--nova-accent);
    font-size: 16px;
}

/* Countdown Timer */
.nova-promo-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 25px 0;
}

.nova-cd-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-sm);
    padding: 12px 16px;
    text-align: center;
    min-width: 60px;
}

.nova-cd-item span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--nova-primary);
    line-height: 1;
}

.nova-cd-sep {
    font-size: 24px;
    font-weight: 700;
    color: var(--nova-primary);
}

/* CTA Group */
.nova-promo-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nova-btn-glow {
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.nova-btn-outline {
    background: transparent;
    border: 2px solid var(--nova-border);
    color: var(--nova-text-primary);
    padding: 14px 28px;
    border-radius: var(--nova-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nova-btn-outline:hover {
    border-color: var(--nova-primary);
    color: var(--nova-primary);
}

/* 3D Visual Area */
.nova-promo-visual-3d {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

/* Server Mockup */
.nova-server-mockup {
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transform-style: preserve-3d;
}

.nova-server-screen {
    width: 280px;
    background: var(--nova-bg-darker);
    border: 1px solid var(--nova-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(102, 126, 234, 0.1);
}

.nova-screen-dots {
    display: flex;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--nova-border);
}

.nova-screen-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.nova-screen-dots span:nth-child(1) {
    background: #ef4444;
}

.nova-screen-dots span:nth-child(2) {
    background: #eab308;
}

.nova-screen-dots span:nth-child(3) {
    background: #22c55e;
}

.nova-screen-code {
    padding: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: var(--nova-text-muted);
}

.nova-screen-code .indent {
    padding-left: 20px;
}

.nova-screen-code .comment {
    color: var(--nova-success);
}

/* Floating Badges */
.nova-float-badge {
    position: absolute;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--nova-text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--nova-shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}

.nova-float-badge i {
    color: var(--nova-success);
}

.fb1 {
    top: -10px;
    right: -40px;
    animation-delay: 0s;
}

.fb2 {
    top: 50%;
    right: -60px;
    animation-delay: -1s;
}

.fb3 {
    bottom: 20px;
    right: -30px;
    animation-delay: -2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* 3D Price Card */
.nova-price-card-3d {
    margin-top: 25px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-md);
    padding: 20px 30px;
    text-align: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nova-price-card-3d .old-price {
    display: block;
    font-size: 18px;
    color: var(--nova-text-muted);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.nova-price-card-3d .new-price {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: var(--nova-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.nova-price-card-3d .new-price small {
    font-size: 18px;
    font-weight: 500;
}

.nova-price-card-3d .save-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50px;
    color: var(--nova-success);
    font-size: 13px;
    font-weight: 600;
}

/* Badge Color Variants */
.nova-badge-cyan {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nova-badge-purple {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nova-badge-green {
    background: linear-gradient(135deg, #10b981, #22c55e);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nova-badge-free {
    background: rgba(16, 185, 129, 0.15);
    color: var(--nova-success);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Promo Specs Row */
.nova-promo-specs-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.nova-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-md);
    min-width: 80px;
}

.nova-spec-item i {
    color: var(--nova-primary);
    font-size: 20px;
}

.nova-spec-item strong {
    font-size: 16px;
    color: var(--nova-text-primary);
}

.nova-spec-item span {
    font-size: 11px;
    color: var(--nova-text-muted);
}

/* Domain Globe Visual */
.nova-globe-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.nova-globe-icon {
    font-size: 100px;
    color: var(--nova-primary);
    animation: spin 20s linear infinite;
}

.nova-globe-ring {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-out infinite;
}

.ring1 {
    width: 160px;
    height: 160px;
}

.ring2 {
    width: 220px;
    height: 220px;
    animation-delay: -1.5s;
}

/* TLD Cards in Promo */
.nova-tld-cards {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nova-tld-card {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-md);
    padding: 15px 25px;
    text-align: center;
    animation: floatBadge 3s ease-in-out infinite;
}

.nova-tld-card span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--nova-text-primary);
}

.nova-tld-card small {
    color: var(--nova-primary);
    font-size: 14px;
    font-weight: 600;
}

.tld1 {
    animation-delay: 0s;
}

.tld2 {
    animation-delay: -0.5s;
}

.tld3 {
    animation-delay: -1s;
}

.tld4 {
    animation-delay: -1.5s;
}

/* VPS Dashboard Card */
.nova-dashboard-card {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 16px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.nova-dash-header {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--nova-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.status-online {
    margin-left: auto;
    color: var(--nova-success);
    font-size: 12px;
}

.status-online i {
    font-size: 8px;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

.nova-dash-body {
    padding: 20px;
}

.nova-meter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
}

.nova-meter .bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.nova-meter .fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.cpu-fill {
    width: 25%;
    background: var(--nova-primary);
}

.ram-fill {
    width: 40%;
    background: var(--nova-success);
}

.disk-fill {
    width: 15%;
    background: var(--nova-accent);
}

/* OS Icons */
.nova-os-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.nova-os-icons span {
    width: 50px;
    height: 50px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--nova-text-muted);
    animation: floatBadge 3s ease-in-out infinite;
}

.nova-os-icons span:nth-child(2) {
    animation-delay: -1s;
}

.nova-os-icons span:nth-child(3) {
    animation-delay: -2s;
}

/* Migration Steps */
.nova-migrate-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.nova-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--nova-text-secondary);
}

.nova-step span {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nova-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--nova-text-primary);
}

.nova-step.done span {
    background: var(--nova-success);
    color: white;
    border-color: var(--nova-success);
}

.nova-step-arrow {
    color: var(--nova-text-muted);
    font-size: 12px;
}

/* Trust Row */
.nova-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.nova-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--nova-text-secondary);
}

.nova-trust-item i {
    color: var(--nova-success);
}

/* Migration Visual */
.nova-migrate-visual {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nova-migrate-server {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 16px;
}

.nova-migrate-server i {
    font-size: 40px;
}

.nova-migrate-server span {
    font-size: 12px;
    color: var(--nova-text-muted);
}

.nova-migrate-server.old i {
    color: var(--nova-text-muted);
}

.nova-migrate-server.new i {
    color: var(--nova-success);
}

.nova-migrate-server.new {
    border-color: rgba(16, 185, 129, 0.3);
}

.nova-migrate-dots {
    display: flex;
    gap: 8px;
}

.nova-migrate-dots span {
    width: 10px;
    height: 10px;
    background: var(--nova-primary);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.nova-migrate-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.nova-migrate-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .nova-promo-visual-3d {
        display: none;
    }

    .nova-promo-features-list {
        grid-template-columns: 1fr;
    }

    .nova-promo-countdown {
        justify-content: center;
    }

    .nova-promo-specs-row {
        justify-content: center;
    }

    .nova-migrate-steps {
        justify-content: center;
    }

    .nova-trust-row {
        justify-content: center;
    }
}


/* ============================================
   PREMIUM VISUAL EFFECTS
   ============================================ */

/* Premium Background Container */
.nova-premium-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Animated Mesh Gradient */
.nova-mesh-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(0, 217, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 60% 60%, rgba(240, 147, 251, 0.08) 0%, transparent 30%);
    animation: meshRotate 30s linear infinite;
}

@keyframes meshRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Floating Particles */
.nova-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 20s infinite ease-in-out;
}

.nova-particle-1 {
    width: 4px;
    height: 4px;
    background: var(--nova-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.nova-particle-2 {
    width: 6px;
    height: 6px;
    background: var(--nova-accent);
    top: 20%;
    left: 80%;
    animation-delay: -4s;
}

.nova-particle-3 {
    width: 3px;
    height: 3px;
    background: var(--nova-accent-pink);
    top: 60%;
    left: 15%;
    animation-delay: -8s;
}

.nova-particle-4 {
    width: 5px;
    height: 5px;
    background: var(--nova-primary);
    top: 70%;
    left: 70%;
    animation-delay: -12s;
}

.nova-particle-5 {
    width: 4px;
    height: 4px;
    background: var(--nova-secondary);
    top: 40%;
    left: 50%;
    animation-delay: -16s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(100px, -50px) scale(1.5);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50px, 100px) scale(1);
        opacity: 0.4;
    }

    75% {
        transform: translate(50px, 50px) scale(1.2);
        opacity: 0.7;
    }
}

/* Glow Orbs */
.nova-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbPulse 8s infinite ease-in-out;
}

.nova-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--nova-primary);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.nova-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--nova-secondary);
    bottom: 10%;
    left: -5%;
    animation-delay: -3s;
}

.nova-orb-3 {
    width: 250px;
    height: 250px;
    background: var(--nova-accent);
    top: 50%;
    left: 50%;
    animation-delay: -6s;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* Premium Hero */
.nova-premium-hero {
    position: relative;
    z-index: 1;
}

/* Animated Grid Background */
.nova-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Shapes */
.nova-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.nova-shape {
    position: absolute;
    opacity: 0.1;
    animation: shapeFloat 15s infinite ease-in-out;
}

.nova-shape-1 {
    width: 100px;
    height: 100px;
    border: 2px solid var(--nova-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.nova-shape-2 {
    width: 60px;
    height: 60px;
    background: var(--nova-gradient-primary);
    border-radius: 50%;
    bottom: 20%;
    left: 8%;
    animation-delay: -5s;
}

.nova-shape-3 {
    width: 80px;
    height: 80px;
    border: 2px solid var(--nova-accent);
    transform: rotate(45deg);
    top: 60%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Enhanced Hero Decorations */
.nova-hero-decor-3 {
    width: 200px;
    height: 200px;
    background: var(--nova-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -4s;
}

/* Premium Section Separators */
.nova-section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--nova-primary), transparent);
    margin: 0 auto;
    max-width: 200px;
    opacity: 0.3;
}

/* Premium Card Hover Glow */
.nova-feature-card:hover,
.nova-package-card:hover,
.nova-testimonial-card:hover {
    box-shadow:
        var(--nova-shadow-lg),
        0 0 60px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Premium Button Glow */
.nova-btn-primary:hover,
.nova-btn-accent:hover {
    box-shadow:
        0 0 30px rgba(102, 126, 234, 0.5),
        0 0 60px rgba(102, 126, 234, 0.3);
}

/* Glassmorphism Cards Enhancement */
.nova-glass-premium {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Shimmer Effect for Badges */
.nova-promo-badge,
.nova-package-badge {
    position: relative;
    overflow: hidden;
}

.nova-promo-badge::after,
.nova-package-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Text Glow Effect */
.nova-text-glow {
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

/* Premium Stats Section */
.nova-stats-section {
    position: relative;
}

.nova-stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--nova-border-light), transparent);
}

/* Animated Border Gradient */
.nova-border-animated {
    position: relative;
}

.nova-border-animated::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, var(--nova-primary), var(--nova-accent), var(--nova-secondary), var(--nova-primary));
    background-size: 300% 300%;
    animation: borderGlow 4s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Light Mode Premium Adjustments */
[data-theme="light"] .nova-mesh-gradient {
    opacity: 0.6;
}

[data-theme="light"] .nova-glow-orb {
    opacity: 0.2;
}

[data-theme="light"] .nova-particle {
    opacity: 0.4;
}

[data-theme="light"] .nova-grid-bg {
    background-image: linear-gradient(rgba(102, 126, 234, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(102, 126, 234, 0.05) 1px, transparent 1px);
}

/* ============================================
   SAAS WIDGETS
   ============================================ */

/* Scroll Progress Bar */
.nova-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--nova-gradient-primary);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* Floating Chat Widget */
.nova-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.nova-chat-btn {
    width: 60px;
    height: 60px;
    background: var(--nova-gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--nova-shadow-lg), var(--nova-shadow-glow);
    position: relative;
    transition: all 0.3s ease;
}

.nova-chat-btn:hover {
    transform: scale(1.1);
}

.nova-chat-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--nova-primary);
    animation: chatPulse 2s infinite;
    z-index: -1;
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.nova-chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    box-shadow: var(--nova-shadow-xl);
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: bottom right;
}

.nova-chat-popup.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.nova-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--nova-gradient-primary);
    color: white;
}

.nova-chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.nova-chat-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.nova-chat-header>div:not(.nova-chat-avatar):not(.nova-chat-close) {
    flex: 1;
}

.nova-chat-status {
    font-size: 12px;
    opacity: 0.9;
}

.nova-chat-status i {
    font-size: 8px;
    color: #10b981;
    margin-right: 4px;
}

.nova-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.nova-chat-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.nova-chat-body {
    padding: 20px;
    min-height: 150px;
    background: var(--nova-bg-darker);
}

.nova-chat-message {
    max-width: 80%;
}

.nova-chat-message.bot p {
    background: var(--nova-bg-card);
    padding: 12px 16px;
    border-radius: 0 16px 16px 16px;
    margin: 0;
    font-size: 14px;
    color: var(--nova-text-primary);
}

.nova-chat-footer {
    display: flex;
    padding: 12px;
    gap: 10px;
    border-top: 1px solid var(--nova-border);
}

.nova-chat-footer input {
    flex: 1;
    padding: 12px 16px;
    background: var(--nova-bg-darker);
    border: 1px solid var(--nova-border);
    border-radius: 25px;
    color: var(--nova-text-primary);
    font-size: 14px;
}

.nova-chat-footer input:focus {
    outline: none;
    border-color: var(--nova-primary);
}

.nova-chat-footer button {
    width: 44px;
    height: 44px;
    background: var(--nova-gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

.nova-chat-footer button:hover {
    transform: scale(1.1);
}

/* Cookie Banner */
.nova-cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nova-cookie-banner.active {
    bottom: 30px;
}

.nova-cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    box-shadow: var(--nova-shadow-xl);
    max-width: 90vw;
}

.nova-cookie-content>i {
    font-size: 28px;
    color: var(--nova-warning);
    flex-shrink: 0;
}

.nova-cookie-content p {
    margin: 0;
    color: var(--nova-text-secondary);
    font-size: 14px;
    flex: 1;
}

.nova-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.nova-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .nova-chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .nova-chat-popup {
        width: 300px;
    }

    .nova-cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Light Mode Widgets */
[data-theme="light"] .nova-chat-popup,
[data-theme="light"] .nova-cookie-content {
    background: white;
    box-shadow: var(--nova-shadow-lg);
}

/* ============================================
   TYPING EFFECT
   ============================================ */
.nova-typing-cursor {
    display: inline-block;
    color: var(--nova-accent);
    font-weight: 300;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.nova-typing-text {
    min-width: 200px;
    display: inline-block;
}

/* ============================================
   INTEGRATIONS MARQUEE
   ============================================ */
.nova-integrations {
    padding: 50px 0;
    background: var(--nova-bg-card);
    border-top: 1px solid var(--nova-border);
    border-bottom: 1px solid var(--nova-border);
    overflow: hidden;
}

.nova-integrations-label {
    text-align: center;
    color: var(--nova-text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.nova-marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.nova-marquee {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.nova-marquee:hover {
    animation-play-state: paused;
}

.nova-marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 80px;
}

.nova-marquee-item i {
    font-size: 36px;
    color: var(--nova-text-muted);
    transition: all 0.3s ease;
}

.nova-marquee-item span {
    font-size: 12px;
    color: var(--nova-text-muted);
}

.nova-marquee-item:hover i {
    color: var(--nova-primary);
    transform: scale(1.2);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.nova-toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nova-toast {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-md);
    box-shadow: var(--nova-shadow-xl);
    transform: translateX(120%);
    animation: slideInToast 0.5s forwards, slideOutToast 0.5s 4.5s forwards;
    min-width: 300px;
}

.nova-toast.success {
    border-left: 4px solid var(--nova-success);
}

.nova-toast.error {
    border-left: 4px solid var(--nova-danger);
}

.nova-toast.info {
    border-left: 4px solid var(--nova-info);
}

.nova-toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nova-toast.success .nova-toast-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--nova-success);
}

.nova-toast.error .nova-toast-icon {
    background: rgba(239, 68, 68, 0.15);
    color: var(--nova-danger);
}

.nova-toast.info .nova-toast-icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--nova-info);
}

.nova-toast-content h4 {
    margin: 0 0 2px;
    font-size: 14px;
    color: var(--nova-text-primary);
}

.nova-toast-content p {
    margin: 0;
    font-size: 13px;
    color: var(--nova-text-secondary);
}

@keyframes slideInToast {
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutToast {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* ============================================
   BACK TO TOP ENHANCED
   ============================================ */
.nova-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nova-text-primary);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nova-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.nova-back-to-top:hover {
    background: var(--nova-primary);
    color: white;
    transform: translateY(-5px);
}

/* ============================================
   SERVICE CATEGORIES (PREMIUM)
   ============================================ */
.nova-categories {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.nova-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.nova-category-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.nova-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--nova-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nova-category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.nova-category-card:hover::before {
    opacity: 1;
}

.nova-category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--nova-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--nova-primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.nova-category-card:hover .nova-category-icon {
    background: var(--nova-primary);
    color: white;
    border-color: var(--nova-primary);
    transform: rotateY(180deg);
}

.nova-category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--nova-text-primary);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.nova-category-card:hover .nova-category-title {
    color: var(--nova-primary);
}

.nova-category-desc {
    font-size: 14px;
    color: var(--nova-text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.nova-category-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--nova-text-muted);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.nova-category-card:hover .nova-category-arrow {
    background: var(--nova-gradient-primary);
    color: white;
    transform: translateX(10px);
}

/* Icon Variations */
.nova-category-card:nth-child(2n) .nova-category-icon {
    color: var(--nova-accent);
}

.nova-category-card:nth-child(2n):hover .nova-category-icon {
    background: var(--nova-accent);
    border-color: var(--nova-accent);
    color: white;
}

.nova-category-card:nth-child(2n)::before {
    background: var(--nova-accent);
}

.nova-category-card:nth-child(2n):hover .nova-category-title {
    color: var(--nova-accent);
}

.nova-category-card:nth-child(2n):hover .nova-category-arrow {
    background: var(--nova-accent);
}

.nova-category-card:nth-child(3n) .nova-category-icon {
    color: #ec4899;
}

.nova-category-card:nth-child(3n):hover .nova-category-icon {
    background: #ec4899;
    border-color: #ec4899;
    color: white;
}

.nova-category-card:nth-child(3n)::before {
    background: #ec4899;
}

.nova-category-card:nth-child(3n):hover .nova-category-title {
    color: #ec4899;
}

.nova-category-card:nth-child(3n):hover .nova-category-arrow {
    background: #ec4899;
}

@media (max-width: 768px) {
    .nova-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIALS SLIDER (PREMIUM)
   ============================================ */
.nova-testimonials {
    padding: 100px 0;
    overflow: hidden;
}

.nova-testimonial-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.nova-testimonial-slider-container::before,
.nova-testimonial-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.nova-testimonial-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--nova-bg-dark), transparent);
}

.nova-testimonial-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--nova-bg-dark), transparent);
}

.nova-testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: testiScroll 40s linear infinite;
}

.nova-testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes testiScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nova-testimonial-card {
    background: var(--nova-bg-card);
    border: 1px solid var(--nova-border);
    border-radius: var(--nova-radius-lg);
    padding: 30px;
    min-width: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    /* Reset default a styles if used as link previously */
    text-decoration: none;
    color: inherit;
}

.nova-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--nova-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.nova-testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nova-testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--nova-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.nova-testi-avatar.purple {
    background: linear-gradient(135deg, #a855f7, #6366f1);
}

.nova-testi-avatar.accent {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.nova-testi-avatar.green {
    background: linear-gradient(135deg, #10b981, #22c55e);
}

.nova-testi-avatar.orange {
    background: linear-gradient(135deg, #f97316, #f43f5e);
}

.nova-testi-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--nova-text-primary);
    margin: 0;
}

.nova-testi-info span {
    font-size: 13px;
    color: var(--nova-text-secondary);
}

.nova-testi-verify {
    margin-left: auto;
    color: var(--nova-success);
    font-size: 16px;
}

.nova-testi-stars {
    color: #f59e0b;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.nova-testi-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--nova-text-secondary);
    font-style: italic;
}

/* ============================================
   RESPONSIVE DOMAIN SEARCH
   ============================================ */
@media (max-width: 768px) {
    .nova-domain-section {
        padding: 80px 20px 40px;
        /* Top padding increased for header */
        min-height: auto;
        display: block;
        /* Flex center iptal */
    }

    .nova-domain-search {
        padding: 25px;
        margin-top: 40px;
    }

    .nova-domain-input-wrap {
        flex-direction: column;
        gap: 15px;
    }

    .nova-domain-input-wrap button {
        width: 100%;
        justify-content: center;
    }

    .nova-input-icon {
        display: none;
        /* Mobilde input iconunu gizleyebiliriz yer kazanmak için */
    }

    .nova-domain-input {
        padding-left: 20px;
        /* Icon gizlendiği için */
    }

    .nova-domain-mode-toggle {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .nova-mode-btn {
        flex: 1;
        justify-content: center;
        font-size: 13px;
        padding: 12px;
        min-width: 45%;
    }

    .nova-tld-slider {
        margin: 20px 0;
    }

    .nova-ai-suggestions {
        grid-template-columns: 1fr;
        /* AI sonuçları tek kolon */
    }

    /* Header Adjustment for Mobile */
    .nova-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* ============================================
   REVISED LIGHT MODE THEME (OVERRIDE - PREMIUM GLASS)
   ============================================ */
[data-theme="light"] {
    /* Backgrounds - Semi Transparent for Glass Effect */
    --nova-bg-body: #f8fafc;
    /* Fallback */
    --nova-bg-dark: #ffffff;
    --nova-bg-darker: #f1f5f9;
    /* Slate 100 */
    --nova-bg-card: rgba(255, 255, 255, 0.85);
    /* %85 opacity for glass feel */
    --nova-bg-card-hover: rgba(255, 255, 255, 0.98);
    --nova-bg-input: #ffffff;

    /* Borders - Subtle but Visible */
    --nova-border: rgba(148, 163, 184, 0.5);
    /* Slate 400 + opacity */
    --nova-border-light: rgba(203, 213, 225, 0.6);
    /* Slate 300 + opacity */

    /* Text - INCREASED CONTRAST */
    --nova-text-primary: #0f172a;
    /* Slate 900 */
    --nova-text-secondary: #334155;
    /* Slate 700 - Darker than before */
    --nova-text-muted: #64748b;
    /* Slate 500 - Darker than before */
    --nova-text-inverse: #ffffff;

    /* Primary Colors - Royal Blue */
    --nova-primary: #2563eb;
    --nova-primary-light: #3b82f6;
    --nova-primary-dark: #1d4ed8;
    --nova-secondary: #4f46e5;

    /* Accents */
    --nova-accent: #0ea5e9;

    /* Gradients */
    --nova-gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --nova-gradient-secondary: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    --nova-gradient-dark: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    --nova-gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    --nova-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);

    /* Shadows - Soft & Tinted */
    --nova-shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.06);
    --nova-shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
    --nova-shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --nova-shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
    --nova-shadow-glow: 0 0 30px rgba(37, 99, 235, 0.15);
    --nova-shadow-inner: inset 0 2px 4px 0 rgba(15, 23, 42, 0.05);
}

/* Light Mode Body & Elements Override */
[data-theme="light"] body.nova-theme {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    /* Silver to very pale blue */
    background-attachment: fixed;
}

[data-theme="light"] .nova-header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

/* ============================================
   DOMAIN SEARCH DECORATIONS (FLOATING ICONS)
   ============================================ */
/* Ensure Search Box is in front */
.nova-domain-search {
    position: relative;
    z-index: 10;
}

.nova-domain-decor {
    position: absolute;
    top: -40px;
    bottom: -40px;
    width: 300px;
    z-index: 0; /* Behind search box */
    pointer-events: none;
}

.nova-domain-decor.left {
    left: -100px; /* Bring closer to be behind the box */
}

.nova-domain-decor.right {
    right: -100px; /* Bring closer to be behind the box */
}

.nova-decor-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    backdrop-filter: blur(2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: nova-float-icon 6s ease-in-out infinite;
    color: white;
    opacity: 0.9;
}

.nova-decor-icon:hover {
    z-index: 11; /* Bring to front on hover */
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    opacity: 1;
}

/* LEFT GROUP POSITIONS */
.d-cloud {
    top: 5%;
    right: 80px;
    animation-delay: 0.5s;
    color: #fff;
    font-size: 26px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), rgba(0,0,0,0));
}

.d-wp {
    top: 25%;
    left: 40px;
    animation-delay: 2s;
    color: #38bdf8;
    font-size: 24px;
}

.d-web {
    top: 45%;
    right: 40px;
    animation-delay: 0s;
    color: #22d3ee;
    font-size: 32px;
    background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.15), rgba(0,0,0,0));
    width: 70px;
    height: 70px;
}

.d-domain {
    top: 65%;
    left: 50px;
    animation-delay: 1.5s;
    color: #f472b6;
}

.d-secure {
    bottom: 12%;
    left: 20px;
    animation-delay: 3.5s;
    color: #fbbf24;
    font-size: 20px;
}

.d-server {
    bottom: 2%;
    right: 70px;
    animation-delay: 3s;
    color: #4ade80;
}

/* RIGHT GROUP POSITIONS */
.d-ai {
    top: 10%;
    left: 60px;
    animation-delay: 1s;
    width: 80px;
    height: 80px;
    font-size: 36px;
    color: #a78bfa;
    background: radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.2), rgba(0,0,0,0));
}

.d-email {
    top: 32%;
    right: 30px;
    animation-delay: 2.2s;
    color: #facc15;
}

.d-code {
    top: 52%;
    left: 80px;
    animation-delay: 2.5s;
    color: #60a5fa;
}

.d-db {
    bottom: 25%;
    right: 50px;
    animation-delay: 0.8s;
    color: #c084fc;
    font-size: 20px;
}

.d-cart {
    bottom: 5%;
    left: 40px;
    animation-delay: 4s;
    color: #f87171;
}

/* Animation Keyframes */
@keyframes nova-float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Light Mode Overrides */
[data-theme="light"] .nova-decor-icon {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0,0,0,0.05);
}
[data-theme="light"] .d-web { color: #0891b2; }
[data-theme="light"] .d-ai { color: #7c3aed; }

/* Responsive: Hide on < 1400px */
@media (max-width: 1400px) {
    .nova-domain-decor {
        display: none;
    }
}


/* ============================================
   AGGRESSIVE LIGHT MODE OVERRIDES V4.0
   Forcefully applying Platinum/Silver Theme
   ============================================ */

html[data-theme="light"] body {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%) !important;
    color: #334155 !important;
}

html[data-theme="light"] h1, 
html[data-theme="light"] h2, 
html[data-theme="light"] h3, 
html[data-theme="light"] h4, 
html[data-theme="light"] h5, 
html[data-theme="light"] h6,
html[data-theme="light"] strong,
html[data-theme="light"] b {
    color: #0f172a !important;
}

html[data-theme="light"] p, 
html[data-theme="light"] li, 
html[data-theme="light"] span {
    color: #475569;
}

/* CARDS & CONTAINERS */
html[data-theme="light"] .nova-card,
html[data-theme="light"] .card,
html[data-theme="light"] .panel,
html[data-theme="light"] .box,
html[data-theme="light"] .nova-feature-card,
html[data-theme="light"] .nova-pricing-card,
html[data-theme="light"] .nova-service-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(148, 163, 184, 0.15) !important;
    color: #334155 !important;
}

html[data-theme="light"] .nova-card:hover,
html[data-theme="light"] .nova-feature-card:hover {
    background: #ffffff !important;
    box-shadow: 0 20px 40px rgba(148, 163, 184, 0.25) !important;
    border-color: #cbd5e1 !important;
}

/* INPUTS */
html[data-theme="light"] input:not([type="submit"]):not([type="button"]), 
html[data-theme="light"] textarea, 
html[data-theme="light"] select,
html[data-theme="light"] .form-control {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02) !important;
}

html[data-theme="light"] input::placeholder {
    color: #94a3b8 !important;
}

/* HEADER & FOOTER */
html[data-theme="light"] .nova-header {
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

html[data-theme="light"] .nova-footer {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border-top: 1px solid #e2e8f0 !important;
}

/* SPECIFIC COMPONENTS */
html[data-theme="light"] .nova-section-title {
    color: #0f172a !important;
}

html[data-theme="light"] .nova-section-subtitle {
    color: #64748b !important;
}

html[data-theme="light"] .nova-btn-secondary {
    background: #e2e8f0 !important;
    color: #334155 !important;
}

html[data-theme="light"] .nova-btn-secondary:hover {
    background: #cbd5e1 !important;
    color: #0f172a !important;
}

/* DOMAIN SEARCH AREA */
html[data-theme="light"] .nova-domain-search {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 20px 50px rgba(148, 163, 184, 0.2) !important;
}

html[data-theme="light"] .nova-domain-header h2 {
    color: #1e293b !important;
}

html[data-theme="light"] .nova-domain-subtitle {
    color: #64748b !important;
}

/* ICONS */
html[data-theme="light"] i:not(.fas):not(.fab):not(.far) {
    color: #475569;
}
