/* ============================================
   CYBERPUNK LANDING PAGE - STEADYSUCCESS
   ============================================ */

:root {
    /* Cyberpunk Color Palette */
    --primary-bg: #0a0a0a;
    --secondary-bg: #0f0f0f;
    --card-bg: #141414;
    
    /* Neon Colors */
    --neon-blue: #00d9ff;
    --neon-cyan: #00ffff;
    --neon-magenta: #ff00ff;
    --neon-purple: #9d00ff;
    --neon-pink: #ff007f;
    
    /* Trust Colors (Inviting) */
    --trust-green: #00ff88;
    --warm-orange: #ff9d00;
    --soft-violet: #b794f6;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    
    /* Fonts */
    --font-mono: 'Space Mono', monospace;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 80px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridScroll 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

.circuit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(157, 0, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 0, 127, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    position: relative;
    z-index: 10;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.logo {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    position: relative;
}

.logo-accent {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* ============================================
   BUTTONS
   ============================================ */

.cta-button {
    position: relative;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--neon-cyan);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transform: translateZ(0);
    will-change: transform;
}

.cta-button:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 2px 15px var(--neon-cyan);
}

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

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

.cta-button:hover {
    box-shadow: 0 0 20px var(--neon-cyan), inset 0 0 20px rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 14px;
}

.primary-cta {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: 2px solid var(--neon-blue);
    box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

.primary-cta:hover {
    box-shadow: 0 6px 40px rgba(0, 217, 255, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.secondary-cta {
    border-color: var(--neon-magenta);
}

.secondary-cta:hover {
    box-shadow: 0 0 20px var(--neon-magenta);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.cta-button:hover .button-glow {
    width: 200%;
    height: 200%;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 80px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--neon-cyan);
    border-radius: 30px;
    margin-bottom: 30px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    }
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: pulse 1.5s ease-in-out infinite;
}

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

.badge-text {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--neon-cyan);
}

.hero-title {
    font-family: var(--font-mono);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.glitch {
    position: relative;
    color: var(--text-primary);
    text-shadow: 
        0 0 20px rgba(0, 217, 255, 0.5),
        0 0 40px rgba(0, 217, 255, 0.3);
    animation: glitchText 5s infinite;
}

@keyframes glitchText {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

.hero-subtitle {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

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

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.highlight-text {
    color: var(--trust-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats-mini {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-icon {
    font-size: 20px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    flex: 1;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-orb {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.4),
        inset 0 0 40px rgba(0, 217, 255, 0.2);
    animation: orbRotate 20s linear infinite, orbPulse 3s ease-in-out infinite;
    position: relative;
}

.central-orb::before,
.central-orb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.central-orb::before {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    animation: orbRotate 15s linear infinite reverse;
}

.central-orb::after {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.2) 0%, transparent 70%);
}

@keyframes orbRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbPulse {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(0, 217, 255, 0.4),
            inset 0 0 40px rgba(0, 217, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(0, 217, 255, 0.6),
            inset 0 0 60px rgba(0, 217, 255, 0.3);
    }
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 30px rgba(0, 217, 255, 0.2);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

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

.card-icon {
    font-size: 32px;
}

.card-text {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--neon-cyan);
    letter-spacing: 1px;
}

/* ============================================
   HOW IT WORKS SECTION - TIMELINE
   ============================================ */

.how-it-works-section {
    position: relative;
    padding: var(--section-padding) 80px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.4);
}

.journey-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 80px;
}

.timeline-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent,
        var(--neon-cyan) 10%,
        var(--neon-cyan) 90%,
        transparent
    );
    box-shadow: 0 0 10px var(--neon-cyan);
}

.journey-phase {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding-left: 20px;
    opacity: 0;
    animation: phaseSlideIn 0.6s ease forwards;
}

.journey-phase:nth-child(2) { animation-delay: 0.1s; }
.journey-phase:nth-child(3) { animation-delay: 0.2s; }
.journey-phase:nth-child(4) { animation-delay: 0.3s; }
.journey-phase:nth-child(5) { animation-delay: 0.4s; }
.journey-phase:nth-child(6) { animation-delay: 0.5s; }
.journey-phase:nth-child(7) { animation-delay: 0.6s; }

@keyframes phaseSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phase-number {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.8);
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-cyan);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
}

.journey-phase:hover .phase-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
}

.phase-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    animation: phasePulse 2s ease-out infinite;
}

