:root {
    /* Base Colors - Dark Theme (Default) */
    --text-color: #f1f5f9;
    --text-muted: rgba(241, 245, 249, 0.7);
    --bg-color: #050510;
    --accent-color: #6366f1;
    --accent-hover: #4f46e5;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
    
    /* Theme Light Overrides will go here */
}

/* Light Theme Variables */
.theme-light {
    --text-color: #0f172a;
    --text-muted: rgba(15, 23, 42, 0.6);
    --bg-color: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-blur: blur(25px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    background-color: var(--bg-color);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: transparent; /* Changed back to transparent to let canvas be visible */
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: color 0.5s ease;
}

/* --- Moving Background Canvas --- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: -1;
    pointer-events: none;
    background-color: transparent;
    transition: background-color 3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Navigation --- */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    display: inline-block;
    color: #f1f5f9;
}

.logo span {
    font-size: 1.8rem;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-primary-small {
    background: var(--accent-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4), 0 0 20px rgba(168, 85, 247, 0.2);
    animation: neon-flicker 4s infinite alternate;
    transition: all 0.3s ease;
}
.btn-primary-small:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6), 0 0 30px rgba(168, 85, 247, 0.3);
}

/* --- Theme Toggle Button --- */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.btn-theme-toggle svg {
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.sun-icon {
    opacity: 0;
    transform: translateY(20px) rotate(45deg);
}

.moon-icon {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* Theme specific button states */
body.theme-light .sun-icon {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

body.theme-light .moon-icon {
    opacity: 0;
    transform: translateY(-20px) rotate(-45deg);
}

body.theme-light .btn-theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* --- Layout & Sections --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 80px; /* Increased top padding for nav clearance */
    position: relative;
    z-index: 10;
}

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

/* --- Hero Section --- */
.hero-content {
    text-align: center;
    max-width: 800px;
}

#hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px; /* Slightly wider for better legibility */
    transform: translateZ(0); /* Force hardware scanline alignment */
    backface-visibility: hidden;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4), 0 0 30px rgba(168, 85, 247, 0.2);
    animation: neon-flicker 5s infinite step-end;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.7), 0 0 40px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    
    /* 3D Glass Border */
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    
    color: var(--text-color);
    box-shadow: 
        0 0 20px rgba(168, 85, 247, 0.4), /* Synchronized with USP bar */
        0 5px 15px rgba(0, 0, 0, 0.3), 
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    /* Background remains the same for transparency */
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(168, 85, 247, 0.6), /* Stronger glow on hover */
        0 8px 20px rgba(0, 0, 0, 0.4), 
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* --- USP Bar --- */
.usp-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: 18vh auto 5vh;
    padding: 1.8rem 3rem;
    border-radius: 16px;
    gap: 2rem;
    
    /* Premium 3D Glass Effect */
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        rgba(255, 255, 255, 0.08) 100%
    ) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    
    /* Dual-tone border for 3D depth */
    border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    
    /* Strategic shadows for "lift" and neon glow around the edge */
    box-shadow: 
        0 0 20px rgba(168, 85, 247, 0.4), /* Neon outer glow */
        0 25px 50px rgba(0, 0, 0, 0.5), 
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-2px);
}

.usp-icon-svg {
    width: 24px;
    height: 24px;
    stroke: #a855f7;
    filter: drop-shadow(0 0 8px #a855f7);
    transition: all 0.3s ease;
}

.usp-item:hover .usp-icon-svg {
    filter: drop-shadow(0 0 12px #a855f7);
    stroke: #c084fc;
}

.usp-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.shadow-glow {
    position: relative;
}

.shadow-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    border-radius: inherit;
    z-index: -1;
    filter: blur(10px);
}


@media (max-width: 992px) {
    .usp-bar {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 24px;
        margin-top: 8vh; /* Increased from 3rem */
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .usp-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 2rem 1rem;
        gap: 2rem 1rem;
        margin-top: 12vh; /* Even more margin on mobile to center in the big gap */
    }
    
    .usp-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .usp-text {
        font-size: 0.85rem;
        white-space: normal;
    }
}

/* --- Pricing Card --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 3rem;
    text-align: left;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.highlighted {
    border: 1px solid cyan !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2), inset 0 0 10px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card.highlighted::before {
    content: 'POPULAIR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: cyan;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 35px;
    transform: rotate(45deg);
    box-shadow: 0 0 10px cyan;
}

.pricing-card.premium-highlight {
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15), inset 0 0 10px rgba(255, 215, 0, 0.05);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 215, 0, 0.02) 100%) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
}

.pricing-card.premium-highlight::before {
    content: 'EXCLUSIEF';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(90deg, #ffd700, #e5e5e5, #ffd700);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 35px;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.btn-premium {
    background: #0a0a0a !important;
    color: #ffd700 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #ffd700 !important;
    border-radius: 50px !important;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.5),
        inset 0 0 5px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    transform: translateY(-2px);
    background: #ffd700 !important;
    color: #000 !important;
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.1) !important;
}

/* Side accents for the premium card */
.pricing-card.premium-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #ffd700, transparent);
    box-shadow: 0 0 10px #ffd700;
    opacity: 0.6;
    border-radius: 10px;
}

