/* ============================================
   ZERAMAI — Antigravity Dark Mode CSS
   ============================================ */

/* --- TOKENS --- */
:root {
    --bg-primary: #000000;
    --bg-secondary: #050505;
    --bg-tertiary: #0a0a0a;
    
    --primary: #00E5FF;       /* Cyber Cyan */
    --primary-glow: rgba(0, 229, 255, 0.4);
    --secondary: #8A2BE2;     /* Neural Purple */
    --accent: #FF0055;        /* Neon Pink/Red */
    --success: #00FF9D;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0B0C8;
    --text-muted: #6B7D99;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --glass-bg: rgba(5, 5, 5, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    --max-width: 1280px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

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

::selection {
    background: var(--primary);
    color: #000;
}

/* --- PRELOADER --- */
.preloader {
    position: fixed; inset: 0;
    background-color: var(--bg-primary);
    z-index: 10000;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.scanner-bar {
    width: 200px; height: 2px;
    background: rgba(255,255,255,0.1);
    position: relative; overflow: hidden;
}
.scanner-bar::after {
    content:''; position: absolute; top:0; left:0; width: 50%; height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: scan 1s ease-in-out infinite alternate;
}
@keyframes scan { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
.preloader-text {
    font-family: var(--font-mono);
    font-size: 0.8rem; letter-spacing: 4px;
    color: var(--primary);
    animation: pulse 1s infinite alternate;
}
@keyframes pulse { 0% { opacity: 0.5; text-shadow: none; } 100% { opacity: 1; text-shadow: 0 0 8px var(--primary-glow); } }

/* --- BACKGROUND --- */
#bg-canvas {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0; pointer-events: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; letter-spacing: -0.02em; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* --- UTILITIES --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; width: 100%; }

/* Redesigned Glass Card -> Cyber Card */
.glass-card {
    background: rgba(8,8,8,0.5);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.glass-card::before {
    content:''; position: absolute; top:0; left:0; width: 100%; height: 100%;
    box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0);
    transition: all 0.4s ease; pointer-events: none;
    border-radius: 24px;
}
.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(15,15,15,0.7);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0,229,255,0.2), 0 0 20px rgba(138,43,226,0.1);
}
.glass-card:hover::before {
    box-shadow: inset 0 0 0 2px rgba(0, 229, 255, 0.25);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.8rem 1.8rem; font-family: var(--font-mono); font-size: 0.85rem;
    text-transform: uppercase; font-weight: 600; letter-spacing: 1px;
    text-decoration: none; cursor: pointer;
    border: 1px solid transparent; transition: all 0.3s ease;
    border-radius: 50px;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-glow { box-shadow: 0 4px 15px var(--primary-glow); }
.btn-primary {
    background: rgba(0, 229, 255, 0.1); border-color: var(--primary); color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary); color: #000; box-shadow: 0 0 20px var(--primary-glow);
}
.btn-outline {
    background: transparent; border-color: rgba(255,255,255,0.2); color: var(--text-primary);
}
.btn-outline:hover {
    border-color: #fff; background: rgba(255,255,255,0.05);
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
    z-index: 1000; transition: var(--transition-normal); border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(0,0,0,0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05); height: 70px;
}
.nav-container { height: 100%; display: flex; justify-content: space-between; align-items: center; max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--text-primary); }
.logo-icon {
    font-size: 1.5rem; color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; letter-spacing: 2px; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
    color: var(--text-secondary); text-decoration: none; font-size: 0.85rem;
    font-family: var(--font-mono); text-transform: uppercase; transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--primary); text-shadow: 0 0 8px var(--primary-glow); }
.btn-nav-cta { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* --- HERO SECTION --- */
.hero-section {
    position: relative; padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 4rem;
    min-height: 100vh; display: flex; align-items: center;
}
.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0,229,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1.2rem; background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50px;
    color: var(--primary); font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.pulse-dot {
    width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 8px var(--primary); animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-title { font-size: clamp(3rem, 6vw, 5.5rem); margin-bottom: 1.5rem; }
.hero-title .line { display: block; }
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--text-secondary);
    margin-bottom: 3rem; max-width: 650px; min-height: 2em;
}
.typing-text { color: var(--text-primary); font-weight: 500; font-family: var(--font-mono);}
.typing-text::after { content: '_'; animation: blink 1s step-end infinite; color: var(--primary); }

.hero-actions { display: flex; gap: 1rem; margin-bottom: 4rem; }

.hero-stats { display: flex; align-items: center; gap: 2rem; border-left: 2px solid var(--primary); padding-left: 2rem;}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family: var(--font-mono); font-size: 1.5rem; color: var(--primary); }
.hero-stat span { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.15); }

