/* ==========================================================
   CSS VARIABLES & RESET
   ========================================================== */
:root {
    --navy-900: #0a1628;
    --navy-800: #0f2040;
    --navy-700: #1a2d5a;
    --royal-400: #4f8cff;
    --royal-500: #2563eb;
    --royal-600: #1d4ed8;
    --electric: #00d4ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-gray: #94a3b8;
    --text-white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy-900);
    color: var(--text-white);
    overflow-x: hidden;
}

/* ==========================================================
   SCROLLBAR
   ========================================================== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--navy-900);
}
::-webkit-scrollbar-thumb {
    background: var(--electric);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--royal-500);
}

/* ==========================================================
   UTILITY
   ========================================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--royal-400), var(--electric));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.08);
    transform: translateY(-4px);
}

.text-gray-400 { color: var(--text-gray); }
.text-electric { color: var(--electric); }

/* ==========================================================
   ANIMATED BACKGROUND
   ========================================================== */
#animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#bgCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(37, 99, 235, 0.15);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 212, 255, 0.10);
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}
.orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}
.orb-4 {
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.06);
    top: 20%;
    left: 20%;
    animation-delay: -15s;
}
.orb-5 {
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.08);
    bottom: 20%;
    right: 20%;
    animation-delay: -8s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(10px, -10px) scale(1.05); }
}

/* ==========================================================
   SCROLL PROGRESS
   ========================================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.05);
}
#scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--royal-500), var(--electric));
    transition: width 0.1s linear;
}

/* ==========================================================
   NAVIGATION - COMPLETE FIX
   ========================================================== */
#mainNav {
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    padding: 12px 0;
    min-height: 80px;
    z-index: 999;
}

#mainNav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    height: 40px;
    display: inline-block;
}

.logo-text {
    color: #ffffff;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--royal-400), var(--electric));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--electric);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ffffff !important;
}

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

.nav-link.active {
    color: #ffffff !important;
}

.nav-link.active::after {
    width: 80%;
}

/* NAV BUTTONS - VISIBLE & WORKING */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
}

.btn-outline-glass {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--electric) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.btn-primary-glow {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--royal-500), var(--electric)) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary-glow:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
    color: #ffffff !important;
}

.btn-primary-glow.btn-lg,
.btn-glass.btn-lg {
    padding: 14px 40px !important;
    font-size: 1.1rem;
}

.btn-glass {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px !important;
    color: var(--text-white) !important;
    padding: 14px 32px !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--electric);
    transform: translateY(-2px);
}

/* ==========================================================
   MOBILE NAV
   ========================================================== */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1) !important;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 16px;
        margin-top: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link {
        padding: 12px 16px !important;
        text-align: center;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-top: 12px;
        gap: 8px;
    }
    
    .btn-outline-glass,
    .btn-primary-glow {
        width: 100% !important;
        justify-content: center;
        padding: 10px 20px !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .nav-logo {
        height: 32px;
    }
    
    .btn-outline-glass,
    .btn-primary-glow {
        font-size: 0.8rem;
        padding: 8px 16px !important;
    }
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-section {
    padding-top: 80px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--electric);
    font-size: 0.9rem;
    font-weight: 500;
}

.dot-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--electric);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--text-white);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 500px;
    line-height: 1.7;
}

.trust-indicators .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==========================================================
   HERO ILLUSTRATION
   ========================================================== */
.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.illustration-card {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    text-align: center;
    position: relative;
    animation: floatMain 6s ease-in-out infinite;
}

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

