/* MOBILE OVERRIDES - Linear-inspired clean design */
@media (max-width: 768px) {
    /* === HEADER - Linear Style === */
    .nav {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
    }
    
    .nav-container {
        padding: 1rem 1.25rem;
        height: 64px;
    }
    
    /* Logo - Linear size (icon + text) */
    .logo {
        gap: 0.5rem;
        font-size: 1.0625rem;
        font-weight: 600;
        letter-spacing: -0.01em;
    }
    
    .logo-mark {
        width: 26px;
        height: 26px;
    }
    
    /* Hide desktop nav items */
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        font-weight: 500;
        display: block;
        color: var(--color-text-secondary);
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--color-text-primary);
    }
    
    /* Show Book a Call as last menu item */
    .nav .btn-primary {
        display: none !important;
    }
    
    /* Clean hamburger menu */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0.5rem;
        background: none;
        border: none;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        background: var(--color-text-primary);
        transition: all 0.2s ease;
        border-radius: 2px;
    }
    
    /* Animate to X when active */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-6px);
    }
    
    /* === HERO SECTION - Linear Style (TALL!) === */
    .hero {
        padding: 5rem 0 4rem;
        min-height: calc(100vh - 64px); /* Fill screen minus header */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 1.25rem;
        max-width: 100%;
    }
    
    /* Badge - More subtle (Linear style) */
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.75);
    }
    
    /* Title - BIGGER & BOLDER (Linear style) */
    h1,
    .hero-title {
        font-size: 2.25rem !important;
        line-height: 1.15 !important;
        letter-spacing: -0.03em !important;
        margin-bottom: 1rem !important;
        font-weight: 700 !important;
    }
    
    .hero-title .title-line {
        display: block;
        margin-bottom: 0.125rem;
    }
    
    /* Description - More breathing room & lighter color */
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.65);
        margin-bottom: 1.75rem;
        font-weight: 400;
    }
    
    /* Buttons - Smaller, refined mobile size */
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }
    
    .hero-cta .btn {
        padding: 0.6875rem 1.125rem !important;
        font-size: 0.875rem !important;
        border-radius: 8px !important;
        width: 100%;
        text-align: center;
        font-weight: 500 !important;
    }
    
    /* Primary button - more visual weight */
    .hero-cta .btn-primary {
        font-weight: 600 !important;
    }
    
    /* Secondary button - better border contrast */
    .hero-cta .btn-secondary {
        border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    }
    
    /* === STATS SECTION === */
    .stats {
        padding: 3rem 0;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.02);
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.8125rem;
        font-weight: 500;
    }
    
    /* === SECTIONS - More breathing room === */
    section {
        padding: 3.5rem 0;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .section-header h2 {
        font-size: 1.625rem;
        line-height: 1.25;
        margin-bottom: 0.875rem;
        font-weight: 700;
        letter-spacing: -0.02em;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.65);
    }
    
    /* === SERVICE CARDS - More space === */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* === TESTIMONIALS === */
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.6;
        font-weight: 400;
    }
    
    .testimonial-author {
        font-size: 0.8125rem;
        font-weight: 500;
    }
    
    /* === GENERAL TYPOGRAPHY === */
    h2 {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
    }
    
    h3 {
        font-size: 1.125rem !important;
        font-weight: 600 !important;
    }
    
    h4 {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
    
    p {
        font-size: 0.9375rem;
        font-weight: 400;
        line-height: 1.5;
    }
    
    /* === BUTTONS (CONSISTENT EVERYWHERE - SMALLER!) === */
    .btn {
        padding: 0.6875rem 1.125rem !important;
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        border-radius: 8px !important;
    }
    
    .btn-primary {
        font-weight: 600 !important;
    }
    
    .btn-secondary {
        font-weight: 500 !important;
        border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    }
    
    /* Service cards buttons */
    .service-card .btn,
    .cta-section .btn,
    section .btn {
        padding: 0.6875rem 1.125rem !important;
        font-size: 0.875rem !important;
    }
    
    /* Contact page - "Send Us a Message" link button */
    .btn-email {
        padding: 0.6875rem 1.125rem !important;
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        border-radius: 8px !important;
    }
}