@keyframes phasePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.phase-content {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.phase-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.journey-phase:hover .phase-content {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.journey-phase:hover .phase-content::before {
    opacity: 1;
}

.phase-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.phase-title {
    font-family: var(--font-mono);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.phase-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.phase-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.phase-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.mini-icon {
    color: var(--trust-green);
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Featured Phase */
.featured-phase {
    position: relative;
}

.featured-phase .phase-number {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.featured-phase .phase-pulse {
    border-color: var(--neon-magenta);
}

.featured-phase .phase-content {
    border-color: var(--neon-magenta);
    background: rgba(157, 0, 255, 0.05);
}

.featured-phase:hover .phase-content {
    border-color: var(--neon-magenta);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.3);
}

.phase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
    z-index: 2;
}

/* ============================================
   COMPANIES SECTION - ANIMATED LOGOS
   ============================================ */

.companies-section {
    position: relative;
    padding: 120px 80px;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(5, 5, 10, 0.98) 100%);
    overflow: hidden;
}

.companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.companies-content {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.companies-showcase {
    position: relative;
    margin: 80px 0;
    overflow: hidden;
    padding: 60px 0;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

.companies-showcase::before,
.companies-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.companies-showcase::before {
    left: 0;
    background: linear-gradient(90deg, rgba(5, 5, 10, 1) 0%, rgba(5, 5, 10, 0.8) 50%, transparent 100%);
}

.companies-showcase::after {
    right: 0;
    background: linear-gradient(270deg, rgba(5, 5, 10, 1) 0%, rgba(5, 5, 10, 0.8) 50%, transparent 100%);
}

.companies-track {
    display: flex;
    gap: 80px;
    animation: infiniteScroll 50s linear infinite;
    will-change: transform;
}

.companies-track:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Entrance animation for logos */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pulse/breathing effect */
@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 217, 255, 0);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.1);
    }
}

.company-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    animation: logoEntrance 0.8s ease-out backwards, logoPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--logo-index, 0) * 0.1s), 1s;
}

/* Enhanced shimmer effect */
.company-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.05) 80%,
        transparent 100%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.company-logo:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 1;
    animation: shimmerSweep 1.5s ease-out;
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Glow border effect */
.company-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, 
        transparent 0%, 
        var(--neon-cyan) 50%, 
        transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.company-logo:hover::after {
    opacity: 1;
}

.company-logo:hover {
    transform: translateY(-20px) scale(1.15) rotateZ(2deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(0, 217, 255, 0.4),
        0 0 120px rgba(0, 217, 255, 0.2),
        inset 0 0 50px rgba(0, 217, 255, 0.05);
    animation: hoverPulse 1.5s ease-in-out infinite;
}

@keyframes hoverPulse {
    0%, 100% {
        box-shadow: 
            0 40px 80px -20px rgba(0, 0, 0, 0.8),
            0 0 80px rgba(0, 217, 255, 0.4),
            0 0 120px rgba(0, 217, 255, 0.2),
            inset 0 0 50px rgba(0, 217, 255, 0.05);
    }
    50% {
        box-shadow: 
            0 40px 80px -20px rgba(0, 0, 0, 0.8),
            0 0 100px rgba(0, 217, 255, 0.6),
            0 0 150px rgba(0, 217, 255, 0.3),
            inset 0 0 60px rgba(0, 217, 255, 0.08);
    }
}

.logo-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.company-text {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    white-space: nowrap;
    will-change: transform, color, text-shadow;
}

.company-logo:hover .company-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 30px var(--neon-cyan),
        0 0 60px rgba(0, 217, 255, 0.5),
        0 0 90px rgba(0, 217, 255, 0.3);
    transform: scale(1.15);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 0 30px var(--neon-cyan),
            0 0 60px rgba(0, 217, 255, 0.5),
            0 0 90px rgba(0, 217, 255, 0.3);
    }
    50% {
        text-shadow: 
            0 0 40px var(--neon-cyan),
            0 0 80px rgba(0, 217, 255, 0.7),
            0 0 120px rgba(0, 217, 255, 0.5);
    }
}

/* Company-specific brand color glows - PREMIUM */
.company-logo[data-company="google"]:hover {
    border-color: rgba(66, 133, 244, 0.5);
    box-shadow: 
        0 30px 60px -15px rgba(66, 133, 244, 0.5),
        0 0 60px rgba(66, 133, 244, 0.4),
        inset 0 0 35px rgba(66, 133, 244, 0.05);
}