.pan-card-inner {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-card {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
    white-space: nowrap;
    animation: floatCard 8s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.fc-1 { top: -10%; right: -10%; animation-delay: 0s; }
.fc-2 { bottom: -10%; left: -15%; animation-delay: -2s; }
.fc-3 { top: 30%; left: -20%; animation-delay: -4s; }
.fc-4 { bottom: 20%; right: -15%; animation-delay: -6s; }

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

/* ==========================================================
   SECTION TITLES
   ========================================================== */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
}
.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================
   FEATURE CARDS
   ========================================================== */
.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.bg-gradient-yellow { background: linear-gradient(135deg, #f59e0b, #f97316); }
.bg-gradient-green { background: linear-gradient(135deg, #10b981, #059669); }
.bg-gradient-blue { background: linear-gradient(135deg, var(--royal-500), var(--royal-400)); }
.bg-gradient-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.bg-gradient-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.bg-gradient-red { background: linear-gradient(135deg, #ef4444, #dc2626); }

/* ==========================================================
   PROCESS TIMELINE
   ========================================================== */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 70px;
    opacity: 0;
    transform: translateY(30px);
    animation: stepReveal 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }
.process-step:nth-child(7) { animation-delay: 0.7s; }
.process-step:nth-child(8) { animation-delay: 0.8s; }

@keyframes stepReveal {
    to { opacity: 1; transform: translateY(0); }
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--electric);
    opacity: 0.5;
    margin-bottom: 8px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--electric);
    transition: all 0.4s ease;
    margin-bottom: 8px;
    border-color: rgba(255, 255, 255, 0.06);
}

.process-step:hover .step-icon {
    border-color: var(--electric);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
    transform: scale(1.1);
}

.step-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-align: center;
    font-weight: 500;
    max-width: 80px;
    line-height: 1.2;
}

.process-line {
    position: absolute;
    top: 62px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 1;
}

.process-line-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--royal-500), var(--electric));
    transition: width 1.5s ease;
}

/* ==========================================================
   STATISTICS
   ========================================================== */
.stat-card {
    transition: all 0.4s ease;
}
.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--electric);
    margin-bottom: 12px;
}
.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
}
.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ==========================================================
   TRACK CARD
   ========================================================== */
.track-card .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 50px !important;
    padding: 12px 24px;
    font-size: 1rem;
}

.track-card .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--electric);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
}

.track-illustration .track-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulseCircle 3s ease-in-out infinite;
}

@keyframes pulseCircle {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.05); }
    50% { box-shadow: 0 0 80px rgba(0, 212, 255, 0.15); }
}

/* ==========================================================
   FEATURE MINI
   ========================================================== */
.feature-mini {
    transition: all 0.3s ease;
    height: 100%;
}
.feature-mini:hover {
    transform: translateX(4px);
    border-color: rgba(0, 212, 255, 0.2);
}

.feature-mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(0, 212, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-mini h5 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-item {
    min-width: 100%;
    padding: 30px;
}

.testimonial-dots {
    display: inline-flex;
    gap: 8px;
    padding: 0 16px;
}
.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.testimonial-dot.active {
    background: var(--electric);
    width: 30px;
    border-radius: 5px;
}

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.glass-accordion .accordion-item {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.glass-accordion .accordion-button {
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    padding: 18px 24px;
    border: none;
    box-shadow: none !important;
}

.glass-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.glass-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 212, 255, 0.05);
    color: var(--electric);
}

.glass-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-item {
    transition: all 0.3s ease;
}
.contact-item:hover {
    transform: translateX(6px);
    border-color: rgba(0, 212, 255, 0.2);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(0, 212, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    background: rgba(10, 22, 40, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
    margin-top: 40px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--electric);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--electric);
    color: var(--electric);
    transform: translateY(-3px);
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1rem; }
    .hero-illustration { min-height: 300px; }
    .floating-card { font-size: 0.7rem; padding: 6px 12px; }
    .fc-1 { top: -5%; right: -5%; }
    .fc-2 { bottom: -5%; left: -5%; }
    .fc-3 { top: 40%; left: -10%; }
    .fc-4 { bottom: 30%; right: -10%; }
    .process-steps { justify-content: center; gap: 20px; }
    .process-step { flex: 0 0 calc(25% - 20px); }
    .process-line { display: none; }
    .stat-number { font-size: 2rem; }
}

@media (max-width: 767px) {
    .process-step { flex: 0 0 calc(33.333% - 20px); }
    .step-label { font-size: 0.6rem; max-width: 60px; }
    .step-icon { width: 44px; height: 44px; font-size: 1rem; }
    .hero-illustration { min-height: 250px; }
    .floating-card { display: none; }
    .hero-section { padding-top: 80px; }
    .track-card { padding: 20px !important; }
}

@media (max-width: 480px) {
    .process-step { flex: 0 0 calc(50% - 10px); }
    .hero-title { font-size: 2rem; }
    .badge-glow { font-size: 0.75rem; padding: 6px 14px; }
    .feature-card { padding: 20px !important; }
    .feature-icon { width: 48px; height: 48px; font-size: 1.2rem; }
}