/* ============================================
   NIMXUS - VELOX HUB PREMIUM STYLES
   ============================================ */

:root {
    /* Couleurs VELOX */
    --velox-yellow: #F4D03F;
    --velox-orange: #FF6F00;
    --tech-blue: #2196F3;
    --tech-green: #27AE60;
    --dark-bg: #0A0E1A;
    --dark-surface: #1A1F33;
    --dark-card: #242938;
    --gray: #546E7A;
    --light-gray: #B0BEC5;
    --white: #FFFFFF;
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-title: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --glow-yellow: 0 0 30px rgba(244, 208, 63, 0.4);
    --glow-blue: 0 0 30px rgba(33, 150, 243, 0.4);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --section-padding: 120px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at top, #0A0E1A 0%, #050810 100%);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(244, 208, 63, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-hex {
    width: 45px;
    height: 45px;
    filter: drop-shadow(var(--glow-yellow));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--velox-yellow), var(--velox-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--velox-yellow);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--velox-yellow);
}

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

.nav-link-cta {
    background: linear-gradient(135deg, var(--velox-yellow), var(--velox-orange));
    padding: 10px 24px;
    border-radius: 25px;
    color: var(--dark-bg) !important;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-yellow);
}

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

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--velox-yellow);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    overflow: hidden;
}

.hero-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    animation: heroFadeIn 1.2s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(244, 208, 63, 0.1);
    border: 1px solid rgba(244, 208, 63, 0.3);
    border-radius: 30px;
    margin-bottom: 30px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--velox-yellow);
    border-radius: 50%;
    box-shadow: var(--glow-yellow);
    animation: pulse 2s infinite;
}

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

.badge-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--velox-yellow);
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.title-line {
    display: block;
    animation: titleSlide 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line:nth-child(3) {
    animation-delay: 0.5s;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--velox-yellow) 0%, var(--velox-orange) 50%, var(--tech-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

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

.hero-subtitle {
    font-family: var(--font-title);
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.highlight-yellow {
    color: var(--velox-yellow);
    font-weight: 700;
    text-shadow: var(--glow-yellow);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    position: relative;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--velox-yellow), var(--velox-orange));
    border: none;
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-bg);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-yellow);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

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

.btn-primary:hover .btn-liquid {
    left: 100%;
}

.btn-ghost {
    position: relative;
    padding: 18px 40px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ghost-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--velox-yellow);
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-ghost:hover .ghost-border {
    box-shadow: var(--glow-yellow);
    border-color: var(--velox-orange);
}

.play-icon {
    font-size: 12px;
}

.btn-primary.large,
.btn-ghost.large {
    padding: 20px 45px;
    font-size: 16px;
}

.btn-primary.huge {
    padding: 24px 50px;
    font-size: 18px;
}

/* ============================================
   HERO STATS
   ============================================ */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--velox-yellow);
    text-shadow: var(--glow-yellow);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--velox-yellow), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

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

.scroll-text {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--velox-yellow), transparent);
}

/* ============================================
   SECTION WRAPPER
   ============================================ */
.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    margin-bottom: 70px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--velox-yellow);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.title-word {
    display: inline-block;
    margin: 0 8px;
}

.section-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    line-height: 1.7;
}

.section-header.centered .section-description {
    margin: 0 auto;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 10;
}

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

.product-card {
    position: relative;
    background: rgba(26, 31, 51, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(244, 208, 63, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 208, 63, 0.5);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.product-card:hover .card-glow {
    opacity: 1;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.product-card:hover .card-shine {
    left: 100%;
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05) rotateY(5deg);
}

.image-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--velox-yellow), var(--velox-orange));
    color: var(--dark-bg);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-tagline {
    font-family: var(--font-title);
    font-size: 14px;
    color: var(--velox-yellow);
    margin-bottom: 16px;
}

.product-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    font-size: 18px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--velox-yellow);
    border-radius: 25px;
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    color: var(--velox-yellow);
    cursor: pointer;
    transition: all 0.3s;
}

.product-btn:hover {
    background: var(--velox-yellow);
    color: var(--dark-bg);
}

.product-btn .arrow {
    transition: transform 0.3s;
}

.product-btn:hover .arrow {
    transform: translateX(4px);
}

/* Ecosystem Card Special */
.ecosystem-card .product-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ecosystem-card .product-info.full-height {
    justify-content: space-between;
}

.ecosystem-icon {
    margin: 0 auto 20px;
}

.ecosystem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.eco-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(26, 31, 51, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(244, 208, 63, 0.2);
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 208, 63, 0.5);
    box-shadow: var(--glow-yellow);
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--velox-yellow);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--velox-yellow);
    opacity: 0.5;
}

.demo-cta {
    text-align: center;
    margin-top: 60px;
}

.demo-cta h3 {
    font-family: var(--font-title);
    font-size: 28px;
    margin-bottom: 24px;
}

/* ============================================
   COVERAGE
   ============================================ */
.coverage {
    padding: var(--section-padding) 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.coverage-card {
    background: rgba(26, 31, 51, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(244, 208, 63, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.coverage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 208, 63, 0.5);
}

.coverage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.coverage-card h3 {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.coverage-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.coverage-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coverage-status.active {
    background: rgba(39, 174, 96, 0.2);
    color: var(--tech-green);
    border: 1px solid var(--tech-green);
}

.coverage-status.soon {
    background: rgba(244, 208, 63, 0.2);
    color: var(--velox-yellow);
    border: 1px solid var(--velox-yellow);
}

.coverage-cta {
    text-align: center;
}

.coverage-cta p {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--velox-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 30px;
    background: var(--dark-bg);
    border-top: 1px solid rgba(244, 208, 63, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-hex {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(244, 208, 63, 0.1);
    border: 1px solid rgba(244, 208, 63, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--velox-yellow);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--velox-yellow);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--velox-yellow);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--velox-yellow);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-icon {
    font-size: 16px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--velox-yellow);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--velox-yellow);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.4s;
        border-left: 1px solid rgba(244, 208, 63, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-wrapper,
    .section-wrapper {
        padding: 0 24px;
    }
    
    .hero {
        padding: 140px 24px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-divider {
        width: 80px;
        height: 2px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}