/* Optional: Right side accent as well */
.pricing-card.premium-highlight .price-header::after {
    content: '';
    position: absolute;
    right: 0;
    top: 40px;
    height: 100px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #ffd700, transparent);
    opacity: 0.4;
    border-radius: 10px;
}


/* Premium Button Shine Animation */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    animation: button-glimmer 5s infinite;
}

@keyframes button-glimmer {
    0% { left: -150%; }
    60% { left: 150%; }
    100% { left: 150%; }
}

/* Card Shine Effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: skewX(-25deg);
    /* Every 2.5s, with 1.25s movement duration to keep it "snappy" but glassy */
    animation: card-glimmer 2.5s infinite linear;
}

@keyframes card-glimmer {
    0% { left: -150%; }
    50% { left: 150%; } /* Movement takes half the duration (1.25s) */
    100% { left: 150%; } /* Wait for the remaining 1.25s */
}



.price-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.price-header h3 {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hosting-price {
    margin-top: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

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

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: bold;
}

.w-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* --- Process Section (Hoe Werkt Het) --- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr; /* Force vertical by default for mobile */
    gap: 4rem 2rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step:first-child {
        grid-column: 1 / span 2;
        justify-self: center;
        width: 100%;
        max-width: 450px;
        margin-bottom: 2rem;
    }
}

.process-step {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 20px;
    z-index: 2;
    overflow: hidden; /* For the rotating border */
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        #6366f1, /* Indigo */
        transparent 30%, 
        transparent 50%, 
        #00FFFF, /* Cyan */
        transparent 80%
    );
    animation: rotate-neon 8s linear infinite;
    z-index: -2;
}

.process-step::after {
    content: '';
    position: absolute;
    inset: 2px; /* Small distance to show the "edge" border */
    background: var(--bg-color);
    border-radius: 18px;
    z-index: -1;
    backdrop-filter: var(--glass-blur);
}

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

/* --- Cyberpunk Neon Arrows --- */
.cyber-arrow {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    opacity: 0.8;
}

.arrow-path {
    fill: none;
    stroke: #a855f7;
    stroke-width: 3; /* Standardized thickness */
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px #a855f7) drop-shadow(0 0 10px #a855f7);
    stroke-dasharray: 10 1000;
    animation: arrow-flow 4s linear infinite, neon-flicker 5s infinite;
}

.arrow-kanji, .arrow-kanji-small {
    fill: #a855f7;
    font-size: clamp(14px, 2vw, 18px); /* Original sizing */
    font-weight: 800;
    text-shadow: 0 0 8px #a855f7;
    opacity: 0.7;
    font-family: 'Inter', sans-serif;
}

.kanji-highlight {
    fill: cyan !important;
    color: cyan !important;
    stroke: cyan !important;
    text-shadow: 0 0 10px cyan !important;
}

.kanji-side-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 800;
    writing-mode: vertical-rl;
    text-shadow: 0 0 8px var(--accent-color);
    opacity: 0.35;
    pointer-events: none;
    display: none;
    z-index: 1;
}

/* Form Package Select Styling */
select#package {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.theme-light select#package {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Responsive Utilities */
.mobile-only { display: none !important; }
@media (max-width: 767px) {
    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }
}

@keyframes arrow-flow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}

/* Specific Positions for Process Section */
@media (min-width: 768px) {
    .arrow-1-2 {
        top: 50%;
        left: -100px; /* Restoring original desktop position */
        width: 150px;
        height: 300px;
        z-index: 1;
    }
    .arrow-2-3 {
        top: 90%;
        left: 50%; /* Restoring original desktop position */
        width: 45vw;
        height: 60px;
        opacity: 0.6;
    }
}

