/* --- RÉINITIALISATION ET BASE --- */
        
:root[data-theme="light"] {
    --card-img-opacity: 1;
    --bg-color: #f5f5f7;
    --card-bg: #ffffff;
    --text-main: #1d1d1f;
    --text-sec: #555555;
    --accent: #007aff;
    --hero-logo-fill: #1d1d1f;
    --hero-sub: rgba(0,0,0,0.4);
    --title-grad-start: #000000;
    --title-grad-end: #000000;
    --nav-bg: rgba(255, 255, 255, 0.7);
    --nav-border: rgba(0, 0, 0, 0.1);
    --nav-text: rgba(0, 0, 0, 0.6);
    --card-border: rgba(0, 0, 0, 0.08);
    --service-bg: #ffffff;
    --service-border: rgba(0,0,0,0.06);
    --service-hover: #f9f9fb;
    --service-border-hover: rgba(0,0,0,0.15);
    --marquee-text: rgba(0,0,0,0.15);
    --footer-bg: #fdfdfd;
    --footer-border: rgba(0,0,0,0.05);
    --form-bg: #ffffff;
    --form-border: rgba(0,0,0,0.08);
    --input-bg: #f5f5f7;
    --input-border: rgba(0,0,0,0.1);
    --modal-bg: linear-gradient(145deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.5) 100%);
    --modal-border: rgba(0,0,0,0.1);
    --modal-panel: rgba(0,0,0,0.03);
    --dot-color: rgba(0,0,0,0.9);
    --hero-video-opacity: 0.2;
    --shadow-soft: 0 22px 70px rgba(0,0,0,0.14);
    --shadow-card: 0 18px 42px rgba(0,0,0,0.18);
}

