/* Modern Futuristic Light Theme - Ultra Optimized Performance */

/* Base Styles with Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ChatLing Bot Styling */
#chtl-inline-bot {
    background: linear-gradient(135deg, rgba(255, 148, 8, 0.05), rgba(202, 63, 22, 0.05));
    border: 1px solid rgba(255, 148, 8, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

#chtl-inline-bot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF9408, #CA3F16);
    border-radius: 12px 12px 0 0;
}

#chtl-inline-bot:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 148, 8, 0.15);
}

/* ChatLing Bot Responsive Design */
@media (max-width: 768px) {
    #chtl-inline-bot {
        height: 400px;
        margin: 20px 0;
        border-radius: 8px;
    }
}

/* Optimize paint and layout */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #F3F4F5;
    color: #100C08;
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.05em;
    /* Performance optimization */
    will-change: scroll-position;
    /* Optimize rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* Smooth Scrolling with Performance */
html {
    scroll-behavior: smooth;
    /* Performance optimization */
    scroll-padding-top: 80px;
}

/* Navigation with Better Performance */
nav {
    background: #F3F4F5;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #DBE0E1;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Performance optimization */
    will-change: transform, background-color;
}

nav.scrolled {
    background: rgba(243, 244, 245, 0.95);
    box-shadow: 0 4px 20px rgba(16, 12, 8, 0.08);
}

/* Typography with Better Fallbacks */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #100C08;
    letter-spacing: 0.1em;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

