:root {
            --bg: #080808;
            --text: #ffffff;
            --accent: #CCFF00; /* Elektriline Neoon-Roheline */
            --surface: #121212;
            --border: #333333;
            --font-main: 'Space Grotesk', sans-serif;
        }

        /* GLOBAALNE RESET & TURVALUKK */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-main);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; 
        }

        html, body {
            background-color: var(--bg);
            color: var(--text);
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-text-size-adjust: 100%;
        }

        img, svg {
            max-width: 100%;
            height: auto;
        }

        ::selection {
            background-color: var(--accent);
            color: var(--bg);
        }

        /* Nupud */
        .btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            padding: 1.2rem 2.5rem;
            background-color: var(--accent);
            color: var(--bg);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            border: 2px solid var(--accent);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--text);
            border-color: var(--text);
            transform: translate(-3px, -3px);
            box-shadow: 6px 6px 0px var(--accent);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }

        .btn-outline:hover {
            background-color: var(--accent);
            color: var(--bg);
            border-color: var(--accent);
        }

        /* Pealkirjad */
        .section-title {
            font-size: clamp(2.2rem, 8vw, 5.5rem);
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.95;
            letter-spacing: -2px;
            margin-bottom: 2rem;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .section-title span {
            color: var(--accent);
        }

        /* Navigatsioon */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: clamp(1rem, 2vw, 1.5rem) 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(8, 8, 8, 0.95);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            text-transform: uppercase;
            z-index: 1001;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--accent);
        }

        /* Dünaamiline pildilogo taltsutamine kõikides ekraanides */
        .logo img {
            max-width: clamp(180px, 20vw, 240px) !important;
            margin-bottom: clamp(-15px, -2vw, -30px) !important;
            height: auto;
        }

        .nav-links {
            display: flex;
            gap: clamp(1rem, 2vw, 2.5rem);
            align-items: center;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-size: clamp(0.85rem, 1.2vw, 1rem);
            text-transform: uppercase;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            padding: 10px;
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background-color: var(--text);
            transition: 0.3s ease;
        }

        /* Hero Sektsioon */
        .hero {
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 15vh 5% 5rem 5%;
            position: relative;
            overflow: hidden;
        }

        #hero-glow {
            position: absolute;
            width: clamp(300px, 50vw, 600px);
            height: clamp(300px, 50vw, 600px);
            background: radial-gradient(circle, rgba(204,255,0,0.1) 0%, rgba(0,0,0,0) 70%);
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 0;
            display: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            width: 100%;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 10vw, 8rem);
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -2px;
            margin-bottom: 2rem;
            word-wrap: break-word;
        }

        .hero h1 span.typewriter {
            color: var(--accent);
            display: inline-block;
            min-width: 20px;
        }

        .hero p {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            max-width: 750px;
            color: #aaaaaa;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        /* Marquee */
        .marquee {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100vw;
            max-width: 100vw;
            background-color: var(--accent);
            color: var(--bg);
            padding: 0.8rem 0;
            overflow: hidden;
            white-space: nowrap;
            font-weight: 700;
            text-transform: uppercase;
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            border-top: 1px solid var(--border);
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        /* Süsteem */
        .services {
            padding: clamp(6rem, 10vw, 10rem) 0;
            position: relative;
        }

        .services-header {
            padding: 0 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 2rem;
            gap: 1rem;
        }

        .swipe-hint {
            display: none;
            color: var(--accent);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(5px); }
        }

        .services-wrapper {
            display: flex;
            overflow-x: auto;
            padding: 0 5%;
            gap: 2rem;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 2rem;
            -webkit-overflow-scrolling: touch;
        }

        .services-wrapper::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            flex: 0 0 clamp(280px, 70vw, 450px);
            background-color: var(--surface);
            padding: clamp(2rem, 5vw, 3rem);
            border: 1px solid var(--border);
            scroll-snap-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-card:hover {
            border-color: var(--accent);
        }

        .card-num {
            font-size: clamp(3rem, 6vw, 4rem);
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 1px var(--border);
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            line-height: 1;
        }

        .service-card:hover .card-num {
            -webkit-text-stroke: 1px var(--accent);
            color: var(--accent);
        }

        .service-card h3 {
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            text-transform: uppercase;
            margin-bottom: 1rem;
            margin-top: 2rem;
            padding-right: 3rem;
            word-wrap: break-word;
        }

        .service-card p {
            color: #aaaaaa;
            font-size: clamp(1rem, 1.5vw, 1.05rem);
            font-weight: 300;
        }

        .cta-container {
            padding: 2rem 5% 0 5%;
            text-align: right;
        }

        /* AI SEKTSIOON */
        .ai-section {
            padding: clamp(6rem, 10vw, 10rem) 5%;
            background-color: var(--bg);
            position: relative;
            border-top: 1px solid var(--border);
            background-image: linear-gradient(rgba(51, 51, 51, 0.2) 1px, transparent 1px),
            linear-gradient(90deg, rgba(51, 51, 51, 0.2) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .ai-header {
            max-width: 800px;
            margin-bottom: 4rem;
        }

        .ai-header p {
            color: #aaaaaa;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 1.5rem;
        }

        .ai-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); /* Optimeeritud väikestele arvutitele */
            gap: 3rem;
            align-items: stretch;
        }

        .ai-card-intro {
            background-color: var(--surface);
            padding: clamp(2rem, 4vw, 3rem);
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ai-card-intro h3 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .ai-card-intro p {
            color: #aaaaaa;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .ai-card-intro ul {
            list-style: none;
            margin-bottom: 2rem;
        }

        .ai-card-intro li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            color: var(--text);
            font-size: 1.05rem;
        }

        .ai-card-intro li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }

        .ai-highlight-card {
            background-color: var(--accent);
            color: var(--bg);
            padding: clamp(2rem, 4vw, 3rem);
            border: 4px solid var(--text);
            box-shadow: 12px 12px 0px rgba(255, 255, 255, 0.1);
            position: relative;
            transform: rotate(1deg);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .ai-highlight-card:hover {
            transform: rotate(0deg) translate(-5px, -5px);
            box-shadow: 16px 16px 0px rgba(255, 255, 255, 0.2);
        }

        .ai-badge {
            background-color: var(--bg);
            color: var(--accent);
            padding: 0.3rem 1rem;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1.5rem;
            border-radius: 50px;
        }

        .ai-highlight-card h3 {
            font-size: clamp(2rem, 4vw, 3rem);
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: -1.5px;
            line-height: 1;
        }

        .ai-highlight-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
            border-bottom: 2px solid var(--bg);
            padding-bottom: 0.5rem;
        }

        .ai-highlight-card p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .sera-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .sera-features div {
            border: 1px solid var(--bg);
            padding: 0.8rem;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            text-align: center;
        }

        /* Lisateenused */
        .extra-services {
            padding: clamp(4rem, 8vw, 8rem) 5%;
            background-color: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .extra-header {
            max-width: 800px;
            margin-bottom: 4rem;
        }

        .extra-header p {
            color: #aaaaaa;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
        }

        .extra-list {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            max-width: 1200px;
        }

        .extra-card {
            display: flex;
            flex-direction: row;
            align-items: center;
            background-color: var(--bg);
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            cursor: crosshair;
        }

        .extra-card:hover {
            border-color: var(--accent);
            transform: translate(-5px, -5px);
            box-shadow: 8px 8px 0px var(--accent);
            z-index: 2;
        }

        .extra-card-img-wrapper {
            flex: 0 0 35%;
            height: 100%;
            min-height: 250px;
            overflow: hidden;
            border-right: 1px solid var(--border);
            position: relative;
        }

        .extra-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.5s ease;
        }

        .extra-card:hover .extra-card-img {
            transform: scale(1.05);
        }

        .extra-card-content {
            padding: clamp(2rem, 4vw, 3rem);
            flex: 1;
        }

        .extra-card h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: var(--accent);
            letter-spacing: -1px;
        }

        .extra-card p {
            color: #aaaaaa;
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            font-weight: 300;
            line-height: 1.6;
        }

        .subtle-promo {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem !important;
            font-style: italic;
            color: #888 !important;
        }
        
        .subtle-promo a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            font-style: normal;
            transition: opacity 0.3s;
        }

        .subtle-promo a:hover {
            opacity: 0.7;
            text-decoration: underline;
        }

        /* ERILAHENDUSED */
        .special-products {
            padding: clamp(6rem, 10vw, 8rem) 5%;
            background-color: var(--bg);
            padding-top: 0px;
        }

        .special-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); /* Optimeeritud väikestele arvutitele */
            gap: 3rem;
            max-width: 1200px;
        }

        .special-card {
            background-color: var(--surface);
            padding: clamp(2.5rem, 5vw, 4rem);
            border: 2px dashed var(--border);
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .special-card:hover {
            border-color: var(--accent);
            border-style: solid;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(204, 255, 0, 0.05);
        }

        .special-card .badge {
            position: absolute;
            top: -15px;
            left: 2rem;
            background-color: var(--text);
            color: var(--bg);
            padding: 0.3rem 1rem;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .special-card h3 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--text);
            margin-bottom: 1rem;
            word-break: break-word;
        }

        .special-card h3 span {
            color: var(--accent);
        }

        .special-card p {
            color: #aaaaaa;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .special-card .link-arrow {
            color: var(--accent);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: gap 0.3s;
        }

        .special-card:hover .link-arrow {
            gap: 15px;
        }

        /* Manifesto */
        .manifesto {
            padding: clamp(6rem, 10vw, 10rem) 5%;
            background-color: var(--text);
            color: var(--bg);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
            gap: clamp(3rem, 6vw, 5rem);
            align-items: center;
        }

        .manifesto h2 {
            color: var(--bg);
            margin-bottom: 0;
        }

        .manifesto-content p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Kontakt */
        .contact {
            padding: clamp(6rem, 10vw, 10rem) 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); /* Optimeeritud */
            gap: clamp(4rem, 8vw, 6rem);
        }

        .contact-info p {
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            color: #aaaaaa;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .contact-person {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1rem;
        }

        .triinu-badge {
            background-color: var(--accent);
            color: var(--bg);
            padding: 0.3rem 1rem;
            font-weight: 700;
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            display: inline-block;
            transform: rotate(-3deg);
            border: 1px solid var(--text);
            box-shadow: 3px 3px 0px var(--text);
            transition: transform 0.3s ease;
        }

        .triinu-badge:hover {
            transform: rotate(2deg) scale(1.05);
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            color: var(--text);
            text-decoration: none;
            font-size: clamp(1.2rem, 2vw, 1.4rem);
            font-weight: 500;
            position: relative;
            width: fit-content;
            transition: color 0.3s;
        }

        .contact-link:hover {
            color: var(--accent);
        }

        .copy-tooltip {
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%) translateX(10px);
            background-color: var(--text);
            color: var(--bg);
            padding: 0.4rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid var(--bg);
            white-space: nowrap;
        }

        .copy-tooltip.show {
            opacity: 1;
            transform: translateY(-50%) translateX(20px);
        }

        /* Vorm */
        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        form input, form textarea {
            width: 100%;
            padding: 1.2rem;
            background-color: var(--surface);
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 16px;
            transition: border-color 0.3s;
            border-radius: 0;
            -webkit-appearance: none;
        }

        .form-full-width {
            grid-column: 1 / -1;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        footer {
            padding: 2rem 5%;
            border-top: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            color: #777;
            font-size: 0.9rem;
        }

        /* =========================================
           UUS: VÄIKESED ARVUTID & TAHVLID (901px - 1280px)
        ========================================= */
        @media (min-width: 901px) and (max-width: 1280px) {
            nav {
                padding: 1rem 3% !important;
            }
            .nav-links {
                gap: 1.2rem !important; /* Tõmbame lingid tihedamalt kokku */
            }
            .nav-links a {
                font-size: 0.8rem !important;
            }
            .btn.nav-btn-desktop {
                padding: 0.9rem 1.5rem !important;
                font-size: 0.85rem !important;
            }
            .ai-grid, .special-grid {
                gap: 2rem !important; /* Kaartide vahe veidi väiksem */
            }
        }

        /* =========================================
           TÄIUSTATUD MOBIILIVAADE (APP-LIKE UX <= 900px)
        ========================================= */
        @media (max-width: 900px) {
            
            nav { padding: 0.8rem 5% !important; }
            .logo { display: none !important; }

            section, .services, .ai-section, .extra-services, .special-products, .manifesto, .contact, .portfolio-grid {
                padding: 3rem 5% !important;
            }
            
            .hero, .subpage-hero { 
                padding: 100px 5% 3rem 5% !important; 
                min-height: 100dvh; 
            }

            .hero h1 { 
                font-size: clamp(2.2rem, 11vw, 3.5rem) !important; 
                margin-bottom: 1rem !important; 
                line-height: 0.95; 
            }
            .section-title { 
                font-size: clamp(1.8rem, 9vw, 2.5rem) !important; 
                margin-bottom: 1.5rem !important; 
            }

            .ai-grid, .special-grid, .extra-list, form, .data-feature-grid, .portfolio-grid { 
                grid-template-columns: 1fr !important; 
                gap: 1.5rem !important; 
            }
            
            .service-card, .ai-card-intro, .ai-highlight-card, .extra-card-content, .special-card, .data-card, .pf-content {
                padding: 1.5rem !important;
            }

            .btn { 
                padding: 1rem 1.5rem !important; 
                font-size: 0.95rem !important; 
                width: 100%; 
                display: flex !important; 
                justify-content: center; 
            }
            
            .pricing-brutal-box { padding: 1.5rem !important; gap: 1.5rem !important; margin: 2rem 0 !important; }
            .pricing-brutal-box h2 { font-size: 2.5rem !important; }
            .pf-img-wrapper { height: 180px !important; }
            
            .hamburger { display: flex; margin-left: auto; }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100dvh;
                background-color: rgba(8, 8, 8, 0.98) !important;
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                z-index: 1000;
            }
            .nav-links.active { right: 0; }
            .nav-links a { font-size: 2rem !important; margin-bottom: 2rem; font-weight: 700; }
            
            .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .hamburger.active span:nth-child(2) { opacity: 0; }
            .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
            .nav-btn-desktop { display: none; }
            .nav-links .btn { margin-top: 2rem; width: 80%; color: black; }

            .services-header { flex-direction: column; align-items: flex-start; margin-bottom: 1rem !important; }
            .swipe-hint { display: block; margin-bottom: 1rem; }
            .services-wrapper { 
                padding-bottom: 1.5rem !important;
                margin-left: -5%;
                margin-right: -5%;
                padding-left: 5%;
                padding-right: 5%;
                scroll-padding-left: 5%;
                gap: 1rem !important;
            }
            .service-card { flex: 0 0 75vw !important; }

            .cta-container { text-align: left; padding-top: 1rem !important; }
            
            form input { grid-column: 1 / -1; }
            form input, form textarea { padding: 1rem !important; }

            .extra-card { flex-direction: column; }
            .extra-card-img-wrapper { 
                width: 100%; 
                height: 180px !important; 
                border-right: none; 
                border-bottom: 1px solid var(--border); 
            }
            .extra-card-img { position: relative; }

            .copy-tooltip { left: 50%; top: -40px; transform: translateX(-50%); }
            .copy-tooltip.show { transform: translateX(-50%) translateY(-5px); }
            
            .sera-features { grid-template-columns: 1fr; }
            .ai-highlight-card { transform: rotate(0deg); }
        }

        @media (min-width: 901px) {
            .nav-links .btn { display: none; }
        }
        
        
        /* =========================================
   VÄIKSEMAD SÜLEARVUTID / 14" EKRAANID (901px - 1400px)
========================================= */
@media (min-width: 901px) and (max-width: 1400px) {
    
    /* 1. SKAALAME KOGU LEHE 80% PEALE
       (Standard on 100% ehk 16px. 80% teeb 1rem = 12.8px) 
       See teeb automaatselt KÕIK nupud, tekstid ja paddingud 20% väiksemaks! */
    html {
        font-size: 80% !important; 
    }

    /* 2. Navigatsiooni kohendamine */
    nav {
        padding: 1rem 3% !important;
    }
    .nav-links {
        gap: 1.5rem !important; 
    }
    .btn.nav-btn-desktop {
        padding: 0.8rem 1.5rem !important;
    }

    /* 3. Vähendame sektsioonide suuri õhuvahesid, et mahuks rohkem ekraanile */
    section, .services, .ai-section, .extra-services, .special-products, .manifesto, .contact, .portfolio-grid {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* 4. Hero sektsioonid (Avaleht ja alamlehed)
       Vanade läpakate ekraan on madal (768px), 100vh lükkab sisu liiga alla. */
    .hero, .subpage-hero {
        min-height: auto !important;
        padding-top: 140px !important;
        padding-bottom: 4rem !important;
    }

    /* 5. Ekstreemselt suured pealkirjad veidi ohjesse */
    .hero h1, .subpage-hero h1 {
        font-size: clamp(3rem, 7vw, 5.5rem) !important;
        margin-bottom: 1.5rem !important;
    }
    
    .section-title {
        font-size: clamp(2.2rem, 5vw, 4rem) !important;
    }

    /* 6. Gridide vahede vähendamine */
    .ai-grid, .special-grid, .price-grid {
        gap: 2rem !important;
    }
}

/* =========================================
   EKSTRA KONTROLL MADALATELE EKRAANIDELE (nt 1366x768)
========================================= */
@media (max-height: 800px) and (min-width: 901px) {
    /* Kui ekraani kõrgus on väike, tõmbame Hero sektsiooni veel koomale */
    .hero, .subpage-hero {
        padding-top: 120px !important;
    }
    html {
        font-size: 75% !important; /* Vajadusel isegi 75% skaleering */
    }
}