.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--text-muted); font-family: var(--font-mono); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 2px;
}
.scroll-line {
    width: 1px; height: 40px; background: rgba(255,255,255,0.1);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content:''; position:absolute; top:0; left:0; width:100%; height:50%;
    background: var(--primary); animation: scroll-anim 2s infinite ease-in-out;
}
@keyframes scroll-anim { 0%{transform:translateY(-100%)} 100%{transform:translateY(200%)} }

/* --- MARQUEE --- */
.marquee-section {
    padding: 1rem 0; background: #020202;
    border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.marquee-track { display: flex; width: fit-content; animation: marquee-scroll 40s linear infinite; }
.marquee-content { display: flex; align-items: center; gap: 2rem; padding-right: 2rem; }
.marquee-item { font-family: var(--font-mono); font-size: 0.9rem; color: var(--text-secondary); }
.marquee-dot { color: var(--secondary); font-size: 0.6rem; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- SECTIONS SHARED --- */
section:not(.hero-section, .marquee-section) { padding: 3rem 0; position: relative; z-index: 1; }
.section-header { text-align: left; margin-bottom: 3rem; max-width: 700px; border-left: 2px solid var(--primary); padding-left: 2rem;}
.section-badge {
    display: inline-block; color: var(--primary); font-family: var(--font-mono);
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem;
    opacity: 0.8;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-secondary); font-size: 1.125rem; }

/* --- ABOUT SECTION --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.about-text-card { padding: 2rem 2.5rem; display: flex; flex-direction: column; }
.card-accent-line { width: 40px; height: 2px; background: var(--primary); margin-bottom: 1.5rem; flex-shrink: 0; }
.card-accent-line.accent-secondary { background: var(--secondary); }
.about-text-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.about-text-card p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; flex: 1; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.tag {
    font-family: var(--font-mono); font-size: 0.7rem; padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255,255,255,0.08); color: var(--text-secondary); border-radius: 2px;
    white-space: nowrap;
}


.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.2); backdrop-filter: blur(10px); }
.stat-item { background: rgba(5,5,5,0.9); padding: 2rem 1.5rem; text-align: center; }
.stat-number { font-family: var(--font-mono); font-size: 2rem; color: var(--primary); margin-bottom: 0.25rem; line-height: 1; }
.stat-label { font-size: 0.7rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px;}

/* --- SERVICES SECTION --- */
.services-section { background: transparent; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { padding: 2rem; display: flex; flex-direction: column; min-height: 320px; }
.service-number {
    position: absolute; top: 1.25rem; right: 1.5rem; font-family: var(--font-mono);
    font-size: 1.25rem; color: rgba(255, 255, 255, 0.08); transition: color var(--transition-normal);
}
.service-card:hover .service-number { color: rgba(0,229,255,0.3); }
.service-icon-wrap {
    width: 54px; height: 54px; background: rgba(255,255,255,0.05);
    color: var(--text-primary); display: flex; justify-content: center; align-items: center;
    margin-bottom: 1.25rem; border-radius: 16px; flex-shrink: 0;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon-wrap { color: var(--primary); background: rgba(0,229,255,0.08);}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.9rem; line-height: 1.6; flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.service-tags span { font-size: 0.65rem; color: var(--text-secondary); font-family: var(--font-mono); opacity: 0.7; }
.service-link {
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--primary); text-transform: uppercase; text-decoration: none; margin-top: auto;
}

/* --- PROCESS TIMELINE --- */
.process-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.process-line {
    position: absolute; top: 0; bottom: 0; left: 24px; width: 1px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}
.process-step { display: flex; gap: 2rem; margin-bottom: 3rem; position: relative; }
.step-indicator { position: relative; z-index: 2; }
.step-number {
    width: 50px; height: 50px; background: #000; border: 1px solid var(--primary);
    display: flex; justify-content: center; align-items: center;
    font-family: var(--font-mono); font-size: 0.9rem; color: var(--primary);
}
.step-content { flex: 1; padding: 2rem; }

/* --- PORTFOLIO --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card { padding: 0; display: flex; flex-direction: column; }
.portfolio-image { height: 200px; position: relative; flex-shrink: 0; border-radius: 24px 24px 0 0; overflow: hidden; }
.portfolio-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); pointer-events: none; }
.portfolio-overlay { position: absolute; top: 0.75rem; left: 0.75rem; }
.portfolio-category {
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); font-family: var(--font-mono);
    padding: 0.3rem 0.8rem; font-size: 0.65rem; color: var(--text-primary); text-transform: uppercase; border-radius: 50px; position: relative; z-index: 2;
}
.portfolio-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.portfolio-info h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.portfolio-info p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 0.9rem; flex: 1; }
.portfolio-metrics { display: flex; gap: 2rem; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; margin-top: auto; }
.metric strong { font-family: var(--font-mono); font-size: 1.1rem; color: var(--primary); display:block; line-height: 1.2; }
.metric span { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; font-family: var(--font-mono);}

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { padding: 2rem; display: flex; flex-direction: column; }
.testimonial-stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 4px; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.25rem; margin-top: auto; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; font-family: var(--font-mono); font-size: 0.8rem; flex-shrink: 0;}
.author-info strong { display: block; font-size: 0.9rem; }
.author-info span { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-mono);}

/* --- WHY US --- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { padding: 1.5rem; text-align: left; display: flex; flex-direction: column; }
.why-icon {
    width: 54px; height: 54px; background: rgba(255,255,255,0.05);
    display: flex; justify-content: center; align-items: center; margin-bottom: 1.25rem; color: var(--primary); flex-shrink: 0; border-radius: 16px; transition: all 0.3s ease;
}
.why-card h4 { font-size: 1rem; margin-bottom: 0.75rem; }
.why-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* --- CTA BANNER --- */
.cta-section { padding: 3rem 0; }
.cta-card {
    background: rgba(10,10,10,0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px;
    padding: 5rem 2.5rem; text-align: center; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,229,255,0.05);
}
.cta-card h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; position: relative; z-index: 2;}
.cta-card p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 3rem; max-width: 600px; margin-inline: auto; position: relative; z-index: 2;}
.cta-bg-pattern {
    position: absolute; inset:0;
    background-image: radial-gradient(rgba(0,229,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.5; pointer-events:none;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; position: relative; z-index: 2;}

/* --- CONTACT --- */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; }
.contact-form { padding: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.5rem; text-transform: uppercase;}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.2rem; color: var(--text-primary); font-family: var(--font-mono); font-size: 0.9rem;
    cursor: auto; transition: all 0.3s ease; border-radius: 12px; backdrop-filter: blur(5px);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); background: rgba(0,229,255,0.02);
}
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card, .social-card { padding: 2.5rem; }
.info-list { list-style: none; margin-top:2rem;}
.info-list li { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.info-icon { color: var(--primary); }
.info-list strong { display: block; font-size: 0.9rem; }
.info-list span { font-size: 0.8rem; color: var(--text-secondary); font-family: var(--font-mono);}
.social-links { display: flex; gap: 1rem; margin-top:1.5rem;}
.social-link { width: 44px; height: 44px; background: rgba(255,255,255,0.05); display: flex; justify-content: center; align-items: center; color: var(--text-primary); transition: all 0.3s ease; border-radius: 50%;}
.social-link:hover { background: var(--primary); color: #000; transform: translateY(-3px); box-shadow: 0 5px 15px var(--primary-glow);}

/* --- FOOTER --- */
.footer { background: #000; padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-content { display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.footer-tagline { font-family: var(--font-mono); font-size: 0.9rem; color: var(--primary); margin-bottom: 1rem; }
.footer-desc { color: var(--text-secondary); font-size: 0.9rem; max-width: 350px; }
.footer-links-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-links h4 { font-size: 1rem; margin-bottom: 1.5rem; }
.footer-links a { display: block; color: var(--text-secondary); text-decoration: none; margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.8rem; font-family: var(--font-mono);}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--text-primary); }

/* --- BACK TO TOP --- */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px;
    background: rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary); display: flex; justify-content: center; align-items: center;
    cursor: none; z-index: 900; opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition-normal);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); color: #000; border-color: var(--primary); }

/* --- ANIMATIONS --- */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; transition-delay: var(--delay, 0s); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .contact-grid, .footer-content { grid-template-columns: 1fr; }
}
.menu-toggle { display: none; background: none; border: none; cursor: none; padding: 0.5rem; }
.hamburger-line { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: var(--transition-normal); }

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: var(--nav-height); left: 0; width: 100%; height: calc(100vh - var(--nav-height));
        background: rgba(0,0,0,0.95); flex-direction: column; justify-content: center; gap: 2rem;
        padding: 2rem; transform: translateX(100%); transition: transform var(--transition-normal);
    }
    .nav-links.active { transform: translateX(0); }
    .menu-toggle { display: block; }
    .menu-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
    .menu-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .services-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .stats-strip, .process-step, .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; text-align: left; align-items: flex-start; border-left:none; padding-left:0;}
    .hero-stat-divider { display:none;}
    .footer-links-group { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .cursor-dot, .cursor-outline { display: none; }
    body, .btn, a, button, input, select, textarea { cursor: auto !important; }
}
