        :root {
            --void-bg: #0b0e14;
            --card-bg-top: rgba(30, 41, 59, 0.5);
            --card-bg-btm: rgba(15, 23, 42, 0.9);
            --accent-blue: #569df3;
            --deep-glow: #3c72e9;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --border-light: rgba(255, 255, 255, 0.08);
            --font-main: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --font-ui: 'Inter', var(--font-main);
            --text-xs: 0.8125rem;
            --text-sm: 0.9375rem;
            --text-base: 1.0625rem;
            --text-lg: 1.25rem;
            --text-xl: 1.5rem;
            --text-2xl: 2rem;
            --text-3xl: clamp(2.25rem, 4.5vw, 3.75rem);
            --weight-medium: 500;
            --weight-semibold: 600;
            --weight-bold: 700;
            --weight-extrabold: 800;
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--void-bg);
            color: var(--text-main);
            font-family: var(--font-main);
            overflow-x: hidden;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        /* Living Background (Lava Lamp Effect) */
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -2;
            overflow: hidden;
            background: linear-gradient(160deg, #030508 0%, #0a1020 40%, #0d0820 100%);
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 1;
            will-change: transform;
            mix-blend-mode: screen;
        }

        .blob-1 {
            width: 75vw;
            height: 75vw;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.3) 40%, transparent 70%);
            top: -25%;
            left: -25%;
            animation: float1 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blob-2 {
            width: 65vw;
            height: 65vw;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.9) 0%, rgba(59, 130, 246, 0.25) 45%, transparent 70%);
            bottom: -25%;
            right: -20%;
            animation: float2 16s infinite alternate-reverse cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blob-3 {
            width: 55vw;
            height: 55vw;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.85) 0%, rgba(124, 58, 237, 0.3) 45%, transparent 70%);
            top: 35%;
            left: 25%;
            animation: float3 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blob-4 {
            width: 45vw;
            height: 45vw;
            background: radial-gradient(circle, rgba(34, 211, 238, 0.5) 0%, rgba(6, 182, 212, 0.15) 50%, transparent 70%);
            bottom: 10%;
            left: -10%;
            animation: float2 22s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
        }

        .particle-canvas {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            opacity: 0.92;
        }

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

            33% {
                transform: translate(5vw, 10vh) scale(1.1);
            }

            66% {
                transform: translate(-5vw, 15vh) scale(0.9);
            }

            100% {
                transform: translate(10vw, 5vh) scale(1.05);
            }
        }

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

            33% {
                transform: translate(-10vw, -5vh) scale(1.1);
            }

            66% {
                transform: translate(5vw, -10vh) scale(0.9);
            }

            100% {
                transform: translate(-5vw, -15vh) scale(1.05);
            }
        }

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

            50% {
                transform: translate(-20vw, 20vh) scale(1.2);
            }

            100% {
                transform: translate(15vw, -10vh) scale(0.9);
            }
        }

        .texture-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.12;
            background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 58%);
            pointer-events: none;
        }

        /* Section dividers — removed */

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            /* Increased padding */
        }

        .section {
            padding: 100px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-main);
            font-weight: var(--weight-bold);
            letter-spacing: -0.025em;
            color: var(--text-main);
        }

        h1 {
            font-size: var(--text-3xl);
            font-weight: var(--weight-extrabold);
            line-height: 1.08;
            margin-bottom: 24px;
            background: linear-gradient(to right, #fff, #cbd5e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h2 {
            font-size: var(--text-2xl);
            font-weight: var(--weight-bold);
            margin-bottom: 48px;
            text-align: center;
        }

        h3 {
            font-size: var(--text-xl);
            font-weight: var(--weight-semibold);
        }

        .lead {
            font-family: var(--font-ui);
            font-size: var(--text-lg);
            font-weight: var(--weight-medium);
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 600px;
            line-height: 1.65;
        }

        /* Nav */
        nav {
            padding: 20px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(16px);
            position: sticky;
            top: 0;
            z-index: 100;
            background:
                linear-gradient(120deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.08) 40%, rgba(11, 14, 20, 0.86)),
                rgba(11, 14, 20, 0.8);
            border-bottom: 1px solid rgba(96, 165, 250, 0.3);
            height: 80px;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            padding-left: clamp(20px, 4vw, 56px);
            padding-right: clamp(20px, 4vw, 56px);
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(3, 7, 18, 0.45);
        }

        .logo {
            font-weight: 800;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-main);
            transition: all 0.3s ease;
            height: 100%;
        }

        .logo-text {
            font-family: var(--font-main);
            font-size: 1rem;
            font-weight: var(--weight-bold);
            letter-spacing: 0.03em;
            color: #e2e8f0;
        }

        .logo:hover {
            opacity: 1;
            text-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
            /* Glow on hover */
        }

        .logo-icon {
            color: var(--accent-blue);
        }

        .nav-links {
            display: flex;
            gap: 48px;
            align-items: center;
            height: 100%;
        }

        .nav-link {
            color: var(--text-muted);
            text-decoration: none;
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            font-weight: var(--weight-medium);
            transition: all 0.2s ease;
            position: relative;
            padding: 8px 0;
        }

        .nav-link:hover {
            color: var(--text-main);
            transform: translateY(-1px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-blue);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .cta-button {
            background: rgba(255, 255, 255, 0.08);
            color: white;
            padding: 12px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid var(--border-light);
            transition: all 0.5s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4),
                0 0 40px rgba(96, 165, 250, 0.3),
                0 0 60px rgba(96, 165, 250, 0.1);
        }

        /* Typewriter */
        .code-line-wrapper {
            margin-bottom: 24px;
            display: inline-flex;
            align-items: center;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 8px;
            backdrop-filter: blur(4px);
        }

        .code-line {
            font-family: 'Courier New', Courier, monospace;
            font-size: 1.08rem;
            color: #60a5fa;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .prompt {
            color: #10b981;
            font-weight: 800;
        }

        .cursor {
            display: inline-block;
            width: 8px;
            height: 18px;
            background-color: #60a5fa;
            margin-left: 4px;
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        /* Hero */
        .hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 42px 34px;
            gap: 60px;
            opacity: 1 !important;
            transform: none !important;
        }

        .hero::before {
            content: none;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            padding: 10px 8px;
            border-radius: 0;
            background: transparent;
            border: none;
            box-shadow: none;
        }

        .hero-image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            perspective: 1400px;
        }

        .hero-photo-flip {
            width: min(100%, 430px);
            min-height: 520px;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.65s var(--ease-out);
            cursor: pointer;
            z-index: 2;
        }

        .hero-photo-face {
            position: absolute;
            inset: 0;
            border-radius: 24px;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            overflow: hidden;
        }

        .hero-photo-front {
            box-shadow: 0 18px 34px -14px rgba(2, 6, 23, 0.45);
            background: #d4d4d8;
        }

        .hero-photo-back {
            transform: rotateY(180deg);
            padding: 20px 22px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            background: linear-gradient(160deg, rgba(10, 21, 45, 0.96), rgba(7, 12, 25, 0.94));
            border: 1px solid rgba(96, 165, 250, 0.34);
            box-shadow: 0 18px 34px -14px rgba(2, 6, 23, 0.45);
            color: var(--text-main);
        }

        .hero-image-container:hover .hero-photo-flip,
        .hero-photo-flip:focus-visible {
            transform: rotateY(180deg);
        }

        .hero-about-link-label {
            display: block;
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .hero-photo-back strong {
            display: block;
            font-size: var(--text-base);
            font-weight: var(--weight-bold);
            line-height: 1.35;
            margin-bottom: 10px;
        }

        .hero-about-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 6px;
        }

        .hero-about-list li {
            position: relative;
            padding: 8px 0 8px;
            font-family: var(--font-main);
            font-weight: var(--weight-medium);
            letter-spacing: 0.01em;
            font-size: var(--text-xs);
            color: #dbeafe;
            line-height: 1.45;
            border-bottom: 1px solid rgba(148, 163, 184, 0.22);
        }

        .hero-about-list li::before {
            content: none;
        }

        .hero-roadmap-title {
            display: block;
            font-family: var(--font-main);
            font-size: var(--text-sm);
            font-weight: var(--weight-bold);
            color: #f8fafc;
            letter-spacing: 0.01em;
            margin-bottom: 3px;
        }

        .hero-roadmap-copy {
            display: block;
            font-family: var(--font-main);
            font-size: 0.8rem;
            line-height: 1.4;
            color: #cbd5e1;
            opacity: 0.9;
        }

        .hero-about-card-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 12px;
            min-height: 36px;
            padding: 0 14px;
            border-radius: 10px;
            text-decoration: none;
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            font-weight: var(--weight-semibold);
            color: #f8fafc;
            border: 1px solid rgba(96, 165, 250, 0.42);
            background: rgba(59, 130, 246, 0.16);
            transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
        }

        .hero-about-card-link:hover {
            background: rgba(59, 130, 246, 0.24);
            border-color: rgba(147, 197, 253, 0.58);
        }

        .hero-photo {
            width: 100%;
            max-width: 420px;
            height: auto;
            aspect-ratio: 4/5;
            object-fit: cover;
            border-radius: 24px;
            border: none;
            position: relative;
            z-index: 2;
            transition: transform 0.45s var(--ease-out);
        }

        .hero-bg-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 20px;
            right: -20px;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), transparent);
            z-index: 1;
            filter: blur(20px);
        }

        .primary-btn {
            background: var(--deep-glow);
            color: white;
            padding: 16px 36px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-top: 32px;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            position: relative;
        }

        .primary-btn:hover {
            background: #3b82f6;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(37, 99, 235, 0.7),
                0 0 60px rgba(37, 99, 235, 0.4),
                0 0 100px rgba(37, 99, 235, 0.2);
            filter: brightness(1.1);
        }

        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 32px;
        }

        .hero-cta-row .primary-btn {
            margin-top: 0;
        }

        .secondary-btn {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-main);
            padding: 16px 28px;
            border-radius: 12px;
            font-weight: 600;
            border: 1px solid var(--border-light);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.25s ease;
        }

        .secondary-btn:hover {
            border-color: rgba(96, 165, 250, 0.6);
            background: rgba(59, 130, 246, 0.14);
            transform: translateY(-3px);
        }

        /* Services Cloud */
        #services.section {
            padding-bottom: 70px;
        }

        #portfolio.section {
            padding-top: 70px;
        }

        #prices.section {
            padding-top: 70px;
            padding-bottom: 54px;
        }

        #about.section {
            padding-top: 72px;
        }

        .services-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 12px 14px;
            max-width: 1080px;
            margin: 0 auto;
            padding: 2px 0 8px;
        }

        .cloud-tag {
            display: inline-flex;
            align-items: center;
            padding: 11px 18px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
            color: #e2e8f0;
            font-family: var(--font-main);
            font-size: var(--text-sm);
            font-weight: var(--weight-semibold);
            letter-spacing: -0.01em;
            line-height: 1.2;
            min-height: 42px;
            transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
                background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
            cursor: default;
        }

        @media (hover: hover) and (pointer: fine) {
            .cloud-tag:hover {
                transform: translateY(-3px);
                border-color: rgba(96, 165, 250, 0.45);
                background: rgba(59, 130, 246, 0.12);
                box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .blob {
                animation: none;
            }

            .particle-canvas {
                opacity: 0.65;
            }

            .portfolio-card-img-wrap img,
            .cloud-tag {
                transition: none;
            }
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            color: var(--accent-blue);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .card-icon svg {
            width: 24px;
            height: 24px;
            stroke-width: 1.5;
        }

        .highlight {
            color: var(--accent-blue);
            font-weight: 700;
        }

        /* Portfolio Accordion */
        .portfolio-lead {
            max-width: 560px;
            margin: -16px auto 24px;
            text-align: center;
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            color: var(--text-muted);
            line-height: 1.6;
        }

        .portfolio-filters {
            display: none;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 32px;
        }

        .filter-btn {
            padding: 10px 22px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            font-weight: var(--weight-semibold);
            cursor: pointer;
            transition: all 0.3s var(--ease-out);
        }

        .filter-btn:hover {
            border-color: rgba(96, 165, 250, 0.45);
            color: var(--text-main);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(124, 58, 237, 0.25));
            border-color: rgba(96, 165, 250, 0.6);
            color: #fff;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
        }

        .portfolio-accordion {
            display: grid;
            gap: 14px;
        }

        .portfolio-item {
            background: linear-gradient(165deg, rgba(30, 41, 59, 0.55) 0%, rgba(15, 23, 42, 0.85) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
        }

        @media (hover: hover) and (pointer: fine) {
            .portfolio-item:hover {
                border-color: rgba(96, 165, 250, 0.35);
                box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(96, 165, 250, 0.08);
            }
        }

        .portfolio-item.is-open {
            border-color: rgba(96, 165, 250, 0.45);
            box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(96, 165, 250, 0.1);
        }

        .portfolio-summary {
            width: 100%;
            padding: 22px 24px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            border: none;
            background: transparent;
            color: inherit;
            text-align: left;
            cursor: default;
        }

        .portfolio-summary-main {
            min-width: 0;
        }

        .portfolio-summary-main h3 {
            font-size: var(--text-lg);
            margin: 10px 0 8px;
            line-height: 1.2;
        }

        .portfolio-summary-main p {
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            color: var(--text-muted);
            line-height: 1.55;
            max-width: 760px;
        }

        .portfolio-panel {
            display: grid;
            grid-template-columns: minmax(280px, 420px) 1fr;
            gap: 24px;
            padding: 0 24px 24px;
            opacity: 1;
            padding: 0 24px 24px;
            overflow: visible;
            transition: none;
        }

        .portfolio-item.is-featured {
            border-color: rgba(96, 165, 250, 0.28);
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(15, 23, 42, 0.4));
        }

        .portfolio-item.is-featured.is-open {
            border-color: rgba(96, 165, 250, 0.55);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(96, 165, 250, 0.18);
        }

        .case-page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            min-height: 48px;
            min-width: 220px;
            padding: 0 22px;
            border-radius: 12px;
            text-decoration: none;
            width: fit-content;
        }

        .case-collage {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            width: 100%;
            max-width: 700px;
            justify-self: end;
            min-height: 280px;
        }

        .case-collage--panel {
            min-height: 220px;
        }

        .case-collage-stack {
            display: grid;
            gap: 12px;
            min-height: 0;
        }

        .case-collage-item {
            position: relative;
            padding: 0;
            border: none;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            background:
                radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 45%),
                linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(8, 12, 22, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.08);
            min-height: 0;
        }

        .case-collage-item--hero {
            min-height: 420px;
            border-radius: 18px;
        }

        .case-collage--panel .case-collage-item--hero {
            min-height: 280px;
        }

        .case-collage-item img {
            width: 100%;
            height: 100%;
            min-height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            padding: 14px;
            box-sizing: border-box;
            transition: transform 0.5s var(--ease-out);
        }

        .case-collage-item--hero img {
            object-fit: contain;
            padding: 8px;
            transform: none;
            background: rgba(3, 7, 18, 0.92);
        }

        .case-page[data-collage-fit="contain"] .case-collage-item--hero img {
            object-fit: contain;
            padding: 8px;
            transform: none;
            background: rgba(3, 7, 18, 0.92);
        }

        @media (hover: hover) and (pointer: fine) {
            .case-collage-item:hover img {
                transform: scale(1.03);
            }
        }

        /* Case page layout */
        .case-page .hero {
            display: none;
        }

        .case-hero {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(280px, 1.1fr);
            gap: 36px;
            align-items: center;
            padding-top: 12px;
            padding-bottom: 24px;
        }

        .case-hero-copy .portfolio-card-badge {
            position: static;
            display: inline-flex;
            margin-bottom: 12px;
        }

        .case-hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.1;
            margin: 14px 0 16px;
        }

        .case-hero-lead {
            font-family: var(--font-ui);
            color: #cbd5e1;
            font-size: var(--text-md);
            line-height: 1.65;
            max-width: 620px;
            margin-bottom: 20px;
        }

        .case-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .case-meta-pill {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;
            border: none;
            background: rgba(255, 255, 255, 0.06);
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            font-weight: var(--weight-semibold);
            color: #e2e8f0;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
        }

        .case-meta-pill--accent {
            color: var(--accent-blue);
            border-color: rgba(96, 165, 250, 0.35);
            background: rgba(37, 99, 235, 0.12);
        }

        .case-hero-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            max-width: 520px;
        }

        .case-hero-actions .primary-btn,
        .case-hero-actions .secondary-btn {
            min-height: 56px;
            min-width: 0;
            width: 100%;
            padding: 0 24px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-sizing: border-box;
            margin-top: 0;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1;
        }

        .case-hero-actions .secondary-btn {
            min-width: 0;
        }

        .case-highlights {
            padding-top: 18px;
            padding-bottom: 18px;
        }

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

        .case-feature-card {
            border: none;
            border-radius: 20px;
            padding: 28px;
            background: linear-gradient(160deg, rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.34));
            box-shadow: 0 18px 40px rgba(3, 7, 18, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
        }

        .case-feature-card--muted {
            background: linear-gradient(160deg, rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.24));
        }

        .case-feature-card h2 {
            font-size: var(--text-xl);
            margin: 10px 0 16px;
        }

        .case-feature-lines,
        .case-solution-points {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 18px;
        }

        .case-feature-lines span,
        .case-solution-points span {
            display: block;
            min-height: auto;
            padding: 0 0 12px;
            border-radius: 0;
            border: none;
            background: transparent;
            box-shadow: none;
            color: #dbe4f0;
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            line-height: 1.5;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .case-feature-lines span::before,
        .case-solution-points span::before {
            content: none !important;
        }

        .case-checklist {
            list-style: none;
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
        }

        .case-checklist li {
            position: relative;
            padding-left: 22px;
            font-family: var(--font-ui);
            color: #dbe4f0;
            line-height: 1.5;
        }

        .case-checklist li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-blue);
            box-shadow: 0 0 12px rgba(96, 165, 250, 0.65);
        }

        .case-section h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            margin: 8px 0 14px;
            max-width: 820px;
        }

        .case-section-lead {
            color: var(--text-muted);
            max-width: 720px;
            margin: -8px auto 24px;
            text-align: center;
            font-family: var(--font-ui);
        }

        .case-prose {
            max-width: 820px;
        }

        .case-prose p {
            font-family: var(--font-ui);
            color: #cbd5e1;
            line-height: 1.72;
            font-size: var(--text-md);
            margin-bottom: 12px;
        }

        .case-section {
            padding: 44px 0 18px;
        }

        .case-placeholder {
            border-left: 3px solid rgba(96, 165, 250, 0.45);
            padding-left: 16px;
            color: #94a3b8 !important;
            font-style: italic;
        }

        .case-contact {
            padding-bottom: 40px;
        }

        .case-contact-inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
            gap: 28px;
            padding: 36px;
            border-radius: 24px;
            border: 1px solid rgba(96, 165, 250, 0.35);
            background: linear-gradient(140deg, rgba(37, 99, 235, 0.18) 0%, rgba(15, 23, 42, 0.72) 55%, rgba(124, 58, 237, 0.16) 100%);
            box-shadow: 0 25px 60px -35px rgba(37, 99, 235, 0.65);
        }

        .case-contact-copy h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            margin: 10px 0 14px;
        }

        .case-contact-copy p {
            color: #cbd5e1;
            line-height: 1.65;
            margin-bottom: 18px;
            font-family: var(--font-ui);
        }

        .case-contact-points {
            list-style: none;
            display: grid;
            gap: 8px;
            margin: 0;
            padding: 0;
            font-family: var(--font-ui);
            color: #e2e8f0;
            font-size: var(--text-sm);
        }

        .case-contact-form {
            display: grid;
            gap: 12px;
            padding: 24px;
            border-radius: 18px;
            background: rgba(8, 12, 22, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .case-contact-submit {
            margin: 6px auto 0;
            width: min(100%, 280px);
            min-height: 52px;
            justify-self: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1;
            padding: 0 24px;
        }

        .case-form-success {
            min-height: 220px;
            display: grid;
            place-content: center;
            text-align: center;
        }

        .case-footer-link {
            color: var(--accent-blue);
            text-decoration: none;
        }

        .portfolio-panel-media {
            min-width: 0;
        }

        .portfolio-gallery {
            display: grid;
            gap: 12px;
        }

        .portfolio-gallery-thumbs {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 2px;
            scrollbar-width: thin;
        }

        .portfolio-thumb {
            flex: 0 0 72px;
            width: 72px;
            height: 52px;
            padding: 0;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid rgba(255, 255, 255, 0.08);
            background: rgba(15, 23, 42, 0.65);
            transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
        }

        .portfolio-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .portfolio-thumb.active {
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.35);
        }

        @media (hover: hover) and (pointer: fine) {
            .portfolio-thumb:hover {
                transform: translateY(-2px);
                border-color: rgba(96, 165, 250, 0.55);
            }
        }

        .portfolio-card-visual {
            width: 100%;
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            cursor: pointer;
            border: none;
            padding: 0;
            background:
                radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 45%),
                linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(8, 12, 22, 0.98));
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .portfolio-card-img-wrap {
            width: 100%;
            height: 100%;
            overflow: hidden;
            padding: 18px;
        }

        .portfolio-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            transform: scale(1);
            transition: transform 0.65s var(--ease-out), filter 0.35s var(--ease-out);
            filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.35));
        }

        @media (hover: hover) and (pointer: fine) {
            .portfolio-item:hover .portfolio-card-img-wrap img {
                transform: scale(1.04);
                filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.42));
            }
        }

        .portfolio-card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.75);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            font-weight: var(--weight-semibold);
            color: var(--accent-blue);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .portfolio-image-note {
            position: absolute;
            left: 18px;
            bottom: 16px;
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            color: rgba(255, 255, 255, 0.78);
            padding: 7px 11px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .portfolio-panel-body {
            display: grid;
        }

        .portfolio-panel-meta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            height: 100%;
        }

        .portfolio-panel-meta > div {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 16px;
        }

        .portfolio-panel-meta h4 {
            font-size: var(--text-xs);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .portfolio-panel-meta p,
        .portfolio-panel-meta .feature-lines {
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            color: #dbe6f5;
            line-height: 1.6;
        }

        /* About Section */
        .about-highlights {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 28px;
        }

        .about-pill {
            padding: 0 0 16px;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .about-pill strong {
            display: block;
            font-size: clamp(1.2rem, 2vw, 1.45rem);
            margin-bottom: 6px;
        }

        .about-pill span {
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            color: var(--text-muted);
        }

        .about-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
            gap: 32px;
            margin-bottom: 30px;
        }

        .about-story-card,
        .about-benefits-panel {
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .about-kicker {
            display: inline-flex;
            margin-bottom: 14px;
            padding: 0;
            border-radius: 999px;
            border: none;
            background: transparent;
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            color: var(--accent-blue);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            opacity: 0.82;
        }

        .about-story-card h3,
        .about-benefits-head h3 {
            margin-bottom: 14px;
            line-height: 1.28;
            max-width: 760px;
        }

        .about-story-card p,
        .about-benefits-panel p {
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 14px;
            max-width: 760px;
        }

        .about-story-card strong {
            color: var(--text-main);
            font-weight: var(--weight-semibold);
        }

        .about-benefits-head {
            max-width: 720px;
            margin-bottom: 16px;
        }

        .about-benefits-grid {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 18px;
        }

        .about-benefits-grid li {
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            color: #cbd5e1;
            min-height: 100%;
            padding: 0 0 12px 18px;
            position: relative;
            line-height: 1.5;
            border-radius: 0;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .about-benefits-grid li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.62em;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-blue), #a78bfa);
            box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
        }

        .about-closing {
            font-weight: var(--weight-semibold) !important;
            color: var(--text-main) !important;
            margin-bottom: 0 !important;
            padding-top: 8px;
            border-top: none;
        }

        .feature-lines span {
            display: block;
            padding-left: 0;
            position: static;
        }

        .feature-lines span::before {
            content: none;
        }

        /* Lightbox */
        #lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #lightbox.active {
            display: flex;
            opacity: 1;
        }

        #lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 12px;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: white;
            cursor: pointer;
            transition: color 0.2s;
        }

        .lightbox-close:hover {
            color: var(--accent-blue);
        }

        /* Prices */
        .prices-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 8px;
            max-width: 760px;
            margin: 0 auto;
        }

        .price-card {
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 10px 0;
            text-align: left;
            transition: none;
            position: static;
            overflow: visible;
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .price-title {
            font-size: 1.02rem;
            margin: 0;
            color: #dbe6f5;
            font-weight: var(--weight-medium);
            font-family: var(--font-ui);
            line-height: 1.45;
        }

        .price-value {
            font-size: 1.2rem;
            font-weight: var(--weight-bold);
            color: #f8fafc;
            margin: 0;
            letter-spacing: 0;
            white-space: nowrap;
        }

        .price-value small {
            font-size: 0.78rem;
            font-weight: var(--weight-medium);
            color: var(--text-muted);
            margin-right: 4px;
        }

        #prices .card-icon {
            display: none !important;
        }

        .final-cta {
            margin-top: 90px;
            background: linear-gradient(140deg, rgba(37, 99, 235, 0.23) 0%, rgba(15, 23, 42, 0.6) 55%, rgba(124, 58, 237, 0.22) 100%);
            border: 1px solid rgba(96, 165, 250, 0.35);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 25px 60px -35px rgba(37, 99, 235, 0.7);
        }

        .final-cta h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 12px;
        }

        .final-cta p {
            color: #cbd5e1;
            max-width: 680px;
            margin: 0 auto 22px;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .cta-actions .primary-btn,
        .cta-actions .secondary-btn {
            min-height: 54px;
            min-width: 230px;
            padding: 0 28px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            white-space: nowrap;
        }

        .cta-actions .primary-btn {
            margin-top: 0;
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }

        .faq-item {
            border: 1px solid var(--border-light);
            border-radius: 14px;
            background: rgba(15, 23, 42, 0.56);
            overflow: hidden;
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 18px 20px;
            font-weight: 600;
            position: relative;
        }

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

        .faq-item summary::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 16px;
            color: var(--accent-blue);
            font-size: 1.2rem;
            transition: transform 0.2s ease;
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item p {
            color: var(--text-muted);
            padding: 0 20px 20px;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border-light);
            padding: 80px 0;
            background: transparent;
            margin-top: 64px;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 32px;
        }

        .social-btn {
            background: rgba(255, 255, 255, 0.05);
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-main);
            border: 1px solid var(--border-light);
            transition: all 0.2s;
            text-decoration: none;
        }

        .social-btn:hover {
            background: var(--accent-blue);
            border-color: var(--accent-blue);
            color: white;
            transform: translateY(-4px);
        }

        /* Quiz Modal */
        #cost-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(12px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #cost-modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: #0f172a;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            padding: 36px 40px 40px;
            width: 100%;
            max-width: 560px;
            position: relative;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
        }

        .modal-header {
            margin-bottom: 28px;
            padding-right: 32px;
        }

        .modal-header h3 {
            font-size: var(--text-xl);
            font-weight: var(--weight-bold);
            margin-bottom: 8px;
        }

        .modal-subtitle {
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            color: var(--text-muted);
            line-height: 1.55;
        }

        .modal-btn {
            width: 100%;
            justify-content: center;
            margin-top: 8px;
        }

        .field-label {
            display: block;
            font-family: var(--font-main);
            font-size: var(--text-base);
            font-weight: var(--weight-semibold);
            margin-bottom: 6px;
        }

        .field-label--sm {
            font-size: var(--text-sm);
            font-family: var(--font-ui);
            font-weight: var(--weight-medium);
            color: var(--text-muted);
        }

        .field-hint {
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .channel-selector {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 16px;
        }

        .channel-selector--compact {
            gap: 6px;
            margin-bottom: 10px;
        }

        .channel-btn {
            padding: 12px 10px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            font-weight: var(--weight-semibold);
            cursor: pointer;
            transition: all 0.25s var(--ease-out);
        }

        .channel-btn:hover {
            border-color: rgba(96, 165, 250, 0.4);
            color: var(--text-main);
        }

        .channel-btn.active {
            border-color: var(--accent-blue);
            background: rgba(59, 130, 246, 0.16);
            color: #fff;
        }

        .contact-field-wrap {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.35s var(--ease-out), opacity 0.35s var(--ease-out), margin 0.35s var(--ease-out);
            margin-bottom: 0;
        }

        .contact-field-wrap.visible {
            max-height: 120px;
            opacity: 1;
            margin-bottom: 4px;
        }

        .form-error {
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            color: #f87171;
            margin-top: 10px;
            line-height: 1.4;
        }

        .form-success {
            padding: 32px 20px;
            text-align: center;
        }

        .form-success-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 14px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.15);
            color: #4ade80;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: var(--weight-bold);
        }

        .form-success p {
            font-family: var(--font-ui);
            font-weight: var(--weight-semibold);
            color: var(--text-main);
        }

        .site-toast-stack {
            position: fixed;
            right: clamp(14px, 2vw, 26px);
            top: clamp(14px, 2.4vh, 22px);
            z-index: 2500;
            display: grid;
            gap: 10px;
            pointer-events: none;
        }

        .site-toast {
            min-width: min(92vw, 310px);
            max-width: min(92vw, 360px);
            padding: 13px 14px;
            border-radius: 14px;
            border: 1px solid rgba(96, 165, 250, 0.28);
            background: linear-gradient(160deg, rgba(10, 20, 41, 0.95), rgba(8, 12, 24, 0.95));
            box-shadow: 0 16px 30px rgba(2, 8, 24, 0.4);
            color: #e2e8f0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            opacity: 0;
            transform: translateY(-8px) scale(0.98);
            transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
        }

        .site-toast.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .site-toast.is-exit {
            opacity: 0;
            transform: translateY(-6px) scale(0.98);
        }

        .site-toast-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.82rem;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .site-toast--success .site-toast-icon {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .site-toast--error .site-toast-icon {
            background: rgba(248, 113, 113, 0.2);
            color: #f87171;
        }

        .site-toast-text {
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            line-height: 1.45;
            color: #dbeafe;
        }

        .hp-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 24px;
            transition: color 0.2s;
        }

        .modal-close:hover {
            color: white;
        }

        .quiz-step {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .quiz-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quiz-option {
            display: block;
            width: 100%;
            padding: 16px;
            margin-bottom: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            color: white;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s;
        }

        .quiz-option:hover {
            background: rgba(96, 165, 250, 0.1);
            border-color: var(--accent-blue);
        }

        .quiz-input {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            color: white;
            outline: none;
            margin-bottom: 16px;
            font-family: var(--font-ui);
            font-size: var(--text-sm);
            transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
            resize: none;
            line-height: 1.5;
        }

        .quiz-input:focus {
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(86, 157, 243, 0.15);
        }

        /* Float Contact Widget */
        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        .float-widget {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
        }

        .float-panel {
            background:
                radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 52%),
                linear-gradient(160deg, rgba(15, 23, 42, 0.94), rgba(7, 12, 24, 0.96));
            border: 1px solid rgba(96, 165, 250, 0.34);
            border-radius: 26px;
            width: 356px;
            overflow: hidden;
            backdrop-filter: blur(18px);
            box-shadow: 0 28px 72px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(96, 165, 250, 0.16);
            opacity: 0;
            transform: translateY(16px) scale(0.95);
            pointer-events: none;
            transition: all 0.3s var(--ease-out);
        }

        .float-panel.open {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .float-tabs {
            display: flex;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
        }

        .float-tab {
            flex: 1;
            padding: 14px 10px;
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            color: var(--text-muted);
            cursor: pointer;
            font-family: var(--font-ui);
            font-size: 0.92rem;
            font-weight: var(--weight-semibold);
            letter-spacing: 0.01em;
            transition: all 0.25s var(--ease-out);
        }

        .float-tab.active {
            color: #dbeafe;
            border-bottom-color: var(--accent-blue);
            background: rgba(59, 130, 246, 0.16);
        }

        .float-tab-content {
            display: none;
            padding: 22px 22px 24px;
        }

        .float-tab-content.active {
            display: block;
        }

        .float-tg-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 15px 16px;
            background: linear-gradient(135deg, #2AABEE, #229ED9);
            color: white;
            text-decoration: none;
            border-radius: 14px;
            font-weight: var(--weight-semibold);
            font-size: 0.95rem;
            font-family: var(--font-ui);
            transition: all 0.25s var(--ease-out);
        }

        .float-tg-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(42, 171, 238, 0.4);
        }

        .float-input {
            width: 100%;
            padding: 13px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            color: white;
            outline: none;
            font-size: 0.95rem;
            line-height: 1.35;
            font-family: var(--font-ui);
            font-weight: var(--weight-medium);
            margin-bottom: 12px;
            transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
        }

        .float-input:focus {
            border-color: var(--accent-blue);
            background: rgba(255, 255, 255, 0.07);
            box-shadow: 0 0 0 3px rgba(86, 157, 243, 0.18);
        }

        .float-input::placeholder {
            color: var(--text-muted);
        }

        .float-submit {
            width: 100%;
            min-height: 48px;
            padding: 12px 16px;
            background: linear-gradient(135deg, var(--accent-blue), var(--deep-glow));
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 0.98rem;
            font-weight: var(--weight-semibold);
            letter-spacing: 0.01em;
            cursor: pointer;
            font-family: var(--font-ui);
            transition: all 0.25s var(--ease-out);
        }

        .float-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(86, 157, 243, 0.4);
        }

        .float-toggle {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-blue), var(--deep-glow));
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 28px rgba(86, 157, 243, 0.42);
            transition: all 0.3s var(--ease-out);
            position: relative;
            flex-shrink: 0;
        }

        .float-toggle:hover {
            transform: scale(1.08);
            box-shadow: 0 12px 32px rgba(86, 157, 243, 0.6);
        }

        .float-toggle svg {
            width: 30px;
            height: 30px;
            color: white;
            transition: transform 0.3s;
        }

        .float-toggle.open svg {
            transform: rotate(45deg);
        }

        .float-toggle::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: var(--accent-blue);
            z-index: -1;
            animation: pulse-ring 2.2s infinite;
        }

        /* Mobile */
        @media (max-width: 900px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 24px 18px 28px;
                gap: 20px;
            }

            .hero-content {
                order: 1;
                width: 100%;
                padding: 14px 12px 8px;
            }

            .hero-image-container {
                order: 2;
                width: 100%;
            }

            .hero-photo {
                max-width: 240px;
            }

            .hero-photo-flip {
                min-height: 0;
                width: min(100%, 340px);
                display: grid;
                gap: 12px;
                transform: none !important;
                cursor: default;
            }

            .hero-photo-face {
                position: relative;
                inset: auto;
                transform: none !important;
                backface-visibility: visible;
                -webkit-backface-visibility: visible;
            }

            .hero-photo-back {
                min-height: auto;
                padding: 16px 16px 14px;
                border-radius: 18px;
            }

            .nav-links {
                display: none;
            }

            nav {
                width: 100vw;
                margin-left: calc(50% - 50vw);
                left: auto;
                right: auto;
                padding: 12px clamp(16px, 4vw, 22px);
                min-height: 68px;
                height: auto;
                gap: 12px;
            }

            .logo {
                font-size: 1.2rem;
            }

            .logo-text {
                display: none;
            }

            .cta-button {
                padding: 9px 14px;
                font-size: 0.85rem;
                min-height: 40px;
            }

            h1 {
                font-size: 2rem;
            }

            .lead {
                font-size: 1.1rem;
            }

            .primary-btn {
                width: 100%;
                justify-content: center;
            }

            .code-line-wrapper {
                font-size: 1.35rem;
            }

            .hero-cta-row {
                flex-direction: column;
                margin-top: 22px;
            }

            .secondary-btn {
                width: 100%;
            }

            .hero-photo-back strong {
                font-size: var(--text-sm);
            }

            .hero-about-list {
                gap: 5px;
            }

            .portfolio-summary {
                padding: 18px 18px 16px;
                flex-direction: column;
                gap: 10px;
            }

            .portfolio-panel {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 0 18px 18px;
            }

            .portfolio-item.is-open .portfolio-panel {
                padding: 0 18px 18px;
            }

            .case-collage,
            .case-hero,
            .case-contact-inner,
            .case-features-grid,
            .case-feature-lines,
            .case-solution-points {
                grid-template-columns: 1fr;
            }

            .case-hero-actions {
                grid-template-columns: 1fr;
                max-width: none;
            }

            .case-contact-submit {
                width: 100%;
            }

            .case-collage-item--hero {
                min-height: 240px;
            }

            .case-collage-item--hero img {
                object-position: center;
            }

            .case-page[data-collage-fit="contain"] .case-collage-item--hero img {
                padding: 4px;
            }

            .case-contact-inner {
                padding: 24px 20px;
            }

            .portfolio-panel-meta {
                grid-template-columns: 1fr;
            }

            .about-highlights {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

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

            .about-story-card,
            .about-benefits-panel {
                padding: 0;
            }

            .about-benefits-grid {
                grid-template-columns: 1fr;
            }

            .services-cloud {
                gap: 10px 10px;
            }

            .cloud-tag {
                font-size: var(--text-xs);
                padding: 9px 14px;
                min-height: 38px;
            }

            .final-cta {
                padding: 28px 20px;
            }

            .prices-grid {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .price-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 2px;
            }

            .container {
                padding: 0 24px;
            }

            .section {
                padding: 60px 0;
            }

            .modal-content {
                max-width: min(94vw, 560px);
                padding: 24px 18px 20px;
            }

            .modal-header {
                margin-bottom: 20px;
                padding-right: 24px;
            }

            .channel-selector {
                gap: 6px;
                margin-bottom: 10px;
            }

            .quiz-input {
                margin-bottom: 10px;
                padding: 12px 14px;
            }

            .field-label {
                margin-bottom: 4px;
            }

            .field-hint {
                margin-bottom: 8px;
            }

            .channel-btn {
                padding: 10px 8px;
                font-size: var(--text-xs);
            }

            .contact-field-wrap.visible {
                margin-bottom: 2px;
            }

            h2 {
                font-size: 2rem;
            }

            /* Облегчённый фон на мобильных для более быстрой отрисовки */
            .blob {
                filter: blur(22px);
                opacity: 0.76;
                animation-duration: 24s;
            }

            .blob-1 {
                background: radial-gradient(circle, rgba(37, 99, 235, 1) 0%, rgba(37, 99, 235, 0.2) 50%, rgba(37, 99, 235, 0) 70%);
            }

            .blob-2 {
                background: radial-gradient(circle, rgba(59, 130, 246, 1) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(59, 130, 246, 0) 70%);
            }

            .blob-3 {
                background: radial-gradient(circle, rgba(124, 58, 237, 1) 0%, rgba(124, 58, 237, 0.2) 50%, rgba(124, 58, 237, 0) 70%);
            }

            /* Float widget mobile */
            .float-widget {
                bottom: 20px;
                right: 16px;
            }

            .float-panel {
                width: 312px;
            }
        }