/* ========================================
   McFIX Import — Landing Page
   Redesigned with Anthropic Frontend Design
   + Vercel Web Design Guidelines compliance
   ======================================== */

:root {
    --bg-dark: #08090d;
    --bg-section: #0e1017;
    --bg-card: #151821;
    --bg-card-hover: #1c2030;
    --text-primary: #f0f0f5;
    --text-secondary: #9a9ab0;
    --text-muted: #5a5a70;
    --neon-red: #ff1744;
    --neon-red-glow: rgba(255, 23, 68, 0.6);
    --neon-red-subtle: rgba(255, 23, 68, 0.08);
    --neon-blue: #00b0ff;
    --neon-blue-glow: rgba(0, 176, 255, 0.6);
    --neon-blue-subtle: rgba(0, 176, 255, 0.06);
    --accent-warm: #f5a623;
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Focus states — accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--neon-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Touch targets */
@media (pointer: coarse) {
    a, button {
        touch-action: manipulation;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip link — accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--neon-blue);
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 200;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 9, 13, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red-glow);
    letter-spacing: 2px;
}

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

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--neon-red);
    color: white !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: background var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
    background: #e01540;
    box-shadow: 0 0 20px var(--neon-red-glow);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform var(--transition), opacity var(--transition);
    border-radius: 2px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    background: var(--bg-dark);
}

.hero-scroll-container {
    height: 300vh;
    position: relative;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video loader */
.video-loader {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: opacity 0.5s ease;
}

.video-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.video-loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    animation: loadSlide 1.5s ease infinite;
}

@keyframes loadSlide {
    to { left: 100%; }
}

.video-loader-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Dark vignette over video for text contrast */
.hero-sticky::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

/* Hero content overlay */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.hero-location {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease 1.35s forwards;
}

.hero-cta {
    display: inline-block;
    background: var(--neon-red);
    color: white;
    padding: 16px 40px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red-glow), inset 0 0 15px rgba(255, 23, 68, 0.2);
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.hero-cta:hover {
    background: #e01540;
    box-shadow: 0 0 40px var(--neon-red-glow), inset 0 0 20px rgba(255, 23, 68, 0.3);
    transform: translateY(-2px);
}

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

/* ========== NEON LOGO ========== */
.neon-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.neon-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 6rem;
    line-height: 1;
    letter-spacing: 8px;
    display: flex;
}

.neon-text.neon-red {
    color: var(--neon-red);
    text-shadow:
        0 0 7px var(--neon-red),
        0 0 10px var(--neon-red),
        0 0 21px var(--neon-red),
        0 0 42px var(--neon-red-glow),
        0 0 82px var(--neon-red-glow),
        0 0 92px var(--neon-red-glow);
}

.neon-text.neon-blue {
    color: var(--neon-blue);
    font-size: 4.5rem;
    letter-spacing: 16px;
    text-shadow:
        0 0 7px var(--neon-blue),
        0 0 10px var(--neon-blue),
        0 0 21px var(--neon-blue),
        0 0 42px var(--neon-blue-glow),
        0 0 82px var(--neon-blue-glow),
        0 0 92px var(--neon-blue-glow);
}

.neon-letter {
    display: inline-block;
    opacity: 0;
    animation: neonFlicker 0.8s ease forwards;
    animation-delay: var(--delay);
}

@keyframes neonFlicker {
    0% { opacity: 0; }
    20% { opacity: 1; }
    40% { opacity: 0.6; }
    60% { opacity: 1; }
    80% { opacity: 0.8; }
    100% { opacity: 1; }
}

.neon-since {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 6px;
    font-style: normal;
    margin-top: 12px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.neon-dot {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

/* Neon pulse — intensified */
.neon-logo {
    animation: neonPulse 3s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* ========== SECTIONS ========== */
.section {
    padding: 140px 0 120px;
    position: relative;
    scroll-margin-top: 60px;
}

.section-dark {
    background: var(--bg-section);
    overflow: hidden;
}

/* Ambient glow behind sections */
.section-dark::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--neon-red-subtle) 0%, transparent 70%);
    pointer-events: none;
}

.section-gradient {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.section-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-blue-subtle) 0%, transparent 70%);
    pointer-events: none;
}

.section-contact {
    background: var(--bg-section);
}

/* Section divider glow line */
.section + .section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 23, 68, 0.3), transparent);
}

.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 4px;
    text-wrap: balance;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 64px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== SERVICES — Bento grid ========== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: left;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

/* Featured card spans 2 columns */
.service-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    padding: 48px 40px;
}

.service-card--featured .service-icon {
    margin: 0;
    width: 80px;
    height: 80px;
}

.service-card--featured h3 {
    font-size: 1.4rem;
}

