        /* CSS VARIABLES & RESET - LIGHT MODE */
        :root {
            --bg: #F4F4F6;
            --glass-bg: rgba(255, 255, 255, 0.4);
            --glass-card: rgba(255, 255, 255, 0.7);
            --text-main: #111111;
            --text-muted: #555555;
            --accent: #0055FF;
            --accent-glow: rgba(0, 85, 255, 0.1);
            --border: rgba(17, 17, 17, 0.08);
            --font-heading: 'Syne', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none;
            /* Custom Cursor */
        }

        html {
            scroll-behavior: initial;
        }

        body {
            background-color: var(--bg);
            color: var(--text-main);
            font-family: var(--font-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        /* PREMIUM GRAIN NOISE OVERLAY */
        .noise {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 9997;
            opacity: 0.04;
            /* background injected via script for performance */
        }

        /* PRELOADER SHADER ANIMATION */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 10000;
            background-color: #000;
            overflow: hidden;
            pointer-events: none;
        }

        /* HARDWARE ACCELERATED CUSTOM CURSOR */
        .cursor-dot,
        .cursor-outline {
            will-change: transform, width, height;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9999;
            border-radius: 50%;
        }

        .cursor-dot {
            width: 8px;
            height: 8px;
            background-color: var(--text-main);
        }

        .cursor-outline {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(17, 17, 17, 0.3);
            backdrop-filter: blur(2px);
            z-index: 9998;
        }

        /* LIVE AMBIENT BLOBS (GPU Accelerated) */
        .blob {
            will-change: transform;
            position: fixed;
            border-radius: 50%;
            z-index: 0;
            opacity: 0.5;
            pointer-events: none;
            animation: floatBlob 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blob-1 {
            top: -10%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle at center, rgba(0, 85, 255, 0.15) 0%, rgba(0, 85, 255, 0) 65%);
        }

        .blob-2 {
            bottom: -10%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle at center, rgba(41, 121, 255, 0.15) 0%, rgba(41, 121, 255, 0) 65%);
            animation-delay: -10s;
            animation-direction: alternate-reverse;
        }

        @keyframes floatBlob {
            0% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(5%, 10%) scale(1.1);
            }

            100% {
                transform: translate(-5%, -5%) scale(0.9);
            }
        }



        nav,
        header,
        section,
        footer {
            position: relative;
            z-index: 1;
        }

        /* LAYOUT & TYPOGRAPHY */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 5%;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-heading);
            font-weight: 600;
        }

        .section-padding {
            padding: 120px 0;
        }

        .glass-section {
            background: var(--glass-bg);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-top: 1px solid rgba(255, 255, 255, 0.6);
            border-bottom: 1px solid rgba(255, 255, 255, 0.6);
        }

        .subtitle-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border: 1px solid rgba(17, 17, 17, 0.1);
            border-radius: 50px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(4px);
            font-weight: 600;
        }



        .section-title {
            font-size: clamp(2.5rem, 4vw, 4rem);
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-desc {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.6;
        }

        /* MAGNETIC BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.4s, border-color 0.4s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            z-index: -1;
            border-radius: 50px;
        }

        .btn-primary {
            background-color: var(--text-main);
            color: var(--bg);
            border: 1px solid var(--text-main);
        }

        .btn-primary:hover {
            color: #fff;
            border-color: var(--accent);
        }

        .btn-primary:hover::before {
            transform: translateY(-100%);
        }



        /* NAVBAR */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            transition: background 0.4s, padding 0.4s, border-bottom 0.4s;
            border-bottom: 1px solid transparent;
        }

        nav.scrolled {
            padding: 15px 5%;
            background: rgba(244, 244, 246, 0.85);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
        }

        .nav-logo {
            height: 48px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        nav.scrolled .nav-logo {
            height: 36px;
            transition: height 0.3s;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            display: inline-block;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: color 0.3s;
        }

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

        /* HERO SECTION */
        .hero {
            height: 100vh;
            min-height: 680px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-bottom: 90px;
            overflow: hidden;
            /* reserve space for bottom strip */
        }

        .hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            width: 100%;
            padding-top: 60px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* push below navbar */
        }

        .hero-content .subtitle-badge {
            margin-bottom: 24px;
        }

        /* HERO CONTENT */
        .hero-title {
            font-size: clamp(2.4rem, 5.5vw, 4.2rem);
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
            color: var(--text-main);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 20;
        }

        .title-line {
            overflow: hidden;
            display: block;
        }

        .title-line span {
            display: block;
            transform: translateY(110%);
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 650px;
            line-height: 1.7;
            margin-bottom: 40px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 20;
        }

        .hero-availability {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 32px;
        }

        .availability-text {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }




        /* AVAILABILITY BADGE RESTORATION */
        .availability-ping-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 10px;
            height: 10px;
        }

        .availability-ping {
            position: absolute;
            width: 100%;
            height: 100%;
            background: #22c55e;
            border-radius: 50%;
            animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        .availability-dot {
            position: relative;
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
        }

        @keyframes ping {

            75%,
            100% {
                transform: scale(3.5);
                opacity: 0;
            }
        }

        /* HERO BOTTOM STRIP — positioned absolute at bottom */
        .hero-bottom-strip {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border);
            z-index: 2;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 28px;
            opacity: 0;
            transform: translateY(16px);
        }

        .hero-stat strong {
            display: block;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--text-main);
            line-height: 1;
            margin-bottom: 2px;
        }

        .hero-stat span {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-stat-divider {
            width: 1px;
            height: 32px;
            background: var(--border);
            flex-shrink: 0;
        }

        /* SCROLL INDICATOR — now inside the bottom strip */
        .scroll-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            font-size: 0.7rem;
            color: var(--text-muted);
            font-weight: 700;
            opacity: 0;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: var(--border);
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: -50%;
            left: 0;
            width: 100%;
            height: 50%;
            background: var(--accent);
            animation: scrollDown 2s infinite ease-in-out;
        }

        /* ABOUT SECTION */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .feature-card {
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            padding: 35px 25px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            transition: transform 0.4s, box-shadow 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 15px;
            background: var(--accent-glow);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .feature-card h4 {
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }



        /* TECHNOLOGIES */
        .tech-section {
            padding: 80px 0;
            overflow: hidden;
        }

        .tech-marquee {
            display: flex;
            gap: 80px;
            width: max-content;
        }

        .tech-item {
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 1px rgba(17, 17, 17, 0.2);
            transition: color 0.4s, -webkit-text-stroke 0.4s, transform 0.4s;
        }

        .tech-item:hover {
            color: var(--text-main);
            -webkit-text-stroke: 1px var(--text-main);
            transform: scale(1.05) skewX(-5deg);
        }

        /* PORTFOLIO WITH CLIP-PATH REVEAL */
        /* WORK / PORTFOLIO CARDS */
        .work-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .work-card {
            display: flex;
            flex-direction: column;
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            padding: 32px;
            text-decoration: none;
            color: var(--text-main);
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s, border-color 0.4s;
            opacity: 0;
            transform: translateY(30px);
        }

        .work-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.07);
            border-color: rgba(0, 85, 255, 0.3);
        }

        .work-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .work-type-tag {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            background: var(--accent-glow);
            border: 1px solid rgba(0, 85, 255, 0.15);
            padding: 5px 12px;
            border-radius: 50px;
        }

        .work-arrow {
            width: 36px;
            height: 36px;
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--text-muted);
            transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
        }

        .work-card:hover .work-arrow {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            transform: rotate(45deg);
        }

        .work-title {
            font-size: 1.6rem;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            transition: color 0.3s;
        }

        .work-card:hover .work-title {
            color: var(--accent);
        }

        .work-desc {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 24px;
        }

        .work-tech-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }

        .work-tech {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-main);
            background: rgba(17, 17, 17, 0.05);
            border: 1px solid var(--border);
            padding: 4px 10px;
            border-radius: 50px;
        }

        .work-card-footer {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .work-live-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
            }

            50% {
                box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
            }
        }



        /* CONTACT */
        .contact-section {
            text-align: center;
            padding: 150px 0;
            position: relative;
            overflow: hidden;
        }

        .contact-email {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3.5vw, 3rem);
            font-weight: 700;
            display: inline-block;
            margin: 30px 0;
            position: relative;
            color: var(--text-main);
        }

        .contact-email::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .contact-email:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* FOOTER */
        footer {
            border-top: 1px solid var(--border);
            padding: 30px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: rgba(244, 244, 246, 0.8);
            backdrop-filter: blur(4px);
        }

        .footer-socials {
            display: flex;
            gap: 20px;
        }

        .footer-socials a {
            transition: transform 0.3s, color 0.3s;
            display: inline-block;
        }

        .footer-socials a:hover {
            color: var(--accent);
            transform: translateY(-3px);
        }

        /* UTILS */
        .gsap-reveal {
            opacity: 0;
            transform: translateY(30px);
        }



        .gsap-fade {
            opacity: 0;
            transform: translateY(16px);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }



            .work-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 80px 0;
            }

            .hero-stats {
                gap: 20px;
                flex-wrap: wrap;
            }

            .hero-stat-divider {
                display: none;
            }



            .features-grid {
                grid-template-columns: 1fr;
            }



            nav {
                padding: 20px 5%;
            }

            .nav-links {
                display: none;
            }

            footer {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .tech-item {
                font-size: 2.5rem;
            }

            .blob {
                will-change: transform;
                display: none;
            }

            /* Disable heavy blur blobs on mobile for performance */
        }

        /* --- PROJECT IMAGE SHOWCASE --- */
        .project-showcase {
            padding: 100px 0;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border);
            overflow: hidden;
        }

        .showcase-grid {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: 500px;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 20px 5%;
            margin-left: -5%;
            width: 110%;
            scrollbar-width: none;
            -ms-overflow-style: none;
            -webkit-overflow-scrolling: touch;
        }

        .showcase-grid::-webkit-scrollbar {
            display: none;
        }

        .showcase-image-wrapper {
            width: 100%;
            height: auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            border: 1px solid var(--border);
            scroll-snap-align: center;
        }

        .showcase-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .showcase-image-wrapper:hover .showcase-img {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .project-showcase {
                padding: 60px 0;
            }

            .showcase-grid {
                grid-auto-columns: 90%;
                gap: 20px;
            }

            .showcase-image-wrapper {
                border-radius: 16px;
            }
        }

        /* --- INLINE STYLES EXTRACTED FROM HTML --- */

        /* --- PROJECTS OVERRIDE STYLES --- */

        .project-hero {
            padding-top: 160px;
            padding-bottom: 80px;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-bottom: 40px;
            transition: color 0.3s;
        }

        .back-link:hover {
            color: var(--text-main);
        }

        .project-tag {
            display: inline-block;
            background: var(--accent-glow);
            color: var(--accent);
            border: 1px solid rgba(0, 85, 255, 0.2);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .project-title {
            font-size: clamp(2.5rem, 5vw, 5rem);
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 20px;
        }

        .project-meta {
            display: flex;
            gap: 40px;
            margin: 40px 0;
            padding: 30px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .meta-item label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .meta-item span {
            font-size: 1rem;
            font-weight: 500;
        }



        .project-body {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 80px;
            margin-bottom: 100px;
        }

        .project-desc h2 {
            font-size: 1.8rem;
            letter-spacing: -0.5px;
            margin: 40px 0 16px;
        }

        .project-desc h2:first-child {
            margin-top: 0;
        }

        .project-desc p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .feature-list li i {
            color: var(--accent);
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .project-sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }

        .sidebar-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .tech-tag {
            display: inline-block;
            background: rgba(0, 85, 255, 0.06);
            border: 1px solid rgba(0, 85, 255, 0.15);
            color: var(--text-main);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            margin: 0 4px 8px 0;
        }

        .visit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px;
            background: var(--text-main);
            color: var(--bg);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background 0.3s;
            text-decoration: none;
        }

        .visit-btn:hover {
            background: var(--accent);
        }

        @media (max-width: 900px) {
            .project-body {
                grid-template-columns: 1fr;
            }

            .project-meta {
                flex-wrap: wrap;
                gap: 20px;
            }

            .project-sidebar {
                position: static;
            }
        }

        /* ==========================================================================
   PEAK WEB CRAFT — SERVICE PAGES CSS ADDITIONS
   Add these rules to the bottom of the existing style.css file.
   Do not remove or overwrite existing styles.
   ========================================================================== */

        /* --------------------------------------------------------------------------
   SERVICE PAGE NAVIGATION OVERRIDE
   Extends the existing nav for service pages (not single-page anchors)
   -------------------------------------------------------------------------- */
        .service-nav .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .service-nav .nav-links a:hover,
        .service-nav .nav-links a.active {
            color: var(--text-main);
        }

        /* --------------------------------------------------------------------------
   BUTTON VARIANTS (secondary & ghost)
   -------------------------------------------------------------------------- */
        .btn-secondary {
            background-color: transparent;
            color: var(--text-main);
            border: 1px solid rgba(17, 17, 17, 0.25);
        }

        .btn-secondary::before {
            background: var(--text-main);
        }

        .btn-secondary:hover {
            color: var(--bg);
            border-color: var(--text-main);
        }

        .btn-secondary:hover::before {
            transform: translateY(-100%);
        }

        .btn-group {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* --------------------------------------------------------------------------
   SERVICE HERO SECTION
   Shorter than the main hero — no WebGL canvas
   -------------------------------------------------------------------------- */
        .service-hero {
            padding-top: 180px;
            padding-bottom: 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-hero .container {
            position: relative;
            z-index: 2;
        }

        .service-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            border: 1px solid rgba(0, 85, 255, 0.2);
            border-radius: 50px;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 28px;
            background: rgba(0, 85, 255, 0.06);
            color: var(--accent);
            font-weight: 700;
            backdrop-filter: blur(4px);
        }

        .service-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.8rem, 6vw, 5.2rem);
            line-height: 1.05;
            letter-spacing: -2px;
            color: var(--text-main);
            max-width: 860px;
            margin: 0 auto 24px;
        }

        .service-hero-sub {
            font-size: 1.18rem;
            color: var(--text-muted);
            max-width: 640px;
            margin: 0 auto 44px;
            line-height: 1.75;
        }

        .service-hero-divider {
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 0 auto 48px;
            border-radius: 2px;
        }

        /* --------------------------------------------------------------------------
   SECTION LAYOUT HELPERS
   -------------------------------------------------------------------------- */
        .section-header {
            margin-bottom: 60px;
        }

        .section-header.centered {
            text-align: center;
        }

        .section-header.centered .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            padding: 7px 16px;
            border: 1px solid rgba(17, 17, 17, 0.1);
            border-radius: 50px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(4px);
            font-weight: 700;
            color: var(--text-muted);
        }

        .section-title-lg {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 3.5vw, 3.4rem);
            line-height: 1.1;
            letter-spacing: -1.2px;
            margin-bottom: 18px;
            color: var(--text-main);
        }

        /* --------------------------------------------------------------------------
   SERVICE OVERVIEW SECTION
   Two-column: description on left, "who is this for" on right
   -------------------------------------------------------------------------- */
        .overview-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: start;
        }

        .overview-text p {
            font-size: 1.08rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .overview-text p:last-child {
            margin-bottom: 0;
        }

        .who-card {
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 32px;
        }

        .who-card h4 {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .who-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .who-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .who-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            margin-top: 7px;
            flex-shrink: 0;
        }

        /* --------------------------------------------------------------------------
   FEATURES SECTION (3-column grid variant)
   Reuses existing .feature-card — adds new grid layouts
   -------------------------------------------------------------------------- */
        .features-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .features-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        /* Feature card number accent */
        .feature-card .feature-num {
            font-family: var(--font-heading);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
            opacity: 0.7;
        }

        .feature-card h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }

        /* --------------------------------------------------------------------------
   BENEFITS SECTION
   -------------------------------------------------------------------------- */
        .benefits-section {
            background: var(--glass-bg);
            backdrop-filter: blur(8px);
            border-top: 1px solid rgba(255, 255, 255, 0.6);
            border-bottom: 1px solid rgba(255, 255, 255, 0.6);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
        }

        .benefit-item {
            padding: 36px 30px;
            border-right: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s;
        }

        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        /* Remove right border on last column */
        .benefit-item:nth-child(3n) {
            border-right: none;
        }

        /* Remove bottom border on last row (2 rows of 3) */
        .benefit-item:nth-last-child(-n+3):nth-child(3n+1),
        .benefit-item:nth-last-child(-n+3):nth-child(3n+2),
        .benefit-item:nth-last-child(-n+3) {
            border-bottom: none;
        }

        .benefit-num {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
            opacity: 0.12;
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: -2px;
        }

        .benefit-item h4 {
            font-size: 1.05rem;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .benefit-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* --------------------------------------------------------------------------
   PROCESS / WORKFLOW SECTION
   Vertical numbered timeline
   -------------------------------------------------------------------------- */
        .process-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
        }

        .process-list::before {
            content: '';
            position: absolute;
            left: 28px;
            top: 48px;
            bottom: 48px;
            width: 1px;
            background: var(--border);
        }

        .process-step {
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: 28px;
            align-items: start;
            padding: 36px 0;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .process-step:last-child {
            border-bottom: none;
        }

        .process-step-num {
            width: 56px;
            height: 56px;
            background: var(--glass-card);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 0.78rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            backdrop-filter: blur(4px);
        }

        .process-step-body h4 {
            font-size: 1.15rem;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
            margin-top: 14px;
        }

        .process-step-body p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 680px;
        }

        /* --------------------------------------------------------------------------
   WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .why-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 28px 24px;
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 18px;
            transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s;
        }

        .why-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        }

        .why-icon {
            width: 46px;
            height: 46px;
            background: var(--accent-glow);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--accent);
            font-size: 1.4rem;
        }

        .why-body h4 {
            font-size: 1.02rem;
            letter-spacing: -0.3px;
            margin-bottom: 8px;
        }

        .why-body p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* --------------------------------------------------------------------------
   FAQ ACCORDION (CSS-only with <details>/<summary>)
   -------------------------------------------------------------------------- */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-item summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 30px;
            font-family: var(--font-heading);
            font-size: 1.02rem;
            font-weight: 600;
            letter-spacing: -0.3px;
            color: var(--text-main);
            cursor: none;
            list-style: none;
            user-select: none;
            transition: background 0.25s;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.1rem;
            color: var(--text-muted);
            transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s, color 0.3s, border-color 0.3s;
        }

        .faq-item[open] .faq-icon {
            transform: rotate(45deg);
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        .faq-item[open] summary {
            background: rgba(255, 255, 255, 0.6);
        }

        .faq-answer {
            padding: 0 30px 28px;
            font-size: 0.97rem;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 780px;
        }

        /* --------------------------------------------------------------------------
   SERVICE FINAL CTA SECTION
   -------------------------------------------------------------------------- */
        .service-cta {
            background: var(--text-main);
            color: var(--bg);
            text-align: center;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .service-cta::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 85, 255, 0.25) 0%, transparent 65%);
            pointer-events: none;
        }

        .service-cta .section-title-lg {
            color: #fff;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-cta .section-desc {
            color: rgba(244, 244, 246, 0.65);
            margin-left: auto;
            margin-right: auto;
            max-width: 560px;
            margin-bottom: 44px;
        }

        .btn-white {
            background-color: #fff;
            color: var(--text-main);
            border: 1px solid #fff;
        }

        .btn-white::before {
            background: var(--accent);
        }

        .btn-white:hover {
            color: #fff;
            border-color: var(--accent);
        }

        .btn-white:hover::before {
            transform: translateY(-100%);
        }

        .cta-contact-note {
            margin-top: 20px;
            font-size: 0.85rem;
            color: rgba(244, 244, 246, 0.5);
            letter-spacing: 0.3px;
        }

        /* --------------------------------------------------------------------------
   PROCESS SECTION SPLIT LAYOUT (header left, steps right)
   -------------------------------------------------------------------------- */
        .process-layout {
            display: grid;
            grid-template-columns: 340px 1fr;
            gap: 80px;
            align-items: start;
        }

        .process-layout .section-header {
            position: sticky;
            top: 120px;
            margin-bottom: 0;
        }

        /* --------------------------------------------------------------------------
   BREADCRUMB BACK LINK (reused from project pages)
   -------------------------------------------------------------------------- */
        .service-back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-bottom: 40px;
            transition: color 0.3s, gap 0.3s;
        }

        .service-back-link:hover {
            color: var(--text-main);
            gap: 12px;
        }

        /* --------------------------------------------------------------------------
   SECTION ALTERNATING BG HELPER
   -------------------------------------------------------------------------- */
        .section-alt {
            background: rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(6px);
        }

        /* --------------------------------------------------------------------------
   WHY SECTION — 5-item odd-column layout fix
   -------------------------------------------------------------------------- */
        .why-grid-5 .why-item:last-child:nth-child(odd) {
            grid-column: 1 / -1;
            max-width: 50%;
            margin: 0 auto;
            width: 100%;
        }

        /* --------------------------------------------------------------------------
   RESPONSIVE OVERRIDES FOR SERVICE PAGES
   -------------------------------------------------------------------------- */
        @media (max-width: 1024px) {
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .features-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefit-item:nth-child(2n) {
                border-right: none;
            }

            .benefit-item:nth-last-child(-n+2) {
                border-bottom: none;
            }

            .benefit-item:nth-child(3n) {
                border-right: 1px solid var(--border);
            }

            .benefit-item:nth-child(2n) {
                border-right: none;
            }

            .process-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .process-layout .section-header {
                position: static;
            }

            .process-list::before {
                display: none;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .why-grid-5 .why-item:last-child:nth-child(odd) {
                grid-column: auto;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .service-hero {
                padding-top: 140px;
                padding-bottom: 80px;
            }

            .service-hero-title {
                letter-spacing: -1px;
            }

            .service-hero-sub {
                font-size: 1rem;
            }

            .btn-group {
                justify-content: center;
            }

            .features-grid-3 {
                grid-template-columns: 1fr;
            }

            .features-grid-2 {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                border-radius: 16px;
            }

            .benefit-item {
                border-right: none !important;
            }

            .benefit-item:last-child {
                border-bottom: none;
            }

            .process-step {
                grid-template-columns: 48px 1fr;
                gap: 16px;
            }

            .process-step-num {
                width: 44px;
                height: 44px;
                font-size: 0.7rem;
            }

            .faq-item summary {
                padding: 20px;
            }

            .faq-answer {
                padding: 0 20px 20px;
            }

            .service-cta {
                padding: 80px 0;
            }

            .section-title-lg {
                letter-spacing: -0.5px;
            }

            .who-card {
                padding: 24px;
            }

            .overview-grid {
                gap: 30px;
            }
        }

        /* ==========================================================================
   PEAK WEB CRAFT — ADDITIONAL PAGES CSS
   Append this block to the bottom of the existing style.css file.
   Do NOT remove or overwrite existing rules.
   ========================================================================== */


        /* --------------------------------------------------------------------------
   CONTACT FORM
   -------------------------------------------------------------------------- */
        .contact-form-section {
            padding: 80px 0 120px;
        }

        .contact-page-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 80px;
            align-items: start;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--text-muted);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            font-family: var(--font-body);
            font-size: 0.97rem;
            color: var(--text-main);
            transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(85, 85, 85, 0.45);
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 0 4px var(--accent-glow);
        }

        .form-input.is-error,
        .form-textarea.is-error {
            border-color: #ef4444;
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
        }

        .form-textarea {
            min-height: 168px;
            resize: vertical;
            line-height: 1.65;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-submit {
            margin-top: 6px;
            width: 100%;
            justify-content: center;
        }

        .form-notice {
            margin-top: 10px;
            display: none;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-notice.success {
            display: flex;
            background: rgba(34, 197, 94, 0.08);
            border: 1px solid rgba(34, 197, 94, 0.22);
            color: #15803d;
        }

        .form-notice.error {
            display: flex;
            background: rgba(239, 68, 68, 0.07);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #dc2626;
        }

        /* Contact Info Sidebar */
        .contact-info-block {
            position: sticky;
            top: 120px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-info-card {
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            padding: 36px;
        }

        .contact-info-card h3 {
            font-size: 1.25rem;
            letter-spacing: -0.4px;
            margin-bottom: 28px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
        }

        .contact-info-item:last-child {
            margin-bottom: 0;
        }

        .contact-info-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--accent-glow);
            border: 1px solid rgba(0, 85, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--accent);
            flex-shrink: 0;
        }

        .contact-info-text label {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .contact-info-text a,
        .contact-info-text span {
            font-size: 0.96rem;
            color: var(--text-main);
            font-weight: 500;
            transition: color 0.3s;
            text-decoration: none;
        }

        .contact-info-text a:hover {
            color: var(--accent);
        }

        .contact-response-note {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: rgba(34, 197, 94, 0.06);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 14px;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .contact-response-note i {
            color: #22c55e;
            font-size: 1.1rem;
            flex-shrink: 0;
        }


        /* --------------------------------------------------------------------------
   ABOUT PAGE — STORY / MISSION LAYOUT
   -------------------------------------------------------------------------- */
        .about-story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-story-visual {
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 28px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .about-story-visual-inner {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 85, 255, 0.06) 0%, rgba(0, 85, 255, 0.02) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 12px;
            padding: 40px;
        }

        .about-story-stat {
            text-align: center;
            padding: 24px 32px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            width: 100%;
        }

        .about-story-stat strong {
            display: block;
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -2px;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 6px;
        }

        .about-story-stat span {
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
        }

        .about-story-text p {
            font-size: 1.06rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-story-text p:last-child {
            margin-bottom: 0;
        }

        /* Mission / Vision / Values cards */
        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .mvv-card {
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            padding: 36px 28px;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
        }

        .mvv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
        }

        .mvv-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--accent-glow);
            border: 1px solid rgba(0, 85, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .mvv-card h3 {
            font-size: 1.2rem;
            letter-spacing: -0.3px;
            margin-bottom: 12px;
        }

        .mvv-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .team-card {
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s, border-color 0.4s;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.07);
            border-color: rgba(0, 85, 255, 0.25);
        }

        .team-card-avatar {
            width: 100%;
            aspect-ratio: 4 / 3;
            background: linear-gradient(135deg, rgba(0, 85, 255, 0.07) 0%, rgba(0, 85, 255, 0.02) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: var(--accent);
            border-bottom: 1px solid var(--border);
        }

        .team-card-body {
            padding: 24px 26px;
        }

        .team-card-name {
            font-size: 1.15rem;
            letter-spacing: -0.3px;
            margin-bottom: 4px;
        }

        .team-card-role {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .team-card-bio {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.65;
        }


        /* --------------------------------------------------------------------------
   CASE STUDIES — IMAGE PORTFOLIO CARDS
   -------------------------------------------------------------------------- */
        .cs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-top: 50px;
        }

        .cs-card {
            display: flex;
            flex-direction: column;
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text-main);
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s, border-color 0.4s;
        }

        .cs-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 54px rgba(0, 0, 0, 0.09);
            border-color: rgba(0, 85, 255, 0.3);
        }

        .cs-card-img-wrap {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, rgba(0, 85, 255, 0.06) 0%, rgba(0, 85, 255, 0.02) 100%);
            border-bottom: 1px solid var(--border);
        }

        .cs-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .cs-card:hover .cs-card-img {
            transform: scale(1.06);
        }

        .cs-card-img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent);
            opacity: 0.18;
            letter-spacing: -2px;
            user-select: none;
        }

        .cs-card-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(17, 17, 17, 0.04) 100%);
            pointer-events: none;
        }

        .cs-card-body {
            padding: 28px 30px 30px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .cs-card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
        }

        .cs-card-title {
            font-size: 1.5rem;
            letter-spacing: -0.4px;
            margin-bottom: 10px;
            transition: color 0.3s;
            line-height: 1.2;
        }

        .cs-card:hover .cs-card-title {
            color: var(--accent);
        }

        .cs-card-desc {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 20px;
        }

        .cs-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            gap: 12px;
        }

        .cs-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .cs-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.83rem;
            font-weight: 700;
            color: var(--accent);
            transition: gap 0.3s;
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: 0.2px;
        }

        .cs-card:hover .cs-card-cta {
            gap: 10px;
        }

        /* Featured (wide) case study card */
        .cs-card.cs-card-featured {
            grid-column: 1 / -1;
            flex-direction: row;
            align-items: stretch;
        }

        .cs-card-featured .cs-card-img-wrap {
            aspect-ratio: unset;
            width: 48%;
            flex-shrink: 0;
            border-bottom: none;
            border-right: 1px solid var(--border);
        }

        .cs-card-featured .cs-card-body {
            padding: 40px;
            justify-content: center;
        }

        .cs-card-featured .cs-card-title {
            font-size: 2rem;
            letter-spacing: -0.7px;
        }

        .cs-card-featured .cs-card-desc {
            font-size: 0.97rem;
        }

        /* Filter bar for case studies */
        .cs-filter-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .cs-filter-btn {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border: 1px solid var(--border);
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.5);
            cursor: none;
            transition: border-color 0.3s, color 0.3s, background 0.3s;
            letter-spacing: 0.2px;
        }

        .cs-filter-btn:hover,
        .cs-filter-btn.active {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-glow);
        }


        /* --------------------------------------------------------------------------
   FAQ PAGE — CATEGORY GROUPS
   -------------------------------------------------------------------------- */
        .faq-category {
            margin-bottom: 56px;
        }

        .faq-category:last-child {
            margin-bottom: 0;
        }

        .faq-category-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .faq-category-label i {
            font-size: 1rem;
        }

        .faq-category-title {
            font-family: var(--font-heading);
            font-size: 1.55rem;
            letter-spacing: -0.5px;
            margin-bottom: 24px;
            color: var(--text-main);
        }

        /* FAQ page CTA strip */
        .faq-cta-strip {
            background: var(--glass-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            padding: 44px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            margin-top: 80px;
        }

        .faq-cta-strip h3 {
            font-size: 1.5rem;
            letter-spacing: -0.4px;
            margin-bottom: 8px;
        }

        .faq-cta-strip p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .faq-cta-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }


        /* --------------------------------------------------------------------------
   INNER PAGE NAV ACTIVE STATE
   -------------------------------------------------------------------------- */
        .service-nav .nav-links a.nav-active {
            color: var(--text-main);
            font-weight: 600;
        }


        /* --------------------------------------------------------------------------
   RESPONSIVE — NEW PAGES
   -------------------------------------------------------------------------- */
        @media (max-width: 1024px) {

            .contact-page-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info-block {
                position: static;
            }

            .mvv-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-story-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cs-card.cs-card-featured {
                flex-direction: column;
            }

            .cs-card-featured .cs-card-img-wrap {
                width: 100%;
                aspect-ratio: 16 / 9;
                border-right: none;
                border-bottom: 1px solid var(--border);
            }

            .faq-cta-strip {
                flex-direction: column;
                align-items: flex-start;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {

            .form-row {
                grid-template-columns: 1fr;
            }

            .mvv-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .cs-grid {
                grid-template-columns: 1fr;
            }

            .cs-card-featured .cs-card-body {
                padding: 28px 24px;
            }

            .cs-card-featured .cs-card-title {
                font-size: 1.5rem;
            }

            .contact-info-card {
                padding: 28px 24px;
            }

            .faq-cta-strip {
                padding: 32px 28px;
            }

            .faq-cta-actions {
                flex-direction: column;
                width: 100%;
            }

            .faq-cta-actions .btn {
                width: 100%;
                justify-content: center;
            }
        }