
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --bg: #030304;
            --bg2: #09090b;
            --bg3: #121217;
            --glass: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --border: rgba(255, 255, 255, 0.08);
            --text: #ffffff;
            --text2: #bebec8;
            --text3: #8d8d99;
            --purple: #a78bfa;
            --purple-deep: #7c3aed;
            --green: #2dd4bf;
            --pink: #f472b6;
            --glow: rgba(124, 58, 237, 0.5);
            --gradient: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
        }
        html { 
            scroll-behavior: smooth; 
            height: 100vh;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            margin: 0;
            overflow: hidden;
            cursor: none;
            line-height: 1.6;
        }
        ::selection { background: var(--purple); color: #fff; }
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: var(--purple-deep); border-radius: 2px; }

        /* Cursor */
        .cursor-dot {
            position: fixed; width: 6px; height: 6px;
            background: #fff; border-radius: 50%;
            pointer-events: none; z-index: 99999;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
            transition: width 0.3s, height 0.3s;
        }
        .cursor-ring {
            position: fixed; width: 36px; height: 36px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%; pointer-events: none;
            z-index: 99998; transform: translate(-50%, -50%);
            transition: width 0.5s cubic-bezier(0.4,0,0.2,1),
                        height 0.5s cubic-bezier(0.4,0,0.2,1),
                        border-color 0.3s, background 0.3s;
        }
        .cursor-dot.hover { width: 50px; height: 50px; background: rgba(139,92,246,0.15); }
        .cursor-ring.hover { width: 70px; height: 70px; border-color: var(--purple); background: rgba(139,92,246,0.05); }

        /* Three.js Canvas - DYNAMIC MESH 2025 */
        #three-canvas {
            position: fixed; top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0; pointer-events: none;
            opacity: 0.6;
        }

        /* Glass Utility */
        .glass {
            background: var(--glass);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid var(--glass-border);
        }

        /* macOS Browser Shell - Hyper-Realistic */
        .success-browser {
            position: relative; width: 100%; max-width: 1280px; margin: 0 auto; min-height: 550px;
            background: rgba(20,20,25,0.7); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px; overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.6);
            backdrop-filter: blur(50px);
            display: flex; flex-direction: column;
        }
        .sb-header {
            background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08);
            display: flex; align-items: center; padding: 0 15px; height: 45px;
        }
        .sb-traffic { display: flex; gap: 8px; margin-right: 20px; }
        .sb-dot { width: 12px; height: 12px; border-radius: 50%; opacity: 0.8; }
        .dot-r { background: #ff5f56; }
        .dot-y { background: #ffbd2e; }
        .dot-g { background: #27c93f; }
        
        .sb-tabs { display: flex; gap: 10px; flex: 1; height: 100%; align-items: flex-end; overflow-x: auto; padding: 0 10px; scrollbar-width: none; }
        .sb-tabs::-webkit-scrollbar { display: none; }
        
        /* Modern Tab Groups (Chrome / Arc style) */
        .sb-tab-group {
            display: flex; align-items: flex-end; position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }
        .sb-tab-group::before {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
            border-radius: 2px 2px 0 0; opacity: 0; transition: 0.4s ease;
        }
        .sb-tab-group.tg-food::before { background: var(--pink); }
        .sb-tab-group.tg-biz::before { background: var(--purple); }
        .sb-tab-group.tg-tech::before { background: var(--green); }
        .sb-tab-group.open::before { opacity: 1; }

        .sb-group-label {
            height: 28px; margin-bottom: 6px; border-radius: 14px; padding: 0 14px;
            font-size: 0.65rem; font-weight: 600; color: #fff; cursor: pointer;
            display: flex; align-items: center; gap: 8px; white-space: nowrap;
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease; position: relative; z-index: 2;
        }
        .sb-group-label:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
        .sb-tab-group.open .sb-group-label { background: rgba(255,255,255,0.1); }
        
        .sb-group-icon { width: 10px; height: 10px; border-radius: 50%; }
        .tg-food .sb-group-icon { background: var(--pink); box-shadow: 0 0 8px var(--pink); }
        .tg-biz .sb-group-icon { background: var(--purple-deep); box-shadow: 0 0 8px var(--purple-deep); }
        .tg-tech .sb-group-icon { background: var(--green); box-shadow: 0 0 8px var(--green); }

        .sb-group-content {
            display: flex; gap: 4px; overflow: hidden;
            transition: max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s, padding-left 0.4s;
            max-width: 0; opacity: 0; padding-left: 0;
        }
        .sb-tab-group.open .sb-group-content {
            max-width: 1500px; opacity: 1; padding-left: 8px;
        }

        .sb-tab {
            height: 34px; background: rgba(255,255,255,0.02); padding: 0 16px 0 12px;
            border-radius: 8px 8px 0 0; font-size: 0.7rem; color: var(--text3);
            border: 1px solid rgba(255,255,255,0.04); border-bottom: none;
            cursor: pointer; transition: all 0.2s; white-space: nowrap;
            display: flex; align-items: center; gap: 8px; min-width: 130px; max-width: 200px;
            position: relative; overflow: hidden; text-overflow: ellipsis;
        }
        
        /* Pseudo chiusura tab (solo estetica) */
        .sb-tab::after {
            content: ''; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
            width: 16px; height: 16px; border-radius: 50%; opacity: 0; transition: 0.2s;
            background: rgba(255,255,255,0.1) url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><path d="M18 6L6 18M6 6l12 12"/></svg>') center/8px no-repeat;
        }
        .sb-tab:hover::after { opacity: 0.5; }
        .sb-tab.active::after { opacity: 0.8; }

        .sb-tab.active { 
            background: rgba(255,255,255,0.1); color: #fff; 
            border-color: rgba(255,255,255,0.15); box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
            z-index: 2;
        }
        .sb-tab:hover:not(.active) { background: rgba(255,255,255,0.06); }
        .sb-tab i { opacity: 0.8; font-style: normal; font-size: 0.9rem; }

        .sb-address-bar {
            background: rgba(0,0,0,0.2); height: 35px; border-bottom: 1px solid rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center;
        }
        .sb-address {
            background: rgba(255,255,255,0.03); width: 60%; height: 22px; border-radius: 6px;
            font-size: 0.65rem; color: var(--text3); display: flex; align-items: center; justify-content: center; gap: 6px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        
        .sb-viewport { padding: 0; min-height: 470px; flex: 1; position: relative; overflow: hidden; background: #000; }
        .sb-screen { 
            position: absolute; inset: 0; opacity: 0; transform: scale(1.02); 
            transition: all 0.5s ease; pointer-events: none;
        }
        .sb-screen.active { opacity: 1; transform: scale(1); pointer-events: auto; }
        
        .sb-iframe-wrapper { width: 100%; height: 100%; position: relative; }
        .sb-iframe {
            width: 133.33%; height: 133.33%; border: none;
            transform: scale(0.75); transform-origin: top left;
        }

        /* Portfolio Filters */
        .lavori-filters {
            display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem;
            justify-content: center;
        }
        .filter-btn {
            background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
            color: var(--text2); padding: 0.5rem 1.2rem; border-radius: 30px;
            font-size: 0.85rem; font-family: 'Space Mono', monospace; cursor: pointer;
            transition: all 0.3s ease;
        }
        .filter-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
        .filter-btn.active {
            background: var(--purple-deep); border-color: var(--purple); color: #fff;
            box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
        }
        
        /* Grid Result Cards - Numbers Speak */
        .results-matrix {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
        }
        .rm-num {
            font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800;
            line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.05em;
        }
        .rm-label { font-size: 1rem; color: var(--text); font-weight: 700; margin-bottom: 1rem; }
        .rm-desc { font-size: 0.85rem; color: var(--text2); line-height: 1.6; }
        .rm-mini-graph { 
            height: 40px; width: 100%; margin-top: 2rem; 
            border-bottom: 2px solid var(--glass-border); position: relative;
        }
        .rm-mini-graph::after {
            content: ''; position: absolute; left: 0; bottom: 0; width: 70%; height: 100%;
            background: linear-gradient(to top, rgba(139,92,246,0.1), transparent);
            border-top: 2px solid var(--purple);
        }

        /* Process Map - How we work */
        .process-map {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative;
        }
        .pm-num { 
            font-family: 'Space Mono', monospace; font-size: 0.75rem; color: var(--purple);
            margin-bottom: 1rem; display: block;
        }
        .pm-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 0.8rem; }
        .pm-out-tag { 
            font-size: 0.6rem; text-transform: uppercase; color: var(--text3); 
            letter-spacing: 0.1em; display: inline-block; margin-top: 1rem;
            padding: 4px 10px; border: 1px solid var(--glass-border); border-radius: 6px;
        }
        @media (max-width: 1024px) { .process-map { grid-template-columns: 1fr 1fr; }}

        .grain {
            position: fixed; inset: 0; z-index: 9998;
            pointer-events: none; opacity: 0.05;
            mix-blend-mode: overlay;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-repeat: repeat;
        }

        /* Navbar */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0;
            z-index: 1000; padding: 1.5rem 3rem;
            transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
        }
        .navbar.scrolled {
            padding: 1rem 3rem;
            background: rgba(3,3,4,0.3);
            backdrop-filter: blur(32px) saturate(200%);
            -webkit-backdrop-filter: blur(32px) saturate(200%);
            border-bottom: 1px solid var(--glass-border);
        }
        .nav-inner {
            max-width: 1440px; margin: 0 auto;
            display: flex; justify-content: space-between;
            align-items: center; gap: 1.2rem;
        }
        .nav-logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.25rem; font-weight: 800;
            color: var(--text); text-decoration: none;
            letter-spacing: -0.02em;
        }
        .nav-logo .ldot {
            display: inline-block; width: 5px; height: 5px;
            background: var(--purple); border-radius: 50%;
            margin-left: 2px; vertical-align: super;
        }
        .nav-links {
            display: flex; list-style: none;
            gap: 1.2rem; align-items: center;
        }
        .nav-links a {
            color: var(--text2); text-decoration: none;
            font-size: 0.75rem; font-weight: 600;
            letter-spacing: 0.04em; text-transform: uppercase;
            transition: color 0.3s; position: relative;
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 38px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(167, 139, 250, 0.45);
            background: rgba(167, 139, 250, 0.12);
            color: #fff !important;
        }
        .nav-cta-btn::after { display: none !important; }
        .nav-links a::after {
            content: ''; position: absolute;
            bottom: -4px; left: 0; width: 0;
            height: 1px; background: var(--purple);
            transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
        }
        .nav-links a:hover, .nav-links a.active { color: var(--text); }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
        /* Pagination Dots */
        .page-nav {
            position: fixed; right: 2rem; top: 50%;
            transform: translateY(-50%); z-index: 1000;
            display: flex; flex-direction: column; gap: 1.5rem;
        }
        .page-dot {
            width: 8px; height: 8px; border: 1.5px solid var(--text2);
            border-radius: 50%; cursor: pointer; transition: all 0.4s;
        }
        .page-dot.active {
            height: 24px; border-radius: 4px;
            background: var(--purple); border-color: var(--purple);
        }
        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 6vw, 3.8rem); font-weight: 800;
            line-height: 1.1; letter-spacing: -0.03em;
            margin-bottom: 2rem; position: relative;
            color: var(--text);
            transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
        }
        /* Page Header Animation: Center to Top-Left */
        .section-inner .section-header-wrap {
            position: absolute; inset: 0;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            pointer-events: none; transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
            text-align: center;
        }
        .section.vis .section-header-wrap {
            position: relative; align-items: flex-start;
            justify-content: flex-start; text-align: left;
            margin-bottom: 2rem;
        }
        .section.vis .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
        }

        .section-title::before {
            content: attr(data-text);
            position: absolute; top: -40%; left: -5%;
            font-size: 1.4em; color: rgba(255,255,255,0.05);
            white-space: nowrap; pointer-events: none;
            z-index: -1; -webkit-text-stroke: 1px rgba(255,255,255,0.06);
            text-transform: uppercase; font-weight: 900;
        }
        .svc-item::after, .testi-card::after, .pm-box::after {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(800px circle at var(--mx) var(--my), rgba(167, 139, 250, 0.25), transparent 50%);
            opacity: 0; transition: opacity 0.5s;
        }
        .svc-item:hover::after, .testi-card:hover::after, .pm-box:hover::after { opacity: 1; }
        .menu-toggle {
            display: none; flex-direction: column; gap: 6px;
            cursor: pointer; z-index: 1001; position: relative;
            color: var(--text);
            width: 42px; height: 42px;
            align-items: center; justify-content: center;
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            background: rgba(255,255,255,0.03);
        }
        .menu-toggle svg { transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); overflow: visible; }
        .menu-toggle line {
            transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), stroke-dasharray 0.5s, opacity 0.3s;
            transform-origin: center;
        }
        .menu-toggle.active svg { transform: rotate(180deg); }
        .menu-toggle.active .line-t {
            transform: translateY(4px) rotate(45deg);
        }
        .menu-toggle.active .line-b {
            transform: translateY(-4px) rotate(-45deg);
        }
        .mobile-menu {
            display: none; position: fixed; inset: 0;
            background: rgba(3,3,4,0.95); z-index: 999;
            flex-direction: column; justify-content: flex-start;
            align-items: stretch; gap: 0;
            padding: 5.3rem 1rem 1rem;
            overflow-y: auto;
        }
        .mobile-menu.active { display: flex; }
        .mobile-menu a {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            text-decoration: none; display: block;
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            padding: 0.95rem 1rem;
            margin-bottom: 0.6rem;
            background: rgba(255,255,255,0.03);
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.5s, transform 0.5s, color 0.3s;
        }
        .mobile-menu.active a { opacity: 1; transform: translateY(0); }
        .mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
        .mobile-menu a:nth-child(2) { transition-delay: 0.14s; }
        .mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu a:nth-child(4) { transition-delay: 0.26s; }
        .mobile-menu a:nth-child(5) { transition-delay: 0.32s; }
        .mobile-menu a:nth-child(6) { transition-delay: 0.38s; }
        .mobile-menu a:hover { color: #fff; border-color: rgba(167, 139, 250, 0.5); }
        .mobile-menu .mobile-menu-cta {
            margin-top: 0.4rem;
            text-align: center;
            border-color: rgba(45, 212, 191, 0.5);
            background: rgba(45, 212, 191, 0.12);
        }

        @media (max-width: 1160px) {
            .nav-links {
                gap: 0.8rem;
            }
            .nav-links a {
                font-size: 0.69rem;
            }
            .nav-cta-btn {
                min-height: 34px;
                padding: 0 10px;
            }
        }

        /* Hero */
        .hero {
            min-height: 100vh; display: flex;
            align-items: center; position: relative;
            padding: 9rem 3rem 6rem;
            z-index: 1;
        }
        .hero-content {
            max-width: 1440px; margin: 0 auto; width: 100%;
        }
        .hero-eyebrow {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem; color: var(--text2);
            letter-spacing: 0.2em; text-transform: uppercase;
            margin-bottom: 0.5rem; display: flex;
            align-items: center; gap: 1rem;
            opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
        }
        .hero-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(3.5rem, 8.5vw, 6rem);
            font-weight: 800; line-height: 0.92;
            letter-spacing: -0.04em; margin-bottom: 2.5rem;
        }
        .hero-title .line { display: block; overflow: hidden; }
        .hero-title .line-inner {
            display: block; transform: translateY(110%);
            animation: lineR 1s cubic-bezier(0.16,1,0.3,1) forwards;
        }
        .hero-title .line:nth-child(1) .line-inner { animation-delay: 0.3s; }
        .hero-title .line:nth-child(2) .line-inner { animation-delay: 0.45s; }
        .hero-title .line:nth-child(3) .line-inner { animation-delay: 0.6s; }
        @keyframes lineR { to { transform: translateY(0); } }
        .hero-bottom {
            display: flex; justify-content: space-between;
            align-items: flex-end; gap: 3rem;
            opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-desc {
            max-width: 420px; font-size: 1rem;
            color: var(--text2); line-height: 1.75;
        }
        .hero-ctas { display: flex; gap: 1rem; align-items: center; }
        .btn-main {
            display: inline-flex; align-items: center; gap: 0.6rem;
            padding: 0.95rem 2rem; background: var(--text);
            color: var(--bg); border: none; border-radius: 100px;
            font-family: 'Inter', sans-serif; font-size: 0.85rem;
            font-weight: 600; cursor: pointer; text-decoration: none;
            transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
        }
        .btn-main:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 50px rgba(139,92,246,0.25);
        }
        .pulse-btn {
            animation: btnPulse 3s infinite;
        }
        @keyframes btnPulse {
            0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
            70% { box-shadow: 0 0 0 20px rgba(139, 92, 246, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
        }
        .btn-main .arrow { transition: transform 0.3s; }
        .btn-main:hover .arrow { transform: translateX(5px); }
        .btn-ghost {
            display: inline-flex; align-items: center; gap: 0.4rem;
            padding: 0.95rem 1.8rem; background: transparent;
            color: var(--text2); border: 1px solid var(--border);
            border-radius: 100px; font-family: 'Inter', sans-serif;
            font-size: 0.85rem; font-weight: 500; cursor: pointer;
            text-decoration: none; transition: all 0.3s;
        }
        .btn-ghost:hover {
            border-color: var(--purple); color: var(--text);
            background: rgba(139,92,246,0.05);
        }

        /* Utility Classes */
        .purple { color: var(--purple) !important; }
        .stroked {
            -webkit-text-stroke: 1.5px var(--text);
            color: transparent;
        }
        .line { display: block; overflow: hidden; }
        .line-inner { display: block; }

        /* 3D Hero Object */
        .hero-3d-wrap {
            position: absolute; right: 0; top: 0;
            width: 55%; height: 100%;
            z-index: -1;
        }

        /* Marquee */
        .marquee-section {
            padding: 4.5rem 0 0 0;
            overflow: hidden; z-index: 1; position: relative;
        }
        .marquee-track {
            display: flex; width: max-content;
            animation: marq 25s linear infinite;
        }
        .marquee-track.marq-rev {
            animation: marqRev 30s linear infinite;
        }
        .marquee-track:hover { animation-play-state: paused; }
        @keyframes marq { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
        @keyframes marqRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
        .marquee-item {
            font-family: 'Syne', sans-serif;
            font-size: 0.95rem; font-weight: 700;
            color: var(--text2); white-space: nowrap;
            padding: 0 2rem; display: flex;
            align-items: center; gap: 2rem;
            letter-spacing: -0.01em;
        }
        .marquee-item .sep {
            width: 5px; height: 5px;
            background: var(--purple); border-radius: 50%;
            flex-shrink: 0;
        }

        /* Sections */
        .section {
            height: 100vh !important;
            height: 100dvh !important;
            overflow: hidden !important;
            display: flex;
            align-items: center;
            position: relative;
            padding: 0;
            margin: 0;
        }
        .section-inner {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 2rem 4rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            box-sizing: border-box;
        }
        @media (max-height: 900px) {
            .section-inner { padding: 1rem 3rem !important; }
            .section-title { font-size: clamp(1.6rem, 3.5vw, 2.8rem) !important; margin-bottom: 0.5rem !important; }
            .section-tag { margin-bottom: 0.8rem !important; }
            .svc-item { padding: 1.2rem !important; gap: 0.5rem !important; }
            .svc-item h3 { font-size: 1rem !important; margin-bottom: 0.3rem !important; }
            .svc-item p { font-size: 0.75rem !important; }
            .testi-card { padding: 1.2rem !important; }
            .result-row { padding: 0.8rem 0 !important; }
            .result-metric { font-size: 1.8rem !important; }
            .proc-dot { width: 36px !important; height: 36px !important; font-size: 0.6rem !important; }
            .wev-code { font-size: 0.65rem !important; padding: 16px !important; }
            .contact-grid { gap: 2rem !important; }
        }
        @media (max-height: 700px) {
            .section-inner { transform: scale(0.9); transform-origin: center; }
        }
        .section-tag {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem; color: var(--purple);
            letter-spacing: 0.25em; text-transform: uppercase;
            margin-bottom: 1.5rem; display: flex;
            align-items: center; gap: 0.75rem;
        }
        .section-tag::before {
            content: ''; width: 20px; height: 1px; background: var(--purple);
        }
        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800; letter-spacing: -0.03em;
            line-height: 1.05; margin-bottom: 1.5rem;
        }
        .section-desc {
            font-size: 1rem; color: var(--text2);
            line-height: 1.75; max-width: 500px;
        }

        /* Stats */
        .stats-strip {
            padding: 0rem 3rem; z-index: 1; position: relative;
            border-bottom: 1px solid var(--border);
        }
        .stats-inner {
            max-width: 1440px; margin: 0 auto;
            display: flex; justify-content: center; gap: 6rem;
        }
        .stat-b {
            text-align: center; padding: 2rem 1rem;
            position: relative;
        }
        .stat-b::after {
            content: ''; position: absolute; right: 0;
            top: 15%; height: 70%; width: 1px;
            background: var(--border);
        }
        .stat-b:last-child::after { display: none; }
        .stat-n {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.2rem, 3.5vw, 3.2rem);
            font-weight: 800; letter-spacing: -0.03em;
            line-height: 1; margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--purple), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-l { font-size: 0.75rem; color: var(--text2); letter-spacing: 0.03em; }

        /* Services */
        .services-header {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 4rem; margin-bottom: 5rem; align-items: end;
        }
        .services-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1px; background: var(--border);
            border: 1px solid var(--border);
            border-radius: 16px; overflow: hidden;
        }
        .services-grid.no-border {
            border: none;
            background: transparent;
            gap: 1.5rem;
        }
        /* Unified Premium Card Design System - High Fidelity Studio Look */
        .svc-item, .testi-card, .pm-box, .why-page {
            background: rgba(255, 255, 255, 0.02); 
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border-radius: 32px; padding: 2.5rem;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative; overflow: hidden;
            display: flex; flex-direction: column;
        }

        .svc-item:hover, .testi-card:hover, .pm-box:hover, .why-page:hover {
            border-color: rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-8px);
        }

        /* Specific Sub-styles for Services */
        .svc-num {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem; color: var(--purple); font-weight: 700;
            margin-bottom: 1rem;
        }
        .svc-icon {
            width: 20px; height: 20px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 0.5rem; transition: all 0.3s;
        }
        .svc-icon svg {
            width: 20px; height: 20px; stroke: var(--text);
            fill: none; stroke-width: 1.8;
        }
        .svc-item:hover .svc-icon svg { stroke: white; }
        .svc-name {
            font-family: 'Syne', sans-serif;
            font-size: 1.35rem; font-weight: 700;
            margin-bottom: 1rem; color: var(--text);
        }
        .svc-desc {
            font-size: 0.88rem; color: var(--text2);
            line-height: 1.7; margin-bottom: 2rem;
        }
        .svc-tags { 
            position: relative; overflow: hidden; width: 100%; white-space: nowrap; margin-top: auto;
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
        }
        .svc-tags-track {
            display: flex; gap: 0.5rem; width: max-content;
            animation: tagLoop 10s linear infinite;
        }
        .svc-item:hover .svc-tags-track { animation-play-state: paused; }
        @keyframes tagLoop {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 0.25rem)); }
        }
        .svc-tag {
            font-size: 0.65rem; color: var(--text2);
            padding: 0.3rem 0.7rem; background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 100px; transition: all 0.3s;
        }
        .svc-item:hover .svc-tag {
            border-color: rgba(139,92,246,0.3); color: var(--text);
        }

        /* Adjustments for Results/Testimonials/Process */
        
        .svc-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
        }

        .testi-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem;
        }
        .testi-card:hover {
            transform: translateY(-8px);
        }
        .testi-stars { display: flex; gap: 2px; margin-bottom: 1.5rem; }
        .testi-stars svg { width: 13px; height: 13px; fill: #fbbf24; }
        .testi-text {
            font-size: 0.9rem; color: var(--text2);
            line-height: 1.85; margin-bottom: 2rem;
            position: relative;
        }
        .testi-text::before {
            content: '"'; font-family: 'Syne', sans-serif;
            font-size: 5rem; color: var(--purple);
            opacity: 0.12; position: absolute;
            top: -2rem; left: -0.5rem; line-height: 1;
        }
        .testi-author {
            display: flex; align-items: center; gap: 1rem;
            padding-top: 1.5rem; border-top: 1px solid var(--border);
        }
        .testi-av {
            width: 42px; height: 42px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Syne', sans-serif; font-weight: 700;
            font-size: 0.8rem; flex-shrink: 0;
        }
        .testi-av.av1 { background: rgba(139,92,246,0.12); color: var(--purple); }
        .testi-av.av2 { background: rgba(16,185,129,0.12); color: var(--green); }
        .testi-av.av3 { background: rgba(59,130,246,0.12); color: var(--blue); }
        .testi-name { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.15rem; }
        .testi-role { font-size: 0.75rem; color: var(--text2); }

        /* Why */
        .why-section { background: var(--bg2); }
        .why-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 5rem; align-items: center;
        }
        .why-vis { position: relative; }
        .why-vis-box {
            width: 100%; aspect-ratio: 1;
            border-radius: 24px; position: relative;
            overflow: hidden; border: 1px solid var(--border);
        }
        .why-orb {
            position: absolute; border-radius: 50%;
            filter: blur(60px);
        }
        .why-orb.o1 {
            width: 70%; height: 70%;
            background: rgba(139,92,246,0.25);
            top: 10%; left: 10%;
            animation: orbM 8s ease-in-out infinite;
        }
        .why-orb.o2 {
            width: 50%; height: 50%;
            background: rgba(16,185,129,0.15);
            bottom: 5%; right: 5%;
            animation: orbM2 10s ease-in-out infinite;
        }
        .why-orb.o3 {
            width: 40%; height: 40%;
            background: rgba(59,130,246,0.15);
            top: 30%; right: 20%;
            animation: orbM3 12s ease-in-out infinite;
        }
        @keyframes orbM { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20%,15%)} }
        @keyframes orbM2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-15%,-20%)} }
        @keyframes orbM3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(10%,-10%)} }
        /* Why Us - Cinematic Horizontal Step Scroll */
        .why-section { 
            position: relative;
            height: 100vh;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .why-sticky {
            width: 100%; height: 100%;
            display: flex; align-items: center; justify-content: flex-start;
        }
        .why-viewport {
            display: flex; gap: 3rem; padding: 0 10vw;
            width: max-content;
            will-change: transform; transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .why-page {
            min-width: 75vw; height: 65vh;
            justify-content: center; position: relative;
            user-select: none;
        }
        
        .wp-num {
            font-family: 'Space Mono', monospace; font-size: 1.1rem;
            color: var(--purple); opacity: 0.6; margin-bottom: 2rem;
        }
        .wp-title {
            font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800; line-height: 1; letter-spacing: -0.05em;
            margin-bottom: 2rem;
        }
        .wp-desc {
            font-size: 1.1rem; color: var(--text2); line-height: 1.7;
            max-width: 550px;
        }
        .wp-bg-tag {
            position: absolute; right: 2rem; bottom: -2rem;
            font-size: 15rem; font-weight: 900; color: rgba(255,255,255,0.015);
            z-index: -1; font-family: 'Syne', sans-serif;
            pointer-events: none;
        }
        
        .why-nav {
            position: absolute; bottom: 10vh; left: 50%; transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 1rem;
        }
        .why-dots { display: flex; gap: 0.6rem; }
        .why-dot {
            width: 8px; height: 8px; background: rgba(255,255,255,0.1);
            border-radius: 50%; transition: all 0.4s;
        }
        .why-dot.active { background: var(--purple); transform: scale(1.5); }
        .scroll-hint { font-size: 0.65rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.2rem; }

        /* CTA - High End Cinematic */
        .cta-section { 
            position: relative; overflow: hidden; 
            padding: 10rem 0;
        }
        .cta-bg {
            position: absolute; inset: 0; z-index: -1;
            background: 
                radial-gradient(circle at 10% 20%, rgba(139,92,246,0.18) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0,255,200,0.12) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(59,130,246,0.12) 0%, transparent 50%);
            filter: blur(100px);
            animation: ctaMove 25s ease-in-out infinite alternate;
        }
        .cta-particle {
            position: absolute; border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            filter: blur(2px); pointer-events: none;
        }
        .cta-particle.p1 { width: 15vw; height: 15vw; top: 10%; left: 10%; background: var(--purple-glow); opacity: 0.15; animation: ctaP 20s infinite linear; }
        .cta-particle.p2 { width: 10vw; height: 10vw; bottom: 10%; right: 20%; background: var(--green); opacity: 0.1; animation: ctaP 25s infinite linear reverse; }
        .cta-particle.p3 { width: 5vw; height: 5vw; top: 40%; left: 50%; background: var(--blue); opacity: 0.1; animation: ctaP 18s infinite linear; }
        
        @keyframes ctaP {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(30%, 20%) rotate(360deg); }
        }
        
        @keyframes ctaMove {
            0% { transform: translate(0,0) scale(1); }
            100% { transform: translate(8%, 5%) scale(1.2); }
        }
        .cta-desc {
            font-size: 1.15rem; color: var(--text2);
            line-height: 1.8; margin-bottom: 3rem;
        }
        .cta-btns { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

        /* Contact */
        .contact-section {
            background:
                radial-gradient(circle at 12% 20%, rgba(167,139,250,0.12) 0, transparent 30%),
                linear-gradient(135deg, var(--bg2) 0%, #050507 100%);
        }
        .contact-grid {
            display: grid; grid-template-columns: 0.95fr 1.05fr;
            gap: 4rem;
            align-items: start;
        }
        .contact-copy { max-width: 520px; }
        .contact-note {
            margin: 1.5rem 0 2rem;
            padding-left: 1.2rem;
            border-left: 1px solid rgba(167,139,250,0.45);
            color: var(--text2);
            font-size: 1rem;
            line-height: 1.75;
        }
        .contact-meta {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.75rem;
            margin-bottom: 1.75rem;
        }
        .contact-meta span {
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.025);
            border-radius: 999px;
            padding: 0.65rem 0.85rem;
            color: var(--text2);
            font-size: 0.76rem;
            font-family: 'Space Mono', monospace;
            letter-spacing: -0.02em;
        }
        .contact-links { display: flex; flex-direction: column; gap: 1rem; }
        .c-link {
            display: flex; align-items: center; gap: 1rem;
            padding: 1rem 1.1rem; background: rgba(3,3,4,0.66);
            border: 1px solid var(--border); border-radius: 16px;
            text-decoration: none; color: var(--text);
            transition: all 0.3s;
        }
        .c-link:hover {
            border-color: rgba(139,92,246,0.3);
            transform: translateX(6px);
        }
        .c-link-icon {
            width: 42px; height: 42px; border-radius: 10px;
            background: rgba(139,92,246,0.08);
            border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .c-link-icon svg {
            width: 17px; height: 17px; stroke: var(--purple);
            fill: none; stroke-width: 1.5;
        }
        .c-link strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.15rem; }
        .c-link span { font-size: 0.78rem; color: var(--text2); }
        .c-link small {
            display: block;
            margin-left: auto;
            color: var(--text3);
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            white-space: nowrap;
        }
        .contact-form-wrap {
            background: rgba(3,3,4,0.78); border: 1px solid var(--border);
            border-radius: 24px; padding: 2.2rem;
            box-shadow: 0 30px 90px rgba(0,0,0,0.35);
            position: relative;
            overflow: hidden;
        }
        .contact-form-wrap::before {
            content: '';
            position: absolute;
            top: 0; left: 2rem; right: 2rem;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.7), transparent);
        }
        .form-kicker {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.4rem;
            color: var(--text2);
            font-size: 0.78rem;
        }
        .form-kicker strong {
            color: var(--text);
            font-family: 'Syne', sans-serif;
            font-size: 1.25rem;
            letter-spacing: -0.03em;
        }
        .form-kicker span {
            font-family: 'Space Mono', monospace;
            color: var(--green);
            white-space: nowrap;
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
        .form-row-1 {gap: 1rem; margin-bottom: 1rem; }
        .form-field { margin-bottom: 1rem; }
        .form-field label {
            display: block; font-size: 0.75rem;
            font-weight: 500; color: var(--text2);
            margin-bottom: 0.5rem; letter-spacing: 0.02em;
        }
        .form-field input, .form-field textarea, .form-field select {
            width: 100%; padding: 0.8rem 1rem;
            background: var(--bg2); border: 1px solid var(--border);
            border-radius: 10px; color: var(--text);
            font-family: 'Inter', sans-serif; font-size: 0.88rem;
            outline: none; transition: border-color 0.3s;
        }
        .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
            border-color: var(--purple);
        }
        .form-field textarea { resize: vertical; min-height: 100px; }
        .form-field select {
            appearance: none; cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-position: right 1rem center;
        }
        .form-field select option { background: var(--bg2); }
        .form-btn {
            width: 100%; padding: 0.95rem;
            background: var(--text); color: var(--bg);
            border: none; border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 0.88rem; font-weight: 600;
            cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 0.5rem;
        }
        .form-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(139,92,246,0.25);
        }
        .form-footnote {
            color: var(--text3);
            font-size: 0.72rem;
            line-height: 1.6;
            margin-top: 0.9rem;
        }

        /* Footer */
        .footer {
            padding: 4rem 3rem 2rem;
            border-top: 1px solid var(--border);
            z-index: 1; position: relative;
        }
        .footer-inner { max-width: 1440px; margin: 0 auto; }
        .footer-top {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem; margin-bottom: 4rem;
        }
        .footer-desc {
            font-size: 0.82rem; color: var(--text2);
            line-height: 1.7; margin-top: 1rem; max-width: 300px;
        }
        .footer-col-t {
            font-family: 'Syne', sans-serif;
            font-size: 0.82rem; font-weight: 700;
            margin-bottom: 1.2rem; letter-spacing: -0.01em;
        }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
        .footer-col a {
            color: var(--text2); text-decoration: none;
            font-size: 0.8rem; transition: color 0.3s;
        }
        .footer-col a:hover { color: var(--purple); }
        .footer-bottom {
            padding-top: 2rem; border-top: 1px solid var(--border);
            display: flex; justify-content: space-between;
            align-items: center; flex-wrap: wrap; gap: 1rem;
        }
        .footer-copy { font-size: 0.72rem; color: var(--text2); }
        .footer-socials { display: flex; gap: 0.6rem; }
        .footer-socials a {
            width: 34px; height: 34px; border-radius: 8px;
            border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            color: var(--text2); text-decoration: none;
            font-size: 0.75rem; font-weight: 600;
            transition: all 0.3s;
        }
        .footer-socials a:hover {
            border-color: var(--purple); color: var(--purple);
            transform: translateY(-2px);
        }

        /* Toast */
        .toast {
            position: fixed; bottom: 2rem; right: 2rem;
            background: var(--bg2); border: 1px solid var(--green);
            border-radius: 12px; padding: 1rem 1.3rem;
            display: flex; align-items: center; gap: 0.7rem;
            z-index: 99999; transform: translateY(120px);
            opacity: 0; transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
        }
        .toast.show { transform: translateY(0); opacity: 1; }
        .toast svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; }
        .toast span { font-size: 0.82rem; font-weight: 500; }

        /* Reveal */
        .rev {
            opacity: 0; transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
        }
        .rev.vis { opacity: 1; transform: translateY(0); }
        .rev-d1 { transition-delay: 0.1s; }
        .rev-d2 { transition-delay: 0.2s; }
        .rev-d3 { transition-delay: 0.3s; }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero { padding: 8rem 2rem 4rem; }
            .section { padding: 6rem 2rem; }
            .navbar { padding: 1rem 2rem; }
            .navbar.scrolled { padding: 0.8rem 2rem; }
            .hero-float { display: none; }
            .services-header { grid-template-columns: 1fr; gap: 2rem; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .result-row { grid-template-columns: 140px 1fr; gap: 2rem; }
            .result-d { display: none; }
            .testi-grid { grid-template-columns: 1fr; }
            .testi-card:nth-child(2) { transform: none; }
            .testi-card:nth-child(2):hover { transform: translateY(-8px); }
            .why-grid { grid-template-columns: 1fr; gap: 3rem; }
            .why-vis { order: -1; }
            .contact-grid { grid-template-columns: 1fr; }
            .contact-copy { max-width: none; }
            .footer-top { grid-template-columns: 1fr 1fr; }
            .stats-inner { grid-template-columns: repeat(2, 1fr); }
            .stat-b:nth-child(2)::after { display: none; }
        }
        @media (max-width: 768px) {
            body { overflow-y: auto; }
            .section { height: auto; min-height: 100vh; }
            .page-nav { display: none; }
            .nav-links { display: none; }
            .menu-toggle { display: flex; }
            .hero { padding: 7rem 1.5rem 3rem; }
            .section { padding: 5rem 1.5rem; }
            .hero-bottom { flex-direction: column; align-items: flex-start; }
            .services-grid { grid-template-columns: 1fr; }
            .result-row { grid-template-columns: 1fr; gap: 0.75rem; }
            .proc-step { grid-template-columns: 44px 1fr; gap: 1.2rem; }
            .proc-dot { width: 44px; height: 44px; font-size: 0.7rem; }
            .process-tl::before { left: 22px; }
            .contact-meta { grid-template-columns: 1fr; }
            .c-link { align-items: flex-start; }
            .c-link small { display: none; }
            .contact-form-wrap { padding: 1.4rem; }
            .form-kicker { align-items: flex-start; flex-direction: column; gap: 0.35rem; }
            .form-row { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr; }
            .stats-inner { grid-template-columns: 1fr 1fr; }
            .hero-ctas { flex-direction: column; width: 100%; }
            .btn-main, .btn-ghost { width: 100%; justify-content: center; }
            .cta-btns { flex-direction: column; align-items: center; }
            .cursor-dot, .cursor-ring { display: none; }
            body { cursor: auto; }
        }

        /* SEO pages inherit main style.css without fullpage lock */
        body.seo-page {
            min-height: 100vh;
            height: auto;
            overflow-x: hidden !important;
            overflow-y: auto !important;
            cursor: auto !important;
            background: var(--bg);
        }

        body.seo-page::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 82% 12%, rgba(124, 58, 237, 0.34), transparent 34rem),
                radial-gradient(circle at 10% 78%, rgba(45, 212, 191, 0.14), transparent 26rem),
                linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
            background-repeat: no-repeat;
            background-size: cover;
        }

        body.seo-page .hero,
        body.seo-page .section {
            height: auto !important;
            min-height: 0 !important;
        }

        body.seo-page .section {
            padding: clamp(70px, 9vw, 112px) 0;
        }

        body.seo-page .cursor-dot,
        body.seo-page .cursor-ring,
        body.seo-page .page-nav,
        body.seo-page .grain,
        body.seo-page #three-canvas {
            display: none !important;
        }

        body.seo-page main {
            position: relative;
            z-index: 1;
        }

        body.seo-page .section-inner {
            max-width: 1180px;
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
            padding: 0;
            transform: none;
        }

        body.seo-page .section-inner .section-header-wrap {
            position: relative;
            inset: auto;
            display: block;
            text-align: left;
            pointer-events: auto;
            margin-bottom: 2rem;
        }

        body.seo-page .section-title {
            font-size: clamp(2.2rem, 5vw, 4.4rem);
            line-height: .96;
            letter-spacing: -0.06em;
            margin-bottom: 1rem;
        }

        body.seo-page .stats-strip {
            padding: 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        body.seo-page .stats-inner {
            max-width: 1180px;
            width: min(1180px, calc(100% - 40px));
            grid-template-columns: repeat(4, 1fr);
        }

        body.seo-page .stat-b {
            min-height: 120px;
            justify-content: center;
        }

        body.seo-page .stat-n {
            font-size: clamp(1.45rem, 3vw, 2.4rem);
            font-variant-numeric: tabular-nums;
        }

        body.seo-page .stat-l {
            max-width: 180px;
        }

        body.seo-page .services-grid,
        body.seo-page .process-map {
            margin-top: 2rem;
        }

        body.seo-page .svc-item,
        body.seo-page .pm-box {
            min-height: 220px;
        }

        body.seo-page .svc-tags-track {
            animation-duration: 16s;
        }

        body.seo-page .price-list,
        body.seo-page .faq-list {
            display: grid;
            gap: 1rem;
            margin-top: 2rem;
        }

        body.seo-page .price-row,
        body.seo-page .faq-list details,
        body.seo-page .seo-note {
            border: 1px solid var(--glass-border);
            background: rgba(255,255,255,0.035);
            border-radius: 8px;
        }

        body.seo-page .price-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 1.5rem;
            align-items: center;
            padding: clamp(18px, 3vw, 28px);
        }

        body.seo-page .price-row strong,
        body.seo-page .faq-list summary {
            font-family: 'Syne', sans-serif;
            font-size: 1rem;
            font-weight: 800;
        }

        body.seo-page .price-row p,
        body.seo-page .faq-list p,
        body.seo-page .seo-note {
            color: var(--text2);
            font-size: 0.92rem;
            line-height: 1.7;
        }

        body.seo-page .price-value {
            color: var(--green);
            font-family: 'Space Mono', monospace;
            white-space: nowrap;
        }

        body.seo-page .faq-list details {
            padding: 1.2rem 1.35rem;
        }

        body.seo-page .faq-list summary {
            cursor: pointer;
            color: var(--text);
        }

        body.seo-page .faq-list p {
            margin-top: 0.8rem;
        }

        body.seo-page .seo-note {
            margin-top: 1.2rem;
            padding: 1rem 1.2rem;
        }

        @media (max-width: 900px) {
            body.seo-page .stats-inner,
            body.seo-page .services-grid,
            body.seo-page .process-map {
                grid-template-columns: 1fr;
            }
            body.seo-page .price-row {
                grid-template-columns: 1fr;
                gap: 0.7rem;
            }
            body.seo-page .navbar,
            body.seo-page .navbar.scrolled {
                padding: 0.75rem 0.85rem;
                background: rgba(3,3,4,0.92);
                backdrop-filter: blur(18px) saturate(140%);
                -webkit-backdrop-filter: blur(18px) saturate(140%);
            }
            body.seo-page .nav-inner {
                max-width: 100%;
                width: 100%;
                gap: 0.65rem;
                align-items: flex-start;
                flex-direction: column;
            }
            body.seo-page .nav-links {
                display: flex !important;
                width: 100%;
                overflow-x: auto;
                overflow-y: hidden;
                flex-wrap: nowrap;
                gap: 0.5rem;
                padding: 0.15rem 0 0.1rem;
                margin-top: 0;
                scrollbar-width: none;
                -webkit-overflow-scrolling: touch;
            }
            body.seo-page .nav-links::-webkit-scrollbar {
                display: none;
            }
            body.seo-page .nav-links li {
                flex: 0 0 auto;
            }
            body.seo-page .nav-links a {
                display: inline-flex;
                align-items: center;
                min-height: 40px;
                padding: 0 0.85rem;
                border-radius: 999px;
                border: 1px solid var(--glass-border);
                background: rgba(255,255,255,0.04);
                white-space: nowrap;
                letter-spacing: 0.02em;
                text-transform: none;
                font-size: 0.8rem;
            }
            body.seo-page .nav-links a::after {
                display: none;
            }
            body.seo-page .nav-links a.active,
            body.seo-page .nav-links a:hover {
                border-color: rgba(167, 139, 250, 0.6);
                color: #fff;
            }
        }

        @media (max-width: 1024px) {
            .results-matrix {
                grid-template-columns: 1fr 1fr;
            }
            .hero-bottom {
                align-items: flex-start;
                gap: 1.8rem;
            }
            .hero-desc {
                max-width: 100%;
            }
            .section-inner .section-header-wrap {
                position: relative;
                inset: auto;
                pointer-events: auto;
                align-items: flex-start;
                justify-content: flex-start;
                text-align: left;
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            html,
            body {
                width: 100%;
                overflow-x: hidden;
            }
            .hero,
            .section,
            .footer {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .section-title {
                font-size: clamp(1.7rem, 8.8vw, 2.35rem);
                line-height: 1.05;
            }
            .section-title::before {
                display: none;
            }
            .hero-title {
                font-size: clamp(2.2rem, 10.5vw, 3.3rem);
                line-height: 0.98;
            }
            .stats-inner {
                grid-template-columns: 1fr;
            }
            .process-map,
            .results-matrix {
                grid-template-columns: 1fr;
            }
            .sb-address {
                width: 85%;
            }
            .mobile-menu {
                padding-top: 4.7rem;
            }
            body.seo-page .section-inner {
                width: min(1180px, calc(100% - 28px));
            }
            body.seo-page .stats-inner {
                width: min(1180px, calc(100% - 28px));
            }
            body.seo-page .section-title {
                font-size: clamp(1.9rem, 9.2vw, 2.6rem);
                letter-spacing: -0.04em;
            }
            body.seo-page .svc-item,
            body.seo-page .pm-box {
                min-height: 0;
            }
        }

        @media (max-width: 480px) {
            .nav-logo {
                font-size: 1rem;
            }
            .menu-toggle {
                width: 40px;
                height: 40px;
            }
            .mobile-menu a {
                font-size: 0.94rem;
                padding: 0.82rem 0.9rem;
            }
            .hero-eyebrow {
                font-size: 0.62rem;
                letter-spacing: 0.14em;
            }
            .hero-desc,
            .cta-desc {
                font-size: 0.92rem;
            }
            .btn-main,
            .btn-ghost {
                min-height: 44px;
                font-size: 0.8rem;
                padding: 0 1rem;
            }
            .footer-copy {
                font-size: 0.68rem;
            }
        }