/* Highlight card — blue accent */
.service-card--highlight {
    border-color: rgba(0, 176, 255, 0.15);
    background: linear-gradient(135deg, var(--bg-card), rgba(0, 176, 255, 0.04));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.service-card:hover {
    border-color: rgba(255, 23, 68, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--neon-red);
    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

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

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 0.88rem;
    transition: color var(--transition), text-shadow var(--transition);
}

.service-link:hover {
    color: #4fc3f7;
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

/* Brands strip */
.brands {
    margin-top: 60px;
    text-align: center;
}

.brands-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.brands-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.brands-list span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: opacity var(--transition);
}

.brands-list span:hover {
    opacity: 1;
}

/* ========== ABOUT — asymmetric grid ========== */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.02rem;
    color: var(--text-secondary);
}

.about-lead {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.about-lead strong {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red-glow);
}

.about-text p + p {
    margin-top: 16px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 28px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--neon-blue-subtle), transparent 70%);
    pointer-events: none;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue-glow);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-blue);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== FEATURES — asymmetric ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    border-color: rgba(0, 176, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 176, 255, 0.06);
}

.feature-number {
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 176, 255, 0.08);
    line-height: 1;
    margin-bottom: 12px;
    position: absolute;
    top: 20px;
    right: 24px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 90%;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color var(--transition), transform var(--transition);
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-card svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--text-muted);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-whatsapp {
    border-color: rgba(37, 211, 102, 0.2);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06), var(--bg-card));
}

.contact-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.1);
}

.contact-map {
    border-color: rgba(0, 176, 255, 0.15);
}

.contact-map:hover {
    border-color: rgba(0, 176, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 176, 255, 0.08);
}

/* Google Maps embed */
.map-container {
    margin-top: 48px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.map-container iframe {
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    gap: 8px;
}

.neon-text-small {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.neon-text-small.neon-red {
    color: var(--neon-red);
    text-shadow: 0 0 5px var(--neon-red-glow);
}

.neon-text-small.neon-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue-glow);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ========== REVEAL ANIMATIONS ========== */

/* Titles — clip reveal */
.section-title.reveal {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: opacity 0.8s ease, clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.section-title.reveal.visible {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
}

/* Subtitles — blur in */
.section-subtitle.reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(10px);
    transition: opacity 0.7s ease 0.2s, filter 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.section-subtitle.reveal.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Cards — scale up */
.service-card.reveal,
.feature-card.reveal,
.contact-card.reveal {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.reveal.visible,
.feature-card.reveal.visible,
.contact-card.reveal.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Text blocks — fade up */
.about-text.reveal,
.about-stats.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text.reveal.visible,
.about-stats.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.contact-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.contact-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

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

    .neon-letter { opacity: 1; }
    .neon-since { opacity: 1; }
    .hero-tagline { opacity: 1; }
    .hero-location { opacity: 1; }
    .hero-cta { opacity: 1; }
    .reveal { opacity: 1; transform: none; filter: none; clip-path: none; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card--featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 9, 13, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 99;
        overscroll-behavior: contain;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero mobile */
    .neon-text {
        font-size: 3.5rem;
    }

    .neon-text.neon-blue {
        font-size: 2.8rem;
        letter-spacing: 10px;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-location {
        font-size: 0.7rem;
    }

    .hero-content {
        padding: 36px 24px;
        margin: 0 12px;
        border-radius: 20px;
        gap: 16px;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .hero-scroll-container {
        height: 150vh;
    }

    /* Sections mobile */
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .service-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }

    .service-card--featured .service-icon {
        margin: 0 auto 16px;
        width: 64px;
        height: 64px;
    }

    .service-card--featured h3 {
        font-size: 1.2rem;
    }

    /* Brands mobile */
    .brands {
        margin-top: 40px;
    }

    .brands-list {
        gap: 16px;
    }

    .brands-list span {
        font-size: 1rem;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-lead {
        font-size: 1.6rem;
    }

    .about-stats {
        flex-direction: row;
    }

    .stat {
        flex: 1;
        padding: 16px 8px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-suffix {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Features mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .feature-number {
        font-size: 3rem;
        top: 16px;
        right: 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-card svg {
        width: 36px;
        height: 36px;
    }

    /* Map mobile */
    .map-container {
        margin-top: 32px;
    }

    .map-container iframe {
        height: 220px;
    }

    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-copy {
        font-size: 0.72rem;
    }

    /* Safe areas for notch devices */
    .navbar {
        padding-top: max(16px, env(safe-area-inset-top));
    }

    .footer {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .neon-text {
        font-size: 2.5rem;
    }

    .neon-text.neon-blue {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .hero-content {
        padding: 32px 20px;
        gap: 14px;
    }

    .hero-tagline {
        font-size: 0.7rem;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .neon-since {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }

    .about-stats {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .about-lead {
        font-size: 1.3rem;
    }

    .hero-scroll-container {
        height: 130vh;
    }
}