.company-logo[data-company="google"]:hover .company-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 30px rgba(66, 133, 244, 0.8),
        0 0 60px rgba(234, 67, 53, 0.6),
        0 0 90px rgba(251, 188, 5, 0.4);
    animation: googleTextGlow 2s ease-in-out infinite;
}

@keyframes googleTextGlow {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(66, 133, 244, 0.8),
            0 0 60px rgba(234, 67, 53, 0.6),
            0 0 90px rgba(251, 188, 5, 0.4);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(66, 133, 244, 1),
            0 0 80px rgba(234, 67, 53, 0.8),
            0 0 120px rgba(52, 168, 83, 0.6);
    }
}

.company-logo[data-company="google"]:hover::after {
    background: linear-gradient(135deg, 
        rgba(66, 133, 244, 0.7) 0%, 
        rgba(234, 67, 53, 0.7) 25%,
        rgba(251, 188, 5, 0.7) 50%,
        rgba(52, 168, 83, 0.7) 75%,
        rgba(66, 133, 244, 0.7) 100%);
}

.company-logo[data-company="apple"]:hover {
    border-color: rgba(170, 170, 170, 0.5);
    box-shadow: 
        0 30px 60px -15px rgba(100, 100, 100, 0.6),
        0 0 60px rgba(170, 170, 170, 0.5),
        inset 0 0 35px rgba(200, 200, 200, 0.05);
}

.company-logo[data-company="apple"]:hover .company-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 30px rgba(200, 200, 200, 0.8),
        0 0 60px rgba(255, 255, 255, 0.5),
        0 0 90px rgba(200, 200, 200, 0.3);
}

.company-logo[data-company="amazon"]:hover {
    border-color: rgba(255, 153, 0, 0.7);
    box-shadow: 
        0 40px 80px -20px rgba(255, 153, 0, 0.7),
        0 0 100px rgba(255, 153, 0, 0.6),
        0 0 150px rgba(255, 153, 0, 0.3),
        inset 0 0 50px rgba(255, 153, 0, 0.08);
    animation: amazonHover 1.5s ease-in-out infinite;
}

@keyframes amazonHover {
    0%, 100% {
        box-shadow: 
            0 40px 80px -20px rgba(255, 153, 0, 0.7),
            0 0 100px rgba(255, 153, 0, 0.6),
            0 0 150px rgba(255, 153, 0, 0.3),
            inset 0 0 50px rgba(255, 153, 0, 0.08);
    }
    50% {
        box-shadow: 
            0 40px 80px -20px rgba(255, 153, 0, 0.9),
            0 0 120px rgba(255, 153, 0, 0.8),
            0 0 180px rgba(255, 153, 0, 0.4),
            inset 0 0 60px rgba(255, 153, 0, 0.12);
    }
}

.company-logo[data-company="amazon"]:hover .company-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 30px rgba(255, 153, 0, 0.9),
        0 0 60px rgba(255, 153, 0, 0.7),
        0 0 90px rgba(255, 183, 77, 0.5);
    animation: amazonTextGlow 2s ease-in-out infinite;
}

@keyframes amazonTextGlow {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(255, 153, 0, 0.9),
            0 0 60px rgba(255, 153, 0, 0.7),
            0 0 90px rgba(255, 183, 77, 0.5);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(255, 153, 0, 1),
            0 0 80px rgba(255, 153, 0, 0.9),
            0 0 120px rgba(255, 183, 77, 0.7);
    }
}

.company-logo[data-company="amazon"]:hover::after {
    background: linear-gradient(135deg, 
        rgba(255, 153, 0, 0.8) 0%, 
        rgba(255, 183, 77, 0.6) 50%, 
        rgba(255, 153, 0, 0.8) 100%);
    animation: amazonBorderGlow 2s ease-in-out infinite;
}

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

.company-logo[data-company="meta"]:hover {
    border-color: rgba(0, 129, 251, 0.7);
    box-shadow: 
        0 40px 80px -20px rgba(0, 129, 251, 0.7),
        0 0 100px rgba(0, 129, 251, 0.6),
        0 0 150px rgba(0, 129, 251, 0.3),
        inset 0 0 50px rgba(0, 129, 251, 0.08);
    animation: metaHover 1.5s ease-in-out infinite;
}

@keyframes metaHover {
    0%, 100% {
        box-shadow: 
            0 40px 80px -20px rgba(0, 129, 251, 0.7),
            0 0 100px rgba(0, 129, 251, 0.6),
            0 0 150px rgba(0, 129, 251, 0.3),
            inset 0 0 50px rgba(0, 129, 251, 0.08);
    }
    50% {
        box-shadow: 
            0 40px 80px -20px rgba(0, 129, 251, 0.9),
            0 0 120px rgba(0, 129, 251, 0.8),
            0 0 180px rgba(0, 184, 245, 0.4),
            inset 0 0 60px rgba(0, 129, 251, 0.12);
    }
}

