:root {
    --color-primary: #1e3a8a;
    --color-primary-light: #3b82f6;
    --color-accent: #e11d48;
    --color-accent-hover: #be123c;
    --color-light-blue: #38bdf8;
    --color-gold: #f59e0b;
    --color-purple: #8b5cf6;
    
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-dark: #07090f;
    --bg-dark-alt: #111827;
    
    --text-main: #334155;
    --text-muted: #64748b;
    --text-heading: #0f172a;
    --text-white: #ffffff;

    --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-bouncy: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-float: 0 20px 40px -5px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.3);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main); background-color: var(--bg-main);
    line-height: 1.7; overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: var(--text-heading); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) {
    body { cursor: none; }
    a, button, input, textarea, select, .magnetic { cursor: none; }
    .cursor-dot {
        position: fixed; top: 0; left: 0; width: 8px; height: 8px;
        background-color: var(--color-accent); border-radius: 50%;
        transform: translate(-50%, -50%); z-index: 10000;
        pointer-events: none; mix-blend-mode: difference;
        transition: width 0.3s, height 0.3s, background-color 0.3s;
    }
    .cursor-ring {
        position: fixed; top: 0; left: 0; width: 40px; height: 40px;
        border: 1.5px solid rgba(225, 29, 72, 0.6); border-radius: 50%;
        transform: translate(-50%, -50%); z-index: 9999;
        pointer-events: none;
        transition: width 0.3s, height 0.3s, border-color 0.3s;
    }
    body.hovering .cursor-dot { width: 60px; height: 60px; background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.5); }
    body.hovering .cursor-ring { opacity: 0; }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 100%;
    background: linear-gradient(90deg, var(--color-light-blue), var(--color-accent), var(--color-purple));
    z-index: 10001; transform-origin: left; transform: scaleX(0);
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.section { padding: 7rem 0; position: relative; overflow: hidden; }
.section-dark { background-color: var(--bg-dark); color: var(--text-white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--text-white); }
.section-alt { background-color: #f1f5f9; }

/* ===== MESH GRADIENT BG ===== */
.mesh-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(at 40% 20%, rgba(30, 58, 138, 0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(225, 29, 72, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(56, 189, 248, 0.08) 0px, transparent 50%);
    z-index: 0; filter: blur(40px); pointer-events: none;
    animation: pulseMesh 15s ease-in-out infinite alternate;
}
@keyframes pulseMesh { 0% { opacity: 0.7; } 100% { opacity: 1; } }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; position: relative; z-index: 2; }
.section-header h2 {
    font-size: 2.8rem; margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.15;
}
.section-header p { color: var(--text-muted); font-size: 1.15rem; font-weight: 400; }
.section-dark .section-header h2 { background: linear-gradient(135deg, #fff, var(--color-light-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Labels */
.section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 3px; color: var(--color-accent); margin-bottom: 1.2rem;
    padding: 0.4rem 1rem; background: rgba(225, 29, 72, 0.08); border-radius: 9999px;
    position: relative; overflow: hidden;
}
.section-label::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}
@keyframes shine { 100% { left: 200%; } }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 2.2rem; font-weight: 700; border-radius: 9999px;
    cursor: pointer; border: none; font-size: 0.95rem; position: relative; overflow: hidden;
    z-index: 1; letter-spacing: 0.5px;
    transition: all 0.3s ease; transform-style: preserve-3d;
}
.btn::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 9999px; z-index: -1; transition: opacity 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--text-white); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
.btn-primary::after { background: linear-gradient(135deg, var(--color-accent), #f43f5e); opacity: 0; }
.btn-primary:hover { color: white; box-shadow: 0 12px 28px rgba(225, 29, 72, 0.4); transform: translateY(-2px); }
.btn-primary:hover::after { opacity: 1; }
.btn-outline {
    background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn-outline:hover { background: white; color: var(--bg-dark); border-color: white; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; width: 100%; top: 0; z-index: 9000; padding: 10px 0;
    transition: all 0.5s ease; border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(7, 9, 15, 0.85); backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.header-container { display: flex; justify-content: space-between; align-items: center; height: 80px; transition: height 0.5s; }
.site-header.scrolled .header-container { height: 65px; }
.header-cta { display: none; } /* Hidden on desktop since "Demander un Devis" is inline */

.logo { font-size: 1.5rem; font-weight: 900; color: white; display: flex; align-items: center; gap: 0.5rem; letter-spacing: -1px; }
.logo-text span { background: linear-gradient(135deg, var(--color-light-blue), var(--color-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.main-nav ul { display: flex; gap: 2rem; list-style: none; align-items: center; }
.main-nav a {
    font-weight: 600; color: rgba(255,255,255,0.7); font-size: 0.9rem;
    position: relative; padding: 0.5rem 0; display: inline-block;
    transition: color 0.3s;
}
.main-nav a:hover, .main-nav a.active { color: white; }
.main-nav a .hover-text { display: none; } /* Simplifié pour éviter des bugs visuels */
.main-nav a .default-text { display: inline; }

/* Menu toggle mobile */
.menu-toggle {
    display: none; background: none; border: none; width: 30px; height: 22px;
    position: relative; z-index: 10001; cursor: pointer;
}
.menu-toggle span {
    display: block; width: 100%; height: 2px; background: white;
    position: absolute; left: 0; transition: all 0.4s ease;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; width: 60%; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 10px; }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 10px; width: 100%; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; position: relative; display: flex; align-items: center;
    background-color: var(--bg-dark); overflow: hidden;
}
.hero-video-wrap {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden;
}
.hero-video-wrap video, .hero-image-bg { width: 100%; height: 100%; object-fit: cover; }
.hero-image-bg {
    animation: kenBurnsBg 25s ease-in-out infinite alternate;
}
@keyframes kenBurnsBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;
    background: linear-gradient(180deg, rgba(7,9,15,0.5) 0%, rgba(7,9,15,0.85) 100%);
}
.hero-content {
    position: relative; z-index: 4; max-width: 800px; color: white; padding-top: 6rem;
}
.hero h1 {
    font-size: 4rem; color: white; margin-bottom: 1.5rem;
    line-height: 1.1; font-weight: 900; letter-spacing: -2px;
}
.hero h1 .highlight-wrapper { display: inline-block; }
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    display: inline-block;
}
.hero p { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 2.5rem; max-width: 600px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Particles */
.hero-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; overflow: hidden; }
.hero-particle {
    position: absolute; bottom: -10px; width: 6px; height: 6px;
    background: rgba(56, 189, 248, 0.3); border-radius: 50%;
    animation: floatUp 15s infinite linear;
}
@keyframes floatUp { 0% { transform: translateY(0) scale(1); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 0.5; } 100% { transform: translateY(-100vh) scale(0.5); opacity: 0; } }

/* Scroll indicator */
.hero-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 5; }
.scroll-line {
    width: 2px; height: 50px; background: rgba(255,255,255,0.15); margin: 0 auto; position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: var(--color-light-blue); animation: scrollLineDrop 2s ease-in-out infinite;
}
@keyframes scrollLineDrop { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }

/* ===== STATS RIBBON ===== */
.stats-ribbon { position: relative; z-index: 10; margin-top: -60px; padding: 0 2rem; }
.stats-ribbon-inner {
    max-width: 1100px; margin: 0 auto;
    background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(20px);
    border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    display: flex; justify-content: space-around; align-items: center;
    padding: 2.5rem 2rem; flex-wrap: wrap; gap: 1.5rem;
    position: relative; overflow: hidden;
}
.stats-ribbon-inner::before {
    content:''; position: absolute; top: 0; left: -50%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: skewX(-20deg); animation: gloss 6s infinite;
}
@keyframes gloss { 0%, 50% { left: -50%; } 100% { left: 150%; } }
.stat-item { text-align: center; color: white; flex: 1; min-width: 120px; }
.stat-number {
    font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 0.3rem;
    background: linear-gradient(to bottom, #ffffff, #94a3b8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-weight: 600; color: var(--color-light-blue); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; }

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 3rem 0; margin-top: 2rem;
}
.trust-bar .container {
    display: flex; justify-content: center; align-items: center;
    gap: 3rem; flex-wrap: wrap;
}
.trust-item {
    font-size: 0.85rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; position: relative; z-index: 2; }
.service-card {
    background: var(--bg-surface); padding: 2.5rem 2rem; border-radius: 1.2rem;
    position: relative; transition: all 0.4s ease;
    text-align: center; z-index: 1;
    border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-soft);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-float); }
.service-card:hover::before { opacity: 0.6; }
.service-card::before {
    content:''; position: absolute; inset: -2px; z-index: -2; border-radius: 1.3rem;
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-purple), var(--color-accent));
    opacity: 0; transition: opacity 0.4s; filter: blur(8px);
}
.service-card::after {
    content:''; position: absolute; inset: 0; background: var(--bg-surface);
    border-radius: 1.2rem; z-index: -1;
}
.service-icon {
    font-size: 2.5rem; margin-bottom: 1.5rem; display: inline-flex; align-items: center; justify-content: center;
    width: 75px; height: 75px; border-radius: 1.2rem;
    background: rgba(56, 189, 248, 0.08); transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--color-light-blue); color: white; transform: scale(1.1) rotate(5deg); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ===== PROCESS GRID ===== */
