body { background-color: #F7F7F8; color: #343745; -webkit-font-smoothing: antialiased; }

        /* Site layout — не зависит от Tailwind CDN */
        .site-wrap {
            box-sizing: border-box;
            width: 100%;
            max-width: 1440px;
            margin-inline: auto;
            padding-inline: 5rem;
        }

        @media (max-width: 1023px) {
            .site-wrap {
                padding-inline: 2.5rem;
            }
        }

        @media (max-width: 767px) {
            .site-wrap {
                max-width: none !important;
                width: 100% !important;
                padding-inline: 0 !important;
            }

            .site-pad,
            .site-wrap > h2,
            .site-wrap > p,
            .site-wrap > .text-center,
            .site-wrap > blockquote,
            .site-wrap > .space-y-0 {
                padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
            }

            .site-wrap > .grid {
                width: 100%;
                gap: 0.75rem !important;
                padding-inline: max(0.75rem, env(safe-area-inset-left, 0px)) max(0.75rem, env(safe-area-inset-right, 0px));
                box-sizing: border-box;
            }

            .site-header .site-wrap {
                padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px)) !important;
            }

            #contact .bg-secondary {
                border-radius: 0;
            }

            .hero-section .site-wrap {
                padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px)) !important;
            }

            footer .site-wrap {
                padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px)) !important;
            }
        }

        .material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
        .service-card:hover { border-color: #FE4B4B; }
        .glass-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
        .terminal-glow { box-shadow: 0 0 40px rgba(254, 75, 75, 0.1); }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
        .cursor-blink { animation: blink 1s infinite; }

        /* Hero animated background */
        .hero-section {
            position: relative;
            isolation: isolate;
            background: linear-gradient(165deg, #f7f7f8 0%, #f0f1f4 45%, #eceef2 100%);
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }
        .hero-bg__mesh {
            position: absolute;
            inset: -50%;
            background:
                radial-gradient(ellipse 55% 45% at 20% 30%, rgba(254, 75, 75, 0.14) 0%, transparent 55%),
                radial-gradient(ellipse 50% 40% at 85% 20%, rgba(52, 55, 69, 0.07) 0%, transparent 50%),
                radial-gradient(ellipse 60% 50% at 70% 85%, rgba(254, 75, 75, 0.08) 0%, transparent 55%);
            animation: hero-mesh-drift 18s ease-in-out infinite alternate;
        }
        .hero-bg__orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            will-change: transform;
        }
        .hero-bg__orb--1 {
            width: 420px;
            height: 420px;
            top: -8%;
            right: 5%;
            background: rgba(254, 75, 75, 0.22);
            animation: hero-orb-1 22s ease-in-out infinite;
        }
        .hero-bg__orb--2 {
            width: 320px;
            height: 320px;
            bottom: 5%;
            left: -4%;
            background: rgba(52, 55, 69, 0.12);
            animation: hero-orb-2 26s ease-in-out infinite;
        }
        .hero-bg__orb--3 {
            width: 200px;
            height: 200px;
            top: 40%;
            left: 42%;
            background: rgba(254, 75, 75, 0.1);
            animation: hero-orb-3 16s ease-in-out infinite;
        }
        .hero-bg__grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(52, 55, 69, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(52, 55, 69, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
            animation: hero-grid-pulse 8s ease-in-out infinite;
        }
        .hero-bg__noise {
            position: absolute;
            inset: 0;
            opacity: 0.035;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }
        @keyframes hero-mesh-drift {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(3%, -2%) scale(1.06); }
        }
        @keyframes hero-orb-1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-40px, 30px) scale(1.08); }
            66% { transform: translate(25px, -20px) scale(0.95); }
        }
        @keyframes hero-orb-2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(50px, -35px) scale(1.1); }
        }
        @keyframes hero-orb-3 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
            50% { transform: translate(-30px, 25px) scale(1.15); opacity: 1; }
        }
        @keyframes hero-grid-pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.85; }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-bg__mesh,
            .hero-bg__orb,
            .hero-bg__grid { animation: none; }
        }

        /* Hero 3D logo */
        .hero-logo-scene {
            --logo-size: min(100%, 380px);
            width: var(--logo-size);
            height: var(--logo-size);
            margin-inline: auto;
            perspective: 1100px;
            position: relative;
            cursor: pointer;
        }
        .hero-logo-glow {
            position: absolute;
            inset: 8%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(211, 17, 45, 0.45) 0%, rgba(254, 75, 75, 0.12) 45%, transparent 72%);
            filter: blur(28px);
            pointer-events: none;
            animation: hero-logo-glow-pulse 5s ease-in-out infinite;
        }
        .hero-logo-card {
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            will-change: transform;
            animation: hero-logo-float 7s ease-in-out infinite;
        }
        .hero-logo-scene.is-hover .hero-logo-card {
            animation: none;
        }
        .hero-logo-card__inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            overflow: hidden;
            background: #000;
            box-shadow:
                0 28px 60px rgba(52, 55, 69, 0.18),
                0 8px 24px rgba(211, 17, 45, 0.22);
        }
        .hero-logo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
        }
        @keyframes hero-logo-float {
            0%, 100% {
                transform: translate3d(0, 0, 0) rotateX(6deg) rotateY(-10deg);
            }
            33% {
                transform: translate3d(6px, -12px, 0) rotateX(-4deg) rotateY(8deg);
            }
            66% {
                transform: translate3d(-5px, -6px, 0) rotateX(8deg) rotateY(-6deg);
            }
        }
        @keyframes hero-logo-glow-pulse {
            0%, 100% { opacity: 0.75; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.06); }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-logo-card,
            .hero-logo-glow { animation: none; }
        }

        /* Hero headline slider */
        .hero-headline {
            display: block;
        }

        .hero-headline__viewport {
            position: relative;
            display: block;
            min-height: 2.35em;
        }

        .hero-headline__slide {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            gap: 0.08em;
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.55s ease, transform 0.55s ease;
            pointer-events: none;
        }

        .hero-headline__slide.is-active {
            position: relative;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .hero-headline__slide.is-leaving {
            position: absolute;
            opacity: 0;
            transform: translateY(-18px);
        }

        .hero-headline__line {
            display: block;
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-headline__slide {
                position: relative;
                opacity: 1;
                transform: none;
                transition: none;
                pointer-events: auto;
            }

            .hero-headline__slide:not(.is-active) {
                display: none;
            }
        }

        /* Ticker marquee under header */
        .ticker-marquee {
            overflow: hidden;
            width: 100%;
            mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
        }
        .ticker-marquee__track {
            display: flex;
            width: max-content;
            animation: ticker-scroll 28s linear infinite;
        }
        .ticker-marquee__group {
            display: flex;
            flex-shrink: 0;
            align-items: center;
        }
        .ticker-marquee__item {
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            padding: 0 2.5rem;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .ticker-marquee__item::after {
            content: "•";
            margin-left: 2.5rem;
            opacity: 0.55;
        }
        @keyframes ticker-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (prefers-reduced-motion: reduce) {
            .ticker-marquee__track { animation: none; }
        }

        /* Partners carousel */
        .partners-section {
            background: #ffffff;
            border-top: 1px solid rgba(52, 55, 69, 0.08);
            border-bottom: 1px solid rgba(52, 55, 69, 0.08);
        }
        .partners-carousel {
            overflow: hidden;
            width: 100%;
            mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
        }
        .partners-carousel__track {
            display: flex;
            width: max-content;
            animation: partners-scroll 45s linear infinite;
        }
        .partners-carousel__group {
            display: flex;
            flex-shrink: 0;
            align-items: center;
            gap: 3rem;
            padding-right: 3rem;
        }
        .partners-carousel__logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 200px;
            height: 96px;
            padding: 1rem 1.5rem;
            background: #ffffff;
        }
        .partners-carousel__logo img {
            max-width: 100%;
            max-height: 52px;
            width: auto;
            height: auto;
            object-fit: contain;
        }
        @keyframes partners-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (prefers-reduced-motion: reduce) {
            .partners-carousel__track { animation: none; }
        }

        /* Workflow strip */
        .workflow-strip {
            background: #ffffff;
            border-top: 1px solid rgba(52, 55, 69, 0.08);
            border-bottom: 1px solid rgba(52, 55, 69, 0.08);
            position: relative;
            z-index: 5;
        }
        .workflow-steps {
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: 0;
            flex-wrap: wrap;
        }
        @media (min-width: 768px) {
            .workflow-steps { flex-wrap: nowrap; }
        }
        .workflow-step {
            flex: 1 1 220px;
            max-width: 320px;
            text-align: center;
            padding: 1.75rem 1.25rem;
            position: relative;
        }
        .workflow-step:not(:last-child)::after {
            content: "";
            display: block;
            width: 2px;
            height: 24px;
            background: linear-gradient(180deg, #eceef2, #FE4B4B);
            margin: 0.5rem auto 0;
            opacity: 0.6;
        }
        @media (min-width: 768px) {
            .workflow-step:not(:last-child)::after { display: none; }
        }
        .workflow-step__icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 1.25rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f7f7f8;
            border: 2px solid #eceef2;
            color: #343745;
            font-size: 1.5rem;
            font-weight: 800;
            transition: border-color 0.4s, background 0.4s, color 0.4s, box-shadow 0.4s;
            animation: workflow-step-pulse 6s ease-in-out infinite;
            animation-delay: calc(var(--step) * 2s);
        }
        .workflow-step__title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #343745;
            margin-bottom: 0.5rem;
        }
        .workflow-step__desc {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.5;
        }
        .workflow-connector {
            display: none;
            flex: 0 0 80px;
            align-self: center;
            position: relative;
            height: 2px;
            background: linear-gradient(90deg, #eceef2 0%, #eceef2 100%);
            margin-top: -2.5rem;
        }
        @media (min-width: 768px) {
            .workflow-connector { display: block; }
        }
        .workflow-connector::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 12px;
            height: 12px;
            border-top: 2px solid #FE4B4B;
            border-right: 2px solid #FE4B4B;
            transform: translateY(-50%) rotate(45deg);
            right: -2px;
            left: auto;
        }
        .workflow-connector__dot {
            position: absolute;
            top: 50%;
            left: 0;
            width: 8px;
            height: 8px;
            background: #FE4B4B;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 12px rgba(254, 75, 75, 0.6);
            animation: workflow-dot-travel 2s ease-in-out infinite;
            animation-delay: calc(var(--conn) * 2s);
        }
        .workflow-badge {
            display: inline-flex;
            align-items: center;
            margin: 2rem auto 0;
            padding: 0.75rem 1.75rem;
            background: rgba(22, 163, 74, 0.08);
            border: 2px solid rgba(22, 163, 74, 0.3);
            border-radius: 9999px;
            color: #16a34a;
            font-weight: 700;
            font-size: 0.9375rem;
            letter-spacing: 0.02em;
            animation: workflow-badge-glow 3s ease-in-out infinite;
        }
        @keyframes workflow-step-pulse {
            0%, 100% {
                border-color: #eceef2;
                background: #f7f7f8;
                color: #343745;
                box-shadow: none;
            }
            8%, 25% {
                border-color: #FE4B4B;
                background: #FE4B4B;
                color: #fff;
                box-shadow: 0 8px 28px rgba(254, 75, 75, 0.35);
            }
        }
        @keyframes workflow-dot-travel {
            0% { left: 0; opacity: 0; }
            15% { opacity: 1; }
            85% { opacity: 1; }
            100% { left: 100%; opacity: 0; }
        }
        @keyframes workflow-badge-glow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
            50% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.12); }
        }
        @media (prefers-reduced-motion: reduce) {
            .workflow-step__icon,
            .workflow-connector__dot,
            .workflow-badge { animation: none; }
        }

        /* Service calculator */
        .calc-item {
            border: 2px solid #eceef2;
            background: #fff;
            transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
            cursor: pointer;
        }
        .calc-item:hover { border-color: rgba(254, 75, 75, 0.35); }
        .calc-item.is-active {
            border-color: #FE4B4B;
            background: rgba(254, 75, 75, 0.03);
            box-shadow: 0 8px 32px rgba(254, 75, 75, 0.08);
        }
        .calc-item__check {
            width: 22px;
            height: 22px;
            border: 2px solid #eceef2;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: border-color 0.2s, background 0.2s;
        }
        .calc-item.is-active .calc-item__check {
            border-color: #FE4B4B;
            background: #FE4B4B;
            color: #fff;
        }
        .calc-item__options {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
            margin-top: 0;
        }
        .calc-item.is-active .calc-item__options {
            max-height: 120px;
            opacity: 1;
            margin-top: 1rem;
        }
        .calc-summary {
            background: #343745;
            color: #fff;
        }
        .calc-summary__total {
            font-variant-numeric: tabular-nums;
            transition: transform 0.2s ease;
        }
        .calc-summary__total.is-updating {
            transform: scale(1.04);
            color: #FE4B4B;
        }
        .calc-line {
            animation: calc-line-in 0.3s ease;
        }
        @keyframes calc-line-in {
            from { opacity: 0; transform: translateY(6px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (prefers-reduced-motion: reduce) {
            .calc-summary__total.is-updating { transform: none; }
            .calc-line { animation: none; }
        }

        /* Ticker text rotation */
        .ticker-rotate {
            position: relative;
            min-height: 1.5rem;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }
        .ticker-rotate__item {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            pointer-events: none;
        }
        .ticker-rotate__item.is-active {
            position: relative;
            opacity: 1;
            transform: translateY(0);
        }
        @media (prefers-reduced-motion: reduce) {
            .ticker-rotate__item { transition: none; }
        }

        /* Reviews */
        .review-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #FE4B4B;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
        }
        .reviews-carousel {
            position: relative;
            margin-bottom: 3rem;
        }
        .reviews-carousel__viewport {
            overflow: hidden;
            margin: 0 3.25rem;
        }
        .reviews-carousel__track {
            display: flex;
            gap: 2rem;
            transition: transform 0.45s ease;
            will-change: transform;
        }
        .reviews-carousel__slide {
            flex: 0 0 100%;
            min-width: 0;
            box-sizing: border-box;
        }
        @media (min-width: 768px) {
            .reviews-carousel__slide {
                flex: 0 0 calc(50% - 1rem);
            }
        }
        @media (min-width: 1024px) {
            .reviews-carousel__slide {
                flex: 0 0 calc(33.333% - 1.334rem);
            }
        }
        .reviews-carousel__btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 2px solid #eceef2;
            color: #343745;
            transition: border-color 0.2s, color 0.2s, background 0.2s;
        }
        .reviews-carousel__btn:hover:not(:disabled) {
            border-color: #FE4B4B;
            color: #FE4B4B;
            background: rgba(254, 75, 75, 0.04);
        }
        .reviews-carousel__btn:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }
        .reviews-carousel__btn--prev { left: 0; }
        .reviews-carousel__btn--next { right: 0; }
        @media (prefers-reduced-motion: reduce) {
            .reviews-carousel__track { transition: none; }
        }

        /* About stats */
        .about-stat {
            padding: 1rem;
            background: #fff;
            border: 1px solid #eceef2;
        }
        .about-photo__accent {
            display: none;
        }
        @media (min-width: 768px) {
            .about-photo__accent {
                display: block;
            }
        }

        /* FAQ */
        #faq .faq-summary {
            text-align: left;
        }
        #faq .faq-summary__text {
            flex: 1;
            min-width: 0;
            text-align: left;
        }
        #faq .faq-summary::-webkit-details-marker {
            display: none;
        }

        /* Contact form */
        .contact-form__input::placeholder { color: rgba(255, 255, 255, 0.35); }
        .contact-form__input:disabled,
        .contact-form__btn:disabled {
            opacity: 0.65;
            cursor: not-allowed;
        }
        .contact-form__hp {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        /* Footer messengers */
        .footer-messenger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }
        .footer-messenger:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }
        .footer-messenger img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            display: block;
        }

        /* Case modal */
        .case-modal {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }
        .case-modal.hidden { display: none; }
        .case-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(26, 28, 29, 0.65);
            backdrop-filter: blur(4px);
        }
        .case-modal__panel {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 640px;
            max-height: 85vh;
            overflow-y: auto;
            background: #fff;
            padding: 2rem;
            box-shadow: 0 24px 64px rgba(52, 55, 69, 0.25);
        }
        .case-modal__close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #343745;
            transition: color 0.2s;
        }
        .case-modal__close:hover { color: #FE4B4B; }
        .case-card {
            background: #fff;
            border: 1px solid #eceef2;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .case-card:hover {
            border-color: rgba(254, 75, 75, 0.35);
            box-shadow: 0 12px 40px rgba(52, 55, 69, 0.08);
        }
        .case-card__category {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #906f6d;
            margin-bottom: 0.75rem;
        }
        .case-card__badge {
            display: inline-block;
            background: rgba(254, 75, 75, 0.08);
            color: #FE4B4B;
            font-size: 13px;
            font-weight: 700;
            padding: 0.35rem 0.75rem;
            margin-bottom: 1rem;
        }
        .case-modal__category {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #906f6d;
            margin-bottom: 1rem;
        }
        .case-modal__body h4 {
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #343745;
            margin: 1.5rem 0 0.75rem;
        }
        .case-modal__body ul {
            list-style: disc;
            padding-left: 1.25rem;
            color: #343745;
            line-height: 1.6;
        }
        .case-modal__body ul li + li { margin-top: 0.35rem; }
        .case-modal__situation {
            color: #343745;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }
        .case-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.875rem;
            margin-top: 0.75rem;
        }
        .case-table th,
        .case-table td {
            border: 1px solid #eceef2;
            padding: 0.625rem 0.75rem;
            text-align: left;
        }
        .case-table th {
            background: #f7f7f8;
            font-weight: 700;
            color: #343745;
        }
        .case-table td:last-child {
            color: #FE4B4B;
            font-weight: 700;
        }
        .case-modal__result {
            margin-top: 1.5rem;
            padding: 1rem 1.25rem;
            background: rgba(254, 75, 75, 0.05);
            border-left: 3px solid #FE4B4B;
            color: #343745;
            line-height: 1.6;
        }

        .calc-item.is-active .calc-item__options {
            max-height: 160px;
        }
        .calc-popular-tag {
            font-size: 10px;
            color: rgba(254, 75, 75, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Order modal */
        .order-modal {
            position: fixed;
            inset: 0;
            z-index: 110;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }
        .order-modal.hidden { display: none; }
        .order-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(26, 28, 29, 0.65);
            backdrop-filter: blur(4px);
        }
        .order-modal__panel {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 520px;
            max-height: 90vh;
            overflow-y: auto;
            background: #fff;
            padding: 2rem;
            box-shadow: 0 24px 64px rgba(52, 55, 69, 0.25);
        }
        .order-modal__close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #343745;
            transition: color 0.2s;
        }
        .order-modal__close:hover { color: #FE4B4B; }
        .order-form__input {
            color: #343745;
        }
        .calc-order-preview {
            max-height: 220px;
            overflow-y: auto;
            line-height: 1.55;
        }

        /* Site header & mobile nav */
        .site-ticker-offset {
            margin-top: 64px;
        }
        @media (min-width: 768px) {
            .site-ticker-offset { margin-top: 80px; }
        }
        .site-nav-mobile:not(.hidden) {
            display: block;
        }
        body.site-nav-open {
            overflow: hidden;
        }
        .site-header__cta-short { display: none; }
        .site-header__logo-text {
            font-size: 0.875rem;
            line-height: 1.15;
        }
        @media (min-width: 768px) {
            .site-header__logo-text {
                font-size: 1.3125rem; /* text-headline-md (32px) ÷ 1.5 */
            }
        }
        @media (max-width: 767px) {
            .site-header__cta-full { display: none; }
            .site-header__cta-short { display: inline; }
        }

        /* Mobile layout */
        @media (max-width: 767px) {

            .py-section-gap {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }

            .mb-section-gap {
                margin-bottom: 4rem;
            }

            .text-display-lg,
            .font-display-lg.text-display-lg,
            h1.text-display-lg {
                font-size: 2.125rem !important;
                line-height: 1.15 !important;
                letter-spacing: -0.03em !important;
            }

            .text-headline-xl,
            .font-headline-xl.text-headline-xl,
            h2.text-headline-xl {
                font-size: 1.625rem !important;
                line-height: 1.25 !important;
            }

            .text-headline-md,
            .font-headline-md.text-headline-md {
                font-size: 1.375rem !important;
            }

            .text-body-lg,
            .font-body-lg.text-body-lg {
                font-size: 1rem !important;
                line-height: 1.6 !important;
            }

            .mb-16 {
                margin-bottom: 2.5rem !important;
            }

            .hero-section .pt-24 {
                padding-top: 2rem;
            }

            .hero-section .space-y-10 > :not([hidden]) ~ :not([hidden]) {
                margin-top: 1.5rem;
            }

            .hero-logo-scene {
                --logo-size: min(72vw, 240px);
            }

            .hero-bg__orb--1 {
                width: 220px;
                height: 220px;
            }
            .hero-bg__orb--2 {
                width: 180px;
                height: 180px;
            }
            .hero-bg__orb--3 {
                width: 120px;
                height: 120px;
            }

            .expert-card {
                padding: 1.5rem !important;
            }

            .service-card {
                padding: 1.5rem !important;
            }

            .case-card {
                padding: 1rem;
            }

            .case-card__media {
                margin-left: -1rem;
                margin-right: -1rem;
                margin-top: -1rem;
                min-height: 13rem;
                background: #eceef2;
            }

            .case-card__media img {
                display: block;
                min-height: 13rem;
            }

            #reviews .reviews-section__title {
                padding-left: 1rem;
                padding-right: 1rem;
                margin-bottom: 1.5rem !important;
            }

            .reviews-carousel {
                width: 100%;
            }

            .reviews-carousel__viewport {
                margin: 0;
            }

            .reviews-carousel__btn {
                width: 36px;
                height: 36px;
                box-shadow: 0 2px 10px rgba(52, 55, 69, 0.12);
            }

            .reviews-carousel__btn--prev { left: 0.5rem; }
            .reviews-carousel__btn--next { right: 0.5rem; }

            .reviews-carousel .review-card {
                padding: 1.25rem 2.75rem !important;
            }

            .reviews-carousel__btn .material-symbols-outlined {
                font-size: 1.25rem;
            }

            #pricing .p-12 {
                padding: 1.5rem !important;
            }

            #faq details {
                padding-top: 1.25rem;
                padding-bottom: 1.25rem;
            }

            #faq summary span:first-child,
            #faq .faq-summary__text {
                font-size: 1.0625rem !important;
                line-height: 1.35;
                padding-right: 0;
                text-align: left !important;
            }

            #faq .faq-summary {
                align-items: flex-start;
                text-align: left;
            }

            #faq .text-lg {
                font-size: 0.9375rem !important;
            }

            #contact .bg-secondary {
                padding: 1.25rem 1rem !important;
            }

            #contact h2.text-headline-xl {
                font-size: 1.5rem !important;
            }

            #contact .text-lg {
                font-size: 0.9375rem !important;
            }

            #contact .contact-form {
                padding: 1.25rem !important;
            }

            #contact a.px-8 {
                padding-left: 1.25rem;
                padding-right: 1.25rem;
                padding-top: 0.875rem;
                padding-bottom: 0.875rem;
                font-size: 1rem;
            }

            .savings-section .py-20 {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }

            .savings-stat .text-5xl {
                font-size: 2.25rem;
            }

            .savings-quote {
                padding: 1.5rem !important;
            }

            .savings-quote p {
                font-size: 1rem !important;
            }

            #calculator .py-20 {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }

            .calc-summary {
                padding: 1.5rem !important;
            }

            .calc-summary__total {
                font-size: 1.75rem !important;
            }

            .workflow-strip .py-14 {
                padding-top: 2.5rem;
                padding-bottom: 2.5rem;
            }

            .workflow-strip .mb-12 {
                margin-bottom: 2rem;
            }

            .workflow-badge {
                font-size: 0.8125rem;
                padding: 0.625rem 1.25rem;
                text-align: center;
                margin-top: 1.5rem;
            }

            .ticker-rotate {
                padding: 0 1rem;
            }

            .ticker-rotate__item {
                font-size: 11px;
                letter-spacing: 0.03em;
            }

            .order-modal__panel {
                padding: 1.25rem;
            }

            .case-modal__panel {
                padding: 1.25rem;
                margin: 0.75rem;
            }

            footer .text-headline-md {
                font-size: 1.25rem !important;
            }

            footer.py-16 {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }

            #about .gap-20 {
                gap: 2.5rem;
            }

            #about .site-wrap {
                padding-inline: 5px !important;
            }

            #services .gap-10 {
                gap: 1.5rem;
            }

            .partners-section .py-16 {
                padding-top: 2.5rem;
                padding-bottom: 2.5rem;
            }
        }

        @media (min-width: 768px) {
            .case-card__media {
                margin-left: -2rem;
                margin-right: -2rem;
                margin-top: -2rem;
            }
        }