.company-logo[data-company="meta"]:hover .company-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 30px rgba(0, 129, 251, 0.9),
        0 0 60px rgba(0, 129, 251, 0.7),
        0 0 90px rgba(0, 184, 245, 0.5);
    animation: metaTextGlow 2s ease-in-out infinite;
}

@keyframes metaTextGlow {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(0, 129, 251, 0.9),
            0 0 60px rgba(0, 129, 251, 0.7),
            0 0 90px rgba(0, 184, 245, 0.5);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(0, 129, 251, 1),
            0 0 80px rgba(0, 184, 245, 0.9),
            0 0 120px rgba(0, 184, 245, 0.7);
    }
}

.company-logo[data-company="meta"]:hover::after {
    background: linear-gradient(135deg, 
        rgba(0, 129, 251, 0.8) 0%, 
        rgba(0, 184, 245, 0.6) 50%, 
        rgba(0, 129, 251, 0.8) 100%);
    animation: metaBorderGlow 2s ease-in-out infinite;
}

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

.company-logo[data-company="netflix"]:hover {
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 
        0 30px 60px -15px rgba(229, 9, 20, 0.6),
        0 0 60px rgba(229, 9, 20, 0.5),
        inset 0 0 35px rgba(229, 9, 20, 0.05);
}

.company-logo[data-company="microsoft"]:hover {
    border-color: rgba(0, 164, 239, 0.5);
    box-shadow: 
        0 30px 60px -15px rgba(0, 164, 239, 0.5),
        0 0 60px rgba(0, 164, 239, 0.4),
        inset 0 0 35px rgba(0, 164, 239, 0.05);
}

.company-logo[data-company="ibm"]:hover {
    box-shadow: 0 30px 60px -15px rgba(31, 112, 193, 0.5), 0 0 60px rgba(31, 112, 193, 0.4);
}

.company-logo[data-company="walmart"]:hover {
    box-shadow: 0 30px 60px -15px rgba(255, 194, 32, 0.5), 0 0 60px rgba(0, 113, 206, 0.4);
}

.company-logo[data-company="ford"]:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 52, 120, 0.6), 0 0 60px rgba(0, 52, 120, 0.5);
}

.company-logo[data-company="gm"]:hover {
    box-shadow: 0 30px 60px -15px rgba(237, 28, 36, 0.5), 0 0 60px rgba(0, 92, 185, 0.4);
}

.company-logo[data-company="ge"]:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 94, 184, 0.6), 0 0 60px rgba(0, 94, 184, 0.5);
}

.company-logo[data-company="att"]:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 168, 225, 0.6), 0 0 60px rgba(0, 168, 225, 0.5);
}

.company-logo[data-company="verizon"]:hover {
    box-shadow: 0 30px 60px -15px rgba(205, 4, 11, 0.6), 0 0 60px rgba(205, 4, 11, 0.5);
}

/* Additional brand-specific text effects */
.company-logo[data-company="ford"]:hover .company-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 30px rgba(0, 52, 120, 0.9),
        0 0 60px rgba(0, 52, 120, 0.7),
        0 0 90px rgba(0, 52, 120, 0.5);
}

.company-logo[data-company="gm"]:hover .company-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 30px rgba(0, 92, 185, 0.8),
        0 0 60px rgba(237, 28, 36, 0.7),
        0 0 90px rgba(0, 92, 185, 0.5);
}

.company-logo[data-company="att"]:hover .company-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 30px rgba(0, 168, 225, 0.9),
        0 0 60px rgba(0, 168, 225, 0.7),
        0 0 90px rgba(0, 168, 225, 0.5);
}

.company-logo[data-company="verizon"]:hover .company-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 
        0 0 30px rgba(205, 4, 11, 0.9),
        0 0 60px rgba(205, 4, 11, 0.7),
        0 0 90px rgba(205, 4, 11, 0.5);
}

.companies-badge {
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--trust-green);
    border-radius: 30px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--trust-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.badge-icon {
    font-size: 20px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    position: relative;
    padding: var(--section-padding) 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-label {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
    text-transform: uppercase;
}

/* Creative Label Design */
.creative-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.label-line {
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.label-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(157, 0, 255, 0.1) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--neon-cyan);
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), inset 0 0 20px rgba(0, 217, 255, 0.1);
    animation: badgeFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.label-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: dotPulse 1.5s ease-in-out infinite;
}

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

