        @font-face {
            font-family: 'Stack Sans Notch';
            src: url('assets/fonts/StackSansNotch-Bold.woff2') format('woff2');
            font-weight: 700;
            font-display: swap;
        }

        @font-face {
            font-family: 'Stack Sans Text';
            src: url('assets/fonts/StackSansText-Regular.woff2') format('woff2');
            font-weight: 400;
            font-display: swap;
        }

        @font-face {
            font-family: 'Stack Sans Text';
            src: url('assets/fonts/StackSansText-Bold.woff2') format('woff2');
            font-weight: 700;
            font-display: swap;
        }

        :root {
            --primary: #0066ff;
            --secondary: #bffe13;
            --ink: #101114;
            --paper: #fafafa;
            --white: #ffffff;
            --muted-white: rgba(255, 255, 255, 0.78);
            --font-heading: 'Stack Sans Notch', Arial, sans-serif;
            --font-body: 'Stack Sans Text', Arial, sans-serif;
            --radius-pill: 999px;
            --content-width: 1120px;
            --header-height: 76px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            min-width: 320px;
            overflow-x: hidden;
            color: var(--ink);
            background: var(--paper);
            font-family: var(--font-body);
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        img,
        video {
            display: block;
            max-width: 100%;
        }

        a {
            color: inherit;
        }

        h1,
        h2,
        h3,
        .tight-text {
            font-family: var(--font-heading);
            font-weight: 700;
        }

        .site-header {
            position: fixed;
            inset: 0 0 auto;
            z-index: 20;
            display: flex;
            justify-content: center;
            padding: 14px 20px;
            background: linear-gradient(to bottom, rgba(8, 9, 12, 0.76), rgba(8, 9, 12, 0));
        }

        .header-inner {
            width: min(100%, var(--content-width));
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            text-decoration: none;
        }

        .logo-img {
            width: 46px;
            height: 46px;
            flex: 0 0 46px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 50%;
            object-fit: cover;
            background: rgba(255, 255, 255, 0.08);
        }

        .brand-name {
            display: none;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .site-header .btn-header,
        .site-header .btn-header:visited {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 10px 20px;
            border: 1px solid rgba(255, 255, 255, 0.48);
            border-radius: var(--radius-pill);
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
            box-shadow:
                0 14px 34px rgba(0, 0, 0, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.38);
            font-size: 0.84rem;
            font-weight: 800;
            text-decoration: none;
            transition:
                transform 180ms ease,
                background-color 180ms ease,
                color 180ms ease,
                border-color 180ms ease,
                box-shadow 180ms ease;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .site-header .btn-header:hover {
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.34);
            background: var(--primary);
            box-shadow:
                0 18px 44px rgba(0, 102, 255, 0.32),
                0 12px 30px rgba(0, 0, 0, 0.20);
            transform: translateY(-1px);
        }

        .hero {
            position: relative;
            min-height: 92svh;
            isolation: isolate;
            display: flex;
            align-items: flex-end;
            padding: calc(var(--header-height) + 42px) 20px 56px;
            overflow: hidden;
            color: var(--white);
            background:
                radial-gradient(circle at 18% 16%, rgba(0, 102, 255, 0.34), transparent 30%),
                linear-gradient(135deg, #111318 0%, #07080a 100%);
        }

        .hero-media {
            position: absolute;
            inset: 0;
            z-index: -3;
            overflow: hidden;
            background:
                radial-gradient(circle at 72% 24%, rgba(0, 102, 255, 0.3), transparent 34%),
                radial-gradient(circle at 18% 82%, rgba(191, 254, 19, 0.18), transparent 28%),
                linear-gradient(135deg, #111318 0%, #07080a 100%);
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            filter: saturate(1.08) contrast(1.04);
            transform: none;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: -2;
            background:
                linear-gradient(90deg, rgba(5, 6, 8, 0.66) 0%, rgba(5, 6, 8, 0.36) 52%, rgba(5, 6, 8, 0.16) 100%),
                linear-gradient(0deg, rgba(5, 6, 8, 0.62) 0%, rgba(5, 6, 8, 0.08) 48%, rgba(5, 6, 8, 0.24) 100%);
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            z-index: 0;
            height: clamp(96px, 16vw, 190px);
            background: linear-gradient(to bottom, rgba(8, 11, 15, 0), #080b0f 100%);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            width: min(100%, var(--content-width));
            margin: 0 auto;
        }

        .hero-content {
            max-width: 620px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .hero-kicker::before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--secondary);
            box-shadow: 0 0 22px rgba(191, 254, 19, 0.86);
        }

        .hero h1 {
            max-width: 11.8ch;
            color: var(--white);
            font-size: clamp(2.45rem, 10.8vw, 3.8rem);
            line-height: 0.98;
            letter-spacing: 0;
        }

        .highlight-green {
            color: var(--secondary);
        }

        .subtitle {
            max-width: 560px;
            margin-top: 18px;
            color: var(--muted-white);
            font-size: clamp(0.98rem, 2.4vw, 1.18rem);
            line-height: 1.45;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            margin-top: 24px;
        }

        .btn-primary-animated {
            position: relative;
            isolation: isolate;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 11px;
            min-height: 50px;
            width: fit-content;
            max-width: 100%;
            padding: 13px 20px 13px 24px;
            overflow: hidden;
            color: var(--white);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 999px;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.14),
                0 12px 28px rgba(0, 0, 0, 0.22);
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0;
            text-align: center;
            text-decoration: none;
            text-transform: none;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition:
                transform 180ms ease,
                border-color 180ms ease,
                background-color 180ms ease,
                box-shadow 180ms ease,
                color 180ms ease;
        }

        .btn-primary-animated::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: inherit;
            background:
                radial-gradient(circle at 20% 50%, rgba(191, 254, 19, 0.22), transparent 35%),
                radial-gradient(circle at 80% 50%, rgba(191, 254, 19, 0.14), transparent 30%),
                rgba(255, 255, 255, 0.03);
            filter: blur(8px);
            animation: cta-glow-flow 3.2s linear infinite;
            opacity: 1;
            pointer-events: none;
        }

        .btn-primary-animated::after {
            content: "";
            position: absolute;
            inset: 1px;
            z-index: 0;
            border-radius: inherit;
            background:
                linear-gradient(
                    120deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.03) 30%,
                    rgba(191, 254, 19, 0.1) 55%,
                    rgba(255, 255, 255, 0.04) 100%
            );
            opacity: 0.95;
            pointer-events: none;
        }

        .btn-primary-animated:hover {
            transform: translateY(-1px);
            border-color: rgba(191, 254, 19, 0.55);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.18),
                0 16px 34px rgba(0, 0, 0, 0.28),
                0 0 22px rgba(191, 254, 19, 0.14);
        }

        .btn-primary-animated:hover .btn-icon {
            transform: translate(2px, -2px);
        }

        .btn-primary-animated:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 4px;
        }

        .site-header .btn-header:focus-visible {
            outline: 3px solid rgba(0, 102, 255, 0.52);
            outline-offset: 4px;
        }

        .btn-label,
        .btn-whatsapp-icon,
        .btn-icon {
            position: relative;
            z-index: 1;
        }

        .btn-whatsapp-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .btn-whatsapp-icon svg {
            display: block;
        }

        .btn-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 180ms ease;
        }

        .btn-icon svg {
            display: block;
        }

        @keyframes cta-glow-flow {
            0% {
                transform: translateX(-12%) scale(1);
                opacity: 0.9;
            }
            50% {
                transform: translateX(12%) scale(1.08);
                opacity: 1;
            }
            100% {
                transform: translateX(-12%) scale(1);
                opacity: 0.9;
            }
        }

        @media (max-width: 640px) {
            .btn-primary-animated {
                min-height: 46px;
                padding: 12px 18px 12px 20px;
                gap: 8px;
                font-size: 0.88rem;
            }

            .btn-primary-animated::after {
                opacity: 0.45;
            }
        }

        .social-proof {
            position: relative;
            padding: clamp(58px, 8vw, 78px) 0 clamp(70px, 9vw, 92px);
            overflow: hidden;
            background: #080b0f;
        }

        .social-proof::before,
        .social-proof::after {
            content: "";
            position: absolute;
            top: 0;
            z-index: 2;
            width: 74px;
            height: 100%;
            pointer-events: none;
        }

        .social-proof::before {
            left: 0;
            background: linear-gradient(90deg, #080b0f, rgba(8, 11, 15, 0));
        }

        .social-proof::after {
            right: 0;
            background: linear-gradient(270deg, #080b0f, rgba(8, 11, 15, 0));
        }

        .social-proof-text {
            margin-bottom: clamp(34px, 5vw, 48px);
            color: rgba(255, 255, 255, 0.64);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-align: center;
            text-transform: uppercase;
        }

        .logo-marquee {
            display: flex;
            width: max-content;
            animation: logo-scroll 30s linear infinite;
        }

        .logo-group {
            display: flex;
            align-items: center;
            gap: clamp(44px, 8vw, 98px);
            padding-right: clamp(44px, 8vw, 98px);
        }

        .client-logo {
            width: auto;
            height: clamp(72px, 13vw, 116px);
            max-width: 284px;
            object-fit: contain;
            filter: grayscale(1) saturate(0) brightness(0.86);
            opacity: 0.74;
            transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
        }

        .client-logo:hover {
            opacity: 0.92;
            transform: translateY(-2px);
        }

        @keyframes logo-scroll {
            to { transform: translateX(-50%); }
        }

        @media (hover: hover) and (pointer: fine) {
            .logo-marquee:hover {
                animation-play-state: paused;
            }
        }

        .problem {
            position: relative;
            overflow: hidden;
            padding: clamp(80px, 12vw, 120px) 20px;
            color: var(--white);
            background:
                radial-gradient(circle at 18% 12%, rgba(191, 254, 19, 0.20), transparent 30%),
                radial-gradient(circle at 82% 72%, rgba(42, 120, 42, 0.22), transparent 34%),
                linear-gradient(180deg, #0a1308 0%, #071007 46%, #101114 100%);
        }

        .problem::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 18% 8%, rgba(191, 254, 19, 0.14), transparent 28%),
                linear-gradient(90deg, rgba(191, 254, 19, 0.055) 1px, transparent 1px);
            background-size: auto, 92px 100%;
            opacity: 0.58;
        }

        .problem-inner {
            position: relative;
            z-index: 1;
            width: min(100%, var(--content-width));
            margin: 0 auto;
        }

        .problem-header {
            max-width: 940px;
        }

        .problem-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: var(--secondary);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            line-height: 1;
            text-transform: uppercase;
        }

        .problem-kicker::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
        }

        .problem-title {
            max-width: 980px;
            color: var(--white);
            font-size: clamp(2.25rem, 7.6vw, 5.25rem);
            line-height: 0.98;
        }

        .problem-title span {
            color: var(--secondary);
        }

        .problem-intro {
            max-width: 720px;
            margin-top: 24px;
            color: var(--muted-white);
            font-size: clamp(1.05rem, 2.4vw, 1.35rem);
            line-height: 1.45;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 34px;
            margin-top: clamp(52px, 8vw, 86px);
        }

        .problem-item {
            padding-top: 0;
        }

        .problem-number {
            margin-bottom: 22px;
            color: rgba(191, 254, 19, 0.78);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.18em;
        }

        .problem-item h3 {
            max-width: 18ch;
            color: var(--white);
            font-size: clamp(1.55rem, 5vw, 2.42rem);
            line-height: 1;
        }

        .problem-item p:last-child {
            max-width: 34rem;
            margin-top: 18px;
            color: rgba(255, 255, 255, 0.72);
            font-size: clamp(1rem, 2.2vw, 1.08rem);
            line-height: 1.62;
        }

        .services {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: clamp(76px, 11vw, 122px) 20px clamp(88px, 12vw, 132px);
            background-color: var(--paper);
            background-image: radial-gradient(rgba(16, 17, 20, 0.075) 1.15px, transparent 1.2px);
            background-size: 22px 22px;
            color: var(--ink);
        }

        .services::before,
        .services::after {
            content: "";
            position: absolute;
            z-index: 0;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(95px);
        }

        .services::before {
            top: -10%;
            left: -10%;
            background: rgba(0, 102, 255, 0.18);
        }

        .services::after {
            right: -10%;
            bottom: -10%;
            background: rgba(191, 254, 19, 0.15);
        }

        .services-inner {
            position: relative;
            z-index: 2;
            width: min(100%, var(--content-width));
            margin: 0 auto;
        }

        .section-header {
            max-width: 780px;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            line-height: 1;
            text-transform: uppercase;
        }

        .section-kicker::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
        }

        .section-title {
            max-width: 780px;
            color: var(--ink);
            font-size: clamp(2.15rem, 7.2vw, 4.65rem);
            line-height: 1;
            letter-spacing: 0;
        }

        .section-intro {
            max-width: 660px;
            margin-top: 18px;
            color: rgba(16, 17, 20, 0.7);
            font-size: clamp(1rem, 2.4vw, 1.16rem);
            line-height: 1.55;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-top: clamp(34px, 6vw, 56px);
        }

        .service-card {
            position: relative;
            min-height: 360px;
            overflow: hidden;
            border-radius: 24px;
            background:
                linear-gradient(135deg, rgba(16, 17, 20, 0.88), rgba(16, 17, 20, 0.48)),
                var(--ink);
            isolation: isolate;
        }

        .service-card-featured {
            min-height: 460px;
        }

        .card-bg-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            transform: scale(1);
            transition: transform 0.6s ease;
            pointer-events: none;
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background:
                linear-gradient(
                    to top,
                    rgba(16, 17, 20, 0.92) 0%,
                    rgba(16, 17, 20, 0.62) 42%,
                    rgba(16, 17, 20, 0.3) 100%
                );
        }

        .service-card > *:not(.card-bg-video):not(.card-overlay) {
            position: relative;
            z-index: 2;
        }

        .service-content {
            position: relative;
            z-index: 2;
            min-height: inherit;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            padding: clamp(24px, 4.5vw, 42px);
        }

        .service-card h3 {
            max-width: 10ch;
            color: var(--white);
            font-size: clamp(2rem, 6.4vw, 4.4rem);
            line-height: 0.95;
            letter-spacing: 0;
        }

        .service-card p {
            max-width: 28rem;
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.78);
            font-size: clamp(1rem, 2.5vw, 1.28rem);
            line-height: 1.35;
        }

        .badge-specialty {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: fit-content;
            padding: 6px 12px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 99px;
            border: none;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            line-height: 1;
            text-transform: uppercase;
        }

        .badge-specialty svg {
            display: block;
            flex-shrink: 0;
            margin-bottom: 0;
        }

        .badge-specialty + h3 {
            margin-top: 16px;
        }

        .service-link {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 44px;
            margin-top: 24px;
            border-radius: var(--radius-pill);
            color: var(--white);
            font-size: 0.84rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-decoration: none;
            text-transform: uppercase;
            transition: color 180ms ease, gap 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
        }

        .service-link svg {
            width: 28px;
            height: 28px;
            flex: 0 0 28px;
            padding: 7px;
            border: 1px solid rgba(0, 102, 255, 0.34);
            border-radius: 50%;
            color: var(--white);
            background: rgba(0, 102, 255, 0.34);
            fill: none;
            stroke: currentColor;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
        }

        .service-link:hover {
            color: #8fbdff;
        }

        .service-link:hover svg {
            border-color: rgba(0, 102, 255, 0.72);
            background: var(--primary);
            transform: translate(3px, -3px);
        }

        .service-link:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
        }

        .service-link-primary {
            min-height: 48px;
            padding: 0 10px 0 20px;
            border: 1px solid rgba(255, 255, 255, 0.58);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
        }

        .service-link-primary:hover {
            color: var(--white);
            border-color: var(--primary);
            background: var(--primary);
        }

        .service-link-primary:hover svg {
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.28);
            background: rgba(255, 255, 255, 0.14);
        }

        @media (hover: hover) and (pointer: fine) {
            .service-card:hover .card-bg-video {
                transform: scale(1.05);
            }
        }

        .portfolio-section {
            position: relative;
            overflow: hidden;
            background: var(--ink);
            color: var(--white);
            padding: clamp(80px, 12vw, 140px) 0;
        }

        .portfolio-inner {
            width: min(100% - 32px, 1200px);
            margin: 0 auto;
        }

        .portfolio-header {
            max-width: 760px;
            margin-bottom: clamp(40px, 6vw, 72px);
        }

        .portfolio-header .section-kicker {
            color: var(--secondary);
        }

        .portfolio-header h2 {
            margin: 0 0 18px;
            color: var(--white);
            font-size: clamp(2.4rem, 7vw, 5.6rem);
            line-height: 0.95;
            letter-spacing: 0;
        }

        .portfolio-header p:not(.section-kicker) {
            color: rgba(255, 255, 255, 0.72);
            font-size: clamp(1rem, 1.6vw, 1.2rem);
            line-height: 1.5;
        }

        .portfolio-row + .portfolio-row {
            margin-top: clamp(44px, 7vw, 76px);
        }

        .portfolio-row-header {
            margin-bottom: 18px;
        }

        .portfolio-row-header h3 {
            margin: 0 0 8px;
            color: var(--white);
            font-size: clamp(1.35rem, 3vw, 2rem);
            letter-spacing: 0;
        }

        .portfolio-row-header p {
            max-width: 680px;
            margin: 0;
            color: rgba(255, 255, 255, 0.64);
            font-size: 0.98rem;
            line-height: 1.5;
        }

        .portfolio-track-wrap {
            position: relative;
        }

        .portfolio-track {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            overscroll-behavior-x: contain;
            scroll-snap-type: none;
            scrollbar-width: none;
            padding: 4px 0 10px;
            cursor: grab;
            user-select: none;
            -webkit-user-select: none;
        }

        .portfolio-track.is-dragging {
            cursor: grabbing;
            scroll-snap-type: none;
        }

        .portfolio-track::-webkit-scrollbar {
            display: none;
        }

        .portfolio-scroll-hint {
            position: absolute;
            top: 4px;
            right: 0;
            bottom: 10px;
            z-index: 4;
            display: flex;
            width: clamp(44px, 8vw, 86px);
            align-items: center;
            justify-content: flex-end;
            padding-right: 12px;
            color: var(--white);
            background:
                linear-gradient(
                    to left,
                    rgba(5, 6, 8, 0.58) 0%,
                    rgba(5, 6, 8, 0.32) 42%,
                    rgba(5, 6, 8, 0) 100%
                );
            opacity: 0;
            pointer-events: none;
            transition: opacity 180ms ease;
        }

        .portfolio-track-wrap.can-scroll-more:not(.is-at-end) .portfolio-scroll-hint {
            opacity: 1;
        }

        .portfolio-scroll-hint svg {
            width: 18px;
            height: 18px;
            opacity: 0.72;
            transform: translateX(0);
            animation: portfolio-hint-nudge 1.6s ease-in-out infinite;
        }

        @keyframes portfolio-hint-nudge {
            0%,
            100% {
                transform: translateX(0);
                opacity: 0.55;
            }

            50% {
                transform: translateX(5px);
                opacity: 0.95;
            }
        }

        .portfolio-card {
            position: relative;
            flex: 0 0 clamp(200px, 40vw, 300px);
            aspect-ratio: 9 / 16;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.04);
            scroll-snap-align: none;
            cursor: pointer;
            padding: 0;
            color: var(--white);
            font: inherit;
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
        }

        .portfolio-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform 0.55s ease;
        }

        .portfolio-card img,
        .portfolio-card-overlay,
        .portfolio-play,
        .portfolio-play *,
        .portfolio-card-label,
        .portfolio-card-label *,
        .portfolio-scroll-hint,
        .portfolio-scroll-hint * {
            pointer-events: none;
        }

        .portfolio-card {
            pointer-events: auto;
        }

        .portfolio-card-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    to top,
                    rgba(5, 6, 8, 0.9) 0%,
                    rgba(5, 6, 8, 0.35) 46%,
                    rgba(5, 6, 8, 0.08) 100%
                );
            pointer-events: none;
        }

        .portfolio-play {
            position: absolute;
            inset: 0;
            margin: auto;
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 999px;
            color: var(--white);
            background: rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition:
                transform 180ms ease,
                background-color 180ms ease,
                color 180ms ease;
        }

        .portfolio-card-label {
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 16px;
            z-index: 2;
            display: grid;
            gap: 4px;
            text-align: left;
        }

        .portfolio-card-label span {
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0;
        }

        .portfolio-card-label small {
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.78rem;
            font-weight: 600;
        }

        .portfolio-card:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 4px;
        }

        @media (hover: hover) and (pointer: fine) {
            .portfolio-card:hover img {
                transform: scale(1.06);
            }

            .portfolio-card:hover .portfolio-play {
                transform: scale(1.06);
                color: var(--ink);
                background: var(--secondary);
            }

            .method-step {
                transition: transform 220ms ease;
            }

            .method-step:hover {
                transform: translateY(-4px);
            }

            .method-step:hover .method-step-number {
                color: rgba(0, 102, 255, 0.1);
            }
        }

        .portfolio-modal {
            position: fixed;
            inset: 0;
            z-index: 999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .portfolio-modal.is-open {
            display: flex;
        }

        body.modal-open {
            overflow: hidden;
        }

        .portfolio-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.82);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .portfolio-modal-dialog {
            position: relative;
            z-index: 1;
            width: min(420px, 92vw);
            aspect-ratio: 9 / 16;
            overflow: hidden;
            border-radius: 24px;
            background: #000000;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
        }

        .portfolio-modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 3;
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 999px;
            color: var(--white);
            background: rgba(0, 0, 0, 0.42);
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
        }

        .portfolio-video-frame,
        .portfolio-video-frame iframe {
            width: 100%;
            height: 100%;
        }

        .portfolio-video-frame iframe {
            display: block;
            border: 0;
        }

        .method {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: clamp(84px, 12vw, 132px) 20px;
            background-color: var(--paper);
            background-image: radial-gradient(rgba(16, 17, 20, 0.055) 1px, transparent 1px);
            background-size: 24px 24px;
            color: var(--ink);
            content-visibility: auto;
            contain-intrinsic-size: 900px;
        }

        .method::before {
            content: "";
            position: absolute;
            top: -18%;
            right: -14%;
            z-index: 0;
            width: 560px;
            height: 560px;
            border-radius: 50%;
            background: rgba(0, 102, 255, 0.12);
            filter: blur(95px);
            pointer-events: none;
        }

        .method::after {
            content: "";
            position: absolute;
            left: -14%;
            bottom: -22%;
            z-index: 0;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: rgba(191, 254, 19, 0.11);
            filter: blur(100px);
            pointer-events: none;
        }

        .method-inner {
            position: relative;
            z-index: 1;
            width: min(100%, var(--content-width));
            margin: 0 auto;
        }

        .method-header {
            max-width: 820px;
        }

        .method-steps {
            position: relative;
            display: grid;
            grid-template-columns: 1fr;
            gap: 34px;
            margin-top: clamp(48px, 7vw, 76px);
        }

        .method-step {
            position: relative;
            min-height: 220px;
            padding: 26px 0 0;
        }

        .method-step-number {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            color: rgba(16, 17, 20, 0.065);
            font-family: var(--font-heading);
            font-size: clamp(4rem, 18vw, 6.8rem);
            font-weight: 700;
            line-height: 0.8;
            letter-spacing: -0.08em;
            pointer-events: none;
            user-select: none;
        }

        .method-step-content {
            position: relative;
            z-index: 1;
            padding-top: 48px;
        }

        .method-step h3 {
            max-width: 14ch;
            color: var(--ink);
            font-size: clamp(1.55rem, 4.8vw, 2.25rem);
            line-height: 0.98;
            letter-spacing: 0;
        }

        .method-step p {
            max-width: 34rem;
            margin-top: 16px;
            color: rgba(16, 17, 20, 0.72);
            font-size: clamp(0.98rem, 2vw, 1.06rem);
            line-height: 1.58;
        }

        .method-cta {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            align-items: center;
            margin-top: clamp(52px, 8vw, 86px);
            padding: clamp(26px, 5vw, 42px);
            overflow: hidden;
            border-radius: 28px;
            color: var(--white);
            background:
                radial-gradient(circle at 85% 20%, rgba(0, 102, 255, 0.28), transparent 32%),
                linear-gradient(135deg, #101114 0%, #07080a 100%);
        }

        .method-cta-kicker {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .method-cta h3 {
            margin: 0;
            color: var(--white);
            font-size: clamp(1.85rem, 5vw, 3.2rem);
            line-height: 0.98;
            letter-spacing: 0;
        }

        .method-cta-copy p:not(.method-cta-kicker) {
            max-width: 620px;
            margin-top: 14px;
            color: rgba(255, 255, 255, 0.72);
            font-size: clamp(1rem, 2vw, 1.12rem);
            line-height: 1.5;
        }

        .method-cta-actions {
            display: flex;
            flex-wrap: wrap;
            width: min(100%, 320px);
            flex-direction: column;
            gap: 10px;
            align-items: stretch;
        }

        .method-cta-button,
        .method-cta-button-secondary {
            display: inline-flex;
            width: 100%;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 13px 18px;
            border-radius: 999px;
            color: var(--white);
            font-size: 0.92rem;
            font-weight: 800;
            text-decoration: none;
            white-space: nowrap;
            transition:
                transform 180ms ease,
                background-color 180ms ease,
                border-color 180ms ease,
                box-shadow 180ms ease,
                color 180ms ease,
                filter 180ms ease;
        }

        .method-cta-button-whatsapp {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            padding: 13px 20px 13px 22px;
            background:
                linear-gradient(135deg, #128C4A 0%, #25D366 100%);
            border: 1px solid rgba(255, 255, 255, 0.24);
            box-shadow:
                0 16px 42px rgba(37, 211, 102, 0.24),
                0 10px 26px rgba(0, 0, 0, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.28);
        }

        .method-cta-button-whatsapp::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: inherit;
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.26), transparent 34%),
                radial-gradient(circle at 80% 50%, rgba(37, 211, 102, 0.34), transparent 32%),
                rgba(255, 255, 255, 0.04);
            filter: blur(8px);
            animation: method-whatsapp-glow-flow 3.4s linear infinite;
            opacity: 1;
            pointer-events: none;
        }

        .method-cta-button-whatsapp::after {
            content: "";
            position: absolute;
            inset: 1px;
            z-index: 0;
            border-radius: inherit;
            background:
                linear-gradient(
                    120deg,
                    rgba(255, 255, 255, 0.16) 0%,
                    rgba(255, 255, 255, 0.04) 34%,
                    rgba(255, 255, 255, 0.14) 58%,
                    rgba(255, 255, 255, 0.04) 100%
                );
            opacity: 0.7;
            pointer-events: none;
        }

        .method-cta-button-secondary {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.24);
            box-shadow:
                0 16px 42px rgba(255, 255, 255, 0.08),
                0 10px 26px rgba(0, 0, 0, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.28);
        }

        .method-cta-button-messenger {
            background:
                linear-gradient(135deg, #006AFF 0%, #00B2FF 100%);
            box-shadow:
                0 16px 42px rgba(0, 132, 255, 0.24),
                0 10px 26px rgba(0, 0, 0, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.30);
        }

        .method-cta-button-email {
            color: var(--ink);
            background:
                linear-gradient(135deg, #eef3ff 0%, #ffffff 100%);
            box-shadow:
                0 16px 42px rgba(255, 255, 255, 0.16),
                0 10px 26px rgba(0, 0, 0, 0.20),
                inset 0 1px 0 rgba(255, 255, 255, 0.72);
        }

        .method-cta-button-messenger::before,
        .method-cta-button-email::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: inherit;
            filter: blur(8px);
            animation: method-whatsapp-glow-flow 3.4s linear infinite;
            opacity: 1;
            pointer-events: none;
        }

        .method-cta-button-messenger::before {
            background:
                radial-gradient(circle at 26% 44%, rgba(255, 255, 255, 0.26), transparent 34%),
                radial-gradient(circle at 78% 56%, rgba(0, 198, 255, 0.36), transparent 32%),
                rgba(255, 255, 255, 0.04);
            animation-delay: -1.15s;
        }

        .method-cta-button-email::before {
            background:
                radial-gradient(circle at 18% 58%, rgba(0, 102, 255, 0.16), transparent 34%),
                radial-gradient(circle at 84% 42%, rgba(255, 255, 255, 0.52), transparent 32%),
                rgba(255, 255, 255, 0.08);
            animation-delay: -2.25s;
        }

        .method-cta-button-messenger::after,
        .method-cta-button-email::after {
            content: "";
            position: absolute;
            inset: 1px;
            z-index: 0;
            border-radius: inherit;
            opacity: 0.7;
            pointer-events: none;
        }

        .method-cta-button-messenger::after {
            background:
                linear-gradient(
                    120deg,
                    rgba(255, 255, 255, 0.17) 0%,
                    rgba(255, 255, 255, 0.05) 34%,
                    rgba(255, 255, 255, 0.13) 58%,
                    rgba(255, 255, 255, 0.04) 100%
                );
        }

        .method-cta-button-email::after {
            background:
                linear-gradient(
                    120deg,
                    rgba(255, 255, 255, 0.58) 0%,
                    rgba(255, 255, 255, 0.16) 36%,
                    rgba(0, 102, 255, 0.08) 58%,
                    rgba(255, 255, 255, 0.28) 100%
                );
        }

        .method-cta-button-messenger:hover {
            filter: saturate(1.08) brightness(1.03);
            border-color: rgba(255, 255, 255, 0.38);
            box-shadow:
                0 18px 48px rgba(0, 132, 255, 0.30),
                0 12px 30px rgba(0, 0, 0, 0.24),
                inset 0 1px 0 rgba(255, 255, 255, 0.36);
        }

        .method-cta-button-email:hover {
            filter: saturate(1.04) brightness(1.02);
            border-color: rgba(255, 255, 255, 0.58);
            box-shadow:
                0 18px 48px rgba(255, 255, 255, 0.20),
                0 12px 30px rgba(0, 0, 0, 0.24),
                inset 0 1px 0 rgba(255, 255, 255, 0.82);
        }

        .method-cta-button-icon,
        .method-cta-button-arrow {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .method-cta-button > span:not(.method-cta-button-icon):not(.method-cta-button-arrow),
        .method-cta-button-secondary > span:not(.method-cta-button-icon):not(.method-cta-button-arrow) {
            position: relative;
            z-index: 1;
        }

        .method-cta-button-icon svg,
        .method-cta-button-arrow svg {
            display: block;
        }

        .method-cta-button-arrow svg {
            transition: transform 180ms ease;
        }

        .method-cta-button:hover,
        .method-cta-button-secondary:hover {
            transform: translateY(-1px);
        }

        .method-cta-button-whatsapp:hover {
            filter: saturate(1.08) brightness(1.03);
            border-color: rgba(255, 255, 255, 0.38);
            box-shadow:
                0 18px 48px rgba(37, 211, 102, 0.30),
                0 12px 30px rgba(0, 0, 0, 0.24),
                inset 0 1px 0 rgba(255, 255, 255, 0.34);
        }

        .method-cta-button:hover .method-cta-button-arrow svg,
        .method-cta-button-secondary:hover .method-cta-button-arrow svg {
            transform: translate(2px, -2px);
        }

        .method-cta-button:focus-visible,
        .method-cta-button-secondary:focus-visible {
            outline: 3px solid rgba(255, 255, 255, 0.46);
            outline-offset: 4px;
        }

        @keyframes method-whatsapp-glow-flow {
            0% {
                transform: translateX(-12%) scale(1);
                opacity: 0.78;
            }

            50% {
                transform: translateX(12%) scale(1.08);
                opacity: 1;
            }

            100% {
                transform: translateX(-12%) scale(1);
                opacity: 0.78;
            }
        }

        .pricing {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: clamp(84px, 12vw, 132px) 20px;
            color: var(--ink);
            background-color: var(--paper);
            background-image: radial-gradient(rgba(16, 17, 20, 0.045) 1px, transparent 1px);
            background-size: 24px 24px;
        }

        .pricing::before,
        .pricing::after {
            content: "";
            position: absolute;
            z-index: 0;
            width: 560px;
            height: 560px;
            border-radius: 50%;
            filter: blur(110px);
            pointer-events: none;
        }

        .pricing::before {
            top: -18%;
            left: -14%;
            background: rgba(0, 102, 255, 0.10);
        }

        .pricing::after {
            right: -16%;
            bottom: 8%;
            background: rgba(191, 254, 19, 0.08);
        }

        .pricing-inner {
            position: relative;
            z-index: 1;
            width: min(100%, var(--content-width));
            margin: 0 auto;
        }

        .pricing-header {
            max-width: 820px;
        }

        .pricing-block {
            margin-top: clamp(52px, 8vw, 86px);
        }

        .pricing-block-header {
            max-width: 760px;
            margin-bottom: 24px;
        }

        .pricing-block-header h3 {
            margin: 0 0 10px;
            color: var(--ink);
            font-size: clamp(1.55rem, 3.8vw, 2.45rem);
            line-height: 1;
            letter-spacing: 0;
        }

        .pricing-block-header p {
            margin: 0;
            color: rgba(16, 17, 20, 0.68);
            font-size: clamp(0.98rem, 1.7vw, 1.08rem);
            line-height: 1.58;
        }

        .pricing-grid,
        .pricing-wide-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .pricing-card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: clamp(22px, 3.4vw, 30px);
            border: 1px solid rgba(16, 17, 20, 0.10);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.72);
            box-shadow:
                0 18px 54px rgba(16, 17, 20, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.74);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .pricing-card-featured {
            border-color: rgba(0, 102, 255, 0.48);
            box-shadow:
                0 22px 64px rgba(0, 102, 255, 0.14),
                0 10px 34px rgba(16, 17, 20, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.78);
        }

        .pricing-badge {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            padding: 7px 12px;
            border-radius: 999px;
            color: var(--white);
            background: var(--primary);
            font-size: 0.72rem;
            font-weight: 900;
            letter-spacing: 0.07em;
            line-height: 1;
        }

        .pricing-card h4 {
            margin: 0;
            color: var(--ink);
            font-size: clamp(1.35rem, 3vw, 1.85rem);
            line-height: 1;
            letter-spacing: 0;
        }

        .pricing-price {
            margin: 18px 0 0;
            color: var(--ink);
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -0.04em;
        }

        .pricing-price span {
            display: inline-block;
            font-size: 0.92rem;
            font-weight: 800;
            letter-spacing: 0;
            color: rgba(16, 17, 20, 0.56);
        }

        .pricing-secondary {
            margin: 10px 0 0;
            color: rgba(16, 17, 20, 0.56);
            font-size: 0.9rem;
            font-weight: 700;
        }

        .pricing-target {
            margin: 20px 0 0;
            color: rgba(16, 17, 20, 0.76);
            font-size: 1rem;
            font-weight: 800;
            line-height: 1.42;
        }

        .pricing-list {
            display: grid;
            gap: 12px;
            margin: 24px 0 0;
            padding: 0;
            list-style: none;
        }

        .pricing-list li {
            display: grid;
            grid-template-columns: 22px minmax(0, 1fr);
            gap: 10px;
            align-items: start;
            color: rgba(16, 17, 20, 0.70);
            font-size: 0.95rem;
            line-height: 1.42;
        }

        .pricing-check {
            display: inline-flex;
            width: 22px;
            height: 22px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            color: var(--primary);
            background: rgba(0, 102, 255, 0.10);
        }

        .pricing-check svg {
            display: block;
        }

        .pricing-cta {
            display: inline-flex;
            width: fit-content;
            min-height: 46px;
            align-items: center;
            justify-content: center;
            margin-top: auto;
            padding: 12px 18px;
            border: 1px solid rgba(0, 102, 255, 0.24);
            border-radius: 999px;
            color: var(--primary);
            background: rgba(255, 255, 255, 0.62);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
            font-size: 0.9rem;
            font-weight: 900;
            text-decoration: none;
            transition:
                transform 180ms ease,
                background-color 180ms ease,
                border-color 180ms ease,
                color 180ms ease,
                box-shadow 180ms ease;
        }

        .pricing-list + .pricing-cta,
        .pricing-note + .pricing-cta,
        .pricing-detail + .pricing-cta {
            margin-top: 28px;
        }

        .pricing-cta:hover {
            transform: translateY(-1px);
            color: var(--white);
            background: var(--primary);
            border-color: var(--primary);
            box-shadow:
                0 16px 38px rgba(0, 102, 255, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.22);
        }

        .pricing-cta:focus-visible {
            outline: 3px solid rgba(0, 102, 255, 0.42);
            outline-offset: 4px;
        }

        .pricing-cta-primary {
            color: var(--white);
            background: var(--primary);
            border-color: var(--primary);
            box-shadow:
                0 16px 42px rgba(0, 102, 255, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.22);
        }

        .pricing-cta-primary:hover {
            box-shadow:
                0 20px 48px rgba(0, 102, 255, 0.30),
                inset 0 1px 0 rgba(255, 255, 255, 0.26);
        }

        .pricing-wide-card {
            gap: 18px;
        }

        .pricing-detail,
        .pricing-note {
            margin: 0;
            color: rgba(16, 17, 20, 0.68);
            font-size: 0.96rem;
            line-height: 1.55;
        }

        .pricing-detail strong {
            color: var(--ink);
        }

        .pricing-note {
            color: rgba(16, 17, 20, 0.52);
            font-size: 0.86rem;
        }

        .pricing-study {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: clamp(44px, 7vw, 72px);
            padding: clamp(26px, 5vw, 46px);
            overflow: hidden;
            border-radius: 30px;
            color: var(--white);
            background:
                radial-gradient(circle at 84% 20%, rgba(0, 102, 255, 0.34), transparent 32%),
                radial-gradient(circle at 12% 88%, rgba(191, 254, 19, 0.12), transparent 30%),
                linear-gradient(135deg, #101114 0%, #06070a 100%);
        }

        .pricing-study h3 {
            margin: 0;
            color: var(--white);
            font-size: clamp(1.75rem, 4.4vw, 3rem);
            line-height: 0.98;
            letter-spacing: 0;
        }

        .pricing-study p {
            max-width: 760px;
            margin: 14px 0 0;
            color: rgba(255, 255, 255, 0.72);
            font-size: clamp(0.98rem, 1.7vw, 1.08rem);
            line-height: 1.58;
        }

        .pricing-cta-dark {
            color: var(--white);
            background: rgba(0, 102, 255, 0.92);
            border-color: rgba(255, 255, 255, 0.28);
            box-shadow:
                0 16px 42px rgba(0, 102, 255, 0.24),
                0 10px 26px rgba(0, 0, 0, 0.22);
        }

        .pricing-footer-note {
            max-width: 760px;
            margin: 28px auto 0;
            color: rgba(16, 17, 20, 0.58);
            font-size: 0.82rem;
            line-height: 1.55;
            text-align: center;
        }

        @media (min-width: 760px) {
            .pricing {
                padding-inline: 32px;
            }

            .pricing-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

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

            .pricing-study {
                grid-template-columns: minmax(0, 1fr) auto;
                align-items: center;
            }

            .pricing-study .pricing-cta {
                justify-self: end;
                white-space: nowrap;
            }
        }

        @media (max-width: 640px) {
            .portfolio-scroll-hint {
                width: 46px;
                padding-right: 8px;
            }

            .portfolio-scroll-hint svg {
                width: 16px;
                height: 16px;
            }

            .method {
                padding-top: 78px;
                padding-bottom: 86px;
            }

            .method-steps {
                gap: 40px;
            }

            .method-step {
                min-height: auto;
            }

            .method-step-content {
                padding-top: 54px;
            }

            .method-step h3 {
                max-width: 16ch;
            }

            .method-cta {
                border-radius: 24px;
            }

            .method-cta-actions {
                width: 100%;
            }

            .method-cta-button,
            .method-cta-button-secondary {
                white-space: normal;
            }

            .pricing {
                padding-top: 78px;
                padding-bottom: 86px;
            }

            .pricing-card {
                border-radius: 24px;
            }

            .pricing-price {
                font-size: clamp(2rem, 11vw, 2.6rem);
            }

            .pricing-cta {
                width: 100%;
            }

            .pricing-study {
                border-radius: 24px;
            }
        }

        /* Pricing offer decks */
        .pricing {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: clamp(84px, 12vw, 140px) 0;
            color: var(--ink);
            background:
                radial-gradient(circle at 12% 8%, rgba(0, 102, 255, 0.10), transparent 30%),
                radial-gradient(circle at 88% 18%, rgba(191, 254, 19, 0.13), transparent 28%),
                linear-gradient(180deg, #f6f7ef 0%, #fafafa 48%, #f7f8f2 100%);
        }

        .pricing::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(115deg, rgba(16, 17, 20, 0.035) 1px, transparent 1px);
            background-size: 72px 72px;
            opacity: 0.45;
            pointer-events: none;
        }

        .pricing::after {
            content: "";
            position: absolute;
            right: -18%;
            bottom: 18%;
            z-index: 0;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: rgba(0, 102, 255, 0.08);
            filter: blur(110px);
            pointer-events: none;
        }

        .pricing-inner {
            position: relative;
            z-index: 1;
            width: min(100% - 32px, 1200px);
            margin: 0 auto;
        }

        .pricing-header {
            max-width: 820px;
        }

        .pricing-deck {
            margin-top: clamp(56px, 8vw, 88px);
        }

        .pricing-deck-header {
            max-width: 760px;
            margin-bottom: 18px;
        }

        .pricing-deck-eyebrow {
            margin: 0 0 8px;
            color: var(--primary);
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            line-height: 1;
            text-transform: uppercase;
        }

        .pricing-deck-header h3 {
            margin: 0;
            color: var(--ink);
            font-size: clamp(1.55rem, 4vw, 2.6rem);
            line-height: 1;
            letter-spacing: 0;
        }

        .pricing-track-wrap {
            position: relative;
        }

        .pricing-track {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            overscroll-behavior-x: contain;
            scroll-snap-type: none;
            scrollbar-width: none;
            padding: 4px 0 12px;
            cursor: grab;
            user-select: none;
        }

        .pricing-track.is-dragging {
            cursor: grabbing;
            scroll-snap-type: none;
        }

        .pricing-track::-webkit-scrollbar {
            display: none;
        }

        .pricing-scroll-hint {
            position: absolute;
            top: 4px;
            right: 0;
            bottom: 12px;
            z-index: 4;
            display: flex;
            width: clamp(48px, 9vw, 96px);
            align-items: center;
            justify-content: flex-end;
            padding-right: 12px;
            color: var(--ink);
            background:
                linear-gradient(
                    to left,
                    rgba(246, 247, 239, 0.90) 0%,
                    rgba(246, 247, 239, 0.54) 44%,
                    rgba(246, 247, 239, 0) 100%
                );
            opacity: 0;
            pointer-events: none;
            transition: opacity 180ms ease;
        }

        .pricing-track-wrap.can-scroll-more:not(.is-at-end) .pricing-scroll-hint {
            opacity: 1;
        }

        .pricing-scroll-hint svg {
            width: 18px;
            height: 18px;
            opacity: 0.72;
            animation: pricing-hint-nudge 1.6s ease-in-out infinite;
        }

        @keyframes pricing-hint-nudge {
            0%, 100% {
                transform: translateX(0);
                opacity: 0.55;
            }

            50% {
                transform: translateX(5px);
                opacity: 0.95;
            }
        }

        .pricing-card {
            position: relative;
            flex: 0 0 clamp(280px, 72vw, 390px);
            min-height: 540px;
            padding: 0;
            overflow: hidden;
            border: 1px solid rgba(16, 17, 20, 0.10);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.72);
            box-shadow:
                0 18px 54px rgba(16, 17, 20, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.72);
            scroll-snap-align: none;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .pricing-card-media {
            background:
                radial-gradient(circle at 20% 10%, rgba(0, 102, 255, 0.28), transparent 32%),
                linear-gradient(145deg, #101114 0%, #06070a 100%);
        }

        .pricing-card-bg-video,
        .pricing-card-media img,
        .pricing-card-media video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform 0.6s ease;
            pointer-events: none;
        }

        .pricing-card-media-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(
                    to top,
                    rgba(16, 17, 20, 0.88) 0%,
                    rgba(16, 17, 20, 0.42) 48%,
                    rgba(16, 17, 20, 0.14) 100%
                );
            pointer-events: none;
        }

        .pricing-card-intro-content {
            position: relative;
            z-index: 2;
            display: flex;
            min-height: inherit;
            flex-direction: column;
            justify-content: flex-end;
            padding: clamp(24px, 4vw, 34px);
            color: var(--white);
        }

        .pricing-card-label {
            margin: 0 0 12px;
            color: rgba(255, 255, 255, 0.66);
            font-size: 0.75rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            line-height: 1;
            text-transform: uppercase;
        }

        .pricing-card-intro-content h4 {
            margin: 0;
            color: var(--white);
            font-size: clamp(2rem, 6vw, 3.25rem);
            line-height: 0.95;
            letter-spacing: 0;
        }

        .pricing-card-intro-content p:not(.pricing-card-label) {
            margin: 14px 0 0;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.45;
        }

        .pricing-card-intro-content span {
            margin-top: 18px;
            color: rgba(255, 255, 255, 0.66);
            font-size: 0.86rem;
            font-weight: 700;
            line-height: 1.35;
        }

        .pricing-offer-card {
            display: flex;
            flex-direction: column;
            padding: clamp(22px, 4vw, 30px);
        }

        .pricing-recommended {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 2;
            padding: 7px 10px;
            border-radius: 999px;
            color: var(--white);
            background: var(--primary);
            font-size: 0.68rem;
            font-weight: 900;
            letter-spacing: 0.06em;
            line-height: 1;
            text-transform: uppercase;
        }

        .pricing-offer-type {
            margin: 0;
            color: var(--primary);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            line-height: 1;
            text-transform: uppercase;
        }

        .pricing-offer-card h4 {
            margin: 10px 0 0;
            color: var(--ink);
            font-size: clamp(1.75rem, 5vw, 2.55rem);
            line-height: 0.96;
            letter-spacing: 0;
        }

        .pricing-offer-positioning {
            margin: 12px 0 0;
            color: rgba(16, 17, 20, 0.68);
            line-height: 1.45;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin: 24px 0 0;
        }

        .pricing-price strong {
            color: var(--ink);
            font-family: var(--font-heading);
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: 700;
            line-height: 0.95;
            letter-spacing: 0;
        }

        .pricing-price span {
            color: rgba(16, 17, 20, 0.58);
            font-size: 0.94rem;
            font-weight: 800;
        }

        .pricing-price-alt {
            margin: 8px 0 0;
            color: rgba(16, 17, 20, 0.58);
            font-size: 0.92rem;
            font-weight: 700;
        }

        .pricing-inclusions {
            display: grid;
            gap: 12px;
            margin: 26px 0 0;
            padding: 0;
            list-style: none;
        }

        .pricing-inclusions li {
            position: relative;
            padding-left: 26px;
            color: rgba(16, 17, 20, 0.76);
            font-size: 0.95rem;
            line-height: 1.38;
        }

        .pricing-inclusions li::before {
            content: "✓";
            position: absolute;
            top: 0;
            left: 0;
            color: var(--primary);
            font-weight: 900;
        }

        .pricing-cta,
        .pricing-custom-cta {
            display: inline-flex;
            width: fit-content;
            min-height: 44px;
            align-items: center;
            justify-content: center;
            margin-top: auto;
            padding: 12px 18px;
            border: 1px solid rgba(0, 102, 255, 0.22);
            border-radius: 999px;
            color: var(--primary);
            background: rgba(0, 102, 255, 0.08);
            font-size: 0.86rem;
            font-weight: 800;
            line-height: 1.1;
            text-align: center;
            text-decoration: none;
            transition:
                transform 180ms ease,
                background-color 180ms ease,
                border-color 180ms ease,
                color 180ms ease,
                box-shadow 180ms ease;
        }

        .pricing-inclusions + .pricing-cta {
            margin-top: 28px;
        }

        .pricing-cta:hover,
        .pricing-custom-cta:hover {
            transform: translateY(-1px);
            color: var(--white);
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 16px 38px rgba(0, 102, 255, 0.22);
        }

        .pricing-cta:focus-visible,
        .pricing-custom-cta:focus-visible {
            outline: 3px solid rgba(0, 102, 255, 0.42);
            outline-offset: 4px;
        }

        .pricing-offer-card.is-recommended {
            border-color: rgba(0, 102, 255, 0.34);
            box-shadow:
                0 22px 64px rgba(0, 102, 255, 0.14),
                0 18px 54px rgba(16, 17, 20, 0.08);
        }

        .pricing-offer-card.is-recommended .pricing-cta {
            color: var(--white);
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 16px 42px rgba(0, 102, 255, 0.22);
        }

        .pricing-deck-note {
            max-width: 720px;
            margin: 14px 0 0;
            color: rgba(16, 17, 20, 0.58);
            font-size: 0.84rem;
            font-weight: 700;
            line-height: 1.5;
        }

        .pricing-custom {
            margin-top: clamp(58px, 9vw, 96px);
            overflow: hidden;
            border-radius: 32px;
            color: var(--white);
            background:
                radial-gradient(circle at 86% 18%, rgba(0, 102, 255, 0.32), transparent 32%),
                radial-gradient(circle at 10% 90%, rgba(191, 254, 19, 0.13), transparent 30%),
                linear-gradient(135deg, #101114 0%, #07080a 100%);
            box-shadow: 0 24px 80px rgba(16, 17, 20, 0.16);
        }

        .pricing-custom-content {
            padding: clamp(28px, 5vw, 52px);
        }

        .pricing-custom-kicker {
            margin: 0 0 12px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.76rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            line-height: 1;
            text-transform: uppercase;
        }

        .pricing-custom h3 {
            max-width: 760px;
            margin: 0;
            color: var(--white);
            font-size: clamp(2rem, 5.8vw, 4.1rem);
            line-height: 0.95;
            letter-spacing: 0;
        }

        .pricing-custom p:not(.pricing-custom-kicker) {
            max-width: 760px;
            margin: 18px 0 0;
            color: rgba(255, 255, 255, 0.74);
            font-size: clamp(0.98rem, 1.8vw, 1.1rem);
            line-height: 1.58;
        }

        .pricing-custom ul {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            max-width: 820px;
            margin: 28px 0 0;
            padding: 0;
            list-style: none;
        }

        .pricing-custom li {
            position: relative;
            padding-left: 24px;
            color: rgba(255, 255, 255, 0.76);
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.4;
        }

        .pricing-custom li::before {
            content: "";
            position: absolute;
            top: 0.55em;
            left: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 5px rgba(0, 102, 255, 0.12);
        }

        .pricing-custom-cta {
            margin-top: 30px;
            color: var(--white);
            background: rgba(0, 102, 255, 0.92);
            border-color: rgba(255, 255, 255, 0.26);
            box-shadow:
                0 16px 42px rgba(0, 102, 255, 0.24),
                0 10px 26px rgba(0, 0, 0, 0.22);
        }

        .pricing-footer-note {
            max-width: 760px;
            margin: 28px auto 0;
            color: rgba(16, 17, 20, 0.58);
            font-size: 0.82rem;
            line-height: 1.55;
            text-align: center;
        }

        @media (hover: hover) and (pointer: fine) {
            .pricing-card-media:hover .pricing-card-bg-video {
                transform: scale(1.05);
            }
        }

        @media (min-width: 760px) {
            .pricing-card {
                flex-basis: 380px;
            }

            .pricing-card-intro {
                flex-basis: 420px;
            }

            .pricing-custom ul {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .pricing {
                padding-top: 78px;
                padding-bottom: 86px;
            }

            .pricing-card {
                flex-basis: min(84vw, 340px);
                min-height: 520px;
                border-radius: 24px;
            }

            .pricing-scroll-hint {
                width: 46px;
                padding-right: 8px;
            }

            .pricing-scroll-hint svg {
                width: 16px;
                height: 16px;
            }

            .pricing-cta,
            .pricing-custom-cta {
                width: 100%;
            }

            .pricing-custom {
                border-radius: 24px;
            }
        }

        .portfolio-track-wrap,
        .portfolio-track,
        .pricing-track-wrap,
        .pricing-track {
            background: transparent;
        }

        .portfolio-track,
        .pricing-track {
            scroll-snap-type: none;
        }

        .portfolio-card,
        .pricing-card {
            scroll-snap-align: none;
        }

        .portfolio-scroll-hint {
            width: clamp(40px, 7vw, 78px);
            background:
                linear-gradient(
                    to left,
                    rgba(5, 6, 8, 0.74) 0%,
                    rgba(5, 6, 8, 0.34) 48%,
                    rgba(5, 6, 8, 0) 100%
                );
        }

        .pricing-scroll-hint {
            width: clamp(40px, 7vw, 78px);
            background:
                linear-gradient(
                    to left,
                    rgba(246, 247, 239, 0.82) 0%,
                    rgba(246, 247, 239, 0.34) 48%,
                    rgba(246, 247, 239, 0) 100%
                );
        }

        .pricing-card-intro,
        .pricing-card-media {
            border: none;
            box-shadow: 0 22px 60px rgba(16, 17, 20, 0.14);
        }

        .pricing-card-note {
            margin: 18px 0 0;
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.78rem;
            line-height: 1.35;
        }

        .pricing-offer-card {
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(16, 17, 20, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .pricing-offer-top {
            min-height: 156px;
        }

        .pricing-offer-card h4 {
            color: var(--primary);
        }

        .pricing-inclusions {
            margin-bottom: 24px;
        }

        .pricing-cta {
            margin-top: auto;
        }

        .pricing-inner {
            display: flex;
            flex-direction: column;
        }

        .pricing-header {
            order: 0;
        }

        .pricing-deck-in-house {
            order: 1;
        }

        .pricing-deck-proximite {
            order: 2;
        }

        .pricing-deck-corporate {
            order: 3;
        }

        .pricing-custom {
            order: 4;
        }

        .pricing-footer-note {
            order: 5;
        }

        .portfolio-card,
        .pricing-card,
        .pricing-card-intro,
        .pricing-card-media {
            box-shadow: none;
        }

        .pricing-offer-card {
            min-height: 610px;
            background: rgba(255, 255, 255, 0.94);
            box-shadow: none;
        }

        .pricing-track,
        .portfolio-track {
            align-items: stretch;
            padding-bottom: 0;
            overflow-y: hidden;
        }

        .pricing-track-wrap,
        .portfolio-track-wrap {
            overflow: visible;
        }

        .portfolio-scroll-hint,
        .pricing-scroll-hint {
            top: 8px;
            bottom: 8px;
            width: clamp(34px, 5vw, 56px);
        }

        .portfolio-scroll-hint {
            background:
                linear-gradient(
                    to left,
                    rgba(5, 6, 8, 0.54) 0%,
                    rgba(5, 6, 8, 0.20) 52%,
                    rgba(5, 6, 8, 0) 100%
                );
        }

        .pricing-scroll-hint {
            background:
                linear-gradient(
                    to left,
                    rgba(246, 247, 239, 0.62) 0%,
                    rgba(246, 247, 239, 0.20) 52%,
                    rgba(246, 247, 239, 0) 100%
                );
        }

        .pricing-deck-eyebrow {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            isolation: isolate;
            padding: 0;
            background-image: none;
        }

        .pricing-deck-eyebrow::before,
        .pricing-deck-eyebrow::after {
            content: none;
        }

        .pricing-deck-eyebrow svg {
            display: block;
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            padding: 2px;
            border-radius: 50%;
            color: var(--secondary);
            background: var(--primary);
            box-shadow:
                0 0 0 4px rgba(0, 102, 255, 0.08),
                0 10px 18px rgba(0, 102, 255, 0.16);
        }

        .pricing-offer-top {
            min-height: 178px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .pricing-recommended {
            position: static;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            width: fit-content;
            margin-top: 8px;
            padding: 6px 10px;
            border-radius: 999px;
            color: var(--ink);
            background: var(--secondary);
            box-shadow: 0 10px 22px rgba(191, 254, 19, 0.18);
            font-size: 0.68rem;
            font-weight: 900;
            letter-spacing: 0.04em;
            line-height: 1;
            text-transform: uppercase;
        }

        .pricing-recommended svg {
            display: block;
            flex-shrink: 0;
        }

        .pricing-offer-card.is-recommended {
            border-color: rgba(191, 254, 19, 0.72);
            box-shadow: none;
        }

        .pricing-offer-card.is-recommended .pricing-cta {
            color: var(--ink);
            background: var(--secondary);
            border-color: var(--secondary);
            box-shadow: 0 14px 30px rgba(191, 254, 19, 0.18);
        }

        .pricing-offer-card.is-recommended .pricing-cta:hover {
            color: var(--ink);
            background: #d6ff4a;
            border-color: #d6ff4a;
            box-shadow: 0 18px 36px rgba(191, 254, 19, 0.25);
        }

        .pricing-offer-card .pricing-inclusions {
            flex: 1 1 auto;
        }

        .pricing-offer-card .pricing-inclusions + .pricing-cta {
            margin-top: auto;
        }

        .pricing-deck {
            margin-top: clamp(78px, 10vw, 124px);
        }

        .pricing-custom {
            margin-top: clamp(86px, 11vw, 138px);
        }

        .portfolio-track,
        .pricing-track {
            padding: 4px 0 22px;
        }

        .portfolio-track-wrap {
            margin-top: 0;
        }

        .pricing-track-wrap {
            margin-top: 0;
        }

        .pricing-scroll-hint {
            width: clamp(48px, 8vw, 90px);
            background:
                linear-gradient(
                    to left,
                    rgba(246, 247, 239, 0.84) 0%,
                    rgba(246, 247, 239, 0.44) 48%,
                    rgba(246, 247, 239, 0) 100%
                );
        }

        .pricing-card-note {
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.52);
            font-size: 0.68rem;
            font-weight: 400;
            line-height: 1.3;
        }

        .pricing-custom-kicker {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            isolation: isolate;
            padding: 0;
            border-radius: 999px;
            color: var(--secondary);
            background-image: none;
            text-shadow: none;
        }

        .pricing-custom-kicker::before,
        .pricing-custom-kicker::after {
            content: none;
        }

        .pricing-custom-kicker svg {
            display: block;
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            padding: 2px;
            border-radius: 50%;
            color: var(--secondary);
            background: var(--primary);
            box-shadow:
                0 0 0 4px rgba(0, 102, 255, 0.12),
                0 10px 18px rgba(0, 102, 255, 0.20);
        }

        .pricing-custom-contact {
            display: grid;
            gap: 4px;
            color: rgba(255, 255, 255, 0.84);
            line-height: 1;
        }

        .pricing-custom-contact span {
            color: var(--white);
            font-size: 0.98rem;
            font-weight: 900;
        }

        .pricing-custom-contact small {
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.78rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .pricing-custom-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .pricing-custom-contact-panel {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            gap: 16px;
            margin-top: 30px;
            padding: 10px;
            padding-left: 18px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.07);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .pricing-custom-action {
            position: relative;
            isolation: isolate;
            display: inline-flex;
            width: 52px;
            height: 52px;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: var(--white);
            text-decoration: none;
            transition:
                transform 180ms ease,
                filter 180ms ease,
                box-shadow 180ms ease;
        }

        .pricing-custom-action::before {
            content: "";
            position: absolute;
            inset: 1px;
            z-index: -1;
            border-radius: inherit;
            background: rgba(255, 255, 255, 0.10);
            opacity: 0.78;
        }

        .pricing-custom-action svg {
            display: block;
            position: relative;
            z-index: 1;
        }

        .pricing-custom-action:hover {
            transform: translateY(-2px);
            filter: saturate(1.06) brightness(1.04);
        }

        .pricing-custom-action:focus-visible {
            outline: 3px solid rgba(255, 255, 255, 0.46);
            outline-offset: 4px;
        }

        .pricing-custom-action-whatsapp {
            background: linear-gradient(135deg, #128C4A 0%, #25D366 100%);
            box-shadow: 0 16px 38px rgba(37, 211, 102, 0.24);
        }

        .pricing-custom-action-messenger {
            background: linear-gradient(135deg, #006AFF 0%, #00B2FF 100%);
            box-shadow: 0 16px 38px rgba(0, 132, 255, 0.24);
        }

        .pricing-custom-action-email {
            color: var(--ink);
            background: linear-gradient(135deg, #eef3ff 0%, #ffffff 100%);
            border-color: rgba(255, 255, 255, 0.44);
            box-shadow: 0 16px 38px rgba(255, 255, 255, 0.16);
        }

        .pricing-footer-note {
            margin-top: 34px;
            font-size: 0.72rem;
            line-height: 1.32;
        }

        .pricing-deck .pricing-card {
            min-height: 570px;
        }

        .pricing-deck .pricing-offer-card {
            padding: 22px;
        }

        .pricing-deck .pricing-offer-top {
            min-height: 140px;
        }

        .pricing-deck .pricing-offer-card h4 {
            font-size: clamp(1.55rem, 4.2vw, 2.2rem);
        }

        .pricing-deck .pricing-offer-positioning,
        .pricing-deck .pricing-inclusions li {
            font-size: 0.88rem;
            line-height: 1.28;
        }

        .pricing-deck .pricing-inclusions {
            gap: 8px;
            margin-top: 18px;
            margin-bottom: 18px;
        }

        .pricing-deck .pricing-price {
            margin-top: 16px;
        }

        .pricing-deck .pricing-price strong {
            font-size: clamp(1.75rem, 4.8vw, 2.5rem);
        }

        .pricing-deck .pricing-price-alt {
            margin-top: 6px;
            font-size: 0.84rem;
        }

        @media (max-width: 640px) {
            .portfolio-track-wrap,
            .pricing-track-wrap {
                width: 100vw;
                margin-left: calc(50% - 50vw);
            }

            .portfolio-track,
            .pricing-track {
                padding: 4px 16px 22px;
            }

            .pricing-custom-contact-panel {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                border-radius: 28px;
                padding: 16px;
            }

            .pricing-custom-actions {
                justify-content: flex-start;
            }
        }

        @media (min-width: 760px) {
            .site-header {
                padding-inline: 32px;
            }

            .brand-name {
                display: inline;
            }

            .hero {
                min-height: 94svh;
                align-items: center;
                padding: calc(var(--header-height) + 44px) 32px 72px;
            }

            .hero-content {
                padding-top: 44px;
            }

            .hero-video {
                position: absolute;
                top: 50%;
                left: 0;
                width: 100%;
                height: auto;
                min-height: 0;
                object-fit: initial;
                transform: translateY(-50%);
            }

            .hero h1 {
                max-width: 11.6ch;
                font-size: clamp(4rem, 7vw, 5.9rem);
                line-height: 0.92;
            }

            .btn-primary-animated {
                width: auto;
            }

            .problem {
                padding-inline: 32px;
            }

            .problem-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0;
            }

            .problem-item {
                min-height: 280px;
                padding: 0 34px;
            }

            .problem-item:first-child {
                padding-left: 0;
            }

            .problem-item + .problem-item {
                border-left: 1px solid rgba(255, 255, 255, 0.12);
            }

            .services {
                padding: clamp(88px, 11vw, 122px) 32px clamp(104px, 12vw, 132px);
            }

            .services-grid {
                grid-template-columns: repeat(12, minmax(0, 1fr));
                grid-auto-rows: minmax(248px, auto);
                gap: 18px;
                margin-top: 42px;
            }

            .service-card {
                min-height: 248px;
                grid-column: span 5;
            }

            .service-card-featured {
                min-height: 516px;
                grid-column: span 7;
                grid-row: span 2;
            }

            .service-card:not(.service-card-featured) h3 {
                font-size: clamp(2rem, 3.2vw, 3rem);
            }

            .method {
                padding-inline: 32px;
            }

            .method-steps {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 24px;
            }

            .method-steps::before {
                content: "";
                position: absolute;
                top: 44px;
                left: 0;
                right: 0;
                z-index: 0;
                border-top: 1px dashed rgba(16, 17, 20, 0.16);
                pointer-events: none;
            }

            .method-step {
                min-height: 300px;
                padding: 0 18px 0 0;
            }

            .method-step::before {
                content: "";
                position: absolute;
                top: 37px;
                left: 0;
                z-index: 1;
                width: 14px;
                height: 14px;
                border-radius: 50%;
                background: var(--paper);
                border: 2px solid var(--primary);
                box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.08);
            }

            .method-step-content {
                padding-top: 70px;
            }

            .method-step h3 {
                max-width: 13ch;
                font-size: clamp(1.35rem, 2.1vw, 1.85rem);
            }

            .method-step p {
                font-size: 0.98rem;
            }

            .method-cta {
                grid-template-columns: minmax(0, 1fr) auto;
                padding: clamp(34px, 5vw, 52px);
            }

            .method-cta-actions {
                justify-self: end;
            }
        }

        @media (min-width: 1080px) {
            .hero-overlay {
                background:
                    linear-gradient(90deg, rgba(5, 6, 8, 0.72) 0%, rgba(5, 6, 8, 0.38) 46%, rgba(5, 6, 8, 0.18) 100%),
                    linear-gradient(0deg, rgba(5, 6, 8, 0.66) 0%, rgba(5, 6, 8, 0.12) 52%, rgba(5, 6, 8, 0.28) 100%);
            }

            .social-proof {
                padding-top: 82px;
            }

            .services-grid {
                gap: 22px;
            }
        }

        .digital-ecosystem {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: clamp(92px, 11vw, 136px) 20px;
            color: var(--ink);
            background:
                radial-gradient(circle at 12% 18%, rgba(0, 102, 255, 0.24), transparent 30%),
                radial-gradient(circle at 88% 16%, rgba(191, 254, 19, 0.26), transparent 30%),
                radial-gradient(circle at 76% 84%, rgba(255, 91, 91, 0.12), transparent 34%),
                linear-gradient(180deg, #edf5ff 0%, #f8fbff 48%, #eef8f2 100%);
        }

        .digital-ecosystem::before {
            content: none;
        }

        .digital-ecosystem::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                linear-gradient(rgba(255, 255, 255, 0.58) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.58) 1px, transparent 1px),
                radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34), transparent 26%),
                radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.22), transparent 24%);
            background-size:
                56px 56px,
                56px 56px,
                cover,
                cover;
            opacity: 0.72;
        }

        .digital-ecosystem-inner {
            position: relative;
            z-index: 1;
            width: min(100%, var(--content-width));
            margin: 0 auto;
        }

        .digital-ecosystem-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            padding: 10px 16px;
            border-radius: 999px;
            color: #ffffff;
            background: linear-gradient(135deg, #ff5b5b 0%, #ff7a3d 100%);
            box-shadow:
                0 14px 34px rgba(255, 91, 91, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.28);
            font-size: 0.78rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            line-height: 1;
            text-transform: uppercase;
            transform: rotate(-3deg);
        }

        .digital-ecosystem-header {
            max-width: 920px;
            margin-bottom: clamp(34px, 5vw, 58px);
        }

        .digital-ecosystem-header h2 {
            max-width: 920px;
            margin: 0;
            color: var(--ink);
            font-size: clamp(2.7rem, 6.6vw, 5.4rem);
            line-height: 0.93;
            letter-spacing: -0.03em;
        }

        .digital-ecosystem-header p {
            max-width: 780px;
            margin-top: 18px;
            color: rgba(16, 17, 20, 0.72);
            font-size: clamp(1rem, 2vw, 1.16rem);
            line-height: 1.58;
        }

        .digital-ecosystem-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .digital-ecosystem-card {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 26px;
            min-height: 410px;
            padding: clamp(28px, 4vw, 40px);
            border-radius: 34px;
        }

        .ecosystem-card-web {
            color: var(--white);
            background:
                radial-gradient(circle at 80% 18%, rgba(0, 102, 255, 0.55), transparent 28%),
                linear-gradient(135deg, #0c0f17 0%, #101114 58%, #071d49 100%);
            border: 1px solid rgba(255, 255, 255, 0.10);
            box-shadow:
                0 26px 70px rgba(0, 0, 0, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .ecosystem-card-social {
            color: var(--ink);
            background:
                radial-gradient(circle at 85% 16%, rgba(191, 254, 19, 0.24), transparent 26%),
                radial-gradient(circle at 10% 90%, rgba(0, 102, 255, 0.08), transparent 24%),
                rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(16, 17, 20, 0.10);
            box-shadow:
                0 24px 64px rgba(16, 17, 20, 0.10),
                inset 0 1px 0 rgba(255, 255, 255, 0.82);
        }

        .digital-ecosystem-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 0 0 10px;
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            line-height: 1;
            text-transform: uppercase;
        }

        .digital-ecosystem-label-icon {
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            flex: 0 0 auto;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .digital-ecosystem-label-icon svg {
            width: 16px;
            height: 16px;
            display: block;
        }

        .ecosystem-card-web .digital-ecosystem-label {
            color: rgba(255, 255, 255, 0.72);
        }

        .ecosystem-card-social .digital-ecosystem-label {
            color: var(--primary);
        }

        .ecosystem-card-social .digital-ecosystem-label-icon {
            background: rgba(0, 102, 255, 0.08);
            border-color: rgba(0, 102, 255, 0.14);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
        }

        .digital-ecosystem-card h3 {
            max-width: 13ch;
            margin: 0;
            font-size: clamp(2rem, 4.4vw, 4rem);
            line-height: 0.94;
            letter-spacing: 0;
        }

        .ecosystem-card-web p:not(.digital-ecosystem-label) {
            color: rgba(255, 255, 255, 0.80);
        }

        .ecosystem-card-social p:not(.digital-ecosystem-label) {
            color: rgba(16, 17, 20, 0.68);
        }

        .digital-ecosystem-card-copy p {
            margin-top: 14px;
            font-size: clamp(1rem, 1.8vw, 1.08rem);
            line-height: 1.52;
        }

        .digital-ecosystem-benefits {
            display: grid;
            gap: 9px;
            margin: 18px 0 0;
            padding: 0;
            list-style: none;
        }

        .digital-ecosystem-benefits li {
            position: relative;
            padding-left: 24px;
            font-size: 0.95rem;
            font-weight: 760;
            line-height: 1.35;
        }

        .digital-ecosystem-benefits li::before {
            content: "✓";
            position: absolute;
            top: 0;
            left: 0;
            color: var(--secondary);
            font-weight: 900;
        }

        .ecosystem-card-social .digital-ecosystem-benefits li::before {
            color: var(--primary);
        }

        .ecosystem-card-web .digital-ecosystem-benefits li {
            color: rgba(255, 255, 255, 0.78);
        }

        .ecosystem-card-social .digital-ecosystem-benefits li {
            color: rgba(16, 17, 20, 0.72);
        }

        .digital-social-logos {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            flex-wrap: nowrap;
        }

        .social-logo {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(16, 17, 20, 0.08);
            box-shadow:
                0 8px 20px rgba(16, 17, 20, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.75);
        }

        .social-logo img {
            width: 17px;
            height: 17px;
            display: block;
            object-fit: contain;
        }

        .digital-ecosystem-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: fit-content;
            min-height: 48px;
            margin-top: auto;
            padding: 13px 18px;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 800;
            text-decoration: none;
            transition:
                transform 180ms ease,
                box-shadow 180ms ease,
                background-color 180ms ease;
        }

        .ecosystem-link-web {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.24);
            box-shadow:
                0 14px 34px rgba(0, 0, 0, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }

        .ecosystem-link-social {
            color: var(--ink);
            background: var(--secondary);
            border: 1px solid rgba(191, 254, 19, 0.4);
            box-shadow:
                0 16px 34px rgba(191, 254, 19, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .digital-ecosystem-link:hover {
            transform: translateY(-2px);
        }

        .digital-ecosystem-link:focus-visible {
            outline: 3px solid rgba(0, 102, 255, 0.40);
            outline-offset: 4px;
        }

        .digital-ecosystem-link svg {
            width: 16px;
            height: 16px;
            transition: transform 180ms ease;
        }

        .digital-ecosystem-link:hover svg {
            transform: translate(2px, -2px);
        }

        @media (min-width: 920px) {
            .digital-ecosystem-grid {
                grid-template-columns: 1.1fr 0.9fr;
                align-items: stretch;
            }
        }

        @media (max-width: 760px) {
            .digital-ecosystem-badge {
                transform: rotate(-2deg);
                padding: 9px 14px;
                font-size: 0.72rem;
            }

            .digital-ecosystem::after {
                background:
                    linear-gradient(rgba(255, 255, 255, 0.50) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.50) 1px, transparent 1px);
                background-size:
                    44px 44px,
                    44px 44px;
                opacity: 0.55;
            }
        }

        @media (max-width: 420px) {
            .digital-social-logos {
                overflow-x: auto;
                padding-bottom: 4px;
                scrollbar-width: none;
            }

            .digital-social-logos::-webkit-scrollbar {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .digital-ecosystem-card {
                min-height: auto;
            }

            .digital-ecosystem-card h3 {
                max-width: none;
            }

            .digital-ecosystem-link {
                width: 100%;
            }
        }

        .web-page {
            color: var(--ink);
            background: var(--paper);
        }

        .web-nav {
            display: none;
            align-items: center;
            gap: 18px;
            margin-left: auto;
        }

        .web-nav a {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.84rem;
            font-weight: 800;
            text-decoration: none;
            transition: color 180ms ease;
        }

        .web-nav a:hover {
            color: var(--white);
        }

        .web-hero,
        .web-types,
        .web-method,
        .web-pricing {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: clamp(84px, 12vw, 140px) 20px;
        }

        .web-hero {
            min-height: 92vh;
            display: grid;
            align-items: center;
            color: var(--white);
            background:
                radial-gradient(circle at 74% 22%, rgba(0, 102, 255, 0.34), transparent 32%),
                radial-gradient(circle at 12% 72%, rgba(191, 254, 19, 0.13), transparent 30%),
                linear-gradient(135deg, #101114 0%, #07080a 100%);
        }

        .web-hero-inner,
        .web-section-inner {
            position: relative;
            z-index: 1;
            width: min(100%, var(--content-width));
            margin: 0 auto;
        }

        .web-hero-copy {
            max-width: 860px;
        }

        .web-hero h1,
        .web-section-header h2,
        .web-problem-header h2 {
            margin: 0;
            letter-spacing: 0;
            line-height: 0.94;
        }

        .web-hero h1 {
            color: var(--white);
            font-size: clamp(3.05rem, 9vw, 6.6rem);
        }

        .web-hero-copy > p:not(.section-kicker) {
            max-width: 700px;
            margin-top: 22px;
            color: rgba(255, 255, 255, 0.72);
            font-size: clamp(1.05rem, 2.4vw, 1.26rem);
            line-height: 1.55;
        }

        .web-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 34px;
        }

        .web-hero-button,
        .web-hero-link,
        .web-offer-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 13px 20px;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 800;
            text-decoration: none;
            transition:
                transform 180ms ease,
                background-color 180ms ease,
                color 180ms ease,
                border-color 180ms ease;
        }

        .web-hero-button,
        .web-offer-cta {
            color: var(--white);
            background: var(--primary);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: 0 18px 48px rgba(0, 102, 255, 0.30);
        }

        .web-hero-link {
            color: var(--white);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .web-hero-button:hover,
        .web-hero-link:hover,
        .web-offer-cta:hover {
            transform: translateY(-1px);
        }

        .web-problem {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: clamp(82px, 11vw, 132px) 20px;
            color: var(--white);
            background:
                radial-gradient(circle at 18% 12%, rgba(191, 254, 19, 0.18), transparent 30%),
                radial-gradient(circle at 86% 70%, rgba(0, 102, 255, 0.24), transparent 34%),
                linear-gradient(180deg, #0a1308 0%, #07080a 100%);
        }

        .web-problem-header {
            max-width: 880px;
        }

        .web-problem-header h2 {
            color: var(--white);
            font-size: clamp(2.4rem, 7vw, 5.4rem);
        }

        .web-problem-header p,
        .web-card p,
        .web-step p,
        .web-offer-card p {
            line-height: 1.55;
        }

        .web-problem-header p {
            max-width: 720px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.70);
            font-size: clamp(1rem, 2.2vw, 1.16rem);
        }

        .web-problem-grid,
        .web-card-grid,
        .web-steps,
        .web-offer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-top: clamp(34px, 6vw, 56px);
        }

        .web-problem-card,
        .web-card,
        .web-step,
        .web-offer-card {
            border-radius: 28px;
            padding: clamp(24px, 4vw, 34px);
        }

        .web-problem-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .web-problem-card h3,
        .web-card h3,
        .web-step h3,
        .web-offer-card h3 {
            margin: 0;
            letter-spacing: 0;
            line-height: 1;
        }

        .web-problem-card h3 {
            color: var(--white);
            font-size: clamp(1.35rem, 3vw, 2rem);
        }

        .web-problem-card p {
            margin: 14px 0 0;
            color: rgba(255, 255, 255, 0.68);
        }

        .web-types,
        .web-pricing {
            background:
                radial-gradient(circle at 88% 12%, rgba(0, 102, 255, 0.10), transparent 30%),
                linear-gradient(180deg, #f7f8f2 0%, #ffffff 100%);
        }

        .web-method {
            background:
                radial-gradient(circle at 14% 12%, rgba(191, 254, 19, 0.14), transparent 30%),
                radial-gradient(rgba(16, 17, 20, 0.045) 1px, transparent 1px),
                var(--paper);
            background-size: auto, 24px 24px, auto;
        }

        .web-section-header {
            max-width: 820px;
        }

        .web-section-header h2 {
            color: var(--ink);
            font-size: clamp(2.3rem, 6vw, 4.8rem);
        }

        .web-section-header > p:not(.section-kicker) {
            margin-top: 18px;
            color: rgba(16, 17, 20, 0.68);
            font-size: clamp(1rem, 2.2vw, 1.16rem);
            line-height: 1.55;
        }

        .web-card,
        .web-step,
        .web-offer-card {
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(16, 17, 20, 0.08);
            box-shadow:
                0 22px 58px rgba(16, 17, 20, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.72);
        }

        .web-card h3,
        .web-step h3,
        .web-offer-card h3 {
            color: var(--primary);
            font-size: clamp(1.55rem, 3.6vw, 2.4rem);
        }

        .web-card p,
        .web-step p,
        .web-offer-card p {
            margin: 14px 0 0;
            color: rgba(16, 17, 20, 0.68);
        }

        .web-card small {
            display: block;
            margin-top: 18px;
            color: rgba(16, 17, 20, 0.54);
            font-size: 0.84rem;
            font-weight: 800;
            line-height: 1.35;
        }

        .web-step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            margin-bottom: 18px;
            border-radius: 50%;
            color: var(--white);
            background: var(--primary);
            font-weight: 900;
        }

        .web-offer-price {
            margin-top: 22px;
            color: var(--ink);
            font-family: var(--font-heading);
            font-size: clamp(1.75rem, 4vw, 2.6rem);
            font-weight: 700;
            line-height: 0.98;
        }

        .web-offer-list {
            display: grid;
            gap: 10px;
            margin: 24px 0 0;
            padding: 0;
            list-style: none;
        }

        .web-offer-list li {
            position: relative;
            padding-left: 24px;
            color: rgba(16, 17, 20, 0.72);
            line-height: 1.36;
        }

        .web-offer-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary);
            font-weight: 900;
        }

        .web-offer-card {
            display: flex;
            flex-direction: column;
        }

        .web-offer-cta {
            width: fit-content;
            margin-top: auto;
        }

        .web-offer-list + .web-offer-cta {
            margin-top: 28px;
        }

        @media (min-width: 760px) {
            .web-nav {
                display: flex;
            }

            .web-problem-grid,
            .web-card-grid,
            .web-steps,
            .web-offer-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .web-steps {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

        }

        @media (max-width: 640px) {
            .digital-ecosystem-link,
            .web-hero-button,
            .web-hero-link,
            .web-offer-cta {
                width: 100%;
            }

            .web-hero {
                min-height: auto;
                padding-top: 132px;
            }
        }

        .faq {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: clamp(84px, 12vw, 140px) 20px;
            color: var(--white);
            background:
                radial-gradient(circle at 16% 12%, rgba(0, 102, 255, 0.22), transparent 28%),
                radial-gradient(circle at 88% 72%, rgba(191, 254, 19, 0.10), transparent 30%),
                linear-gradient(180deg, #101114 0%, #07080a 100%);
        }

        .faq::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
            background-size: 92px 100%;
            opacity: 0.45;
            pointer-events: none;
        }

        .faq-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(38px, 7vw, 76px);
            width: min(100%, var(--content-width));
            margin: 0 auto;
        }

        .faq-header {
            max-width: 520px;
        }

        .faq-header .section-kicker {
            color: var(--secondary);
        }

        .faq-header h2 {
            margin: 0;
            color: var(--white);
            font-size: clamp(2.6rem, 8vw, 5.6rem);
            line-height: 0.92;
            letter-spacing: 0;
        }

        .faq-header p:not(.section-kicker) {
            margin-top: 18px;
            color: rgba(255, 255, 255, 0.68);
            font-size: clamp(1rem, 2vw, 1.12rem);
            line-height: 1.5;
        }

        .faq-list {
            display: grid;
            gap: 0;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .faq-item:first-child {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .faq-question {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 26px 0;
            color: var(--white);
            cursor: pointer;
            font-size: clamp(1.05rem, 2vw, 1.28rem);
            font-weight: 800;
            line-height: 1.28;
            list-style: none;
        }

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

        .faq-question::after {
            content: "+";
            display: inline-flex;
            flex: 0 0 auto;
            width: 34px;
            height: 34px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            color: var(--ink);
            background: var(--secondary);
            font-size: 1.4rem;
            font-weight: 800;
            line-height: 1;
            transition:
                transform 180ms ease,
                background-color 180ms ease,
                color 180ms ease;
        }

        .faq-item[open] .faq-question::after {
            transform: rotate(45deg);
            color: var(--ink);
            background: var(--white);
        }

        .faq-answer {
            padding: 0 54px 26px 0;
        }

        .faq-answer p {
            max-width: 720px;
            margin: 0;
            color: rgba(255, 255, 255, 0.70);
            font-size: clamp(0.98rem, 1.8vw, 1.08rem);
            line-height: 1.65;
        }

        .faq-question:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 6px;
            border-radius: 8px;
        }

        @media (min-width: 860px) {
            .faq {
                padding-inline: 32px;
            }

            .faq-inner {
                grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
                align-items: start;
            }

            .faq-header {
                position: sticky;
                top: 120px;
            }
        }

        @media (max-width: 640px) {
            .faq {
                padding-top: 78px;
                padding-bottom: 86px;
            }

            .faq-question {
                padding: 22px 0;
            }

            .faq-question::after {
                width: 30px;
                height: 30px;
                font-size: 1.25rem;
            }

            .faq-answer {
                padding-right: 0;
                padding-bottom: 24px;
            }
        }

        .cta-final {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: clamp(96px, 14vw, 168px) 20px;
            color: var(--white);
            background:
                radial-gradient(circle at 50% 34%, rgba(0, 102, 255, 0.22), transparent 34%),
                radial-gradient(circle at 50% 70%, rgba(191, 254, 19, 0.08), transparent 34%),
                linear-gradient(180deg, #07080a 0%, var(--ink) 100%);
            text-align: center;
        }

        .cta-final::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 52%);
            opacity: 0.72;
            pointer-events: none;
        }

        .cta-final-inner {
            position: relative;
            z-index: 1;
            width: min(100%, 820px);
            margin: 0 auto;
        }

        .cta-final-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 0;
            color: var(--secondary);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.10em;
            line-height: 1;
            text-transform: uppercase;
        }

        .cta-final-kicker::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
            box-shadow: 0 0 22px rgba(191, 254, 19, 0.68);
        }

        .cta-final h2 {
            margin: 20px auto 0;
            color: var(--white);
            font-size: clamp(2.7rem, 8vw, 5.8rem);
            line-height: 0.94;
            letter-spacing: 0;
        }

        .cta-final-text {
            max-width: 680px;
            margin: 24px auto 0;
            color: rgba(255, 255, 255, 0.72);
            font-size: clamp(1rem, 2.4vw, 1.22rem);
            line-height: 1.58;
        }

        .cta-final-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 42px;
        }

        .cta-final-button {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 50px;
            padding: 13px 18px;
            border: 1px solid rgba(255, 255, 255, 0.24);
            border-radius: 999px;
            color: var(--white);
            font-size: 0.92rem;
            font-weight: 800;
            text-decoration: none;
            white-space: nowrap;
            transition:
                transform 180ms ease,
                filter 180ms ease,
                box-shadow 180ms ease,
                border-color 180ms ease;
        }

        .cta-final-button-whatsapp {
            background: linear-gradient(135deg, #128c4a 0%, #25d366 100%);
            box-shadow:
                0 16px 42px rgba(37, 211, 102, 0.24),
                0 10px 26px rgba(0, 0, 0, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.28);
        }

        .cta-final-button-messenger {
            background: linear-gradient(135deg, #006aff 0%, #00b2ff 100%);
            box-shadow:
                0 16px 42px rgba(0, 132, 255, 0.24),
                0 10px 26px rgba(0, 0, 0, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.30);
        }

        .cta-final-button-email {
            color: var(--ink);
            background: linear-gradient(135deg, #eef3ff 0%, #ffffff 100%);
            box-shadow:
                0 16px 42px rgba(255, 255, 255, 0.16),
                0 10px 26px rgba(0, 0, 0, 0.20),
                inset 0 1px 0 rgba(255, 255, 255, 0.72);
        }

        .cta-final-button::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: inherit;
            filter: blur(8px);
            animation: cta-final-glow-flow 3.4s linear infinite;
            opacity: 1;
            pointer-events: none;
        }

        .cta-final-button-whatsapp::before {
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.26), transparent 34%),
                radial-gradient(circle at 80% 50%, rgba(37, 211, 102, 0.34), transparent 32%),
                rgba(255, 255, 255, 0.04);
        }

        .cta-final-button-messenger::before {
            background:
                radial-gradient(circle at 26% 44%, rgba(255, 255, 255, 0.26), transparent 34%),
                radial-gradient(circle at 78% 56%, rgba(0, 198, 255, 0.36), transparent 32%),
                rgba(255, 255, 255, 0.04);
            animation-delay: -1.15s;
        }

        .cta-final-button-email::before {
            background:
                radial-gradient(circle at 18% 58%, rgba(0, 102, 255, 0.16), transparent 34%),
                radial-gradient(circle at 84% 42%, rgba(255, 255, 255, 0.52), transparent 32%),
                rgba(255, 255, 255, 0.08);
            animation-delay: -2.25s;
        }

        .cta-final-button::after {
            content: "";
            position: absolute;
            inset: 1px;
            z-index: 0;
            border-radius: inherit;
            opacity: 0.7;
            pointer-events: none;
        }

        .cta-final-button-whatsapp::after,
        .cta-final-button-messenger::after {
            background:
                linear-gradient(
                    120deg,
                    rgba(255, 255, 255, 0.16) 0%,
                    rgba(255, 255, 255, 0.04) 34%,
                    rgba(255, 255, 255, 0.14) 58%,
                    rgba(255, 255, 255, 0.04) 100%
                );
        }

        .cta-final-button-email::after {
            background:
                linear-gradient(
                    120deg,
                    rgba(255, 255, 255, 0.58) 0%,
                    rgba(255, 255, 255, 0.16) 36%,
                    rgba(0, 102, 255, 0.08) 58%,
                    rgba(255, 255, 255, 0.28) 100%
                );
        }

        .cta-final-button-icon,
        .cta-final-button-arrow,
        .cta-final-button > span:not(.cta-final-button-icon):not(.cta-final-button-arrow) {
            position: relative;
            z-index: 1;
        }

        .cta-final-button-icon,
        .cta-final-button-arrow {
            display: inline-flex;
            flex-shrink: 0;
            align-items: center;
            justify-content: center;
        }

        .cta-final-button svg {
            display: block;
        }

        .cta-final-button-arrow svg {
            transition: transform 180ms ease;
        }

        .cta-final-button:hover {
            transform: translateY(-1px);
            filter: saturate(1.08) brightness(1.03);
        }

        .cta-final-button:hover .cta-final-button-arrow svg {
            transform: translate(2px, -2px);
        }

        .cta-final-button:focus-visible {
            outline: 3px solid rgba(255, 255, 255, 0.46);
            outline-offset: 4px;
        }

        @keyframes cta-final-glow-flow {
            0% {
                transform: translateX(-12%) scale(1);
                opacity: 0.78;
            }

            50% {
                transform: translateX(12%) scale(1.08);
                opacity: 1;
            }

            100% {
                transform: translateX(-12%) scale(1);
                opacity: 0.78;
            }
        }

        .site-footer {
            padding: clamp(48px, 7vw, 82px) 20px 28px;
            color: rgba(255, 255, 255, 0.56);
            background: #07080a;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-inner {
            width: min(100%, var(--content-width));
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .footer-brand {
            max-width: 380px;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            font-weight: 800;
            text-decoration: none;
        }

        .footer-logo-img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            filter: grayscale(1) saturate(0.18) brightness(0.92);
            opacity: 0.82;
            object-fit: cover;
        }

        .footer-brand p {
            margin-top: 16px;
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.94rem;
            line-height: 1.55;
        }

        .footer-title {
            margin: 0 0 14px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .footer-nav,
        .footer-contact {
            display: grid;
            gap: 10px;
            align-content: start;
        }

        .footer-nav a,
        .footer-contact a,
        .footer-legal a {
            width: fit-content;
            color: rgba(255, 255, 255, 0.56);
            font-size: 0.94rem;
            text-decoration: none;
            transition: color 180ms ease;
        }

        .footer-nav a:hover,
        .footer-contact a:hover,
        .footer-legal a:hover {
            color: var(--white);
        }

        .footer-socials {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .footer-socials a {
            display: inline-flex;
            width: 36px;
            height: 36px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.54);
            background: rgba(255, 255, 255, 0.06);
            transition:
                color 180ms ease,
                background-color 180ms ease,
                transform 180ms ease;
        }

        .footer-socials a:hover {
            transform: translateY(-1px);
            color: var(--white);
            background: rgba(255, 255, 255, 0.12);
        }

        .footer-socials svg {
            display: block;
            width: 18px;
            height: 18px;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: clamp(42px, 7vw, 72px);
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-bottom p {
            margin: 0;
            color: rgba(255, 255, 255, 0.42);
            font-size: 0.78rem;
        }

        .footer-bottom p a {
            color: rgba(255, 255, 255, 0.62);
            font-weight: 700;
            text-decoration: none;
            transition: color 180ms ease;
        }

        .footer-bottom p a:hover {
            color: var(--white);
        }

        .footer-legal {
            display: flex;
            flex-wrap: nowrap;
            gap: 0;
            align-items: center;
            min-width: 0;
        }

        .footer-legal a {
            flex: 0 1 auto;
            min-width: 0;
            font-size: 0.78rem;
            line-height: 1.25;
            white-space: nowrap;
        }

        .footer-legal a + a {
            position: relative;
            margin-left: clamp(10px, 2.5vw, 18px);
            padding-left: clamp(10px, 2.5vw, 18px);
        }

        .footer-legal a + a::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 1px;
            height: 12px;
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-50%);
        }

        .legal-page {
            min-height: 100vh;
            padding: clamp(56px, 8vw, 96px) 20px;
            color: var(--ink);
            background: var(--paper);
        }

        .legal-inner {
            width: min(100%, 860px);
            margin: 0 auto;
        }

        .legal-back {
            display: inline-flex;
            margin-bottom: 40px;
            color: var(--primary);
            font-weight: 800;
            text-decoration: none;
        }

        .legal-page h1 {
            margin: 0 0 28px;
            color: var(--ink);
            font-size: clamp(2.4rem, 7vw, 4.6rem);
            line-height: 0.96;
        }

        .legal-page h2 {
            margin-top: 36px;
            color: var(--ink);
            font-size: clamp(1.4rem, 3vw, 2rem);
            line-height: 1.05;
        }

        .legal-page p,
        .legal-page li {
            color: rgba(16, 17, 20, 0.76);
            font-size: 1rem;
            line-height: 1.65;
        }

        .legal-page ul {
            margin-top: 12px;
            padding-left: 20px;
        }

        @media (min-width: 760px) {
            .site-footer {
                padding-inline: 32px;
            }

            .footer-main {
                grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.7fr) minmax(220px, 0.9fr);
                gap: 48px;
            }

            .footer-bottom {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        @media (max-width: 640px) {
            .cta-final {
                padding-top: 86px;
                padding-bottom: 96px;
            }

            .cta-final-actions {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }

            .cta-final-button {
                width: 100%;
                white-space: normal;
            }

            .footer-legal a {
                font-size: clamp(0.62rem, 2.65vw, 0.78rem);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.001ms !important;
            }

            .btn-primary-animated::before {
                animation: none;
            }

            .cta-final-button::before {
                animation: none;
            }

            .method-cta-button-whatsapp::before,
            .method-cta-button-messenger::before,
            .method-cta-button-email::before {
                animation: none;
            }

            .btn-primary-animated,
            .btn-icon {
                transition: none;
            }

            .card-bg-video {
                transition: none;
            }

            .service-card:hover .card-bg-video {
                transform: none;
            }

            .portfolio-card img {
                transition: none;
            }

            .portfolio-card:hover img,
            .portfolio-card:hover .portfolio-play {
                transform: none;
            }

            .portfolio-scroll-hint svg {
                animation: none;
            }
        }