/* Mobile: Horizontal Arrows in Vertical Gaps */
@media (max-width: 767px) {
    .cyber-arrow {
        display: none; /* Hide desktop specific ones */
    }
    
    .mobile-arrow-gap {
        display: block !important;
        position: absolute;
        width: 180px; /* Slightly wider for better visibility */
        height: 60px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -5.7rem; /* Fine-tuned for vertical gap centering */
        opacity: 0.9;
        z-index: 10;
    }
}

/* Feature Section: Structural Cyber Conduits */
/* Feature Section: Structural Cyber Conduits */
#features {
    position: relative;
    overflow: hidden;
}

.cyber-conduits {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    height: 100%;
}

.data-rail {
    position: absolute;
    /* Removed global top: 50% - now handled by specific rail classes */
    left: 0;
    right: 0;
    height: 3px; /* Standardized thickness */
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    box-shadow: 0 0 15px var(--accent-color);
    opacity: 0.5;
    animation: pulse 4s infinite ease-in-out;
}

.rail-1 {
    top: 50%; /* Center of the gap between first and second row on desktop */
}

@media (max-width: 767px) {
    .rail-1 {
        top: 33%; /* Gap between feature 1 and 2 in 1x3 mobile stack */
    }
    .rail-2 {
        top: 66%; /* Gap between feature 2 and 3 in 1x3 mobile stack */
    }
}

.data-rail::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 100%;
    height: 5px;
    background: radial-gradient(ellipse at center, #fff 0%, var(--accent-color) 40%, transparent 70%);
    transform: translateX(-50%) scaleX(var(--rail-flow-width, 0));
    opacity: var(--rail-flow-opacity, 0);
    filter: blur(1px);
    transition: transform 0.1s ease-out, opacity 0.2s ease-out;
    z-index: 5;
}

.power-conduit {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: var(--conduit-height, 0%);
    transform: translateX(-50%);
    background: linear-gradient(to bottom, var(--accent-color), cyan);
    box-shadow: 0 0 20px cyan;
    opacity: 0.6;
    transition: height 0.1s ease-out; /* Smooth growth */
}

.power-conduit::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scale(var(--clash-scale, 0));
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #fff 20%, cyan 60%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px white, 0 0 25px cyan;
    filter: blur(1px);
    z-index: 10;
    opacity: var(--clash-opacity, 0);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

@keyframes flash {
    from { opacity: 0.8; transform: translateX(-50%) scale(0.9); }
    to { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.kanji-conduit {
    position: absolute;
    top: 20%;
    left: 10px;
    color: cyan;
    font-size: 14px;
    text-shadow: 0 0 8px cyan;
    writing-mode: vertical-rl;
    opacity: 0.8;
}

@keyframes flow-data {
    0% { left: -100px; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; shadow: 0 0 10px; }
    50% { opacity: 0.7; shadow: 0 0 25px; }
}

/* Specific Positions for Features Section Arrows (Removed for Cyber Conduits) */
.arrow-f1-f2, .arrow-f2-f3 { display: none; }

/* Mobile: Show two horizontal rails between stacked boxes */
@media (max-width: 767px) {
    .cyber-arrow { display: none; }
    
    .power-conduit { display: none; }
    
    .rail-1 {
        top: 32%; /* Above #feature-2 */
        display: block;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 70%;
        background: linear-gradient(to right, transparent, cyan, transparent);
        box-shadow: 0 0 15px cyan;
    }
    
    .rail-2 {
        top: 68%; /* Below #feature-2 */
        display: block;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 70%;
    }
    
    .data-rail {
        opacity: 0.5;
        height: 3px; /* Standardized thickness */
    }
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-muted);
}

/* --- Lead Form Section --- */

.lead-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    border-radius: 24px;
    align-items: center;
    border: 1px solid cyan !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2), inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.lead-form-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead-form-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

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

.form-group select option {
    background: var(--bg-color);
    color: white;
}

/* --- Features Grid --- */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem 2rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        position: relative; /* Added for conduit positioning */
    }
    
    #feature-1 {
        grid-column: 1;
    }
    
    #feature-2 {
        grid-column: 2;
    }
    
    #feature-3 {
        grid-column: 1 / span 2;
        justify-self: center;
        width: 100%;
        max-width: 450px;
        margin-top: 1rem;
    }
}

.feature-item {
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden; /* For the rotating border */
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        #6366f1, /* Indigo */
        transparent 30%, 
        transparent 50%, 
        #00FFFF, /* Cyan */
        transparent 80%
    );
    animation: rotate-neon 8s linear infinite;
    z-index: -2;
}

.feature-item::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-color); /* Matches the section theme background */
    border-radius: 18px;
    z-index: -1;
    backdrop-filter: var(--glass-blur);
}