:root {
    --card-img-opacity: 0.8;
    --bg-color: #000000;
    --card-bg: #1c1c1e;
    --text-main: #ffffff;
    --text-sec: #8e8e93;
    --accent: #0a84ff;
    --radius: 16px;
    --hero-logo-fill: #ffffff;
    --hero-sub: rgba(255,255,255,0.5);
    --title-grad-start: #ffffff;
    --title-grad-end: #666666;
    --nav-bg: rgba(28, 28, 30, 0.6);
    --nav-border: rgba(255, 255, 255, 0.1);
    --nav-text: rgba(255, 255, 255, 0.7);
    --card-border: rgba(255, 255, 255, 0.1);
    --service-bg: rgba(255, 255, 255, 0.03);
    --service-border: rgba(255, 255, 255, 0.05);
    --service-hover: rgba(255, 255, 255, 0.06);
    --service-border-hover: rgba(255, 255, 255, 0.1);
    --marquee-text: rgba(255, 255, 255, 0.3);
    --footer-bg: #050505;
    --footer-border: rgba(255, 255, 255, 0.05);
    --form-bg: rgba(255, 255, 255, 0.03);
    --form-border: rgba(255, 255, 255, 0.1);
    --input-bg: rgba(0, 0, 0, 0.4);
    --input-border: rgba(255, 255, 255, 0.1);
    --modal-bg: linear-gradient(145deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.02) 100%);
    --modal-border: rgba(255,255,255,0.28);
    --modal-panel: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 40%);
    --dot-color: rgba(255,255,255,0.5);
    --hero-video-opacity: 0.35;
    --shadow-soft: 0 26px 80px rgba(0,0,0,0.52);
    --shadow-card: 0 18px 46px rgba(0,0,0,0.62);
}

        * { box-sizing: border-box; margin: 0; padding: 0; cursor: none; }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            display: flex;
            flex-direction: column;
            align-items: center; 
            min-height: 100vh;
            min-height: 100dvh;
            padding-bottom: env(safe-area-inset-bottom, 0px);
            -webkit-tap-highlight-color: transparent;
        }

        /* --- CUSTOM CURSOR (Desktop Only) --- */
        .cursor-dot { 
            position: fixed; top: 0; left: 0; 
            width: 30px; height: 30px; 
            z-index: 999999; pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 4L19.2 12L12.9 13.9L9.3 20L5 4Z' fill='white' stroke='black' stroke-width='1.6' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            transform: translate(-5px, -4px);
            transition: transform 0.12s ease;
            filter: drop-shadow(0 1px 0 rgba(0,0,0,0.75));
        }
        
        :root[data-theme="light"] .cursor-dot {
            filter: drop-shadow(0 1px 0 rgba(0,0,0,0.75));
        }

        body.hovering .cursor-dot {
            transform: translate(-5px, -4px) scale(1.02);
        }

        :root[data-theme="light"] body.hovering .cursor-dot {
            filter: drop-shadow(0 1px 0 rgba(0,0,0,0.75));
        }

        .cursor-outline { display: none !important; }

        /* --- PRELOADER --- */
        #preloader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #000; z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s ease-out, visibility 0.8s;
        }
        #preloader.loaded { opacity: 0; visibility: hidden; }
        .loader-logo { width: 120px; height: auto; animation: loaderPulse 2s infinite ease-in-out; }
        .loader-part { fill: var(--hero-logo-fill); }
        .loader-part:nth-child(1) { animation: fadePart 1.5s infinite alternate 0s; }
        .loader-part:nth-child(2) { animation: fadePart 1.5s infinite alternate 0.5s; }
        .loader-part:nth-child(3) { animation: fadePart 1.5s infinite alternate 1s; }
        @keyframes loaderPulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } }
        @keyframes fadePart { from { fill: #333; } to { fill: var(--accent); } }

        /* --- HEADER --- */
        .header-container {
            position: absolute; 
            top: max(24px, env(safe-area-inset-top));
            left: 50%; transform: translateX(-50%);
            display: flex; align-items: center; gap: 20px; z-index: 1000;
            width: min(90%, 1000px); max-width: calc(100% - 32px); justify-content: center;
            opacity: 0; animation: fadeInDown 1s ease-out 1.5s forwards;
        }
        .studio-header-text {
            position: absolute; 
            top: max(8px, env(safe-area-inset-top));
            left: 50%; transform: translateX(-50%);
            font-size: 0.7rem; font-weight: 600; letter-spacing: 4px; color: var(--nav-text);
            z-index: 1001; text-transform: uppercase; opacity: 0; animation: fadeIn 1s ease-out 1.8s forwards;
            padding: 0 12px;
            text-align: center;
        }
        .logo-wrapper {
            padding: 0 25px; background: var(--nav-bg); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
            border-radius: 50px; border: 1px solid var(--form-border); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: flex; align-items: center; height: 60px;
        }
        .interactive-logo { height: 35px; width: auto; display: block; overflow: visible; }
        .logo-part { fill: var(--hero-logo-fill); transition: fill 0.22s ease, opacity 0.22s ease; cursor: none; opacity: 0.9; transform-origin: center; }
        .logo-part:hover { fill: var(--text-main); opacity: 1; }
        
        .nav-pill {
            height: 60px; padding: 0 30px; background: var(--nav-bg); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
            border-radius: 50px; border: 1px solid var(--form-border); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: flex; align-items: center; gap: 25px;
        }
        .nav-link { text-decoration: none; color: var(--nav-text); font-weight: 500; font-size: 0.9rem; transition: 0.3s; position: relative;}
        .nav-link:hover { color: var(--text-main); }
        .nav-separator { width: 1px; height: 15px; background: var(--nav-border); }
        .social-icons { display: flex; gap: 15px; }
        .social-icons a { color: var(--text-main); font-size: 1rem; transition: 0.3s; }
        .social-icons a:hover { color: var(--accent); }

        @keyframes fadeInDown { from { opacity: 0; transform: translate(-50%, -20px); } to { opacity: 1; transform: translate(-50%, 0); } }
        @keyframes fadeIn { to { opacity: 1; } }

        /* --- HERO SECTION --- */
        #hero {
            height: 100vh; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; padding: 0 20px; position: relative; overflow: hidden;
            min-height: 720px;
        }
        .hero-video-layer {
            position: absolute;
            inset: 0;
            z-index: -4;
            overflow: hidden;
            background:
                radial-gradient(circle at 50% 44%, rgba(10,132,255,0.16), transparent 42%),
                linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color) 100%);
        }
        .hero-bg-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: var(--hero-video-opacity);
            filter: saturate(1.2) contrast(1.08) blur(0.2px);
            transform: scale(1.02);
        }
        .hero-video-missing .hero-bg-video { display: none; }
        .hero-video-scrim {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, var(--bg-color) 0%, rgba(0,0,0,0) 30%, var(--bg-color) 100%),
                radial-gradient(circle at 50% 45%, rgba(10,132,255,0.06), transparent 50%);
        }
        :root[data-theme="light"] .hero-video-scrim {
            background:
                linear-gradient(180deg, rgba(245,245,247,0.86) 0%, rgba(245,245,247,0.48) 42%, rgba(245,245,247,0.95) 100%),
                radial-gradient(circle at 50% 45%, rgba(10,132,255,0.12), transparent 52%);
        }
        .dot-field {
            position: absolute;
            width: min(420px, 74vw);
            height: min(260px, 42vw);
            z-index: -2;
            background-image: radial-gradient(circle, var(--dot-color) 1.25px, transparent 1.55px);
            background-size: 12px 12px;
            opacity: 0.22;
            pointer-events: none;
            mask-image: radial-gradient(circle at 50% 50%, black 0 42%, transparent 72%);
            -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0 42%, transparent 72%);
        }
        .dot-field-left {
            left: max(-80px, -5vw);
            top: 18%;
        }
        .dot-field-right {
            right: max(-90px, -6vw);
            bottom: 12%;
            transform: scale(1.15);
        }
        .hero-glow {
            position: absolute;
            width: min(800px, 140vw);
            height: min(800px, 140vw);
            max-width: 100vw;
            background: radial-gradient(circle, rgba(10, 132, 255, 0.12) 0%, rgba(0,0,0,0) 70%);
            top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; z-index: -1;
            animation: pulseGlow 5s infinite alternate;
            will-change: transform, opacity;
        }
        @keyframes pulseGlow { from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); } to { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); } }

        .hero-logo-wrap {
            width: clamp(340px, 52vw, 650px);
            margin-bottom: 28px;
            opacity: 0;
            animation: heroTextUp 1s ease-out 0.5s forwards;
            z-index: 2;
            filter: drop-shadow(0 24px 45px rgba(0,0,0,0.18));
        }
        .hero-logo-svg {
            display: block;
            width: 100%;
            height: auto;
            overflow: visible;
        }

        .hero-seg path {
            fill: var(--hero-logo-fill);
            stroke: none;
            opacity: 0.9;
            transform-origin: center;
            transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
        }
        .hero-seg { cursor: none; color: white; text-decoration: none; outline: none; }
        .hero-seg:focus { outline: none; }
        .hero-seg:focus-visible { outline: none; }

        .seg-label {
            fill: rgba(255,255,255,0);
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            pointer-events: none;
            transition: fill 0.35s;
        }

        /* Staggered entrance */
        .hero-seg:nth-child(1) path { animation: segInLeft 0.8s ease-out 0.7s both; }
        .hero-seg:nth-child(2) path { animation: segInDown 0.8s ease-out 0.95s both; }
        .hero-seg:nth-child(3) path { animation: segInRight 0.8s ease-out 1.2s both; }

        @keyframes segInLeft  { from { opacity: 0; transform: translateX(-30px); } to { opacity: 0.9; transform: translateX(0); } }
        @keyframes segInDown  { from { opacity: 0; transform: translateY(-20px); } to { opacity: 0.9; transform: translateY(0); } }
        @keyframes segInRight { from { opacity: 0; transform: translateX(30px); }  to { opacity: 0.9; transform: translateX(0); } }

        /* Hover */
        @media (hover: hover) {
            .hero-seg:hover path {
                opacity: 1;
                fill: #fff;
                transform: scale(1.025);
                filter: drop-shadow(0 0 12px rgba(10, 132, 255, 0.24));
            }
            .hero-seg:hover .seg-label {
                fill: rgba(255,255,255,0.9);
            }
        }
        .hero-seg:active path {
            transform: scale(0.96);
        }
        .hero-studio-name {
            font-size: clamp(1.1rem, 2.2vw, 1.5rem);
            font-weight: 300;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--hero-sub);
            margin-bottom: 12px;
            opacity: 0;
            animation: heroTextUp 0.8s ease-out 1.5s forwards;
            z-index: 2;
        }
        .hero-subtitle {
            font-size: clamp(0.92rem, 1.8vw, 1.1rem); color: var(--text-sec); max-width: 600px; margin-bottom: 40px;
            opacity: 0; animation: heroTextUp 1s ease-out 1.8s forwards; padding: 0 20px;
            z-index: 2;
        }
        .hero-meta-rail {
            position: absolute;
            top: max(108px, calc(env(safe-area-inset-top) + 96px));
            left: clamp(18px, 4vw, 58px);
            right: clamp(18px, 4vw, 58px);
            display: flex;
            justify-content: space-between;
            gap: 18px;
            color: var(--nav-text);
            font-size: clamp(0.62rem, 1vw, 0.78rem);
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            z-index: 2;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.4s forwards;
        }
        .hero-actions {
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: heroTextUp 1s ease-out 2s forwards;
            margin-top: -18px;
        }
        .hero-primary-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--text-main);
            text-decoration: none;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 13px 18px 13px 20px;
            border-radius: 999px;
            background: rgba(255,255,255,0.09);
            border: 1px solid var(--modal-border);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(18px) saturate(180%);
            -webkit-backdrop-filter: blur(18px) saturate(180%);
            transition: transform 0.25s, background 0.25s, border-color 0.25s;
        }
        .hero-primary-link:hover {
            transform: translateY(-2px);
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .form-status {
            color: var(--text-sec);
            font-size: 0.86rem;
            line-height: 1.45;
            text-align: center;
            margin-top: 4px;
        }
        .btn-send:disabled {
            opacity: 0.78;
            transform: none;
        }
        .scroll-indicator {
            position: absolute; bottom: 40px; opacity: 0; animation: fadeIn 1s ease-out 1.5s forwards, bounce 2s infinite 2s;
            font-size: 1.5rem; color: var(--marquee-text);
        }
        @keyframes heroTextUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }

        /* --- SCROLL REVEAL --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- SERVICES SECTION (UPDATED) --- */
        .services-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; width: 100%; margin-bottom: 40px;
        }
        .service-card {
            background: var(--service-bg); border: 1px solid var(--service-border); padding: 40px;
            border-radius: 24px; transition: background 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s; text-align: left; cursor: none;
            box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, var(--shadow-soft);
        }
        @media (hover: hover) and (pointer: fine) {
            .service-card:hover { background: var(--service-hover); transform: translateY(-2px); border-color: var(--service-border-hover); }
        }
        @media (hover: none), (pointer: coarse) {
            .service-card:active { background: var(--service-hover); transform: scale(0.99); }
        }
        .service-icon { font-size: 2rem; color: var(--accent); margin-bottom: 20px; }
        .service-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--text-main); }
        .service-card p { color: var(--text-sec); line-height: 1.5; font-size: 0.95rem; }

        /* --- MARQUEE --- */
        .marquee-section { width: 100%; overflow: hidden; padding: 60px 0; position: relative; mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); }
        .marquee-content { display: flex; gap: 60px; width: max-content; animation: scroll 30s linear infinite; }
        .client-logo { font-size: 1.5rem; font-weight: 900; color: var(--marquee-text); text-transform: uppercase; white-space: nowrap; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* --- LAYOUT & GRIDS --- */
        .content-wrapper { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; text-align: left; }
        section { padding: 60px 0; width: 100%; display: flex; flex-direction: column; align-items: center; scroll-margin-top: calc(100px + env(safe-area-inset-top)); }
        
        .section-title {
            font-size: 4rem; font-weight: 900; margin-bottom: 40px; text-align: left;
            background: linear-gradient(180deg, var(--title-grad-start), var(--title-grad-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            letter-spacing: -2px; line-height: 1;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
            gap: 15px; width: 100%;
        }
        
        .card {
            background-color: var(--card-bg); border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 1/1;
            cursor: none; transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
            border: 1px solid var(--form-border);
            box-shadow: var(--shadow-card);
        }
        @media (hover: hover) and (pointer: fine) {
            .card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); z-index: 10; border-color: rgba(10, 132, 255, 0.45); }
            .card:hover img { opacity: 0.9; transform: scale(1.025); }
        }
        @media (hover: none), (pointer: coarse) {
            .card:active { transform: scale(0.98); border-color: rgba(10, 132, 255, 0.5); }
        }
        .card img { width: 100%; height: 100%; object-fit: cover; opacity: var(--card-img-opacity, 1); transition: opacity 0.5s, transform 0.5s; }
        .card-fallback,
        .modal-media-fallback {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background:
                radial-gradient(circle at 30% 24%, rgba(10,132,255,0.22), transparent 28%),
                radial-gradient(circle at 72% 76%, rgba(255,255,255,0.14), transparent 28%),
                linear-gradient(145deg, var(--card-bg), var(--bg-color));
        }
        .card-fallback::before,
        .modal-media-fallback::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.32) 1.1px, transparent 1.4px);
            background-size: 11px 11px;
            opacity: 0.22;
            mask-image: radial-gradient(circle at 50% 50%, black 0 42%, transparent 76%);
            -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0 42%, transparent 76%);
        }
        .card-fallback span,
        .modal-media-fallback span {
            position: relative;
            font-family: 'Anton', 'Inter', sans-serif;
            letter-spacing: 0;
            font-size: clamp(3rem, 8vw, 6rem);
            color: rgba(255,255,255,0.18);
            text-transform: uppercase;
        }
        .player-root .modal-media-fallback {
            position: relative;
            width: 100%;
            min-height: 320px;
            flex: 1;
        }
        .card-info {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.6) 60%, transparent);
            padding: 12px 12px 14px;
            display: flex; flex-direction: column; justify-content: flex-end;
            min-height: 48%;
            pointer-events: none;
            gap: 6px;
        }
        .card-info h3 { font-size: clamp(0.85rem, 3vw, 1.1rem); color: #ffffff; margin-bottom: 3px; font-weight: 800; text-shadow: 0 2px 5px rgba(0,0,0,0.9); line-height: 1.2; }
        .card-info span { font-size: clamp(0.65rem, 2.2vw, 0.8rem); color: #f0f0f0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
        .card-tool-icons {
            display: flex; flex-wrap: wrap; align-items: center; gap: 5px;
            margin-top: 4px; max-width: 100%;
        }
        .card-tool-icons img {
            width: 22px; height: 22px; border-radius: 6px;
            object-fit: contain;
            background: rgba(255,255,255,0.08);
            padding: 3px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.35);
            filter: invert(1) brightness(2);
        }
        .widget-icons { display: flex; gap: 8px; margin-top: 6px; opacity: 0.8; }
        .widget-icons i { font-size: 0.85rem; color: var(--accent); }

        /* --- FOOTER & CONTACT --- */
        footer {
            background: var(--footer-bg); border-top: 1px solid var(--footer-border); padding: 80px 20px 120px 20px; 
            width: 100%; display: flex; flex-direction: column; align-items: center; gap: 60px; margin-top: auto;
        }
        .footer-cta { text-align: center; max-width: 800px; margin-bottom: 20px; width: 100%; }
        .footer-cta h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--text-main); margin-bottom: 10px; letter-spacing: -2px; }
        .footer-cta p { font-size: 1.1rem; color: var(--text-sec); }

        /* CONTACT FORM STYLED */
        .contact-container {
            width: 100%; max-width: 700px; margin: 40px auto 0 auto;
            background: rgba(255, 255, 255, 0.03); border: 1px solid var(--form-border); border-radius: 30px; padding: 40px;
            scroll-margin-top: 120px;
        }
        .contact-header h3 { font-size: 2rem; font-weight: 800; margin-bottom: 25px; color: var(--text-main); text-align: center; }
        
        .contact-form { display: flex; flex-direction: column; gap: 20px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group { display: flex; flex-direction: column; text-align: left; }
        .form-group label { font-size: 0.9rem; color: var(--text-sec); margin-bottom: 8px; margin-left: 5px; font-weight: 500; }
        
        .form-group input, .form-group textarea {
            background: var(--input-bg); border: 1px solid var(--form-border); border-radius: 16px; padding: 18px;
            color: var(--text-main); font-size: 1rem; font-family: inherit; transition: all 0.3s ease; width: 100%;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none; border-color: var(--accent); background: rgba(10, 132, 255, 0.05);
        }

        .btn-send {
            width: 100%; padding: 18px; background: var(--accent); color: white; border: none; border-radius: 50px;
            font-size: 1.1rem; font-weight: 700; cursor: none; transition: 0.3s; margin-top: 10px;
        }
        .btn-send:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(10, 132, 255, 0.22); }
        
        .footer-bottom {
            display: flex; justify-content: space-between; width: 100%; max-width: 1400px; align-items: center; 
            border-top: 1px solid var(--footer-border); padding-top: 40px; flex-wrap: wrap; gap: 20px;
        }
        .footer-links { display: flex; gap: 20px; }
        .footer-links a { color: var(--text-sec); text-decoration: none; font-size: 0.85rem; transition: 0.2s; }
        .footer-links a:hover { color: var(--text-main); }
        .footer-logo svg { height: 25px; opacity: 0.5; }

        #contact-form-anchor { scroll-margin-top: 100px; } 

        /* --- BOTTOM DOCK --- */
        .bottom-dock {
            position: fixed;
            bottom: max(20px, env(safe-area-inset-bottom, 0px));
            left: 50%;
            transform: translateX(-50%) translateY(150%); 
            width: min(400px, calc(100% - 32px));
            max-width: 400px;
            background: var(--nav-bg);
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            border: 1px solid var(--nav-border);
            border-radius: 35px;
            padding: 10px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1002;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .bottom-dock.visible {
            transform: translateX(-50%) translateY(0);
        }

        .dock-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--nav-text);
            font-size: 0.65rem;
            gap: 4px;
            transition: color 0.25s, transform 0.2s;
            padding: 8px min(12px, 2vw);
            min-width: 44px;
            min-height: 48px;
            cursor: none;
            touch-action: manipulation;
            -webkit-user-select: none;
            user-select: none;
        }

        .dock-item i { font-size: 1.25rem; transition: transform 0.3s, color 0.25s; }
        @media (hover: hover) and (pointer: fine) {
            .dock-item:hover i { transform: translateY(-1px); color: var(--accent); }
            .dock-item:hover { color: var(--text-main); }
        }
        .dock-item:active { color: var(--text-main); transform: scale(0.96); }
        .dock-item.active { color: var(--text-main); }

        @media (max-width: 1024px) { 
            .nav-pill { display: none; }
            .header-container { width: auto; }
            .cursor-dot, .cursor-outline { display: none; } 
            * { cursor: auto; }
            .vc-btn, .close-modal, .nav-arrow, .modal-cta-btn, .btn-send, .dock-item { cursor: pointer; }
        }

        /* MOBILE OPTIMIZATIONS */
        @media (max-width: 768px) {
            #hero { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); min-height: 100svh; }
            .hero-meta-rail {
                top: max(86px, calc(env(safe-area-inset-top) + 76px));
                left: 18px;
                right: 18px;
                flex-wrap: wrap;
                justify-content: center;
                row-gap: 6px;
                font-size: 0.56rem;
                letter-spacing: 0.11em;
            }
            .dot-field { background-size: 10px 10px; opacity: 0.18; }
            .dot-field-left { left: -140px; top: 12%; }
            .dot-field-right { right: -150px; bottom: 18%; }
            .hero-logo-wrap { width: clamp(280px, 80vw, 400px); margin-bottom: 16px; }
            .hero-actions { margin-top: -12px; }
            .hero-primary-link { padding: 12px 15px 12px 17px; font-size: 0.82rem; }
            .seg-label { font-size: 10px; }
            .hero-subtitle { margin-bottom: 32px; }
            .scroll-indicator { bottom: max(28px, env(safe-area-inset-bottom)); font-size: 1.35rem; }
            .section-title { font-size: clamp(2rem, 8vw, 2.5rem); margin-bottom: 22px; letter-spacing: -1px; }
            .content-wrapper { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
            .content-wrapper { padding: 0 24px; }
            .grid-container { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
            .card { aspect-ratio: 4/5; border-radius: 14px; }
            .card-info { padding: 10px 10px 12px; min-height: 40%; gap: 4px; }
            .card-info h3 { font-size: clamp(0.85rem, 3vw, 1.1rem); color: #ffffff; margin-bottom: 3px; font-weight: 800; text-shadow: 0 2px 5px rgba(0,0,0,0.9); line-height: 1.2; }
            .card-info span { font-size: clamp(0.65rem, 2.2vw, 0.8rem); color: #f0f0f0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
            .card-tool-icons { gap: 4px; margin-top: 4px; }
            .card-tool-icons img { width: 16px; height: 16px; padding: 2px; border-radius: 4px; }
            .contact-container { padding: 26px 18px; width: 100%; border-radius: 20px; }
            .form-row { grid-template-columns: 1fr; gap: 15px; } 
            .contact-header h3 { font-size: 1.65rem; }
            .footer-bottom { flex-direction: column; gap: 28px; text-align: center; padding-bottom: max(110px, calc(90px + env(safe-area-inset-bottom))); } 
            .services-grid { grid-template-columns: 1fr; gap: 20px; }
            .service-card { padding: 28px 22px; border-radius: 20px; }
            .service-icon { font-size: 1.75rem; margin-bottom: 14px; }
            .service-card h3 { font-size: 1.25rem; }
            .logo-wrapper { padding: 0 14px; height: 48px; }
            .interactive-logo { height: 26px; }
            .marquee-section { padding: 40px 0; }
            .marquee-content { gap: 40px; animation-duration: 45s; }
            .client-logo { font-size: 1.15rem; }
            section { padding: 48px 0; scroll-margin-top: calc(88px + env(safe-area-inset-top)); }
        }

        @media (max-width: 380px) {
            .hero-logo-wrap { width: clamp(240px, 75vw, 300px); margin-bottom: 10px; }
            .hero-subtitle { font-size: 0.88rem; padding: 0 8px; }
            .section-title { font-size: clamp(1.75rem, 8vw, 2rem); }
            .content-wrapper { padding: 0 16px; }
            .grid-container { gap: 8px; }
            .card { aspect-ratio: 4/5; border-radius: 12px; }
            .card-info { padding: 8px 7px 10px; }
            .card-info h3 { font-size: clamp(0.85rem, 3vw, 1.1rem); color: #ffffff; margin-bottom: 3px; font-weight: 800; text-shadow: 0 2px 5px rgba(0,0,0,0.9); line-height: 1.2; }
            .card-info span { font-size: clamp(0.65rem, 2.2vw, 0.8rem); color: #f0f0f0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
            .card-tool-icons img { width: 14px; height: 14px; border-radius: 3px; }
            .service-card { padding: 22px 16px; }
            .bottom-dock { padding: 8px 16px; border-radius: 28px; }
            .dock-item { font-size: 0.6rem; min-width: 40px; }
            .dock-item i { font-size: 1.1rem; }
            footer { padding: 60px 16px 100px; }
            .modal-overlay { padding: 12px; }
            .modal-content { border-radius: 20px; }
        }

        @media (max-height: 500px) and (orientation: landscape) {
            #hero { min-height: 100svh; padding-top: 80px; }
            .hero-logo-wrap { width: clamp(220px, 40vw, 320px); margin-bottom: 8px; }
            .hero-subtitle { font-size: 0.85rem; margin-bottom: 20px; }
            .scroll-indicator { display: none; }
            .modal-content { max-height: 96vh; max-height: 96dvh; }
            .player-root video, .player-root .fallback-media-img { max-height: 50vh; }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
            .hero-logo-wrap, .hero-subtitle, .scroll-indicator, .header-container, .studio-header-text, .loader-logo, .loader-part {
                animation: none !important; opacity: 1 !important;
            }
            .hero-glow { animation: none !important; opacity: 0.65; }
            .marquee-content { animation: none !important; }
            #preloader { transition: none; }
            .bottom-dock { transition: transform 0.35s ease; }
        }

        /* MODAL — Liquid glass (iOS-style) */
        .modal-overlay {
            position: fixed; inset: 0; z-index: 9999;
            display: flex; align-items: center; justify-content: center;
            padding: 24px;
            isolation: isolate;
            opacity: 0; pointer-events: none;
            transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            background: rgba(6, 8, 18, 0.35);
            backdrop-filter: saturate(200%) blur(48px);
            -webkit-backdrop-filter: saturate(200%) blur(48px);
        }
        .modal-overlay.active { opacity: 1; pointer-events: auto; }

        .modal-content {
            width: min(1120px, 100%);
            max-height: min(88vh, 900px);
            border-radius: 36px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
            background: var(--modal-bg);
            backdrop-filter: blur(56px) saturate(220%);
            -webkit-backdrop-filter: blur(56px) saturate(220%);
            border: 1px solid var(--modal-border);
            box-shadow:
                0 0 0 1px rgba(255,255,255,0.06) inset,
                0 32px 96px rgba(0,0,0,0.55),
                0 0 80px rgba(10, 132, 255, 0.08);
        }
        @media (min-width: 960px) {
            .modal-content { flex-direction: row; min-height: 520px; }
        }

        .modal-media {
            flex: 1.35;
            min-height: 280px;
            display: flex;
            align-items: stretch;
            justify-content: center;
            padding: 20px;
            position: relative;
            background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
        }
        @media (min-width: 960px) {
            .modal-media { padding: 28px; min-height: auto; }
        }

        .player-root {
            position: relative;
            width: 100%;
            border-radius: 28px;
            overflow: hidden;
            background: rgba(0,0,0,0.55);
            border: 1px solid rgba(255,255,255,0.14);
            box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset, 0 20px 50px rgba(0,0,0,0.4);
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }
        .player-root video, .player-root .fallback-media-img {
            width: 100%;
            flex: 1;
            min-height: 220px;
            max-height: 52vh;
            object-fit: contain;
            background: #000;
            display: block;
        }
        @media (min-width: 960px) {
            .player-root video, .player-root .fallback-media-img { max-height: none; min-height: 320px; }
        }

        .video-chrome {
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: 28px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
        }

        .video-controls {
            pointer-events: auto;
            position: absolute;
            left: 0; right: 0; bottom: 0;
            padding: 10px 14px 14px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .player-root:hover .video-controls,
        .player-root:focus-within .video-controls,
        .player-root.is-playing .video-controls { opacity: 1; }

        .video-start-prompt {
            position: absolute;
            inset: 0;
            z-index: 2;
            border: 0;
            background:
                radial-gradient(circle at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.02) 42%, rgba(0,0,0,0.42) 100%);
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            opacity: 1;
            transition: opacity 0.22s ease, visibility 0.22s ease;
            cursor: none;
        }
        .player-root.is-playing .video-start-prompt {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .video-start-icon {
            width: 66px;
            height: 66px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 4px;
            background: rgba(255,255,255,0.16);
            border: 1px solid rgba(255,255,255,0.28);
            box-shadow: 0 18px 42px rgba(0,0,0,0.4);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            font-size: 1.2rem;
        }
        .video-start-copy {
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(0,0,0,0.42);
            border: 1px solid rgba(255,255,255,0.14);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .vc-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .vc-btn {
            width: 44px; height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: transform 0.2s, background 0.2s, border-color 0.2s;
            flex-shrink: 0;
            cursor: none;
        }
        .vc-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.28); transform: scale(1.02); }
        .vc-btn:active { transform: scale(0.96); }

        .vc-scrub-wrap {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }
        .vc-time {
            font-size: 0.72rem;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
            color: rgba(255,255,255,0.85);
            letter-spacing: 0.02em;
            min-width: 2.6rem;
            text-align: center;
        }
        .vc-scrub {
            flex: 1;
            height: 6px;
            -webkit-appearance: none;
            appearance: none;
            border-radius: 99px;
            background: rgba(255,255,255,0.15);
            outline: none;
            cursor: none;
        }
        .vc-scrub::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px; height: 16px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.35);
            border: none;
        }
        .vc-scrub::-moz-range-thumb {
            width: 16px; height: 16px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.35);
            border: none;
        }

        .modal-media i.service-big-icon {
            font-size: clamp(4rem, 12vw, 8rem);
            color: var(--accent);
            opacity: 0.85;
            filter: drop-shadow(0 0 40px rgba(10, 132, 255, 0.35));
            margin: auto;
        }

        .modal-details {
            flex: 1;
            padding: 32px 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            overflow-y: auto;
            border-top: 1px solid rgba(255,255,255,0.1);
            background: var(--modal-panel);
        }
        @media (min-width: 960px) {
            .modal-details {
                border-top: none;
                border-left: 1px solid rgba(255,255,255,0.12);
                max-width: 420px;
            }
        }

        .modal-kicker {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--hero-sub);
        }
        .modal-details h2 {
            font-size: clamp(1.75rem, 4vw, 2.35rem);
            font-weight: 800;
            line-height: 1.08;
            text-align: left;
            letter-spacing: -0.03em;
        }
        .modal-tagline {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--accent);
            opacity: 0.95;
        }
        .modal-details .modal-body {
            color: var(--nav-text);
            line-height: 1.65;
            font-size: 0.95rem;
            text-align: left;
            margin-top: 4px;
        }

        .software-glass-panel {
            margin-top: auto;
            padding: 18px 18px 16px;
            border-radius: 22px;
            background: var(--service-hover);
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 0 0 1px rgba(0,0,0,0.2) inset;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        .software-label {
            display: block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--nav-text);
            margin-bottom: 12px;
        }
        #modalTools {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .tool-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px 8px 8px;
            border-radius: 14px;
            background: rgba(0,0,0,0.35);
            border: 1px solid var(--form-border);
            transition: border-color 0.2s, background 0.2s;
        }
        .tool-chip:hover { border-color: rgba(255,255,255,0.22); background: rgba(0,0,0,0.5); }
        .tool-chip img {
            width: 28px; height: 28px;
            border-radius: 8px;
            object-fit: contain;
            background: var(--service-hover);
            padding: 4px;
            flex-shrink: 0;
        }
        .tool-chip span { font-size: 0.78rem; font-weight: 700; color: #ffffff; white-space: nowrap; }
        
        /* CTA Service */
        .modal-cta-btn {
            margin-top: auto; width: 100%; padding: 16px; background: var(--accent); color: var(--text-main); border: none; border-radius: 12px; 
            font-weight: 700; font-size: 1rem; cursor: none; text-align: center; text-decoration: none; transition: 0.3s;
            display: flex; align-items: center; justify-content: center; gap: 10px;
        }
        .modal-cta-btn:hover { background: #fff; color: #000; }
        
        .close-modal {
            position: absolute;
            top: max(20px, env(safe-area-inset-top));
            right: max(20px, env(safe-area-inset-right));
            width: 44px; height: 44px;
            background: rgba(255,255,255,0.12);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: none;
            z-index: 10001;
            transition: 0.25s;
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border: 1px solid rgba(255,255,255,0.22);
            color: var(--text-main);
            font-size: 1.1rem;
        }
        .close-modal:hover { background: rgba(255,255,255,0.22); transform: scale(1.02); }

        #modalArrows { position: absolute; inset: 0; pointer-events: none; z-index: 10000; }
        .nav-arrow {
            pointer-events: auto;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 52px; height: 52px;
            background: rgba(255,255,255,0.1);
            color: var(--text-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: none;
            border: 1px solid rgba(255,255,255,0.18);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: 0.25s;
        }
        .nav-arrow:hover { background: var(--accent); border-color: var(--accent); }
        .nav-arrow.left { left: max(12px, env(safe-area-inset-left)); }
        .nav-arrow.right { right: max(12px, env(safe-area-inset-right)); }

        #modalServiceCta { display: none; width: 100%; margin-top: auto; }
        #modalServiceCta.is-visible { display: block; }

        /* Mobile nav pill — hidden on desktop */
        .mobile-nav-pill { display: none; }

        @media (max-width: 768px) {
            /* --- MODAL CARD WITH BREATHING ROOM --- */
            .modal-overlay {
                padding: 16px;
                padding-top: max(16px, env(safe-area-inset-top, 16px));
                padding-bottom: max(16px, env(safe-area-inset-bottom, 16px));
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 14px;
            }

            .modal-content {
                flex-direction: column;
                width: 100%;
                max-height: calc(100dvh - 100px);
                max-height: calc(100vh - 100px);
                border-radius: 24px;
                overscroll-behavior: contain;
                flex-shrink: 1;
                min-height: 0;
            }

            .modal-media {
                flex: 0 0 auto;
                padding: 12px 12px 8px;
                min-height: 0;
                max-height: none;
            }
            .player-root { border-radius: 14px; }
            .player-root video, .player-root .fallback-media-img {
                max-height: 26dvh;
                min-height: 120px;
            }
            .video-start-prompt {
                background:
                    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.32) 100%),
                    radial-gradient(circle at center, rgba(10,132,255,0.18) 0%, rgba(0,0,0,0) 55%);
            }
            .video-start-icon {
                width: 58px;
                height: 58px;
                font-size: 1.05rem;
            }
            .video-start-copy {
                font-size: 0.62rem;
                letter-spacing: 0.08em;
            }

            .modal-details {
                max-width: none;
                padding: 14px 18px 20px;
                flex: 1 1 auto;
                min-height: 0;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                border-top: 1px solid rgba(255,255,255,0.08);
            }
            .modal-details h2 { font-size: 1.35rem; letter-spacing: -0.02em; }
            .modal-details .modal-body { font-size: 0.88rem; line-height: 1.55; }
            .modal-kicker { font-size: 0.6rem; }
            .modal-tagline { font-size: 0.85rem; }

            .close-modal {
                position: fixed;
                top: max(14px, env(safe-area-inset-top, 14px));
                right: 14px;
                width: 36px; height: 36px; font-size: 0.95rem;
                z-index: 10002;
            }

            #modalArrows { display: none; }

            .mobile-nav-pill {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border: 1px solid rgba(255,255,255,0.18);
                border-radius: 50px;
                padding: 4px;
                margin-top: 0;
            }
            .mobile-nav-pill button {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
                background: none;
                border: none;
                color: var(--text-main);
                font-size: 1rem;
                cursor: pointer;
                border-radius: 50%;
                -webkit-tap-highlight-color: transparent;
                transition: background 0.2s;
            }
            .mobile-nav-pill button:active {
                background: var(--nav-border);
            }
            .mobile-nav-sep {
                width: 1px;
                height: 24px;
                background: rgba(255,255,255,0.15);
                flex-shrink: 0;
            }

            .modal-media i.service-big-icon { font-size: clamp(2.5rem, 14vw, 4rem); }

            .software-glass-panel { padding: 12px; border-radius: 14px; margin-top: 8px; }
            .software-label { font-size: 0.58rem; margin-bottom: 8px; letter-spacing: 0.15em; }
            .tool-chip { padding: 5px 8px 5px 5px; border-radius: 10px; gap: 5px; }
            .tool-chip img { width: 22px; height: 22px; border-radius: 6px; padding: 3px; }
            .tool-chip span { font-size: 0.78rem; font-weight: 700; color: #ffffff; white-space: nowrap; }
            #modalTools { gap: 6px; }
        }