.process-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem; position: relative; z-index: 2;
}
.process-step {
    background: white; padding: 2.5rem 2rem; border-radius: 1rem;
    text-align: center; position: relative; box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.process-number {
    font-size: 3.5rem; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 1rem;
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== FEATURES GRID (2 columns) ===== */
.features-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 2;
}
.feature-image { position: relative; }
.feature-image img { border-radius: 1.5rem; box-shadow: var(--shadow-float); width: 100%; }
.floating-badge {
    position: absolute; bottom: -20px; right: -10px;
    background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: white; padding: 1.5rem; border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3); text-align: center;
    font-size: 2rem; font-weight: 900; line-height: 1;
    border-top: 2px solid var(--color-accent);
}
.floating-badge small { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 0.5rem; color: var(--color-light-blue); }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
    display: flex; gap: 1.2rem; margin-bottom: 1.5rem; align-items: flex-start;
}
.feature-list .feature-icon {
    flex-shrink: 0; width: 50px; height: 50px; border-radius: 0.75rem;
    background: rgba(56, 189, 248, 0.15); display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.feature-list .feature-text h4 { font-size: 1rem; margin-bottom: 0.3rem; color: white; }
.feature-list .feature-text p { font-size: 0.9rem; color: #94a3b8; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; position: relative; z-index: 2;
}
.testimonial-card {
    background: white; padding: 2.5rem 2rem; border-radius: 1.2rem;
    box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.04);
    position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.quote-icon {
    font-size: 4rem; line-height: 1; color: var(--color-light-blue); opacity: 0.3;
    font-family: Georgia, serif; position: absolute; top: 1rem; right: 1.5rem;
}
.testimonial-text { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem;
}
.testimonial-info strong { display: block; font-size: 0.95rem; color: var(--text-heading); }
.testimonial-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; overflow: hidden; padding: 7rem 0; margin: 2rem 0; }
.cta-banner .cta-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.cta-banner .cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(7,9,15,0.9), rgba(30,58,138,0.85)); z-index: 2; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 5rem 0 2rem;
    position: relative;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-purple));
}
.footer-grid {
    display: flex; flex-wrap: wrap; gap: 3rem; margin-bottom: 3rem;
}
.footer-col { flex: 1; min-width: 200px; }
.footer-col h4 { color: white; font-size: 1.1rem; margin-bottom: 1.2rem; font-weight: 700; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); transition: color 0.3s, padding-left 0.3s; font-size: 0.9rem; }
.footer-links a:hover { color: white; padding-left: 5px; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: all 0.3s;
}
.footer-social a:hover { background: var(--color-purple); border-color: var(--color-purple); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; text-align: center;
    color: rgba(255,255,255,0.4); font-size: 0.85rem;
}
.footer-badges { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.footer-badges span { font-size: 0.75rem; padding: 0.3rem 0.8rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 9999px; color: rgba(255,255,255,0.5); }

/* ===== TEXT REVEAL ===== */
.text-reveal-wrapper { overflow: hidden; display: inline-block; vertical-align: bottom; }
.text-reveal { display: inline-block; transform: translateY(100%); transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1); }
.text-reveal.visible { transform: translateY(0); }