p {
    margin-bottom: 1rem;
    color: #100C08;
    letter-spacing: 0.02em;
    font-family: 'Orvior', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

a {
    text-decoration: none;
    color: #100C08;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
    font-family: 'Orvior', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

a:hover {
    color: #FF9408;
}

/* Buttons with Better Performance */
.btn-primary {
    background: linear-gradient(135deg, #FF9408, #CA3F16);
    color: #F3F4F5;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* Performance optimization */
    will-change: transform;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 148, 8, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #100C08;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #DBE0E1;
    cursor: pointer;
    letter-spacing: 0.05em;
    font-family: 'Orvior', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-secondary:hover {
    background: #DBE0E1;
    color: #100C08;
}

/* Cards with Better Performance */
.card {
    background: #F3F4F5;
    border: 1px solid #DBE0E1;
    border-radius: 12px;
    transition: all 0.3s ease;
    /* Performance optimization */
    will-change: transform;
}

.card:hover {
    border-color: #FF9408;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(16, 12, 8, 0.08);
}



/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #FF9408, #CA3F16);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect with Performance */
.bg-glass {
    background: rgba(243, 244, 245, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #DBE0E1;
}

/* Shadow Effects */
.shadow-glow {
    box-shadow: 0 0 30px rgba(255, 148, 8, 0.2);
}

/* Hover Effects with Performance */
.hover-lift {
    transition: transform 0.3s ease;
    /* Performance optimization */
    will-change: transform;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Form Elements with Better Performance */
input, textarea {
    background: #F3F4F5;
    border: 1px solid #DBE0E1;
    color: #100C08;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Orvior', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.02em;
    /* Performance optimization */
    will-change: border-color, box-shadow;
}

input:focus, textarea:focus {
    border-color: #FF9408;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 148, 8, 0.1);
}

input::placeholder, textarea::placeholder {
    color: #95122C;
    letter-spacing: 0.05em;
}

/* Header and Footer */
header, footer {
    background: #F3F4F5;
    padding: 20px;
    text-align: center;
}

header h1, footer p {
    margin: 0;
    color: #100C08;
    letter-spacing: 0.1em;
}

/* Navigation Links with Performance */
nav a {
    padding: 10px 20px;
    color: #100C08;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

nav a:hover {
    background: #DBE0E1;
    color: #100C08;
}

/* Optimized Animations with Performance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

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

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

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

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

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.15);
        filter: brightness(1.2);
    }
}

@keyframes headlineReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

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

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Animation Classes with Performance */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    /* Performance optimization */
    will-change: transform, opacity;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out;
    /* Performance optimization */
    will-change: transform, opacity;
}

.animate-pulse {
    animation: pulse 2s infinite;
    /* Performance optimization */
    will-change: opacity;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
    /* Performance optimization */
    will-change: transform;
}

.animate-rotate {
    animation: rotate 20s linear infinite;
    /* Performance optimization */
    will-change: transform;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
    /* Performance optimization */
    will-change: transform, opacity;
}

/* Scrollbar with Better Performance */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #DBE0E1;
}

::-webkit-scrollbar-thumb {
    background: #FF9408;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #CA3F16;
}

/* Focus States with Performance */
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #FF9408;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success States */
.success {
    border-color: #FF9408 !important;
    box-shadow: 0 0 0 3px rgba(255, 148, 8, 0.1) !important;
}

/* Error States */
.error {
    border-color: #CA3F16 !important;
    box-shadow: 0 0 0 3px rgba(202, 63, 22, 0.1) !important;
}

/* Futuristic Text Effects */
.tracking-wider {
    letter-spacing: 0.1em;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

/* Button Text Transform */
button {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Navigation Text */
nav span, nav a {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Headings */
h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Logo */
.logo {
    font-weight: 900;
    letter-spacing: 0.2em;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Font Hierarchy Classes */
.font-primary {
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.font-secondary {
    font-family: 'Orvior', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Clean Text Styling (No Holographic Effects) */
.clean-text {
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #100C08;
}

.clean-text-white {
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #F3F4F5;
}

/* Hover Effects for Clean Text */
.clean-text:hover {
    color: #FF9408;
    transition: color 0.3s ease;
}

.clean-text-white:hover {
    color: #FF9408;
    transition: color 0.3s ease;
}

/* ===== FUTURISTIC HERO SECTION ===== */

/* Particle System */
.particle-container {
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #FF9408, #CA3F16);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle-1 { left: 10%; animation-delay: 0s; }
.particle-2 { left: 20%; animation-delay: 1s; }
.particle-3 { left: 30%; animation-delay: 2s; }
.particle-4 { left: 40%; animation-delay: 3s; }
.particle-5 { left: 50%; animation-delay: 4s; }
.particle-6 { left: 60%; animation-delay: 5s; }
.particle-7 { left: 70%; animation-delay: 6s; }
.particle-8 { left: 80%; animation-delay: 7s; }

/* Tech Elements */
.tech-elements {
    pointer-events: none;
    z-index: 2;
}

.tech-circle {
    position: absolute;
    border: 2px solid rgba(255, 148, 8, 0.3);
    border-radius: 50%;
    animation: techPulse 4s ease-in-out infinite;
}

.tech-circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.tech-circle-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.tech-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF9408, transparent);
    animation: techPulse 3s ease-in-out infinite;
}

.tech-line-1 {
    width: 200px;
    top: 40%;
    left: 5%;
    transform: rotate(45deg);
}

.tech-line-2 {
    width: 150px;
    bottom: 40%;
    right: 10%;
    transform: rotate(-30deg);
}

.tech-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF9408;
    border-radius: 50%;
    animation: techPulse 2s ease-in-out infinite;
}

.tech-dot-1 { top: 25%; right: 25%; animation-delay: 0s; }
.tech-dot-2 { top: 75%; left: 30%; animation-delay: 1s; }
.tech-dot-3 { bottom: 20%; right: 40%; animation-delay: 2s; }

/* Futuristic Logo */
.futuristic-logo {
    position: relative;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 148, 8, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main-text {
    font-size: 2rem;
    margin-bottom: 4px;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #FF9408;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Hero Headline */
.hero-headline-container {
    position: relative;
}

.hero-headline {
    position: relative;
    z-index: 10;
    font-family: 'Space Grotesk', 'Arial Black', 'Helvetica Bold', sans-serif;
    font-weight: 700;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: -20px;
    right: -100px;
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-content {
    background: linear-gradient(45deg, #FF9408, #CA3F16);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 148, 8, 0.3);
}

.badge-icon {
    font-size: 1rem;
}

/* Hero Description */
.hero-description-container {
    position: relative;
    z-index: 10;
}

.hero-description {
    position: relative;
    z-index: 10;
}

/* CTA Section */
.hero-cta-container {
    position: relative;
    z-index: 10;
}

.cta-button-container {
    position: relative;
    display: inline-block;
}

.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 10;
}

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

.cta-button:hover .button-glow {
    left: 100%;
}

.button-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.button-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF9408;
    border-radius: 50%;
    animation: particleFloat 3s linear infinite;
}

.button-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.button-particle:nth-child(2) { top: 60%; right: 20%; animation-delay: 1s; }
.button-particle:nth-child(3) { bottom: 30%; left: 50%; animation-delay: 2s; }

.secondary-cta-container {
    position: relative;
}

.secondary-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-line {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF9408;
    transition: width 0.3s ease;
}

.secondary-cta:hover .cta-line {
    width: 100%;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.secondary-cta:hover .cta-arrow {
    transform: translateY(4px);
}

/* Trust Indicators */
.trust-indicators-container {
    position: relative;
    z-index: 10;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 148, 8, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 148, 8, 0.2);
}

.trust-icon {
    font-size: 1.2rem;
}

.company-logos-container {
    position: relative;
}

.company-logo {
    position: relative;
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-5px);
    color: #FF9408;
}

.company-logo-1 { animation-delay: 0s; }
.company-logo-2 { animation-delay: 0.2s; }
.company-logo-3 { animation-delay: 0.4s; }
.company-logo-4 { animation-delay: 0.6s; }
.company-logo-5 { animation-delay: 0.8s; }

/* Stats Counter */
.stats-container {
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 148, 8, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 148, 8, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 148, 8, 0.1);
    border-color: rgba(255, 148, 8, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF9408;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #100C08;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #FF9408, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    color: #95122C;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px auto;
        display: block;
        width: fit-content;
    }
    
    .tech-circle {
        display: none;
    }
    
    .particle {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
}

/* ===== SECTION HEADERS ===== */
.section-header-container {
    position: relative;
    margin-bottom: 2rem;
}

.section-headline {
    position: relative;
    z-index: 10;
}

.section-description {
    position: relative;
    z-index: 10;
}

/* Section-specific floating badges */
.features-badge {
    top: -30px;
    right: -120px;
}



.pricing-badge {
    top: -30px;
    right: -110px;
}

.contact-badge {
    top: -30px;
    right: -100px;
}

/* ===== FEATURES SECTION ===== */
/* Enhanced Feature Cards */
.feature-card {
    background: rgba(243, 244, 245, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 148, 8, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    /* Performance optimization */
    will-change: transform, box-shadow;
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF9408, #CA3F16, #FF9408);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 20px 40px rgba(16, 12, 8, 0.1),
        0 0 30px rgba(255, 148, 8, 0.2),
        inset 0 0 20px rgba(255, 148, 8, 0.05);
    border-color: rgba(255, 148, 8, 0.4);
}

/* Enhanced Feature Icon Container */
.feature-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-container::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(45deg, #FF9408, #CA3F16, #FF9408);
    border-radius: 50%;
    opacity: 0.3;
    animation: iconGlow 3s ease-in-out infinite;
}

.feature-icon-core {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF9408, #CA3F16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-icon-ring {
    position: absolute;
    border: 2px solid rgba(255, 148, 8, 0.3);
    border-radius: 50%;
    animation: iconRotate 4s linear infinite;
}

.feature-icon-ring-1 {
    width: 70px;
    height: 70px;
    animation-delay: 0s;
}

.feature-icon-ring-2 {
    width: 90px;
    height: 90px;
    animation-delay: 2s;
}

/* Enhanced CTA Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF9408, #CA3F16);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* Performance optimization */
    will-change: transform, box-shadow;
}

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

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

.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(255, 148, 8, 0.4),
        0 0 20px rgba(255, 148, 8, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.feature-title {
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.feature-description {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.feature-stats {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.feature-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 148, 8, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 148, 8, 0.2);
}

.feature-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF9408;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feature-stat .stat-label {
    font-size: 0.7rem;
    color: #100C08;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== PRICING SECTION ===== */
/* Enhanced Pricing Cards */
.pricing-card {
    background: rgba(243, 244, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 148, 8, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    /* Performance optimization */
    will-change: transform, box-shadow;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF9408, #CA3F16, #95122C);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.pricing-card.featured {
    border-color: rgba(255, 148, 8, 0.5);
    box-shadow: 0 10px 30px rgba(255, 148, 8, 0.2);
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(16, 12, 8, 0.15),
        0 0 40px rgba(255, 148, 8, 0.3),
        inset 0 0 30px rgba(255, 148, 8, 0.05);
    border-color: rgba(255, 148, 8, 0.6);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #FF9408, #CA3F16);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 20;
}

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

.pricing-icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.pricing-icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF9408, #CA3F16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow 3s ease-in-out infinite;
    z-index: 10;
}

.pricing-icon {
    font-size: 1.5rem;
    color: white;
}

.pricing-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 148, 8, 0.3);
    border-radius: 50%;
    animation: logoSpin 15s linear infinite;
}

.pricing-icon-ring-1 {
    width: 60px;
    height: 60px;
    animation-duration: 20s;
}

.pricing-icon-ring-2 {
    width: 70px;
    height: 70px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.pricing-title {
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
}

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

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF9408;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #100C08;
    font-family: 'Eclipse', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.period {
    font-size: 1rem;
    color: #95122C;
    font-weight: 500;
}

.price-alternative {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.alt-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #100C08;
}

.alt-period {
    font-size: 0.9rem;
    color: #95122C;
}

.savings {
    font-size: 0.8rem;
    color: #FF9408;
    font-weight: 600;
    background: rgba(255, 148, 8, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 148, 8, 0.05);
}

.feature-item .feature-icon {
    font-size: 1rem;
    color: #FF9408;
    flex-shrink: 0;
}

.feature-item .feature-text {
    font-size: 0.9rem;
    color: #100C08;
    font-weight: 500;
}

.pricing-cta {
    position: relative;
    z-index: 10;
}

.pricing-button {
    width: 100%;
    background: linear-gradient(135deg, #FF9408, #CA3F16);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 8px;
}

.pricing-button-secondary {
    width: 100%;
    background: transparent;
    color: #FF9408;
    padding: 0.75rem 1.5rem;
    border: 2px solid #FF9408;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-button-secondary:hover {
    background: #FF9408;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 148, 8, 0.3);
}

.pricing-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 148, 8, 0.3);
}

.pricing-button.featured {
    background: linear-gradient(135deg, #100C08, #95122C);
}

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

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

/* ===== CONTACT SECTION ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 148, 8, 0.05);
    border: 1px solid rgba(255, 148, 8, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 148, 8, 0.3);
    box-shadow: 0 6px 20px rgba(255, 148, 8, 0.15);
}

.contact-icon-container {
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.contact-icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF9408, #CA3F16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow 3s ease-in-out infinite;
    z-index: 10;
}

.contact-icon {
    font-size: 1.2rem;
    color: white;
}

.contact-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 148, 8, 0.3);
    border-radius: 50%;
    animation: logoSpin 15s linear infinite;
}

.contact-icon-ring-1 {
    width: 50px;
    height: 50px;
    animation-duration: 20s;
}

.contact-icon-ring-2 {
    width: 60px;
    height: 60px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.contact-title {
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.contact-description {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF9408;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.contact-link:hover {
    color: #CA3F16;
    transform: translateX(5px);
}

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

.contact-link:hover .link-arrow {
    transform: translateX(5px);
}

.contact-button {
    background: linear-gradient(135deg, #FF9408, #CA3F16);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 148, 8, 0.3);
}

.contact-button .button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover .button-glow {
    left: 100%;
}

/* Contact Form */
.contact-form-container {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 148, 8, 0.05);
    border: 1px solid rgba(255, 148, 8, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-form-card:hover::before {
    left: 100%;
}

.contact-form-card:hover {
    border-color: rgba(255, 148, 8, 0.3);
    box-shadow: 0 8px 25px rgba(255, 148, 8, 0.15);
}

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

.form-icon-container {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.form-icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF9408, #CA3F16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow 3s ease-in-out infinite;
    z-index: 10;
}

.form-icon {
    font-size: 1.2rem;
    color: white;
}

.form-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 148, 8, 0.3);
    border-radius: 50%;
    animation: logoSpin 15s linear infinite;
}

.form-icon-ring-1 {
    width: 50px;
    height: 50px;
    animation-duration: 20s;
}

.form-icon-ring-2 {
    width: 60px;
    height: 60px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.form-title {
    position: relative;
    z-index: 10;
}

.contact-form {
    position: relative;
    z-index: 10;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #100C08;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 148, 8, 0.05);
    border: 1px solid rgba(255, 148, 8, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #100C08;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF9408;
    box-shadow: 0 0 0 3px rgba(255, 148, 8, 0.1);
    background: rgba(255, 148, 8, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #95122C;
    opacity: 0.7;
}

.form-submit {
    margin-top: 2rem;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #FF9408, #CA3F16);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 148, 8, 0.3);
}

.submit-button .button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover .button-glow {
    left: 100%;
}

/* ===== FOOTER ===== */
footer {
    background: #100C08;
    color: #F3F4F5;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    max-width: 7xl;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF9408;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-text {
    color: #DBE0E1;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: #DBE0E1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-link:hover {
    color: #FF9408;
}

.footer-bottom {
    border-top: 1px solid rgba(219, 224, 225, 0.2);
    padding-top: 2rem;
    color: #DBE0E1;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Responsive Design with Performance */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    nav {
        padding: 1rem;
    }
    
    .card {
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }
    
    h2 {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
    
    /* Mobile optimizations for animations */
    .particle {
        display: none;
    }
    
    .tech-circle {
        display: none;
    }
    
    .tech-line {
        display: none;
    }
    
    /* Mobile floating badges */
    .floating-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px auto;
        display: block;
        width: fit-content;
    }
    
    /* Mobile stats */
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    /* Mobile feature cards */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Mobile pricing cards */
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    /* Mobile contact cards */
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
}

/* Custom Cursor */
body {
    cursor: default;
}

button, a {
    cursor: pointer;
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .tech-circle,
    .tech-line,
    .tech-dot,
    .logo-ring,
    .feature-icon-ring,
    .pricing-icon-ring,
    .contact-icon-ring,
    .form-icon-ring {
        animation: none !important;
    }
    
    .floating-badge,
    .scroll-indicator {
        animation: none !important;
    }
    
    .animate-fade-in-up,
    .animate-scale-in,
    .animate-pulse,
    .animate-float,
    .animate-rotate,
    .animate-glow {
        animation: none !important;
    }
    

}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .particle,
    .tech-circle,
    .tech-line,
    .tech-dot {
        opacity: 0.8;
    }
    
    .description-highlight {
        text-decoration: underline;
    }
}

/* Print styles */
@media print {
    .particle,
    .tech-circle,
    .tech-line,
    .tech-dot,
    .floating-badge,
    .scroll-indicator,
    .button-glow,
    .button-particles {
        display: none !important;
    }
    
    .animate-fade-in-up,
    .animate-scale-in,
    .animate-pulse,
    .animate-float,
    .animate-rotate,
    .animate-glow {
        animation: none !important;
    }
    

}

/* Tech Circuit Network */
.tech-circuit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #FF9408, transparent);
    height: 2px;
    opacity: 0.3;
    animation: circuitPulse 4s ease-in-out infinite;
}

.circuit-line-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    animation-delay: 0s;
}

.circuit-line-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    animation-delay: 1.5s;
}

.circuit-line-3 {
    bottom: 30%;
    left: 20%;
    width: 180px;
    animation-delay: 3s;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FF9408;
    border-radius: 50%;
    opacity: 0.6;
    animation: nodeGlow 3s ease-in-out infinite;
}

.circuit-node-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.circuit-node-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.circuit-node-3 {
    bottom: 30%;
    left: 40%;
    animation-delay: 2s;
}

.circuit-node-4 {
    top: 40%;
    right: 40%;
    animation-delay: 3s;
}

/* Energy Field */
.energy-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.energy-wave {
    position: absolute;
    border: 2px solid rgba(255, 148, 8, 0.2);
    border-radius: 50%;
    animation: energyPulse 6s ease-in-out infinite;
}

.energy-wave-1 {
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.energy-wave-2 {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.energy-wave-3 {
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Enhanced Tech Elements */
.tech-hexagon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF9408, #CA3F16);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.4;
    animation: hexagonFloat 8s ease-in-out infinite;
}

.tech-hexagon-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.tech-hexagon-2 {
    bottom: 25%;
    right: 20%;
    animation-delay: 4s;
}

.tech-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(255, 148, 8, 0.3);
    opacity: 0.5;
    animation: triangleRotate 10s linear infinite;
}

.tech-triangle-1 {
    top: 35%;
    right: 10%;
    animation-delay: 0s;
}

.tech-triangle-2 {
    bottom: 35%;
    left: 10%;
    animation-delay: 5s;
}

/* Enhanced Particle Animations */
.particle-9 {
    top: 15%;
    left: 70%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle-10 {
    top: 75%;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle-11 {
    top: 45%;
    right: 15%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle-12 {
    bottom: 20%;
    left: 60%;
    animation-delay: 6s;
    animation-duration: 14s;
}

@keyframes circuitPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
}

@keyframes nodeGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 148, 8, 0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(255, 148, 8, 0.6);
    }
}

@keyframes energyPulse {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@keyframes hexagonFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 0.6;
    }
}

@keyframes triangleRotate {
    0% {
        transform: rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.5;
    }
}

/* Neural Network Visualization */
.neural-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.neural-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF9408;
    border-radius: 50%;
    opacity: 0.7;
    animation: neuralPulse 4s ease-in-out infinite;
}

.neural-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF9408, transparent);
    opacity: 0.4;
    animation: dataFlow 3s linear infinite;
}

.neural-node-1 {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.neural-node-2 {
    top: 35%;
    left: 40%;
    animation-delay: 0.5s;
}

.neural-node-3 {
    top: 45%;
    left: 60%;
    animation-delay: 1s;
}

.neural-node-4 {
    top: 55%;
    left: 80%;
    animation-delay: 1.5s;
}

.neural-node-5 {
    top: 65%;
    left: 30%;
    animation-delay: 2s;
}

.neural-node-6 {
    top: 75%;
    left: 70%;
    animation-delay: 2.5s;
}

.neural-connection-1 {
    top: 25%;
    left: 20%;
    width: 80px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.neural-connection-2 {
    top: 35%;
    left: 40%;
    width: 60px;
    transform: rotate(-10deg);
    animation-delay: 0.5s;
}

.neural-connection-3 {
    top: 45%;
    left: 60%;
    width: 70px;
    transform: rotate(20deg);
    animation-delay: 1s;
}

.neural-connection-4 {
    top: 55%;
    left: 30%;
    width: 90px;
    transform: rotate(-15deg);
    animation-delay: 1.5s;
}

/* Data Flow Effects */
.data-stream {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.data-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #CA3F16;
    border-radius: 50%;
    opacity: 0.8;
    animation: dataStream 8s linear infinite;
}

.data-particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.data-particle-2 {
    top: 20%;
    left: 30%;
    animation-delay: 2s;
}

.data-particle-3 {
    top: 30%;
    left: 50%;
    animation-delay: 4s;
}

.data-particle-4 {
    top: 40%;
    left: 70%;
    animation-delay: 6s;
}

.data-particle-5 {
    top: 50%;
    left: 90%;
    animation-delay: 8s;
}

/* Quantum Effects */
.quantum-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #FF9408, #CA3F16);
    border-radius: 50%;
    opacity: 0.6;
    animation: quantumFloat 12s ease-in-out infinite;
}

.quantum-particle-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.quantum-particle-2 {
    top: 25%;
    right: 25%;
    animation-delay: 3s;
}

.quantum-particle-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 6s;
}

.quantum-particle-4 {
    bottom: 35%;
    right: 35%;
    animation-delay: 9s;
}

@keyframes neuralPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes dataFlow {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
}

@keyframes dataStream {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0px);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

@keyframes quantumFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 0.8;
    }
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

/* Performance Optimizations */
.particle-container,
.tech-elements,
.neural-network,
.data-stream,
.quantum-field {
    /* GPU acceleration */
    transform: translateZ(0);
    will-change: transform;
}

/* Optimize animations for mobile */
@media (max-width: 768px) {
    .particle-container,
    .tech-elements,
    .neural-network,
    .data-stream,
    .quantum-field {
        /* Reduce animations on mobile for better performance */
        animation-duration: 2s;
    }
    
    .particle {
        /* Fewer particles on mobile */
        opacity: 0.3;
    }
}

/* Optimize for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Notification System */
.notification {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-success {
    background: rgba(34, 197, 94, 0.9);
    border-color: rgba(34, 197, 94, 0.3);
}

.notification-error {
    background: rgba(239, 68, 68, 0.9);
    border-color: rgba(239, 68, 68, 0.3);
}

.notification-info {
    background: rgba(59, 130, 246, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Form Loading States */
.submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-button.loading .button-text {
    opacity: 0;
}

.submit-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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



/* Performance Optimizations */