.badge-sparkle {
    font-size: 16px;
    animation: sparkleRotate 4s linear infinite;
    display: inline-block;
}

@keyframes sparkleRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.2);
    }
    50% {
        transform: rotate(180deg) scale(1);
    }
    75% {
        transform: rotate(270deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.section-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.text-glow {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    position: relative;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

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

.feature-card.featured {
    border-color: var(--neon-magenta);
    background: rgba(157, 0, 255, 0.03);
}

.feature-card.featured:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

.card-number {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 217, 255, 0.1);
    margin-bottom: 20px;
}

.card-icon-large {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    color: var(--neon-cyan);
}

.icon-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.card-title {
    font-family: var(--font-mono);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.card-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.check-icon {
    color: var(--trust-green);
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.card-glow-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .card-glow-effect {
    opacity: 1;
    animation: glowSlide 2s ease-in-out infinite;
}

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

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    position: relative;
    padding: var(--section-padding) 80px;
    background: rgba(15, 15, 15, 0.8);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.stat-line {
    position: absolute;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.stat-line:nth-child(1) {
    top: 20%;
    animation: statLineMove 8s ease-in-out infinite;
}

.stat-line:nth-child(2) {
    top: 50%;
    animation: statLineMove 10s ease-in-out infinite reverse;
}

.stat-line:nth-child(3) {
    top: 80%;
    animation: statLineMove 12s ease-in-out infinite;
}

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

.stats-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.stat-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.stat-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: statIconPulse 2s ease-in-out infinite;
}

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

.stat-emoji {
    font-size: 48px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 56px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    display: inline-block;
}

.stat-prefix,
.stat-suffix {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    display: inline-block;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 15px 0 5px;
}

.stat-sublabel {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    padding: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--trust-green);
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.trust-icon {
    font-size: 20px;
}

.trust-badge span:last-child {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--trust-green);
}

.trust-title {
    font-family: var(--font-mono);
    font-size: 36px;
    margin-bottom: 20px;
}

.trust-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-check {
    color: var(--trust-green);
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--section-padding) 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.cta-container {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(157, 0, 255, 0.05) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 24px;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 217, 255, 0.03) 50%, transparent 70%);
    animation: ctaSweep 10s linear infinite;
}

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

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-mono);
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mega-cta {
    padding: 20px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: 2px solid var(--neon-blue);
    box-shadow: 0 8px 40px rgba(0, 217, 255, 0.4);
}

.mega-cta:hover {
    box-shadow: 0 12px 60px rgba(0, 217, 255, 0.6);
}

.button-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.mega-cta:hover .button-arrow {
    transform: translateX(5px);
}