/* ===== ANIMATIONS ===== */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: all 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.stagger-children > * { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .features-grid { grid-template-columns: 1fr; gap: 3rem; }
    .section-header h2 { font-size: 2.2rem; }
    .stat-number { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none !important; }
    body { cursor: auto; }
    a, button { cursor: pointer; }
    
    .hero { min-height: auto; padding: 8rem 0 5rem; }
    .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
    .hero p { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; gap: 0.75rem; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 1.8rem; }
    
    .stats-ribbon { margin-top: -30px; padding: 0 1rem; }
    .stats-ribbon-inner { padding: 1.5rem 1rem; gap: 1rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.65rem; }
    
    .trust-bar .container { gap: 1.5rem; }
    .trust-item { font-size: 0.7rem; }
    
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    
    .floating-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; display: inline-block; }
    
    .main-nav { 
        position: fixed; inset: 0; background: rgba(7, 9, 15, 0.98); 
        clip-path: circle(0px at top right); transition: clip-path 0.6s ease;
        display: flex; align-items: center; justify-content: center; z-index: 10000;
    }
    .main-nav.open { clip-path: circle(150% at top right); }
    .main-nav ul { flex-direction: column; text-align: center; gap: 2rem; }
    .main-nav a { font-size: 1.5rem; font-weight: 800; color: white; }
    .menu-toggle { display: block; }
    
    .footer-grid { flex-direction: column; gap: 2rem; }
    .cta-banner { margin: 0; padding: 4rem 0; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .process-grid { grid-template-columns: 1fr; }
}