/* Feature Neon Connections (Removed in favor of Cyber Arrows) */

.icon-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-start;
}

.feature-icon-svg {
    width: 48px;
    height: 48px;
    stroke: #a855f7;
    filter: none; /* Removed default glow */
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-svg {
    stroke: #c084fc;
    filter: drop-shadow(0 0 15px #a855f7) drop-shadow(0 0 5px #fff);
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-muted);
}


/* --- Glassmorphism Utilities --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* --- Footer --- */
.site-footer {
    padding: 4rem 0 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.site-footer h4 {
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.site-footer p, .site-footer a {
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .lead-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    #hero {
        padding-top: 180px;
    }
    .container {
        padding: 0 1.5rem;
    }
    .nav-links {
        display: none; /* Add hamburger menu logic later if needed */
    }
    .section {
        padding: 100px 0 60px; /* Increased top padding for mobile nav clearance */
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .price-header h3 {
        font-size: 1.2rem;
    }
    .price {
        font-size: 3rem;
    }
    .process-step, .feature-item, .review-card {
        padding: 2rem 1.5rem;
    }
    .lead-form-container {
        padding: 2rem;
        gap: 2rem;
    }
    .lead-form-content h2 {
        font-size: 2rem;
    }
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-text {
        font-size: 1rem;
    }

    /* Kanji Vertical Side Text Positioning */
    .kanji-side-text {
        display: block;
    }
    
    .process-step {
        margin-left: 10px;
        margin-right: 10px;
        position: relative;
    }

    .kanji-left {
        left: -15px;
    }

    .kanji-right {
        right: -15px;
    }

    /* Pricing section: align to top so title & cards are immediately visible */
    #pricing.section {
        justify-content: flex-start;
        padding-top: 110px;
    }

    /* Pricing Cards Layout for Mobile (Static) */
    #pricing .section-title {
        position: relative;
        z-index: 5;
        text-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 12px rgba(0, 0, 0, 0.9);
        margin-bottom: 2rem;
    }

    .pricing-grid {
        display: block;
        position: relative;
        margin-top: 150px;
    }

    .pricing-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

    .pricing-card.card-front {
        top: 0;
        z-index: 10;
        opacity: 1;
    }

    .pricing-card.card-back {
        top: -675px;
        z-index: 5;
        opacity: 0.85;
        transition: transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 1.1s ease, opacity 1.1s ease;
        box-shadow:
            0 -25px 60px rgba(255, 215, 0, 0.6),
            0 -10px 30px rgba(255, 215, 0, 0.4),
            0 10px 15px rgba(255, 215, 0, 0.05),
            inset 0 0 15px rgba(255, 215, 0, 0.1) !important;
    }

    .pricing-card.card-back.card-elevated {
        z-index: 15 !important;
        transform: translateY(-18px) translateZ(0);
        opacity: 1;
        box-shadow:
            0 -40px 90px rgba(255, 215, 0, 0.5),
            0 -15px 45px rgba(255, 215, 0, 0.35),
            0 25px 60px rgba(255, 215, 0, 0.15),
            0 0 120px rgba(255, 215, 0, 0.12),
            inset 0 0 30px rgba(255, 215, 0, 0.08) !important;
    }

    .pricing-card.card-front.card-dimmed {
        opacity: 0.4;
        transition: opacity 1.1s ease;
    }

}

/* --- Dynamic Theme Overrides (Applied by JS) --- */
.theme-light body {
    color: var(--text-color);
}

.theme-light .glass-card:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.theme-light .form-group input,
.theme-light .form-group select,
.theme-light .form-group textarea {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

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

.theme-light .site-footer {
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.theme-light .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.05);
}

.theme-light .logo {
    color: var(--text-color);
}

.theme-light .logo span {
    background: linear-gradient(to right, var(--accent-hover), #000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-light .site-footer p, 
.theme-light .site-footer a, 
.theme-light .site-footer h4 {
    color: var(--text-color);
}

/* Specific Light Mode Neon Refinement */
.theme-light .neon-title-tl {
    filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.3));
    background: linear-gradient(to right, var(--accent-hover), #000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-light .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    border-color: rgba(0, 0, 0, 0.1);
}

.theme-light .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* FAQ Light Mode */
.theme-light .faq-question {
    color: var(--text-color);
}

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

.theme-light .faq-answer {
    color: var(--text-muted);
}

.theme-light .faq-item:hover, 
.theme-light .faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

/* Slideshow Light Mode */
.theme-light .slide-caption {
    color: white; /* Maintain white on gradient */
}

.theme-light .slideshow-prev, .theme-light .slideshow-next {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-color);
}

/* Spinner Light Mode */
.theme-light .loading-spinner {
    border-left-color: var(--accent-color);
    border-top-color: var(--accent-color);
}

/* Glass Card Light Mode Refinement */
.theme-light .glass-card {
    background: var(--glass-bg);
    border-color: var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* USP Bar Light Mode */
.theme-light .usp-bar {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.theme-light .usp-text {
    color: var(--text-color);
    text-shadow: none;
}

/* Pricing Card Light Mode */
.theme-light .pricing-card.highlighted {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.theme-light .price-header h3 {
    color: var(--text-color);
}

.theme-light .price span {
    color: var(--text-muted);
}
/* --- Form States & Feedback --- */
.success-message {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
    vertical-align: middle;
}

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

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

.btn-secondary-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        box-shadow: 
            0 0 15px rgba(168, 85, 247, 0.6),
            0 0 30px rgba(168, 85, 247, 0.4),
            0 0 45px rgba(168, 85, 247, 0.2);
        opacity: 1;
    }
    20%, 24%, 55% {
        box-shadow: none;
        opacity: 0.8;
    }
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 0 !important; /* Reset padding for internal layout */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-color));
}

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

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.01); /* Highly transparent to show canvas particles */
    backdrop-filter: blur(4px); /* Reduced blur to make background particles clearer */
    -webkit-backdrop-filter: blur(4px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Large enough for content */
    padding-bottom: 1.5rem;
}


