*, *::before, *::after {box-sizing: border-box; }

        /* ─── DARK THEME (default) ─── */
        :root, [data-theme="dark"] {
            --bg: #080808;
            --bg-secondary: #111111;
            --text-primary: #F2EDE4;
            --text-secondary: rgba(242,237,228,0.55);
            --text-muted: rgba(242,237,228,0.35);
            --text-nav: rgba(242,237,228,0.6);
            --orange: #E84A1A;
            --orange-light: #FF6B3D;
            --muted: #888;
            --card-bg: #111111;
            --border: rgba(255,255,255,0.07);
            --pad: clamp(20px, 5vw, 60px);
            --nav-bg-start: rgba(8,8,8,0.97);
            --nav-bg-end: rgba(8,8,8,0);
            --mobile-menu-bg: rgba(8,8,8,0.98);
            --noise-opacity: 0.4;
            --outline-stroke: #F2EDE4;
            --case-tag-bg: rgba(8,8,8,.8);
        }

        /* ─── LIGHT THEME ─── */
        [data-theme="light"] {
            --bg: #F5F2ED;
            --bg-secondary: #FFFFFF;
            --text-primary: #1a1a1a;
            --text-secondary: rgba(26,26,26,0.6);
            --text-muted: rgba(26,26,26,0.4);
            --text-nav: rgba(26,26,26,0.6);
            --orange: #E84A1A;
            --orange-light: #FF6B3D;
            --muted: #777;
            --card-bg: #FFFFFF;
            --border: rgba(0,0,0,0.08);
            --nav-bg-start: rgba(245,242,237,0.97);
            --nav-bg-end: rgba(245,242,237,0);
            --mobile-menu-bg: rgba(245,242,237,0.98);
            --noise-opacity: 0.15;
            --outline-stroke: #1a1a1a;
            --case-tag-bg: rgba(255,255,255,.85);
        }

        html { scroll-behavior: smooth; }
        body {
            background: var(--bg);
            color: var(--text-primary);
            font-family: 'DM Sans', sans-serif;
            overflow-x: hidden;
            transition: background .4s ease, color .4s ease;
        }
        @media (pointer: fine) { body { cursor: none; } }

        /* Cursor - desktop only */
        .cursor, .cursor-trail {
            display: none;
            position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
            transform: translate(-50%,-50%);
        }
        @media (pointer: fine) {
            .cursor { display: block; width: 10px; height: 10px; background: var(--orange); transition: width .3s, height .3s; }
            .cursor-trail { display: block; width: 36px; height: 36px; border: 1.5px solid rgba(232,74,26,0.4); transition: all .18s ease; }
        }

        /* Noise */
        body::before {
            content: ''; position: fixed; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none; z-index: 1000; opacity: var(--noise-opacity);
        }

        /* Logo theme switching */
        .logo-dark { display: block; }
        .logo-light { display: none; }
        [data-theme="light"] .logo-dark { display: none; }
        [data-theme="light"] .logo-light { display: block; }

        /* ─── NAV ─── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 900;
            padding: 18px var(--pad);
            display: flex; align-items: center; justify-content: space-between;
            background: linear-gradient(to bottom, var(--nav-bg-start) 0%, var(--nav-bg-end) 100%);
            backdrop-filter: blur(4px);
        }
        .logo-wrap { display: flex; align-items: center; gap: 10px; z-index: 10; }
        .logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
        .logo-text { font-family: 'Syne', sans-serif !important; font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; color: var(--text-primary); }

        .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
        .nav-links a { color: var(--text-nav); text-decoration: none; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; transition: color .3s; }
        .nav-links a:hover { color: var(--text-primary); }

        .nav-right { display: flex; align-items: center; gap: 16px; }

        /* Theme Toggle */
        .theme-toggle {
            background: none; border: 1px solid var(--border); border-radius: 50%;
            width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
            cursor: pointer; color: var(--text-primary); transition: all .3s;
        }
        .theme-toggle:hover { border-color: var(--orange); color: var(--orange); }
        .theme-toggle svg { width: 18px; height: 18px; }
        .theme-toggle .icon-sun { display: none; }
        .theme-toggle .icon-moon { display: block; }
        [data-theme="light"] .theme-toggle .icon-sun { display: block; }
        [data-theme="light"] .theme-toggle .icon-moon { display: none; }

        .nav-cta {
            background: var(--orange); color: #fff; border: none;
            padding: 10px 22px; border-radius: 3px;
            font-family: 'Syne', sans-serif !important; font-weight: 700; font-size: 0.8rem;
            letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
            transition: background .3s, transform .2s; white-space: nowrap;
        }
        .nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

        /* Hamburger */
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 10; }
        .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s ease; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile Menu */
        .mobile-menu {
            display: none; position: fixed; inset: 0; z-index: 800;
            background: var(--mobile-menu-bg); backdrop-filter: blur(12px);
            flex-direction: column; align-items: center; justify-content: center;
            gap: 40px; opacity: 0; pointer-events: none;
            transition: opacity .4s ease;
        }
        .mobile-menu.open { opacity: 1; pointer-events: all; }
        .mobile-menu a { font-family: 'Syne', sans-serif !important; font-size: 2rem; font-weight: 800; color: var(--text-primary); text-decoration: none; letter-spacing: -0.02em; transition: color .3s; }
        .mobile-menu a:hover { color: var(--orange); }
        .mobile-menu .mob-cta {
            background: var(--orange); color: #fff; border: none;
            padding: 16px 40px; border-radius: 3px; margin-top: 10px;
            font-family: 'Syne', sans-serif !important; font-weight: 700; font-size: 1rem; cursor: pointer;
            letter-spacing: 0.06em; text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-right .nav-cta { display: none; }
            .hamburger { display: flex; }
            .mobile-menu { display: flex; }
        }

        /* Buttons */
        .btn-primary {
            background: var(--orange); color: #fff; padding: 14px 32px; border: none; border-radius: 3px;
            font-family: 'Syne', sans-serif !important; font-weight: 700; font-size: 0.88rem;
            letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
            transition: all .3s; position: relative; overflow: hidden; white-space: nowrap;
            text-decoration: none; display: inline-block;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,74,26,.35); }
        .btn-ghost {
            color: var(--text-primary); padding: 14px 32px; border: 1px solid var(--border); background: transparent; border-radius: 3px;
            font-family: 'Syne', sans-serif !important; font-weight: 600; font-size: 0.88rem;
            letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
            transition: all .3s; white-space: nowrap; text-decoration: none; display: inline-block;
        }
        .btn-ghost:hover { border-color: rgba(232,74,26,.3); background: rgba(232,74,26,.05); }

        /* ─── MARQUEE ─── */
        .marquee-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; background: rgba(232,74,26,.03); }
        .marquee-track { display: flex; white-space: nowrap; animation: marquee 25s linear infinite; }
        .marquee-item { display: inline-flex; align-items: center; gap: 16px; padding: 0 32px; font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
        .marquee-item::before { content:'◆'; color:var(--orange); font-size:.45rem; }
        @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

        /* ─── SECTION COMMONS ─── */
        .section-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
        .section-label::before { content:''; display:block; width:28px; height:1px; background:var(--orange); }
        .section-title { font-family: 'Syne', sans-serif !important; font-weight: 800; font-size: clamp(1.9rem, 4vw, 3.2rem); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 60px; color: var(--text-primary); }
        .section-title em { font-style: normal; color: var(--orange); }

        /* ─── FOOTER ─── */
        footer { border-top: 1px solid var(--border); padding: clamp(32px,5vw,48px) var(--pad); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
        .footer-brand { display: flex; align-items: center; gap: 10px; }
        .footer-brand span { font-family: 'Syne', sans-serif !important; font-weight: 700; font-size: .95rem; color: var(--text-secondary); }
        .footer-links { display: flex; gap: clamp(16px,3vw,32px); flex-wrap: wrap; }
        .footer-links a { font-family: 'Syne', sans-serif !important; color: var(--text-muted); text-decoration: none; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; transition: color .3s; }
        .footer-links a:hover { color: var(--text-primary); }
        .footer-copy { font-family: 'Syne', sans-serif !important; font-size: .72rem; color: var(--text-muted); letter-spacing: .05em; }
        @media (max-width: 560px) {
            footer { flex-direction: column; align-items: flex-start; }
            .footer-copy { order: 3; }
        }

        /* ─── SCROLL REVEAL ─── */
        .reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: .1s; }
        .reveal-delay-2 { transition-delay: .2s; }
        .reveal-delay-3 { transition-delay: .3s; }
        .reveal-delay-4 { transition-delay: .4s; }
        
    /* ─── HERO ─── */
    .hero {
        min-height: 100vh; display: flex; align-items: center;
        padding: 120px var(--pad) 100px;
        position: relative; overflow: hidden;
    }
    .grid-bg {
        position: absolute; inset: 0;
        background-image:
            linear-gradient(rgba(232,74,26,0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(232,74,26,0.06) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: gridShift 20s linear infinite;
        mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 30%, transparent 80%);
    }
    @keyframes gridShift { 0%{background-position:0 0} 100%{background-position:60px 60px} }

    .orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: orbFloat 8s ease-in-out infinite; }
    .orb-1 { width: clamp(200px,40vw,500px); height: clamp(200px,40vw,500px); background: rgba(232,74,26,0.12); top: -100px; right: -100px; }
    .orb-2 { width: clamp(150px,25vw,300px); height: clamp(150px,25vw,300px); background: rgba(232,74,26,0.07); bottom: 100px; right: 300px; animation-delay: 3s; }
    .orb-3 { width: clamp(100px,15vw,200px); height: clamp(100px,15vw,200px); background: rgba(255,107,61,0.06); top: 200px; left: 200px; animation-delay: 6s; }
    @keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }

    .hero-inner { display: flex; flex-direction: column; width: 100%; position: relative; z-index: 2; }
    .hero-content { max-width: 750px; }

    .hero-badge {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(232,74,26,0.1); border: 1px solid rgba(232,74,26,0.25);
        padding: 6px 16px; border-radius: 2px; margin-bottom: 28px;
        font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-light);
        animation: fadeSlideUp .8s ease both;
    }
    .hero-badge::before { content:''; width:6px; height:6px; background:var(--orange); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

    .hero-headline {
        font-family: 'Syne', sans-serif; font-weight: 800;
        font-size: clamp(2.6rem, 7vw, 5.5rem);
        line-height: 1.03; letter-spacing: -0.03em; margin-bottom: 24px;
        animation: fadeSlideUp .8s .15s ease both;
    }
    .hero-headline em { font-style: normal; color: var(--orange); }
    .hero-headline .outline { -webkit-text-stroke: 1.5px var(--outline-stroke); color: transparent; }

    .hero-sub {
        font-size: clamp(0.9rem, 2vw, 1.1rem); line-height: 1.7;
        color: var(--text-secondary); max-width: 520px; margin-bottom: 40px; font-weight: 300;
        animation: fadeSlideUp .8s .3s ease both;
    }
    .hero-actions {
        display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
        animation: fadeSlideUp .8s .45s ease both;
    }

    .hero-stats {
        display: flex; gap: clamp(24px, 4vw, 48px); flex-wrap: wrap;
        margin-top: 60px;
        animation: fadeSlideUp .8s .6s ease both;
    }
    .stat-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--text-primary); letter-spacing: -0.04em; line-height: 1; }
    .stat-num span { color: var(--orange); }
    .stat-label { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

    @keyframes fadeSlideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

    /* ─── SERVICES ─── */
    .services { padding: clamp(60px,10vw,120px) var(--pad); }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

    @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

    .service-card {
        background: var(--card-bg); padding: clamp(28px,4vw,48px) clamp(24px,3.5vw,40px);
        border: 1px solid var(--border); position: relative; overflow: hidden;
        transition: border-color .4s, transform .4s; cursor: pointer;
    }
    .service-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; }
    .service-card:hover { border-color: rgba(232,74,26,.3); transform: translateY(-4px); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-num { font-family: 'Syne', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .2em; color: rgba(232,74,26,.5); margin-bottom: 24px; }
    .service-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--orange); }
    .service-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: -.01em; }
    .service-desc { font-size: .85rem; line-height: 1.7; color: var(--text-secondary); font-weight: 300; }
    .service-card.featured { background: var(--orange); border-color: var(--orange); }
    .service-card.featured .service-num { color: rgba(255,255,255,.5); }
    .service-card.featured .service-name { color: #fff; }
    .service-card.featured .service-desc { color: rgba(255,255,255,.7); }
    .service-card.featured .service-icon { color: #fff; }
    .service-card.featured::before { background: #fff; }

    /* ─── PROCESS ─── */
    .process { padding: clamp(60px,10vw,120px) var(--pad); background: linear-gradient(180deg, transparent 0%, rgba(232,74,26,.03) 50%, transparent 100%); }
    .process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: center; }

    @media (max-width: 820px) {
        .process-inner { grid-template-columns: 1fr; }
        .process-visual { display: none; }
    }

    .process-steps { display: flex; flex-direction: column; }
    .process-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); transition: all .3s; cursor: pointer; }
    .process-step:first-child { border-top: 1px solid var(--border); }
    .process-step:hover .step-content h3 { color: var(--orange); }
    .step-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: .65rem; color: var(--orange); letter-spacing: .1em; padding-top: 3px; min-width: 24px; }
    .step-content h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: 6px; transition: color .3s; }
    .step-content p { font-size: .82rem; color: var(--text-secondary); line-height: 1.65; font-weight: 300; }

    .process-visual { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
    .process-ring { position: absolute; border-radius: 50%; border: 2px solid rgba(232,74,26,.15); animation: ringPulse 4s ease-in-out infinite; }
    .process-ring:nth-child(1) { width: 360px; height: 360px; }
    .process-ring:nth-child(2) { width: 260px; height: 260px; animation-delay:.5s; border-color:rgba(232,74,26,.2); }
    .process-ring:nth-child(3) { width: 160px; height: 160px; animation-delay:1s; border-color: rgb(255 59 0 / 47%); }
    .process-ring:nth-child(4) { width: 80px; height: 80px; background:rgba(232,74,26,.12); animation-delay:1.5s; border-color:var(--orange); }
    @keyframes ringPulse { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.03)} }
    .process-center { position: relative; z-index: 2; }
    .process-center svg { width: 26px; height: 26px; color: var(--orange); }

    /* ─── TECH ─── */
    .tech { padding: clamp(60px,8vw,100px) var(--pad); }
    .tech-label { text-align: center; margin-bottom: 40px; }
    .tech-label .section-label { justify-content: center; }
    .tech-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .tech-pill { padding: 9px 20px; border: 1px solid var(--border); background: var(--card-bg); border-radius: 2px; font-size: .78rem; letter-spacing: .05em; color: var(--text-secondary); transition: all .3s; cursor: pointer; }
    .tech-pill:hover { border-color: rgba(232,74,26,.4); color: var(--text-primary); background: rgba(232,74,26,.06); }

    /* ─── WORK ─── */
    .work { padding: clamp(60px,10vw,120px) var(--pad); }
    .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
    @media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; } }

    .case-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; cursor: pointer; transition: transform .4s, border-color .4s; display: block; }
    .case-card:hover { transform: translateY(-6px); border-color: rgba(232,74,26,.25); }
    .case-img { height: clamp(220px,22vw,320px); position: relative; overflow: hidden; }
    .case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .case-card:hover .case-img img { transform: scale(1.05); }
    .case-img-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: clamp(2.5rem,6vw,4rem); font-weight: 800; letter-spacing: -.05em; transition: transform .5s ease; }
    .case-card:hover .case-img-inner { transform: scale(1.05); }
    .case-img-1 .case-img-inner { background: linear-gradient(135deg, #1a0800, #3d1000); color: rgba(232,74,26,.2); }
    .case-img-2 .case-img-inner { background: linear-gradient(135deg, #0a0a0a, #1a1a2e); color: rgba(100,100,200,.2); }
    .case-img-3 .case-img-inner { background: linear-gradient(135deg, #001a00, #0d2e00); color: rgba(50,150,50,.2); }
    .case-img-4 .case-img-inner { background: linear-gradient(135deg, #1a1a00, #2e2a00); color: rgba(200,180,0,.2); }
    .case-tag { position: absolute; top: 14px; left: 14px; background: var(--case-tag-bg); border: 1px solid var(--border); padding: 4px 10px; border-radius: 2px; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
    .case-info { padding: clamp(20px,3vw,28px) clamp(20px,3vw,32px); }
    .case-info h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
    .case-info p { font-size: .82rem; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

    /* ─── PORTFOLIO DETAIL ─── */
    .portfolio-hero-skills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }

    .portfolio-detail { padding: clamp(40px,8vw,140px) var(--pad); }
    .portfolio-detail-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(32px,5vw,64px); max-width: 1200px; margin: 0 auto; align-items: start; }
    @media (max-width: 900px) { .portfolio-detail-inner { grid-template-columns: 1fr; } }

    /* Carousel main */
    .portfolio-carousel-main { position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 16px; aspect-ratio: 16/10; background: var(--card-bg); }
    .carousel-slide { position: absolute; inset: 0; width: 100%; height: 88%; opacity: 0; transition: opacity .6s cubic-bezier(.4,0,.2,1); pointer-events: none; }
    .carousel-slide.active { opacity: 1; pointer-events: auto; }

    /* Arrows */
    .carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(0,0,0,.55); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.1); color: #fff; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity .3s, background .3s; }
    .portfolio-carousel-main:hover .carousel-arrow { opacity: 1; }
    .carousel-arrow:hover { background: rgba(232,74,26,.7); }
    .carousel-prev { left: 12px; }
    .carousel-next { right: 12px; }

    /* Thumbnails */
    .portfolio-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
    .portfolio-thumb { flex: 0 0 80px; height: 60px; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1), transform .3s; }
    .portfolio-thumb:hover { transform: translateY(-2px); border-color: rgba(232,74,26,.3); }
    .portfolio-thumb.active { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(232,74,26,.25); }
    .portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s; }
    .portfolio-thumb:not(.active) img { opacity: .55; }
    .portfolio-thumb:hover img, .portfolio-thumb.active img { opacity: 1; }

    /* Info panel */
    .portfolio-info-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.6rem,3vw,2.4rem); letter-spacing: -.02em; line-height: 1.15; margin-bottom: 28px; }
    .portfolio-info-section { margin-bottom: 28px; }
    .portfolio-info-section h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
    .portfolio-skills-list { display: flex; flex-wrap: wrap; gap: 8px; }
    .portfolio-skill-tag {     background: rgb(255 255 255 / 18%);
    border: 1px solid rgb(255 255 255 / 18%);
    color: #cdcdcd;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .04em;}
    .portfolio-description { font-size: clamp(.88rem,1.3vw,1rem); color: var(--text-secondary); line-height: 1.8; font-weight: 300; }

    /* ─── CTA ─── */
    .cta { padding: clamp(80px,12vw,140px) var(--pad); text-align: center; position: relative; overflow: hidden; }
    .cta-bg { position: absolute; inset: clamp(16px,3vw,40px); background: linear-gradient(135deg, rgba(232,74,26,.08) 0%, rgba(8,8,8,0) 60%); border: 1px solid rgba(232,74,26,.12); border-radius: 8px; }
    .cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
    .cta h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.03em; line-height: 1.05; margin-bottom: 20px; }
    .cta h2 em { font-style: normal; color: var(--orange); }
    .cta p { font-size: clamp(.88rem,1.5vw,1rem); color: var(--text-secondary); margin-bottom: 40px; line-height: 1.7; font-weight: 300; }
    .cta .hero-actions { justify-content: center; }

    /* ─── SERVICE PAGE ─── */
    .svc-hero {
        padding: 140px var(--pad) 80px; position: relative; overflow: hidden;
    }
    .svc-hero .orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
    .svc-hero .orb-1 { width: clamp(200px,35vw,400px); height: clamp(200px,35vw,400px); background: rgba(232,74,26,0.1); top: -80px; right: -60px; }
    .svc-hero .orb-2 { width: clamp(120px,20vw,250px); height: clamp(120px,20vw,250px); background: rgba(232,74,26,0.06); bottom: 40px; left: 100px; }
    .svc-hero-inner { position: relative; z-index: 2; max-width: 720px; }
    .svc-hero .hero-badge { margin-bottom: 24px; }
    .svc-hero h1 {
        font-family: 'Syne', sans-serif; font-weight: 800;
        font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08;
        letter-spacing: -0.03em; margin-bottom: 20px; color: var(--text-primary);
    }
    .svc-hero h1 em { font-style: normal; color: var(--orange); }
    .svc-hero p { font-size: clamp(.92rem, 1.8vw, 1.05rem); line-height: 1.7; color: var(--text-secondary); max-width: 560px; margin-bottom: 36px; font-weight: 300; }

    .svc-features { padding: clamp(60px,8vw,100px) var(--pad); }
    .svc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 900px) { .svc-features-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .svc-features-grid { grid-template-columns: 1fr; } }
    .svc-feature-card {
        background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px;
        padding: clamp(24px,3vw,36px); transition: border-color .3s, transform .3s;
    }
    .svc-feature-card:hover { border-color: rgba(232,74,26,.25); transform: translateY(-3px); }
    .svc-feature-card .feat-icon { width: 40px; height: 40px; color: var(--orange); margin-bottom: 16px; }
    .svc-feature-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: 8px; color: var(--text-primary); }
    .svc-feature-card p { font-size: .84rem; line-height: 1.65; color: var(--text-secondary); font-weight: 300; }

    .svc-detail { padding: clamp(60px,8vw,100px) var(--pad); }
    .svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
    @media (max-width: 820px) { .svc-detail-grid { grid-template-columns: 1fr; } }
    .svc-detail-text h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.12; margin-bottom: 20px; color: var(--text-primary); }
    .svc-detail-text h2 em { font-style: normal; color: var(--orange); }
    .svc-detail-text p { font-size: .88rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 16px; font-weight: 300; }
    .svc-detail-list { list-style: none; padding: 0; }
    .svc-detail-list li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: .86rem; color: var(--text-secondary); line-height: 1.6; }
    .svc-detail-list li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

    .svc-tech { padding: clamp(40px,6vw,80px) var(--pad); }
    .svc-tech-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

    /* ─── GET QUOTATION FLOATING BUTTON ─── */
    .quote-fab {
        position: fixed; bottom: 28px; right: 28px; z-index: 850;
        background: var(--orange); color: #fff; border: none;
        padding: 14px 24px; border-radius: 50px;
        font-family: 'Syne', sans-serif; font-weight: 700; font-size: .78rem;
        letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
        display: flex; align-items: center; gap: 8px;
        box-shadow: 0 8px 32px rgba(232,74,26,.35);
        transition: all .3s;
    }
    .quote-fab:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,74,26,.45); }
    .quote-fab svg { width: 18px; height: 18px; }

    /* ─── QUOTATION MODAL ─── */
    .quote-overlay {
        position: fixed; inset: 0; z-index: 950;
        background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; pointer-events: none; transition: opacity .3s;
        padding: 20px;
    }
    .quote-overlay.open { opacity: 1; pointer-events: all; }

    .quote-modal {
        background: var(--card-bg); border: 1px solid var(--border);
        border-radius: 6px; width: 100%; max-width: 480px;
        max-height: 90vh; overflow-y: auto;
        padding: clamp(24px,4vw,36px);
        transform: translateY(20px); transition: transform .3s;
        position: relative;
    }
    .quote-overlay.open .quote-modal { transform: translateY(0); }

    .quote-modal-close {
        position: absolute; top: 16px; right: 16px;
        background: none; border: 1px solid var(--border); border-radius: 50%;
        width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
        cursor: pointer; color: var(--text-secondary); transition: all .3s;
    }
    .quote-modal-close:hover { border-color: var(--orange); color: var(--orange); }
    .quote-modal-close svg { width: 16px; height: 16px; }

    .quote-modal h3 {
        font-family: 'Syne', sans-serif; font-weight: 700;
        font-size: 1.2rem; margin-bottom: 6px; color: var(--text-primary);
    }
    .quote-modal .quote-subtitle {
        font-size: .84rem; color: var(--text-secondary); margin-bottom: 24px;
        font-weight: 300; line-height: 1.5;
    }

    /* Reuse form styles from contact page */
    .quote-modal .form-group { margin-bottom: 16px; }
    .quote-modal .form-group label {
        display: block; font-size: .72rem; font-weight: 500;
        letter-spacing: .06em; text-transform: uppercase;
        color: var(--text-muted); margin-bottom: 6px;
    }
    .quote-modal .form-group input,
    .quote-modal .form-group select,
    .quote-modal .form-group textarea {
        width: 100%; padding: 10px 14px;
        background: var(--bg); border: 1px solid var(--border);
        border-radius: 3px; color: var(--text-primary);
        font-family: 'DM Sans', sans-serif; font-size: .86rem;
        transition: border-color .3s; outline: none;
    }
    .quote-modal .form-group input::placeholder,
    .quote-modal .form-group textarea::placeholder { color: var(--text-muted); }
    .quote-modal .form-group input:focus,
    .quote-modal .form-group select:focus,
    .quote-modal .form-group textarea:focus { border-color: var(--orange); }
    .quote-modal .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer;
    }
    .quote-modal .form-group select option { background: var(--card-bg); color: var(--text-primary); }
    .quote-modal .form-group textarea { resize: vertical; min-height: 90px; }
    .quote-modal .form-submit {
        background: var(--orange); color: #fff; border: none;
        padding: 12px 28px; border-radius: 3px;
        font-family: 'Syne', sans-serif; font-weight: 700; font-size: .82rem;
        letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
        transition: all .3s; width: 100%; margin-top: 4px;
    }
    .quote-modal .form-submit:hover { background: var(--orange-light); transform: translateY(-1px); }
    .quote-modal .form-message {
        padding: 12px 14px; border-radius: 3px; margin-bottom: 16px; font-size: .82rem; display: none;
    }
    .quote-modal .form-message.success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #22c55e; display: block; }
    .quote-modal .form-message.error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #ef4444; display: block; }
