        /* ========== RESET & BASE ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --deep-violet: #3b1a7e;
            --electric-purple: #5B2D9E;
            --purple-glow: rgba(91, 45, 158, 0.15);
            --bg-dark: #fafbfc;
            --bg-darker: #f1f5f9;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(0, 0, 0, 0.08);
            --nav-height: 64px;
            --ease-expo: cubic-bezier(0.85, 0, 0, 1);
            --duration: 550ms;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Accessibility: focus styles */
        *:focus-visible {
            outline: 2px solid var(--electric-purple);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Accessibility: reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Skip to main content */
        .skip-to-main {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--electric-purple);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 10001;
            transition: top 0.3s var(--ease-expo);
            font-family: 'Sora', sans-serif;
        }

        .skip-to-main:focus {
            top: 0;
        }

        /* ========== LOADING OVERLAY ========== */
        .loading-screen {
            position: fixed;
            inset: 0;
            background: #fff;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s cubic-bezier(0.85, 0, 0, 1), visibility 0.6s cubic-bezier(0.85, 0, 0, 1);
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loading-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .loading-logo {
            width: 48px;
            height: 48px;
            animation: loading-pulse 1.5s ease-in-out infinite;
        }

        @keyframes loading-pulse {
            0%, 100% { opacity: 0.4; transform: scale(0.95); }
            50% { opacity: 1; transform: scale(1); }
        }

        .loading-bar {
            width: 120px;
            height: 2px;
            background: rgba(0,0,0,0.08);
            border-radius: 1px;
            overflow: hidden;
        }

        .loading-bar-fill {
            width: 0;
            height: 100%;
            background: var(--electric-purple);
            border-radius: 1px;
            animation: loading-fill 1.8s ease-out forwards;
        }

        @keyframes loading-fill {
            to { width: 100%; }
        }

        /* ========== CUSTOM CURSOR ========== */
        .custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9999;
            display: none;
        }

        @media (hover: hover) and (pointer: fine) {
            html { cursor: none; }
            a, button, input, textarea, .svc-bento-card, .process-card { cursor: none; }
            .custom-cursor { display: block; }
        }

        .cursor-dot {
            width: 6px;
            height: 6px;
            background: var(--electric-purple);
            border-radius: 50%;
            position: absolute;
            top: -3px;
            left: -3px;
            transition: transform 0.15s ease;
        }

        .cursor-ring {
            width: 36px;
            height: 36px;
            border: 1.5px solid rgba(91, 45, 158, 0.4);
            border-radius: 50%;
            position: absolute;
            top: -18px;
            left: -18px;
            transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, border-color 0.3s ease;
        }

        .custom-cursor.hovering .cursor-ring {
            width: 56px;
            height: 56px;
            top: -28px;
            left: -28px;
            border-color: rgba(167, 139, 250, 0.6);
        }

        .custom-cursor.hovering .cursor-dot {
            transform: scale(0);
        }

        /* ========== TOP PROGRESS BAR ========== */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: var(--electric-purple);
            width: 0%;
            z-index: 1002;
            transition: width 0.15s linear;
        }

        /* ========== NAVBAR ========== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--nav-height);
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--glass-border);
            transition: box-shadow var(--duration) var(--ease-expo), background var(--duration) var(--ease-expo);
        }

        nav.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.96);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo img {
            height: 30px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            font-family: 'Sora', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #334155;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            font-family: 'Sora', sans-serif;
            opacity: 0.8;
            transition: opacity 0.2s var(--ease-expo), color 0.2s var(--ease-expo);
            position: relative;
        }

        .nav-links a:hover {
            opacity: 1;
            color: var(--electric-purple);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--electric-purple);
            transition: width 0.3s var(--ease-expo);
            border-radius: 1px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.get-started {
            padding: 0.45rem 1rem;
            color: #334155;
            font-weight: 600;
            opacity: 1;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: 1.5px solid rgba(15, 23, 42, 0.15);
            border-radius: 6px;
        }

        .nav-links a.get-started::after {
            display: none;
        }

        .nav-links a.get-started svg {
            height: 14px;
            width: 14px;
            transition: transform 0.3s var(--ease-expo);
        }

        .nav-links a.get-started:hover svg {
            transform: translateX(3px);
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 2px;
            background: #334155;
            transition: all 0.3s var(--ease-expo);
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ========== SCROLL-SNAP CONTAINER ========== */
        .snap-container {
            height: 100vh;
            height: 100dvh;
            overflow-y: auto;
            scroll-behavior: smooth;
        }

        /* ========== SECTION SHELLS ========== */
        .snap-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .snap-section .section-inner {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            position: relative;
            z-index: 1;
        }

        /* Section placeholder labels */
        .section-placeholder {
            text-align: center;
        }

        .section-placeholder h2 {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-placeholder .section-label {
            display: inline-block;
            font-family: "Bitcount Prop Single", system-ui;
            font-optical-sizing: auto;
            font-weight: 600;
            font-variation-settings: "slnt" 0, "CRSV" 0.5, "ELSH" 0, "ELXP" 0;
            font-size: 0.8rem;
            color: var(--electric-purple);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            padding: 0.4rem 1rem;
            background: rgba(91, 45, 158, 0.08);
            border: 1px solid rgba(91, 45, 158, 0.15);
            border-radius: 20px;
            margin-bottom: 1.5rem;
        }

        .section-placeholder p {
            font-family: 'Sora', sans-serif;
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        /* ========== HERO SECTION — Split Layout ========== */
        #hero {
            background: #fff;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            min-height: 100vh;
            padding-top: var(--nav-height);
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .hero-headline {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2.2rem, 4.5vw, 3.6rem);
            font-weight: 600;
            line-height: 1.1;
            color: var(--text-primary);
            letter-spacing: -0.03em;
        }

        .hero-em {
            font-family: 'Lora', serif;
            font-style: italic;
            font-weight: 400;
            color: var(--electric-purple);
        }

        .hero-subheadline {
            font-family: 'Sora', sans-serif;
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            font-weight: 400;
            color: var(--text-secondary);
            max-width: 460px;
            line-height: 1.7;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .hero-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            border: none;
            border-radius: 6px;
            font-family: 'Sora', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            background: var(--electric-purple);
            cursor: pointer;
            transition: transform 0.5s var(--ease-expo), box-shadow 0.5s var(--ease-expo), background 0.5s var(--ease-expo);
        }

        .hero-btn-primary:hover {
            background: var(--deep-violet);
            box-shadow: 0 4px 12px rgba(91,45,158,0.2);
        }

        .hero-btn-primary:active {
            transform: scale(0.97);
        }

        .hero-btn-primary svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s var(--ease-expo);
        }

        .hero-btn-primary:hover svg {
            transform: translateX(3px);
        }

        .hero-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            border: 1.5px solid rgba(15, 23, 42, 0.15);
            border-radius: 6px;
            font-family: 'Sora', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            background: transparent;
            cursor: pointer;
            transition: border-color 0.3s var(--ease-expo);
            text-decoration: none;
        }

        .hero-btn-secondary:hover {
            border-color: var(--electric-purple);
        }

        .hero-visual {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            aspect-ratio: 4/3;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ========== SERVICES SECTION ========== */
        #services {
            background: #080816;
            perspective: 1200px;
        }

        .services-layout {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            padding: calc(var(--nav-height) + 3rem) 0 3rem;
            justify-content: center;
            gap: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .services-header {
            text-align: center;
            max-width: 700px;
            position: relative;
            z-index: 2;
        }

        .services-tag {
            display: inline-block;
            font-family: 'Sora', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #a78bfa;
            margin-bottom: 0.75rem;
        }

        .services-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(1.6rem, 3.2vw, 2.4rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #fff;
        }

        .services-title .svc-gradient {
            color: #a78bfa;
        }

        .services-subtitle {
            font-family: 'Sora', sans-serif;
            font-size: 0.95rem;
            color: #94a3b8;
            margin-top: 0.75rem;
            line-height: 1.6;
        }

        /* ===== Bento Grid ===== */
        .svc-bento {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: minmax(220px, auto);
            gap: 1.25rem;
            width: 100%;
            max-width: 1140px;
            position: relative;
            z-index: 2;
            perspective: 1000px;
        }

        /* Featured cards: span 6 cols */
        .svc-bento-card.featured {
            grid-column: span 6;
            grid-row: span 1;
            min-height: 320px;
        }

        /* Standard cards: span 4 cols */
        .svc-bento-card.standard {
            grid-column: span 4;
            grid-row: span 1;
            min-height: 240px;
        }

        .svc-bento-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            transform-style: preserve-3d;
            transition: transform var(--duration) var(--ease-expo), box-shadow var(--duration) var(--ease-expo);
        }

        .svc-bento-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            pointer-events: none;
            transition: border-color var(--duration) var(--ease-expo);
        }

        .svc-bento-card:hover::before {
            border-color: rgba(255, 255, 255, 0.12);
        }

        .svc-bento-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
        }

        /* Card background: dark glass */
        .svc-bento-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(15, 15, 30, 0.95), rgba(8, 8, 22, 0.98));
            z-index: 0;
        }

        /* Decorative giant number — uses Bitcount */
        .svc-bento-num {
            position: absolute;
            top: -0.15rem;
            right: 1.2rem;
            font-family: "Bitcount Prop Single", system-ui;
            font-optical-sizing: auto;
            font-weight: 900;
            font-style: normal;
            font-variation-settings: "slnt" 0, "CRSV" 0.5, "ELSH" 0, "ELXP" 0;
            font-size: 7rem;
            line-height: 1;
            color: rgba(139, 92, 246, 0.06);
            z-index: 1;
            user-select: none;
            pointer-events: none;
            transition: color 0.5s var(--ease-expo);
        }

        .svc-bento-card:hover .svc-bento-num {
            color: rgba(139, 92, 246, 0.12);
        }

        .svc-bento-card.featured .svc-bento-num {
            font-size: 10rem;
            right: 1.5rem;
        }

        /* Lottie container */
        .svc-bento-lottie {
            position: absolute;
            z-index: 1;
            opacity: 0.35;
            transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
        }

        .svc-bento-card:hover .svc-bento-lottie {
            opacity: 0.6;
            transform: scale(1.08);
        }

        /* Featured: Lottie top-right area */
        .svc-bento-card.featured .svc-bento-lottie {
            top: 1.5rem;
            right: 2rem;
            width: 160px;
            height: 160px;
        }

        /* Standard: Lottie top-left, smaller */
        .svc-bento-card.standard .svc-bento-lottie {
            top: 1.2rem;
            left: unset;
            right: 1.2rem;
            width: 80px;
            height: 80px;
        }

        /* Text content */
        .svc-bento-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .svc-bento-label {
            font-family: "Bitcount Prop Single", system-ui;
            font-optical-sizing: auto;
            font-weight: 500;
            font-variation-settings: "slnt" 0, "CRSV" 0.5, "ELSH" 0, "ELXP" 0;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #a78bfa;
        }

        .svc-bento-title {
            font-family: 'Sora', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #f1f5f9;
            line-height: 1.3;
        }

        .svc-bento-card.featured .svc-bento-title {
            font-size: 1.5rem;
        }

        .svc-bento-desc {
            font-family: 'Sora', sans-serif;
            font-size: 0.88rem;
            color: #94a3b8;
            line-height: 1.7;
            max-width: 420px;
            transition: color var(--duration) var(--ease-expo);
        }

        .svc-bento-card:hover .svc-bento-desc {
            color: #cbd5e1;
        }

        .svc-bento-card.standard .svc-bento-desc {
            font-size: 0.82rem;
            max-width: 100%;
        }

        /* Arrow link */
        .svc-bento-arrow {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: background var(--duration) var(--ease-expo), border-color var(--duration) var(--ease-expo), transform 0.5s var(--ease-expo);
        }

        .svc-bento-arrow svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: #94a3b8;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s var(--ease-expo), transform 0.3s var(--ease-expo);
        }

        .svc-bento-card:hover .svc-bento-arrow {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.12);
            transform: scale(1.1);
        }

        .svc-bento-card:hover .svc-bento-arrow svg {
            stroke: #e2e8f0;
            transform: translateX(2px);
        }

        /* Ambient glow on hover */
        .svc-bento-card::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 20px;
            background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.12), transparent 40%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 0;
        }

        .svc-bento-card:hover::after {
            opacity: 1;
        }


        /* ========== PROCESS — Cinematic Gallery ========== */
        #approach .section-inner {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .process-showcase {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: calc(var(--nav-height) + 2rem) 0 2rem;
            gap: 1.5rem;
        }

        .process-header {
            text-align: center;
        }

        .process-tag {
            font-family: 'Sora', sans-serif;
            font-weight: 500;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--electric-purple);
            display: block;
            margin-bottom: 0.5rem;
        }

        .process-title {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            color: #fff;
            text-align: center;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        /* Progress bar connecting the steps */
        .process-progress {
            position: relative;
            width: 60%;
            max-width: 500px;
            height: 2px;
            margin: 0 auto;
        }

        .process-progress-track {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px;
        }

        .process-progress-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--electric-purple), #a78bfa);
            border-radius: 2px;
            transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: 0 0 12px rgba(91, 45, 158, 0.4);
        }

        .process-progress-dots {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .progress-dot.active {
            background: var(--electric-purple);
            border-color: var(--electric-purple);
            box-shadow: 0 0 16px rgba(91, 45, 158, 0.6);
        }

        .progress-dot.active::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1.5px solid rgba(91, 45, 158, 0.3);
            animation: dot-ring-pulse 2s ease-in-out infinite;
        }

        @keyframes dot-ring-pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.6); opacity: 0; }
        }

        #approach {
            align-items: stretch;
        }

        /* Cards grid */
        .process-cards {
            display: flex;
            gap: 1rem;
            flex: 1;
            min-height: 280px;
        }

        .process-card {
            flex: 1;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .process-card:hover {
            flex: 1.3;
        }

        .process-card-img {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .process-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .process-card:hover .process-card-img img {
            transform: scale(1.08);
        }

        .process-card-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(
                to top,
                rgba(6, 6, 20, 0.92) 0%,
                rgba(6, 6, 20, 0.6) 35%,
                rgba(6, 6, 20, 0.15) 65%,
                rgba(6, 6, 20, 0.05) 100%
            );
            transition: background 0.5s ease;
        }

        .process-card:hover .process-card-overlay {
            background: linear-gradient(
                to top,
                rgba(6, 6, 20, 0.85) 0%,
                rgba(6, 6, 20, 0.4) 35%,
                rgba(6, 6, 20, 0.05) 65%,
                transparent 100%
            );
        }

        .process-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .process-card-num {
            font-family: 'Bitcount Prop Single', monospace;
            font-size: 2.5rem;
            color: rgba(91, 45, 158, 0.4);
            line-height: 1;
            transition: color 0.4s ease;
        }

        .process-card:hover .process-card-num {
            color: rgba(167, 139, 250, 0.7);
        }

        .process-card-name {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            color: #fff;
            letter-spacing: -0.01em;
        }

        .process-card-desc {
            font-family: 'Sora', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                        opacity 0.4s ease 0.1s;
        }

        .process-card:hover .process-card-desc {
            max-height: 80px;
            opacity: 1;
        }

        /* Subtle glow border on hover */
        .process-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            border: 1px solid rgba(91, 45, 158, 0);
            z-index: 3;
            pointer-events: none;
            transition: border-color 0.4s ease;
        }

        .process-card:hover::before {
            border-color: rgba(91, 45, 158, 0.4);
        }

        /* ========== IMPACT — Image + Story ========== */
        .impact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            padding: calc(var(--nav-height) + 3rem) 0 3rem;
            align-items: center;
            gap: 4rem;
        }

        .impact-visual {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 3/4;
        }

        .impact-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .impact-content {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .impact-tag {
            display: inline-block;
            font-family: "Bitcount Prop Single", system-ui;
            font-weight: 600;
            font-size: 0.75rem;
            color: #a78bfa;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-variation-settings: "slnt" 0, "CRSV" 0.5, "ELSH" 0, "ELXP" 0;
        }

        .impact-headline {
            font-family: 'Sora', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .impact-body {
            font-family: 'Sora', sans-serif;
            font-size: 1rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            max-width: 440px;
        }

        .impact-numbers {
            display: flex;
            gap: 3rem;
            margin-top: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .impact-num-item {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .impact-num {
            font-family: "Bitcount Prop Single", system-ui;
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 700;
            color: #fff;
            line-height: 1;
            font-variation-settings: "slnt" 0, "CRSV" 0.5, "ELSH" 0, "ELXP" 0;
        }

        .impact-num-label {
            font-family: 'Sora', sans-serif;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.45);
            text-transform: lowercase;
        }

        .impact-note {
            font-family: 'Lora', serif;
            font-size: 0.95rem;
            font-style: italic;
            color: rgba(255,255,255,0.4);
            margin-top: 0.5rem;
        }

        /* ========== SELECTED WORK ========== */
        #selected-work {
            background: #0a0a14;
        }

        .work-showcase {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: calc(var(--nav-height) + 3rem) 5% 3rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .work-header {
            margin-bottom: 3rem;
        }

        .work-tag {
            display: inline-block;
            font-family: 'Sora', sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--electric-purple);
            margin-bottom: 1rem;
        }

        .work-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: #f1f5f9;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .work-card {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: transform 0.4s ease, border-color 0.4s ease;
        }

        .work-card:hover {
            transform: translateY(-6px);
            border-color: rgba(91, 45, 158, 0.3);
        }

        .work-card-visual {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
        }

        .work-card-bg {
            width: 100%;
            height: 100%;
            transition: transform 0.6s ease;
        }

        .work-card:hover .work-card-bg {
            transform: scale(1.05);
        }

        .work-card-label {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
        }

        .work-card-info {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .work-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .work-card-tags span {
            font-family: 'Sora', sans-serif;
            font-size: 0.62rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #a78bfa;
            background: rgba(91, 45, 158, 0.1);
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
        }

        .work-card-name {
            font-family: 'Sora', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #e2e8f0;
            line-height: 1.3;
        }

        .work-card-result {
            font-family: 'Sora', sans-serif;
            font-size: 0.85rem;
            color: #94a3b8;
            line-height: 1.6;
        }

        /* ========== BLOG / INSIGHTS ========== */
        #blog {
            background: var(--bg-dark);
        }

        .blog-showcase {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: calc(var(--nav-height) + 3rem) 5% 3rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .blog-header {
            margin-bottom: 3rem;
        }

        .blog-tag {
            display: inline-block;
            font-family: 'Sora', sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--electric-purple);
            margin-bottom: 1rem;
        }

        .blog-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .blog-card {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            text-decoration: none;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            background: #ffffff;
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
            border-color: rgba(91, 45, 158, 0.2);
        }

        .blog-card-category {
            font-family: 'Sora', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--electric-purple);
        }

        .blog-card-title {
            font-family: 'Sora', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.35;
        }

        .blog-card-excerpt {
            font-family: 'Sora', sans-serif;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .blog-card-date {
            font-family: 'Sora', sans-serif;
            font-size: 0.75rem;
            color: #94a3b8;
            margin-top: auto;
        }

        /* ========== WHY US SECTION ========== */
        .whyus-layout {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            padding: calc(var(--nav-height) + 3rem) 0 3rem;
            justify-content: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .whyus-header {
            margin-bottom: 2.5rem;
        }

        .whyus-tag {
            display: inline-block;
            font-family: "Bitcount Prop Single", system-ui;
            font-weight: 600;
            font-size: 0.75rem;
            color: var(--electric-purple);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.8rem;
            font-variation-settings: "slnt" 0, "CRSV" 0.5, "ELSH" 0, "ELXP" 0;
        }

        .whyus-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(1.5rem, 3.5vw, 2.4rem);
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .whyus-list {
            display: flex;
            flex-direction: column;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .whyus-item {
            display: grid;
            grid-template-columns: 56px 1fr;
            gap: 1.5rem;
            align-items: start;
            padding: 2rem 0;
            border-bottom: none;
            background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1));
            background-size: 100% 1px;
            background-position: bottom left;
            background-repeat: no-repeat;
        }

        .whyus-item-number {
            font-family: "Bitcount Prop Single", system-ui;
            font-size: clamp(2.5rem, 4vw, 3.2rem);
            font-weight: 400;
            color: var(--electric-purple);
            line-height: 1;
            font-variation-settings: "slnt" 0, "CRSV" 0.5, "ELSH" 0, "ELXP" 0;
            opacity: 0.65;
        }

        .whyus-item-content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .whyus-item-headline {
            font-family: 'Lora', serif;
            font-size: clamp(1.1rem, 2.2vw, 1.4rem);
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .whyus-item-desc {
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.65;
            max-width: 560px;
        }


        /* ========== CTA SECTION ========== */
        .cta-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 60vh;
            padding: 4rem 2rem;
            position: relative;
            z-index: 1;
        }

        .cta-tag {
            display: inline-block;
            font-family: "Bitcount Prop Single", system-ui;
            font-weight: 600;
            font-size: 0.75rem;
            color: #a78bfa;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
            font-variation-settings: "slnt" 0, "CRSV" 0.5, "ELSH" 0, "ELXP" 0;
        }

        .cta-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 600;
            color: #fff;
            max-width: 700px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .cta-desc {
            font-family: 'Sora', sans-serif;
            font-size: 1.1rem;
            color: rgba(255,255,255,0.6);
            max-width: 550px;
            margin-top: 1rem;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 6px;
            font-family: 'Sora', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            background: var(--electric-purple);
            cursor: pointer;
            transition: transform 0.5s var(--ease-expo), box-shadow 0.5s var(--ease-expo), background 0.5s var(--ease-expo);
            text-decoration: none;
        }

        .cta-btn-primary:hover {
            background: var(--deep-violet);
            box-shadow: 0 4px 16px rgba(91, 45, 158, 0.2);
            transform: translateY(-1px);
        }

        .cta-btn-primary svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s var(--ease-expo);
        }

        .cta-btn-primary:hover svg {
            transform: translateX(3px);
        }

        .cta-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            border: 1.5px solid rgba(255,255,255,0.3);
            border-radius: 6px;
            font-family: 'Sora', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            background: transparent;
            cursor: pointer;
            transition: opacity 0.3s var(--ease-expo), border-color 0.3s var(--ease-expo);
            text-decoration: none;
        }

        .cta-btn-secondary:hover {
            border-color: rgba(255,255,255,0.6);
        }

        /* ========== CONTACT FORM ========== */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            max-width: 520px;
            margin-top: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            transition: border-color 0.3s ease, background 0.3s ease;
            outline: none;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255,255,255,0.35);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--electric-purple);
            background: rgba(255,255,255,0.08);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .contact-form .cta-btn-primary {
            align-self: center;
            border: none;
            font-family: 'Sora', sans-serif;
        }

        .form-status {
            text-align: center;
            font-family: 'Sora', sans-serif;
            font-size: 0.85rem;
            min-height: 1.2em;
        }

        .form-status.success { color: #4ade80; }
        .form-status.error { color: #f87171; }

        .cta-alt {
            font-family: 'Sora', sans-serif;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
            margin-top: 1rem;
        }

        .cta-email-link {
            color: #a78bfa;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .cta-email-link:hover {
            color: #c4b5fd;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 3rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .footer-logo img {
            width: 32px;
            height: 32px;
        }

        .footer-logo span {
            font-family: 'Sora', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
        }

        .footer-tagline {
            font-family: 'Sora', sans-serif;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.5;
        }

        .footer-links {
            display: flex;
            gap: 3rem;
        }

        .footer-col h4 {
            font-family: 'Sora', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.8rem;
        }

        .footer-col a {
            display: block;
            font-family: 'Sora', sans-serif;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            padding: 0.3rem 0;
            transition: color 0.2s var(--ease-expo);
        }

        .footer-col a:hover {
            color: #a78bfa;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.06);
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .footer-copyright {
            font-family: 'Sora', sans-serif;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.4);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.2s var(--ease-expo), background 0.2s var(--ease-expo);
            text-decoration: none;
        }

        .footer-social a:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }

        .footer-social svg {
            width: 16px;
            height: 16px;
            fill: rgba(255,255,255,0.6);
        }

        /* Section backgrounds */
        #approach { background: #0a0a1a; }
        #impact { background: #080816; }
        #why-us { background: var(--bg-dark); }
        #cta-footer { background: #080816; min-height: auto !important; position: relative; }

        #cta-footer .cta-section {
            background: linear-gradient(180deg, rgba(8,8,22,0.85) 0%, rgba(8,8,22,0.7) 50%, rgba(8,8,22,0.9) 100%),
                        url('cta-bg.jpg') center/cover no-repeat;
        }

        /* Subtle gradient overlays */
        .snap-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        #hero::before {
            display: none;
        }

        #approach::before {
            display: none;
        }

        #impact::before {
            background: radial-gradient(circle at 50% 50%, rgba(91, 45, 158, 0.04) 0%, transparent 60%);
        }

        #why-us::before {
            background: radial-gradient(circle at 80% 40%, rgba(91, 45, 158, 0.03) 0%, transparent 50%);
        }

        #cta-footer::before {
            background: radial-gradient(circle at 50% 50%, rgba(91, 45, 158, 0.05) 0%, transparent 60%);
        }

        /* Swipe dots — hidden on desktop */
        .svc-swipe-dots {
            display: none;
        }

        /* ========== RESPONSIVE — IMMERSIVE MOBILE ========== */
        @media (max-width: 768px) {

            /* ===== FOUNDATION ===== */
            .snap-section {
                min-height: auto;
                overflow: visible;
            }

            .snap-section .section-inner {
                padding: 0;
            }

            /* Hide desktop cursor on mobile */
            .custom-cursor { display: none !important; }

            /* ===== HERO: FULL-SCREEN CINEMATIC POSTER ===== */
            #hero {
                min-height: 100vh;
                min-height: 100dvh;
            }

            #hero .section-inner {
                padding: 0;
            }

            .hero-layout {
                display: flex;
                flex-direction: column;
                min-height: 100vh;
                min-height: 100dvh;
                padding: 0;
                gap: 0;
                position: relative;
            }

            .hero-visual {
                position: absolute;
                inset: 0;
                aspect-ratio: unset;
                border-radius: 0;
                z-index: 0;
                width: 100%;
                height: 100%;
            }

            .hero-visual .hero-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
            }

            .hero-visual::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    to top,
                    rgba(0,0,0,0.82) 0%,
                    rgba(0,0,0,0.4) 30%,
                    rgba(0,0,0,0.08) 55%,
                    transparent 100%
                );
                z-index: 1;
            }

            .hero-content {
                position: relative;
                z-index: 2;
                margin-top: auto;
                padding: 0 7% 4.5rem;
                gap: 1rem;
                align-items: flex-start;
            }

            .hero-headline {
                font-size: clamp(2.4rem, 11vw, 3.2rem);
                color: #fff;
                text-shadow: 0 2px 30px rgba(0,0,0,0.4);
                text-align: left;
                line-height: 1.08;
            }

            .hero-em {
                color: #c4b5fd;
            }

            .hero-subheadline {
                color: rgba(255,255,255,0.75);
                font-size: 0.92rem;
                max-width: 340px;
                text-shadow: 0 1px 8px rgba(0,0,0,0.3);
                text-align: left;
            }

            .hero-cta-group {
                flex-direction: row;
                gap: 0.75rem;
            }

            .hero-btn-primary {
                background: #fff;
                color: var(--electric-purple);
                padding: 0.85rem 1.6rem;
                min-height: 48px;
                font-size: 0.85rem;
                border-radius: 50px;
                font-weight: 700;
            }

            .hero-btn-primary:hover {
                background: #f0e6ff;
            }

            .hero-btn-primary svg {
                stroke: var(--electric-purple);
            }

            .hero-btn-secondary {
                border-color: rgba(255,255,255,0.35);
                color: #fff;
                padding: 0.85rem 1.6rem;
                min-height: 48px;
                font-size: 0.85rem;
                border-radius: 50px;
            }

            .hero-btn-secondary:hover {
                border-color: rgba(255,255,255,0.7);
            }

            /* Scroll indicator removed */
            .hero-layout::after,
            .hero-layout::before {
                display: none;
            }

            /* ===== NAV: FULL-SCREEN TAKEOVER ===== */
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                height: 100dvh;
                width: 100%;
                background: rgba(255, 255, 255, 0.97);
                backdrop-filter: blur(40px);
                -webkit-backdrop-filter: blur(40px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 0 2rem;
                gap: 0;
                transition: right 0.5s var(--ease-expo);
                z-index: 999;
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links a {
                font-size: 1.5rem;
                font-weight: 600;
                opacity: 1;
                width: auto;
                padding: 1rem 0;
                min-height: 56px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-bottom: none;
                color: var(--text-primary);
                letter-spacing: -0.01em;
            }

            .nav-links a::after {
                display: none;
            }

            .nav-links a.get-started {
                background: var(--electric-purple);
                color: #fff;
                padding: 0.9rem 2.2rem;
                border-radius: 50px;
                margin-top: 2rem;
                border: none;
                justify-content: center;
                min-height: 52px;
                font-size: 0.95rem;
                font-weight: 700;
                width: auto;
            }

            /* ===== SERVICES: FULL-SCREEN VERTICAL STORY STACK ===== */
            .services-layout {
                min-height: auto;
                overflow: visible;
                gap: 0;
                padding: 3.5rem 0 0;
            }

            .services-header {
                padding: 0 7% 1.5rem;
                text-align: left;
            }

            .services-tag {
                font-size: 0.7rem;
                margin-bottom: 0.4rem;
            }

            .services-title {
                font-size: clamp(1.5rem, 6vw, 2rem);
                text-align: left;
            }

            .services-subtitle {
                text-align: left;
                font-size: 0.9rem;
            }

            .svc-bento {
                display: flex;
                flex-direction: column;
                overflow: visible;
                gap: 0;
                padding: 0;
                margin: 0;
            }

            .svc-bento-card.featured,
            .svc-bento-card.standard {
                grid-column: unset;
                flex: none;
                min-height: 45vh;
                min-height: 45dvh;
                border-radius: 0;
                scroll-snap-align: unset;
                margin: 0;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
            }

            .svc-bento-card {
                padding: 0 7% 2rem;
                position: relative;
            }

            .svc-bento-card.featured .svc-bento-lottie {
                width: 260px;
                height: 260px;
                top: auto;
                right: auto;
                bottom: auto;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -60%);
                opacity: 0.4;
            }

            .svc-bento-card.standard .svc-bento-lottie {
                width: 240px;
                height: 240px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -60%);
                opacity: 0.4;
            }

            .svc-bento-num {
                font-size: 8rem;
                line-height: 1;
                margin-bottom: 0.3rem;
                opacity: 0.35;
                color: rgba(196, 181, 253, 0.6);
            }

            .svc-bento-card.featured .svc-bento-num {
                font-size: 8rem;
            }

            .svc-bento-card.featured .svc-bento-title,
            .svc-bento-title {
                font-size: 1.4rem;
                margin-bottom: 0.3rem;
            }

            .svc-bento-label {
                font-size: 0.68rem;
                margin-bottom: 0.3rem;
            }

            .svc-bento-desc {
                font-size: 0.92rem;
                max-width: 340px;
                line-height: 1.7;
                opacity: 0.8;
            }

            .svc-bento-arrow {
                display: none;
            }

            .svc-bento-card::after {
                display: none;
            }

            /* Hide swipe dots in vertical mode */
            .svc-swipe-dots {
                display: none !important;
            }

            /* ===== PROCESS: EDGE-TO-EDGE STORY CARDS ===== */
            #approach .section-inner {
                height: auto;
                padding: 0;
            }

            #approach {
                align-items: flex-start;
            }

            .process-showcase {
                flex: none;
                padding: 4rem 0 2rem;
                gap: 1rem;
            }

            .process-header {
                padding: 0 7%;
            }

            .process-title {
                font-size: clamp(1.5rem, 6vw, 1.9rem);
                text-align: left;
            }

            .process-tag {
                text-align: left;
            }

            .process-progress {
                width: calc(100% - 14%);
                margin: 0 7%;
            }

            .process-cards {
                flex-direction: column;
                min-height: auto;
                gap: 0;
                padding: 0;
            }

            .process-card {
                flex: none;
                height: 60vh;
                height: 60dvh;
                border-radius: 0;
                position: relative;
            }

            .process-card:hover {
                flex: none;
            }

            .process-card::before {
                border-radius: 0;
            }

            .process-card-overlay {
                background: linear-gradient(
                    to top,
                    rgba(6, 6, 20, 0.95) 0%,
                    rgba(6, 6, 20, 0.5) 30%,
                    rgba(6, 6, 20, 0.08) 65%,
                    transparent 100%
                );
            }

            .process-card-content {
                padding: 2rem 7%;
                gap: 0.4rem;
            }

            .process-card-num {
                font-size: 3rem;
                color: rgba(196, 181, 253, 0.3);
            }

            .process-card-name {
                font-size: 1.5rem;
                letter-spacing: -0.02em;
            }

            .process-card-desc {
                max-height: none;
                opacity: 1;
                font-size: 0.9rem;
                color: rgba(255,255,255,0.6);
                line-height: 1.7;
                max-width: 320px;
            }

            /* ===== IMPACT: DRAMATIC SPLIT LAYOUT ===== */
            /* Strong visual break from Process section */
            #impact {
                margin-top: 0;
                background: var(--bg-dark) !important;
            }

            #impact::before {
                background: none !important;
            }

            .impact-layout {
                display: flex;
                flex-direction: column;
                min-height: auto;
                padding: 0;
                gap: 0;
            }

            /* Heading + content above image on mobile */
            .impact-content {
                order: -1;
                padding: 3.5rem 7% 1.5rem;
                text-align: left;
                align-items: flex-start;
                gap: 0.8rem;
                background: none;
            }

            .impact-tag {
                color: var(--electric-purple);
                border: 1px solid rgba(91, 45, 158, 0.2);
                padding: 0.3rem 0.8rem;
                border-radius: 50px;
                font-size: 0.7rem;
            }

            .impact-headline {
                font-size: clamp(1.8rem, 8vw, 2.4rem);
                color: var(--text-primary);
            }

            .impact-body {
                max-width: none;
                text-align: left;
                font-size: 0.92rem;
                color: var(--text-secondary);
            }

            .impact-numbers {
                gap: 3rem;
                width: 100%;
                justify-content: flex-start;
            }

            .impact-num {
                font-size: clamp(3.5rem, 14vw, 5rem);
                color: var(--electric-purple);
            }

            .impact-num-label {
                color: var(--text-secondary);
            }

            .impact-note {
                text-align: left;
                color: var(--text-secondary);
            }

            .impact-visual {
                order: 1;
                aspect-ratio: 16/10;
                max-height: none;
                height: auto;
                margin: 0 7% 3rem;
                border-radius: 16px;
            }

            /* ===== SELECTED WORK: STACKED ===== */
            .work-showcase {
                padding: 3rem 7%;
            }

            .work-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .work-card:hover {
                transform: none;
            }

            /* ===== BLOG: STACKED ===== */
            .blog-showcase {
                padding: 3rem 7%;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .blog-card {
                padding: 1.5rem;
            }

            .blog-card:hover {
                transform: none;
                box-shadow: none;
            }

            /* ===== WHY US: BOLD CARDS (NOT FLAT LIST) ===== */
            .whyus-layout {
                padding: 4rem 7% 3rem;
                min-height: auto;
            }

            .whyus-header {
                margin-bottom: 1.5rem;
            }

            .whyus-title {
                font-size: clamp(1.5rem, 6vw, 2rem);
            }

            .whyus-list {
                border-top: none;
                gap: 0.8rem;
            }

            .whyus-item {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                padding: 1.4rem 1.3rem;
                background: rgba(91, 45, 158, 0.04);
                border-radius: 16px;
                border: 1px solid rgba(91, 45, 158, 0.08);
                background-image: none;
            }

            .whyus-item-number {
                font-size: 1.8rem;
            }

            .whyus-item-headline {
                font-size: 1.05rem;
            }

            .whyus-item-desc {
                font-size: 0.86rem;
                max-width: none;
                color: var(--text-secondary);
                line-height: 1.65;
            }

            /* ===== CTA: DARK IMMERSIVE ===== */
            #cta-footer .section-inner {
                padding: 0 7%;
            }

            .cta-section {
                min-height: auto;
                padding: 4rem 0 2rem;
                text-align: left;
                align-items: flex-start;
            }

            .cta-tag {
                text-align: left;
            }

            .cta-title {
                font-size: clamp(1.8rem, 8vw, 2.4rem);
                text-align: left;
            }

            .cta-desc {
                text-align: left;
                font-size: 0.92rem;
            }

            .contact-form {
                max-width: 100%;
                background: rgba(255,255,255,0.03);
                padding: 1.5rem;
                border-radius: 20px;
                border: 1px solid rgba(255,255,255,0.06);
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form input,
            .contact-form textarea {
                padding: 1rem 1.1rem;
                font-size: 16px;
                border-radius: 12px;
                background: rgba(255,255,255,0.06);
            }

            .contact-form .cta-btn-primary {
                width: 100%;
                min-height: 52px;
                border-radius: 50px;
                font-size: 0.92rem;
            }

            .cta-alt {
                text-align: left;
                width: 100%;
            }

            /* ===== FOOTER ===== */
            .site-footer {
                padding: 2.5rem 0 2rem;
            }

            .footer-top {
                flex-direction: column;
                gap: 2rem;
            }

            .footer-brand {
                max-width: none;
            }

            .footer-links {
                display: flex;
                gap: 3rem;
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .footer-copyright {
                font-size: 0.72rem;
            }
        }

        /* ===== 480px — Small phones ===== */
        @media (max-width: 480px) {

            .hero-headline {
                font-size: clamp(2rem, 12vw, 2.8rem);
            }

            .hero-cta-group {
                flex-direction: column;
                gap: 0.6rem;
                width: 100%;
            }

            .hero-btn-primary,
            .hero-btn-secondary {
                width: 100%;
                justify-content: center;
            }

            /* Services */
            .svc-bento-card.featured,
            .svc-bento-card.standard {
                min-height: 40vh;
                min-height: 40dvh;
            }

            .svc-bento-num {
                font-size: 5.5rem;
            }

            .svc-bento-card.featured .svc-bento-lottie,
            .svc-bento-card.standard .svc-bento-lottie {
                width: 220px;
                height: 220px;
            }

            .svc-bento-title,
            .svc-bento-card.featured .svc-bento-title {
                font-size: 1.25rem;
            }

            .svc-bento-desc {
                font-size: 0.86rem;
            }

            .services-title {
                font-size: clamp(1.3rem, 7vw, 1.7rem);
            }

            /* Process */
            .process-card {
                height: 52vh;
                height: 52dvh;
            }

            .process-card-num {
                font-size: 2.5rem;
            }

            .process-card-name {
                font-size: 1.3rem;
            }

            .process-progress {
                display: none;
            }

            .process-title {
                font-size: 1.25rem;
            }

            /* Impact */
            .impact-visual {
                height: 35vh;
                height: 35dvh;
            }

            .impact-headline {
                font-size: clamp(1.6rem, 9vw, 2.2rem);
            }

            .impact-body {
                font-size: 0.88rem;
            }

            .impact-num {
                font-size: clamp(3rem, 15vw, 4.2rem);
            }

            .impact-numbers {
                gap: 2.5rem;
            }

            /* Why Us */
            .whyus-layout {
                padding: 3rem 5% 2.5rem;
            }

            .whyus-item {
                padding: 1.2rem 1.1rem;
            }

            .whyus-item-headline {
                font-size: 1rem;
            }

            .whyus-item-desc {
                font-size: 0.82rem;
            }

            /* CTA */
            #cta-footer .section-inner {
                padding: 0 5%;
            }

            .cta-title {
                font-size: clamp(1.6rem, 9vw, 2.2rem);
            }

            .cta-section {
                padding: 3rem 0 1.5rem;
            }

            .cta-desc {
                font-size: 0.88rem;
            }

            .contact-form .cta-btn-primary {
                min-height: 48px;
            }

            .cta-alt {
                font-size: 0.82rem;
            }

            /* Footer */
            .footer-links {
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .site-footer {
                padding: 2rem 0 1.5rem;
            }
        }

        /* ===== 360px — Tiny phones ===== */
        @media (max-width: 360px) {
            .hero-headline {
                font-size: 2rem;
            }

            .hero-subheadline {
                font-size: 0.84rem;
            }

            .svc-bento-card.featured,
            .svc-bento-card.standard {
                min-height: 36vh;
                min-height: 36dvh;
            }

            .process-card {
                height: 48vh;
                height: 48dvh;
            }

            .process-card-name {
                font-size: 1.15rem;
            }

            .impact-num {
                font-size: 2.8rem;
            }

            .whyus-item-headline {
                font-size: 0.95rem;
            }

            .whyus-item-desc {
                font-size: 0.78rem;
            }
        }