/* --- Themes Slideshow --- */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1.5rem !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    touch-action: pan-y;
}

.slides {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.slide {
    flex: 0 0 50%; /* Show 2 images on laptop/tablet */
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    padding: 10px; /* Slight gap between images */
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.slide:hover img {
    transform: scale(1.02);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: white;
    z-index: 3;
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none;
    pointer-events: none; /* Make sure captions don't block interactions */
}

.slide-caption h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.slideshow-prev, .slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slideshow-prev:hover, .slideshow-next:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
}

.slideshow-prev { left: 1rem; }
.slideshow-next { right: 1rem; }

.slideshow-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .slide {
        flex: 0 0 100%; /* Show 1 image on mobile */
        aspect-ratio: 1 / 1.2;
    }
    .slide-caption {
        padding: 1rem;
    }
    .slideshow-prev, .slideshow-next {
        display: none;
    }
}

/* --- TL-Buis (Fluorescent Lamp) Neon Effect --- */
h2.neon-title-tl, 
.neon-title-tl {
    background: linear-gradient(to right, #6366f1, #00FFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block !important;
    position: relative;
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(99, 102, 241, 0.4));
    animation: tl-buis-on-off 10s ease-in-out infinite;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: none !important; /* Clear black shadows that dim the neon on mobile */
    
    /* Matched Typography from Hero H1 */
    font-size: clamp(2.5rem, 8vw, 5rem) !important;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 4rem !important;
}

@keyframes tl-buis-on-off {
    /* Initial Dark Phase (1.5 seconds for 10s duration) */
    0%, 15% { opacity: 0; filter: drop-shadow(0 0 0px transparent); }
    
    /* Startup Flickering (Starts at 16%) */
    16% { opacity: 0.1; }
    17% { opacity: 0.8; filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.8)); }
    18% { opacity: 0.2; }
    19% { opacity: 1; filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.8)); }
    20% { opacity: 0.3; }
    21% { opacity: 1; filter: drop-shadow(0 0 15px rgba(0, 255, 255, 1)); }
    
    /* Solid On State */
    22% { opacity: 1; filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.8)); }
    70% { opacity: 1; filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.8)); }
    
    /* Dying Flickering (Broken TL) */
    71% { opacity: 0.2; filter: drop-shadow(0 0 2px rgba(99, 102, 241, 0.4)); }
    72% { opacity: 0.9; filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.7)); }
    73% { opacity: 0.1; }
    75% { opacity: 0.8; filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6)); }
    77% { opacity: 0.1; }
    80% { opacity: 0.7; filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5)); }
    82% { opacity: 0.05; }
    84% { opacity: 0.4; }
    86% { opacity: 0; }
    88% { opacity: 0.2; }
    90% { opacity: 0; }
    
    /* Off Period before restart */
    100% { opacity: 0; }
}

/* Mobile Scroll Optimization */
@media (max-width: 767px) {
    #pricing {
        scroll-margin-top: -110px;
    }
}