.cta-subtext {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.cta-icon {
    color: var(--trust-green);
}

.cta-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

.ring-3 {
    width: 260px;
    height: 260px;
    animation-delay: 2s;
}

@keyframes pulseRing {
    0% {
        opacity: 1;
        transform: scale(0.5);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: relative;
    padding: 80px 80px 40px;
    background: rgba(15, 15, 15, 0.9);
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-legal {
    display: flex;
    gap: 30px;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--text-secondary);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(1.02);
}

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

.whatsapp-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 6px;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-text {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Pulse effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50px;
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    .whatsapp-float {
        border-radius: 50%;
        padding: 16px;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --container-padding: 60px;
    }

    .nav-container,
    .hero,
    .how-it-works-section,
    .companies-section,
    .features,
    .stats-section,
    .trust-section,
    .cta-section,
    .footer {
        padding-left: 40px;
        padding-right: 40px;
    }

    .phase-features {
        grid-template-columns: 1fr;
    }

    .company-logo {
        min-width: 160px;
        height: 70px;
    }

    .company-text {
        font-size: 20px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats-mini {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(0, 217, 255, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    /* Timeline Mobile */
    .timeline-connector {
        left: 30px;
    }

    .journey-phase {
        grid-template-columns: 60px 1fr;
        gap: 25px;
        padding-left: 10px;
    }

    .phase-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .phase-content {
        padding: 25px;
    }

    .phase-icon {
        font-size: 36px;
    }

    .phase-title {
        font-size: 22px;
    }

    .phase-description {
        font-size: 15px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-features {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-visual {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .hero,
    .how-it-works-section,
    .companies-section,
    .features,
    .stats-section,
    .trust-section,
    .cta-section,
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .company-logo {
        min-width: 140px;
        height: 60px;
    }

    .company-text {
        font-size: 18px;
    }

    .timeline-connector {
        left: 20px;
    }

    .journey-phase {
        grid-template-columns: 50px 1fr;
        gap: 20px;
        padding-left: 5px;
    }

    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
        border-width: 2px;
    }

    .phase-content {
        padding: 20px;
    }

    .phase-title {
        font-size: 20px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-card,
    .stat-card,
    .trust-content,
    .cta-container {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
    
    /* Mobile Trust Badges */
    .trust-badges-hero {
        gap: 8px;
        margin-top: 25px;
    }
    
    .trust-badge-item {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    /* Mobile Touch Targets */
    .cta-button,
    .submit-button,
    .email-capture-button {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    /* Mobile Hero Stats */
    .hero-stats-mini {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Mobile CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .mega-cta {
        width: 100%;
    }
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 0;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateY(-2px);
}

.trust-badge-item .badge-icon {
    font-size: 16px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.trust-badge-card:hover {
    border-color: rgba(0, 217, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.badge-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.badge-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.badge-card-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 40px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(0, 217, 255, 0.5);
    background: rgba(20, 20, 20, 0.8);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 217, 255, 0.05);
}

.faq-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    font-weight: 700;
    color: var(--neon-cyan);
    font-size: 18px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    color: var(--neon-cyan);
    font-size: 24px;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(0, 217, 255, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
    padding-top: 15px;
}

.faq-answer strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* ============================================
   COMPETITIVE ADVANTAGE SECTION
   ============================================ */

.advantage-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 40px;
}

.advantage-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.25);
    background: rgba(20, 20, 20, 0.85);
}

.advantage-card.featured-advantage {
    border-color: rgba(0, 217, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(20, 20, 20, 0.6) 100%);
}

.advantage-card.featured-advantage:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(20, 20, 20, 0.85) 100%);
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 72px;
    font-weight: 700;
    color: rgba(0, 217, 255, 0.1);
    font-family: var(--font-mono);
    line-height: 1;
    z-index: 0;
}

.advantage-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.4));
    position: relative;
    z-index: 1;
}

.advantage-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.advantage-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.advantage-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.highlight-icon {
    color: var(--trust-green);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.advantage-highlight span:last-child {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}


/* ============================================
   FORM PROGRESS INDICATOR
   ============================================ */

.form-progress {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 25px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 33.33%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(0, 217, 255, 0.2);
    z-index: -1;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active::after {
    background: rgba(0, 217, 255, 0.5);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.step-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--text-primary);
}

/* Form Validation */
.input-validation {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    min-height: 20px;
}

.validation-icon {
    font-size: 16px;
    display: inline-block;
}

.valid-icon {
    color: var(--trust-green);
}

.error-icon {
    color: var(--neon-magenta);
}

.validation-message {
    font-size: 12px;
    color: var(--text-muted);
}

.form-input.valid {
    border-color: var(--trust-green);
}

.form-input.error {
    border-color: var(--neon-magenta);
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
    .trust-badges-hero {
        gap: 10px;
        margin-top: 30px;
    }
    
    .trust-badge-item {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .trust-badge-card {
        padding: 20px 15px;
    }
    
    .badge-card-icon {
        font-size: 24px;
    }
    
    .badge-card-title {
        font-size: 14px;
    }
    
    .badge-card-desc {
        font-size: 11px;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
        gap: 15px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
    
    .advantage-number {
        font-size: 56px;
        top: 15px;
        right: 20px;
    }
    
    .advantage-icon {
        font-size: 48px;
    }
    
    .advantage-title {
        font-size: 22px;
    }
    
    .progress-steps {
        gap: 10px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        flex-wrap: wrap;
        padding: 15px;
    }
    
    .faq-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .faq-question h3 {
        font-size: 14px;
        padding-right: 40px;
    }
    
    /* Extra Small Mobile */
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .trust-badges-hero {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-badge-item {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-phase {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }
    
    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .phase-title {
        font-size: 18px;
    }
    
    .phase-description {
        font-size: 13px;
    }
    
    /* Reduce animations on very small devices */
    .floating-card,
    .central-orb {
        animation-duration: 4s;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .advantage-number {
        font-size: 48px;
    }
    
    .advantage-icon {
        font-size: 40px;
    }
    
    .advantage-title {
        font-size: 20px;
    }
    
    .advantage-description {
        font-size: 14px;
    }
    
}

