/* services-page.css — Extracted from services.html inline styles */
        /* Custom Premium Styles */
        body {
            background-color: #F5F5F7;
            overflow-x: hidden;
            color: #111;
            font-family: var(--font-main);
        }

        /* Noise Texture Overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.025;
            pointer-events: none;
            z-index: 9999;
        }

        /* Typography Refinements */
        h1,
        h2,
        h3 {
            letter-spacing: -0.02em;
        }

        p {
            line-height: 1.6;
        }

        /* Mesh Blob Animation */
        .mesh-blob {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
            opacity: 0.2;
            animation: pulse-slow 10s infinite alternate;
        }

        .blob-1 {
            top: -10%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: rgba(37, 99, 221, 0.2);
        }

        .blob-2 {
            bottom: -10%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(37, 99, 221, 0.15);
            animation-delay: 2s;
        }

        .blob-3 {
            top: 40%;
            left: 30%;
            width: 400px;
            height: 400px;
            background: rgba(37, 99, 221, 0.1);
            animation-delay: 5s;
        }

        @keyframes pulse-slow {
            0% {
                transform: scale(1) translate(0, 0);
            }

            100% {
                transform: scale(1.1) translate(20px, -20px);
            }
        }

        /* Premium Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            animation: revealAnim 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .reveal-delay-1 {
            animation-delay: 0.1s;
        }

        .reveal-delay-2 {
            animation-delay: 0.2s;
        }

        .reveal-delay-3 {
            animation-delay: 0.3s;
        }

        .reveal-delay-4 {
            animation-delay: 0.4s;
        }

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

        /* Solar System Orbit Animation */
        .solar-system {
            position: relative;
            /* Flex center for logo */
            display: flex;
            justify-content: center;
            align-items: center;
            /* Size - must contain all orbits (ring-4 is 700px) */
            width: 800px;
            height: 800px;
            margin: 0 auto;
        }

        /* The Static Center Logo */
        .solar-center-logo {
            position: relative;
            z-index: 20;
            box-shadow:
                0 0 40px rgba(37, 99, 221, 0.6),
                0 0 80px rgba(37, 99, 221, 0.4),
                0 0 120px rgba(37, 99, 221, 0.2);
        }

        /* Rings and Objects */
        /* Absolute to .solar-system center */
        .orbit-ring {
            position: absolute;
            border: 1px solid #9ca3af !important;
            /* Gray-400 for visibility, consistent */
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.5;
            pointer-events: none;
        }

        /* Rings Sizes */
        .ring-1 {
            width: 220px;
            height: 220px;
        }

        .ring-2 {
            width: 380px;
            height: 380px;
        }

        .ring-3 {
            width: 540px;
            height: 540px;
        }

        .ring-4 {
            width: 700px;
            height: 700px;
        }

        /* PIVOT STYLE ORBIT ANIMATION (Robust Fix) */

        /* 1. Reset Containers to match Ring Sizes exactly */
        /* This ensures proper centering and alignment */
        .orbit-object-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            pointer-events: none;
            /* Let clicks pass through */
            z-index: 10;
            display: block;
            /* Ensure it takes dimensions */
        }

        /* 2. Sizing containers exactly like rings */
        .orbit-con-1 {
            width: 220px;
            height: 220px;
            animation: spin-cw 25s linear infinite;
        }

        .orbit-con-2 {
            width: 380px;
            height: 380px;
            animation: spin-ccw 35s linear infinite;
        }

        .orbit-con-3 {
            width: 540px;
            height: 540px;
            animation: spin-cw 45s linear infinite;
        }

        .orbit-con-4 {
            width: 700px;
            height: 700px;
            animation: spin-ccw 55s linear infinite;
        }

        /* 3. Positioning Objects on the Ring Edge */
        .orbit-object {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            background: transparent;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        /* Ensure images fit nicely */
        .orbit-object img {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
        }

        /* Trailing Light Effect */
        .orbit-object::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(37, 99, 221, 0.4), transparent 70%);
            filter: blur(8px);
            opacity: 0.6;
            z-index: -1;
            top: 0;
            left: 0;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.1);
            }
        }

        /* Ring 1 Objects */
        .obj-1 {
            top: -22px;
            left: 50%;
            margin-left: -22px;
            width: 44px;
            height: 44px;
        }

        .obj-1b {
            bottom: -20px;
            left: 50%;
            margin-left: -20px;
            width: 40px;
            height: 40px;
        }

        /* Ring 2 Objects */
        .obj-2 {
            top: 50%;
            left: -24px;
            margin-top: -24px;
            width: 48px;
            height: 48px;
        }

        .obj-2b {
            top: 50%;
            right: -22px;
            margin-top: -22px;
            width: 44px;
            height: 44px;
        }

        /* Ring 3 Objects */
        .obj-3 {
            top: -26px;
            left: 50%;
            margin-left: -26px;
            width: 52px;
            height: 52px;
        }

        .obj-3b {
            bottom: -22px;
            left: 50%;
            margin-left: -22px;
            width: 44px;
            height: 44px;
        }

        /* Ring 4 Objects */
        .obj-4 {
            top: 50%;
            left: -22px;
            margin-top: -22px;
            width: 44px;
            height: 44px;
        }

        .obj-4b {
            top: 50%;
            right: -22px;
            margin-top: -22px;
            width: 44px;
            height: 44px;
        }

        /* 4. Counter-Rotation to keep icons upright */
        .orbit-con-1 .orbit-object {
            animation: spin-ccw 25s linear infinite;
        }

        .orbit-con-2 .orbit-object {
            animation: spin-cw 35s linear infinite;
        }

        .orbit-con-3 .orbit-object {
            animation: spin-ccw 45s linear infinite;
        }

        .orbit-con-4 .orbit-object {
            animation: spin-cw 55s linear infinite;
        }

        /* Animation Keyframes */
        @keyframes spin-cw {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes spin-ccw {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(-360deg);
            }
        }

        .animate-spin-slow {
            animation: spin 45s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes counter-spin {
            from {
                transform: rotate(360deg);
            }

            to {
                transform: rotate(0deg);
            }
        }

        .anim-rotate-cw {
            animation: spin-cw linear infinite;
        }

        .anim-rotate-ccw {
            animation: spin-ccw linear infinite;
        }




        /* Analytics Mesh Gradient */
        .mesh-blue-bg {
            background-color: #6B8DD9;
            background-image:
                radial-gradient(at 0% 0%, #7B9BE0 0px, transparent 50%),
                radial-gradient(at 100% 0%, #93B4F4 0px, transparent 50%),
                radial-gradient(at 100% 100%, #5A7BC9 0px, transparent 50%),
                radial-gradient(at 0% 100%, #6B8DD9 0px, transparent 50%);
            background-size: 200% 200%;
            animation: meshflow 15s ease infinite alternate;
        }

        @keyframes meshflow {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 50% 100%;
            }
        }

        .blob-mesh {
            position: absolute;
            background: rgba(255, 255, 255, 0.2);
            filter: blur(80px);
            border-radius: 50%;
        }

        /* Chaotic Foating Animation for Logos */
        @keyframes float-chaotic-1 {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            25% {
                transform: translate(10px, -15px) rotate(5deg);
            }

            50% {
                transform: translate(-5px, 10px) rotate(-3deg);
            }

            75% {
                transform: translate(15px, 5px) rotate(8deg);
            }

            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        }

        @keyframes float-chaotic-2 {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(-15px, 15px) rotate(-5deg);
            }

            66% {
                transform: translate(10px, -5px) rotate(3deg);
            }

            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        }

        @keyframes float-chaotic-3 {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(15px, -20px) rotate(6deg);
            }

            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        }

        .animate-float-1 {
            animation: float-chaotic-1 12s ease-in-out infinite;
        }

        .animate-float-2 {
            animation: float-chaotic-2 15s ease-in-out infinite;
        }

        .animate-float-3 {
            animation: float-chaotic-3 18s ease-in-out infinite;
        }

        /* Animated dashed lines for connection effects */
        @keyframes dash-animate {
            0% {
                stroke-dashoffset: 20;
            }
            100% {
                stroke-dashoffset: 0;
            }
        }

        .animate-dash {
            animation: dash-animate 1.5s linear infinite;
        }

        /* Cursor blink animation */
        @keyframes blink {
            0%, 50% {
                opacity: 1;
            }
            51%, 100% {
                opacity: 0;
            }
        }

        .animate-blink {
            animation: blink 1s step-end infinite;
        }

        /* Flow down animation for integration dots */
        @keyframes flow-down {
            0% {
                transform: translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateY(32px);
                opacity: 0;
            }
        }

        .animate-flow-down {
            animation: flow-down 1.5s ease-in-out infinite;
        }

        /* Slow bounce for floating chips */
        @keyframes bounce-slow {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        .animate-bounce-slow {
            animation: bounce-slow 3s ease-in-out infinite;
        }

        /* Enhanced interaction for automation & webdev cards */
        @keyframes sv-line-flow-vertical {
            0% {
                background-position: 50% 0%;
                opacity: 0.55;
            }
            100% {
                background-position: 50% 200%;
                opacity: 1;
            }
        }

        @keyframes sv-hub-ring {
            0% {
                transform: scale(0.9);
                opacity: 0.6;
            }
            70% {
                transform: scale(1.15);
                opacity: 0;
            }
            100% {
                transform: scale(1.15);
                opacity: 0;
            }
        }

        @keyframes sv-browser-sheen {
            0% {
                transform: translateX(-140%);
                opacity: 0;
            }
            35% {
                opacity: 0.6;
            }
            100% {
                transform: translateX(140%);
                opacity: 0;
            }
        }

        @keyframes sv-hero-pan {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes sv-cta-pulse {
            0%, 100% {
                box-shadow: 0 8px 18px rgba(249, 115, 22, 0.25);
                transform: translateY(0);
            }
            50% {
                box-shadow: 0 14px 26px rgba(249, 115, 22, 0.35);
                transform: translateY(-1px);
            }
        }

        .services-page .sv-automation-card,
        .services-page .sv-webdev-card {
            background-size: 140% 140%;
            background-position: 0% 0%;
        }

        .services-page .sv-webdev-card {
            --sv-webdev-ease: cubic-bezier(0.22, 1, 0.36, 1);
            transition: transform 0.7s var(--sv-webdev-ease), box-shadow 0.7s var(--sv-webdev-ease),
                background-position 0.9s var(--sv-webdev-ease);
        }

        .services-page .sv-webdev-card:hover {
            transform: translateY(-6px);
        }

        .services-page .sv-automation-card:hover,
        .services-page .sv-webdev-card:hover {
            background-position: 100% 0%;
        }

        .services-page .sv-automation-visual,
        .services-page .sv-webdev-visual {
            position: relative;
            isolation: isolate;
        }

        .services-page .sv-automation-visual {
            padding-top: 6px;
        }

        .services-page .sv-automation-diagram {
            position: relative;
            margin-top: 6px;
        }

        .services-page .sv-automation-connector {
            pointer-events: none;
            overflow: visible;
        }

        .services-page .sv-automation-path {
            stroke: currentColor;
            stroke-width: 1.6;
            fill: none;
            stroke-linecap: round;
            stroke-dasharray: 6 6;
        }

        .services-page .sv-path-blue {
            color: #60a5fa;
        }

        .services-page .sv-path-emerald {
            color: #34d399;
        }

        .services-page .sv-path-indigo {
            color: #818cf8;
        }

        .services-page .sv-path-purple {
            color: #a78bfa;
        }

        .services-page .sv-automation-dot {
            fill: currentColor;
        }

        .services-page .sv-dot-blue {
            color: #60a5fa;
        }

        .services-page .sv-dot-emerald {
            color: #34d399;
        }

        .services-page .sv-dot-indigo {
            color: #818cf8;
        }

        .services-page .sv-dot-purple {
            color: #a78bfa;
        }

        .services-page .sv-automation-node {
            position: absolute;
            transform: translate(-50%, -50%);
            transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
        }

        .services-page .sv-automation-node--crm {
            left: 70px;
            top: 28px;
        }

        .services-page .sv-automation-node--warehouse {
            left: 190px;
            top: 28px;
        }

        .services-page .sv-automation-node--analytics {
            left: 80px;
            top: 152px;
        }

        .services-page .sv-automation-node--market {
            left: 180px;
            top: 152px;
        }

        .services-page .sv-automation-node::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 14px;
            border: 1px solid rgba(59, 130, 246, 0.25);
            opacity: 0;
            transform: scale(0.96);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .services-page .sv-automation-card:hover .sv-automation-node {
            transform: translate(-50%, -50%) translateY(-3px);
            box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
        }

        .services-page .sv-automation-card:hover .sv-automation-node::after {
            opacity: 1;
            transform: scale(1.06);
        }

        .services-page .sv-automation-hub {
            position: absolute;
            left: 130px;
            top: 88px;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        .services-page .sv-automation-hub-inner {
            position: relative;
            z-index: 2;
        }

        .services-page .sv-automation-hub::after {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 22px;
            border: 1px solid rgba(59, 130, 246, 0.25);
            animation: sv-hub-ring 3.4s ease-out infinite;
            pointer-events: none;
        }

        .services-page .sv-automation-dot {
            filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.35));
        }

        .services-page .sv-automation-card:hover .sv-automation-path {
            opacity: 1;
            filter: drop-shadow(0 6px 8px rgba(37, 99, 235, 0.2));
        }

        .services-page .sv-automation-card:hover .sv-automation-dot {
            filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.45));
        }

        .services-page .sv-automation-card:hover .sv-automation-chip {
            box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
        }

        .services-page .sv-webdev-stack {
            transition: transform 0.7s var(--sv-webdev-ease), filter 0.7s var(--sv-webdev-ease);
            will-change: transform;
        }

        .services-page .sv-webdev-card:hover .sv-webdev-stack {
            filter: drop-shadow(0 24px 50px rgba(15, 23, 42, 0.12));
            transform: translateY(-4px) scale(1.05);
        }

        .services-page .sv-webdev-browser {
            position: relative;
            z-index: 1;
            transition: transform 0.7s var(--sv-webdev-ease), box-shadow 0.7s var(--sv-webdev-ease);
        }

        .services-page .sv-webdev-browser::after {
            content: '';
            position: absolute;
            inset: -40% -60%;
            background: linear-gradient(120deg, transparent, rgba(59, 130, 246, 0.18), transparent);
            transform: translateX(-140%);
            opacity: 0;
            pointer-events: none;
        }

        .services-page .sv-webdev-card:hover .sv-webdev-browser::after {
            animation: sv-browser-sheen 1.8s ease;
            opacity: 1;
        }

        .services-page .sv-webdev-hero {
            background-size: 200% 100%;
            animation: sv-hero-pan 8s ease-in-out infinite;
        }

        .services-page .sv-webdev-code,
        .services-page .sv-webdev-mobile {
            transition: transform 0.7s var(--sv-webdev-ease), box-shadow 0.7s var(--sv-webdev-ease),
                border-color 0.7s var(--sv-webdev-ease);
            will-change: transform;
        }

        .services-page .sv-webdev-code {
            z-index: 4;
        }

        .services-page .sv-webdev-mobile {
            z-index: 5;
            right: -12px;
            bottom: 64px;
        }

        .services-page .sv-webdev-card:hover .sv-webdev-code {
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
        }

        .services-page .sv-webdev-card:hover .sv-webdev-mobile {
            box-shadow: 0 16px 24px rgba(15, 23, 42, 0.14);
        }

        .services-page .sv-webdev-chip {
            transition: transform 0.7s var(--sv-webdev-ease), box-shadow 0.7s var(--sv-webdev-ease);
        }

        .services-page .sv-webdev-card:hover .sv-webdev-chip {
            box-shadow: 0 12px 20px rgba(15, 23, 42, 0.12);
        }

        .services-page .sv-webdev-card:hover .sv-webdev-cta {
            animation: sv-cta-pulse 1.6s ease-in-out infinite;
        }

        .services-page .sv-support-photo {
            width: 100%;
        }

        .services-page .sv-support-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
        }

        .services-page .sv-support-photo::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 42%;
            background: linear-gradient(
                to bottom,
                rgba(248, 250, 252, 0) 0%,
                rgba(248, 250, 252, 0.6) 55%,
                rgba(248, 250, 252, 0.9) 85%,
                rgba(248, 250, 252, 1) 100%
            );
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            pointer-events: none;
        }

        @media (min-width: 1025px) {
            .services-page #services .service-card .sv-support-photo {
                width: 60%;
                height: 72%;
                margin: 56px 0 0;
                left: auto;
                right: 8px;
                border-radius: 24px;
                box-shadow: none;
                transform: none;
                overflow: hidden;
                background: transparent;
            }

            .services-page #services .service-card .sv-support-photo img {
                transform: none !important;
                object-fit: contain;
                object-position: center;
                border-radius: 24px;
                background: transparent;
            }

            .services-page #services .service-card .absolute.inset-y-0.right-0 {
                width: 55%;
            }

            .services-page #services .service-card .sv-support-photo::after {
                display: none;
            }
        }

        /* Noise Texture Overlay */
        .bg-noise {
            position: relative;
        }

        .bg-noise::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 10;
            mix-blend-mode: overlay;
        }

        .bg-noise>* {
            position: relative;
            z-index: 2;
        }

        /* Gradient Text Effect */
        .text-gradient {
            background: linear-gradient(135deg, #5A7BC9 0%, #7B9BE0 30%, #93B4F4 60%, #8B7DC9 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradient-shift 8s ease infinite;
        }

        /* Web Text Gradient - голубое свечение */
        .web-text-gradient {
            background: linear-gradient(
                90deg,
                #60A5FA 0%,
                #93C5FD 25%,
                #BFDBFE 50%,
                #60A5FA 75%,
                #3B82F6 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: web-gradient-shift 3s linear infinite;
            font-weight: 600;
        }

        @keyframes web-gradient-shift {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        @keyframes gradient-shift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* Abstract Gradient Blobs */
        .abstract-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.15;
            pointer-events: none;
            z-index: 0;
        }

        /* Vertical Light Beam Abstraction (Aurora Effect) */
        .bg-beams {
            position: relative;
            overflow: hidden;
        }

        .bg-beams::after {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            right: -10%;
            bottom: -10%;
            background:
                linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.15) 10%, transparent 20%),
                linear-gradient(90deg, transparent 15%, rgba(59, 130, 246, 0.2) 25%, transparent 35%),
                linear-gradient(90deg, transparent 40%, rgba(124, 58, 237, 0.15) 50%, transparent 60%),
                linear-gradient(90deg, transparent 65%, rgba(37, 99, 221, 0.2) 75%, transparent 85%),
                linear-gradient(90deg, transparent 80%, rgba(147, 197, 253, 0.1) 90%, transparent 100%);
            background-size: 100% 100%;
            pointer-events: none;
            z-index: 1;
            mix-blend-mode: screen;
            opacity: 0.6;
        }

        .bg-beams-dark::after {
            background:
                linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.25) 10%, transparent 20%),
                linear-gradient(90deg, transparent 15%, rgba(59, 130, 246, 0.3) 25%, transparent 35%),
                linear-gradient(90deg, transparent 40%, rgba(124, 58, 237, 0.25) 50%, transparent 60%),
                linear-gradient(90deg, transparent 65%, rgba(37, 99, 221, 0.3) 75%, transparent 85%);
            opacity: 0.4;
        }

        .bg-beams-light::after {
            background:
                linear-gradient(90deg, transparent 0%, rgba(203, 213, 225, 0.3) 12%, transparent 24%),
                linear-gradient(90deg, transparent 30%, rgba(226, 232, 240, 0.25) 42%, transparent 54%),
                linear-gradient(90deg, transparent 60%, rgba(241, 245, 249, 0.3) 72%, transparent 84%);
            opacity: 0.5;
            mix-blend-mode: soft-light;
        }




        @media (max-width: 968px) {

            .mesh-blob,
            .blob-1,
            .blob-2,
            .blob-3 {
                opacity: 0.05 !important;
                filter: blur(60px) !important;
            }

            #mobile-gradient-blobs {
                display: none !important;
            }
        }

        /* Feature Bridge — мост между hero и услугами */
        .feature-bridge {
            position: relative;
            padding: 80px 24px 60px;
            overflow: hidden;
        }

        .bridge-glow {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(37, 99, 221, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .bridge-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .feature-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 28px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            border: 1px solid rgba(37, 99, 221, 0.15);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            flex: 1;
            min-width: 200px;
        }

        .feature-card .feature-icon {
            width: 56px;
            height: 56px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            color: #6B8DD9;
        }

        .feature-card .feature-icon svg {
            width: 32px;
            height: 32px;
        }

        .feature-card .feature-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .feature-card .feature-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #0A0A0A;
        }

        .feature-card .feature-desc {
            font-size: 0.9rem;
            color: #6B7280;
        }

        .orbital-hub {
            position: relative;
            width: 140px;
            height: 140px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hub-gradient {
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, rgba(37, 99, 221, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hub-ring {
            position: absolute;
            border: 1px solid rgba(37, 99, 221, 0.3);
            border-radius: 50%;
        }

        .hub-ring-1 {
            width: 80px;
            height: 80px;
            animation: spin 20s linear infinite;
        }

        .hub-ring-2 {
            width: 110px;
            height: 110px;
            animation: spin 25s linear infinite reverse;
        }

        .hub-ring-3 {
            width: 140px;
            height: 140px;
            animation: spin 30s linear infinite;
        }

        .hub-core {
            position: relative;
            z-index: 5;
            width: 48px;
            height: 48px;
            color: #6B8DD9;
        }

        .hub-core svg {
            width: 100%;
            height: 100%;
        }

        .hub-label {
            position: absolute;
            bottom: -28px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.75rem;
            font-weight: 600;
            color: #6B7280;
        }

        .infinite-marquee {
            margin-top: 48px;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-track {
            display: inline-flex;
            gap: 16px;
            animation: marquee 30s linear infinite;
        }

        .m-tag {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #374151;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .m-tag.highlight {
            background: #6B8DD9;
            color: white;
            border-color: transparent;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Evolution Section — блок «Будущее E-com» */
        .evolution-section {
            position: relative;
            padding: 120px 24px;
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            overflow: hidden;
        }

        .evox-bg-layer {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .evox-bg-stars {
            background-image: radial-gradient(2px 2px at 20px 30px, #fff, transparent), radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent);
            background-size: 100px 100px;
        }

        .evox-bg-grid {
            background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .solar-system-wrapper {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            opacity: 0.4;
        }

        .solar-ring {
            position: absolute;
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50%;
        }

        .solar-ring.ring-1 {
            width: 120px;
            height: 120px;
            animation: spin 40s linear infinite;
        }

        .solar-ring.ring-2 {
            width: 200px;
            height: 200px;
            animation: spin 50s linear infinite reverse;
        }

        .solar-ring.ring-3 {
            width: 280px;
            height: 280px;
            animation: spin 60s linear infinite;
        }

        .solar-ring.ring-4 {
            width: 360px;
            height: 360px;
            animation: spin 70s linear infinite reverse;
        }

        .solar-ring.ring-5 {
            width: 440px;
            height: 440px;
            animation: spin 80s linear infinite;
        }

        .solar-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #6366f1;
            border-radius: 50%;
            top: 50%;
            left: 0;
            transform: translate(-50%, -50%);
        }

        .evo-core-container {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto 60px;
        }

        .evox-energy-ball {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80px;
            height: 80px;
            margin: -40px 0 0 -40px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.6) 0%, transparent 70%);
            border-radius: 50%;
        }

        .evo-ring {
            position: absolute;
            border: 1px solid rgba(99, 102, 241, 0.4);
            border-radius: 50%;
            top: 50%;
            left: 50%;
        }

        .evo-ring-1 {
            width: 120px;
            height: 120px;
            margin: -60px 0 0 -60px;
            animation: spin 20s linear infinite;
        }

        .evo-ring-2 {
            width: 160px;
            height: 160px;
            margin: -80px 0 0 -80px;
            animation: spin 25s linear infinite reverse;
        }

        .evo-ring-3 {
            width: 200px;
            height: 200px;
            margin: -100px 0 0 -100px;
            animation: spin 30s linear infinite;
        }

        .evo-center-brain {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 64px;
            height: 64px;
            margin: -32px 0 0 -32px;
            background: rgba(99, 102, 241, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .evo-center-icon {
            font-size: 1.5rem;
            color: white;
        }

        .evo-float-card {
            position: absolute;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .evo-pos-1 {
            top: 10%;
            left: 10%;
        }

        .evo-pos-2 {
            top: 15%;
            right: 15%;
        }

        .evo-pos-3 {
            bottom: 25%;
            left: 15%;
        }

        .evo-pos-4 {
            bottom: 20%;
            right: 10%;
        }

        .evo-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .evo-card-content div:first-child {
            font-size: 0.85rem;
            color: #6B7280;
        }

        .evo-card-content div:last-child {
            font-weight: 700;
            font-size: 1.1rem;
            color: #0A0A0A;
        }

        .evo-content {
            position: relative;
            z-index: 10;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .evo-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(99, 102, 241, 0.3);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #a5b4fc;
            margin-bottom: 16px;
        }

        .evo-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .evo-desc {
            color: #94a3b8;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .evo-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: #6366f1;
            color: white;
            border: none;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .evo-btn:hover {
            background: #4f46e5;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .bridge-container {
                flex-direction: column;
            }

            .feature-card {
                min-width: 100%;
            }

            .evo-float-card {
                display: none;
            }
        }

        /* ============================================
           MOBILE ADAPTIVE STYLES - COMPREHENSIVE
           ============================================ */

        @media (max-width: 1024px) {
            /* Hero Section - Tablet */
            .sv-hero-container {
                padding: 80px 24px 60px;
            }

            .sv-hero-title {
                font-size: 2.8rem;
                line-height: 1.15;
            }

            .sv-hero-stats {
                flex-wrap: wrap;
                justify-content: center;
            }

            .sv-hero-visual {
                margin-top: -20px;
            }

            /* Process Section */
            .sv-process-container {
                padding: 0 24px;
            }

            .sv-process-grid {
                gap: 16px;
            }

            .sv-process-row {
                justify-content: center;
                gap: 12px;
            }

            /* Services Grid */
            .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            /* Hero Section - Mobile */
            .sv-hero {
                padding: 100px 0 60px;
            }

            .sv-hero-container {
                padding: 0 20px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .sv-hero-content {
                max-width: 100%;
                order: 2 !important;
            }

            .sv-hero-title {
                font-size: 2.2rem;
                line-height: 1.2;
                margin-bottom: 20px;
            }

            .sv-hero-title-line {
                display: block;
            }

            .sv-hero-title-accent {
                display: block;
            }

            .sv-hero-subtitle {
                font-size: 1rem;
                margin-bottom: 28px;
                text-align: center;
            }

            .sv-hero-chips {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 6px;
                width: 100%;
                margin: 0 auto;
                padding: 0 12px;
                align-items: stretch;
                justify-items: stretch;
                box-sizing: border-box;
            }

            .sv-chip {
                width: 100%;
                padding: 10px 8px;
                font-size: 0.68rem;
                line-height: 1.1;
                justify-content: center;
                min-height: 44px;
                white-space: nowrap;
                box-sizing: border-box;
            }

            .sv-chip i {
                font-size: 0.7rem;
            }

            .sv-hero-cta {
                align-items: center;
            }

            .sv-hero-cta-buttons {
                flex-direction: column;
                gap: 12px;
                width: 100%;
            }

            .sv-btn-primary,
            .sv-btn-demo {
                width: 100%;
                justify-content: center;
                padding: 14px 24px;
                font-size: 0.95rem;
            }

            .sv-hero-hint {
                font-size: 0.85rem;
                text-align: center;
            }

            .sv-hero-stats {
                flex-direction: row;
                justify-content: space-around;
                gap: 16px;
                margin-top: 32px;
            }

            .sv-hero-stat {
                flex: 1;
                text-align: center;
            }

            .sv-hero-stat-value {
                font-size: 1.8rem;
            }

            .sv-hero-stat-label {
                font-size: 0.85rem;
            }

            .sv-hero-stat-divider {
                height: 40px;
                margin: 0;
            }

            .sv-hero-visual {
                margin-top: 60px !important;
                margin-bottom: 0 !important;
                width: 100%;
                max-width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                order: 1 !important;
            }

            .sv-orbit-system {
                transform: scale(0.85);
                margin: 0 auto;
            }

            .sv-hero-photo-wrap {
                max-width: 280px;
                margin: 0 auto;
                display: block;
            }

            .sv-quote-card {
                position: absolute;
                margin: 0;
                left: auto;
                right: 12px;
                bottom: 12px;
                transform: none;
                width: auto;
            }

            /* Process Section */
            .sv-process {
                padding: 60px 0;
            }

            .sv-process-container {
                padding: 0 20px;
            }

            .sv-process-header {
                margin-bottom: 32px;
            }

            .sv-process-eyebrow {
                font-size: 0.85rem;
            }

            .sv-process-title {
                font-size: 2rem;
                margin: 12px 0 16px;
            }

            .sv-process-subtitle {
                font-size: 1rem;
            }

            .sv-process-grid {
                gap: 16px;
                padding: 0 10px;
                transform: scale(0.85);
                transform-origin: center top;
            }

            .sv-process-row {
                flex-wrap: nowrap;
                gap: 12px;
                justify-content: center;
                width: 100%;
            }

            .sv-chip {
                font-size: 0.8rem;
                padding: 12px 16px;
                gap: 8px;
                white-space: nowrap;
                min-height: 48px;
                height: 48px;
                display: flex;
                align-items: center;
                box-sizing: border-box;
            }

            .sv-chip--gradient {
                padding: 10px 16px;
                border-radius: 24px;
                min-height: 48px;
                max-height: 48px;
                height: 48px;
                box-sizing: border-box;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.85rem;
            }

            .sv-chip--avatar {
                min-height: 48px;
                height: 48px;
                display: flex;
                align-items: center;
            }

            .sv-chip--avatar .sv-chip-avatar {
                width: 26px;
                height: 26px;
            }

            .sv-chip--square {
                width: 44px;
                height: 44px;
                min-width: 44px;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .sv-chip--time {
                padding: 12px 16px;
                min-height: 44px;
            }

            .sv-chip--cta {
                padding: 12px 18px;
                min-height: 44px;
            }

            /* Services Section */
            #services {
                padding: 60px 16px;
            }

            .services-header {
                margin-bottom: 40px;
            }

            .services-header-eyebrow span {
                font-size: 0.8rem;
                padding: 8px 16px;
            }

            .services-header-title {
                font-size: 2rem;
                line-height: 1.2;
                margin: 16px 0;
            }

            .services-title-word {
                display: inline;
            }

            .services-header-subtitle {
                font-size: 0.95rem;
                line-height: 1.6;
                padding: 0 10px;
            }

            .services-header-subtitle br {
                display: none;
            }

            /* Services Grid */
            .services-page #services .services-grid {
                gap: 20px;
            }

            .services-page #services .service-card {
                min-height: 360px;
                display: flex;
                flex-direction: column;
            }

            /* Hide decorative elements on mobile */
            .services-page #services .service-card > div[class*="absolute"][class*="rounded-full"],
            .services-page #services .service-card > div[class*="w-3 h-3"],
            .services-page #services .service-card > div[class*="w-2 h-2"] {
                display: none !important;
            }

            /* Fix card layout on mobile */
            .services-page #services .service-card .service-card__visual {
                position: relative !important;
                top: auto !important;
                right: auto !important;
                left: auto !important;
                transform: none !important;
                width: 100% !important;
                height: auto !important;
                min-height: 220px;
                order: 1;
                padding: 20px;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }

            .services-page #services .service-card .service-card__visual img {
                max-width: 100% !important;
                height: auto !important;
                object-fit: contain !important;
                margin: 0 auto;
            }

            .services-page #services .service-card .service-card__content {
                position: relative !important;
                bottom: auto !important;
                left: auto !important;
                width: 100% !important;
                order: 2;
            }

            /* Support card - mobile layout - clean and centered */
            .services-page #services .service-card[onclick*="support"] {
                min-height: auto !important;
                position: relative !important;
                overflow: hidden !important;
                display: flex !important;
                flex-direction: column !important;
                padding-bottom: 0 !important;
            }

            .services-page #services .service-card[onclick*="support"] .service-card__content {
                position: relative !important;
                z-index: 10 !important;
                padding: 24px 20px 20px !important;
                order: 1 !important;
            }

            .services-page #services .service-card[onclick*="support"] .service-card__visual {
                position: relative !important;
                width: 100% !important;
                height: auto !important;
                order: 2 !important;
                display: flex !important;
                justify-content: center !important;
                align-items: flex-end !important;
                padding: 0 !important;
                min-height: 0 !important;
                margin: 12px 0 16px !important;
                width: 100% !important;
            }

            .services-page #services .service-card .sv-support-photo {
                position: relative !important;
                width: 100% !important;
                height: auto !important;
                aspect-ratio: auto;
                min-height: 0;
                max-height: none;
                margin: 0 !important;
                z-index: 5;
                border-radius: 0 !important;
                overflow: visible;
                box-shadow: none !important;
                padding: 0;
                background: transparent !important;
            }

            .services-page #services .service-card .sv-support-photo img {
                width: 100% !important;
                height: auto !important;
                object-fit: contain !important;
                object-position: center !important;
                transform: none !important;
                border-radius: 24px !important;
                display: block !important;
                max-height: 320px;
            }

            .services-page #services .service-card .sv-support-photo::after {
                display: none !important;
            }

            /* Floating bubbles - hide on mobile for clean look */
            .services-page #services .service-card .absolute.inset-y-0[class*="w-[55%]"] {
                display: none !important;
            }

            .services-page #services .service-card .absolute.inset-y-0 > div[class*="absolute"] {
                display: none !important;
            }

            .services-page #services .service-card .absolute.inset-y-0 > div[class*="top-[18%]"] {
                display: none !important;
            }

            .services-page #services .service-card .absolute.inset-y-0 > div[class*="top-[42%]"] {
                display: none !important;
            }

            /* Hide WB/OZ icons on mobile */
            .services-page #services .service-card .absolute[class*="top-12"],
            .services-page #services .service-card .absolute[class*="top-32"] {
                display: none !important;
            }

            /* Service Card Content */
            .services-page #services .service-card__content {
                padding: 24px 20px;
            }

            .services-page #services .service-card__content h3 {
                font-size: 1.3rem;
                line-height: 1.3;
                margin-bottom: 12px;
            }

            .services-page #services .service-card__content p {
                font-size: 0.9rem;
                line-height: 1.6;
                margin-bottom: 16px;
            }

            /* Service Tags */
            .services-page #services .service-card .flex.flex-wrap.gap-2 span {
                font-size: 0.75rem;
                padding: 6px 12px;
            }

            /* Reputation card - keep desktop visual on mobile */
            .services-page #services .service-card[onclick*="reputation"] {
                min-height: 360px;
            }

            .services-page #services .service-card[onclick*="reputation"] .service-card__visual {
                position: absolute !important;
                top: 10px !important;
                left: 0 !important;
                right: 0 !important;
                height: 55% !important;
                padding: 0 20px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                z-index: 5 !important;
            }

            .services-page #services .service-card[onclick*="reputation"] .service-card__visual img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                object-position: 30% center !important;
                border-radius: 20px;
            }

            .services-page #services .service-card[onclick*="reputation"] .service-card__visual::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(237, 233, 254, 0.35) 0%, rgba(237, 233, 254, 0) 45%);
                pointer-events: none;
                mix-blend-mode: screen;
            }

            .services-page #services .service-card[onclick*="reputation"] .service-card__visual::before {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                width: 60%;
                height: 100%;
                background: linear-gradient(270deg, rgba(237, 233, 254, 1) 0%, rgba(237, 233, 254, 0.95) 40%, rgba(237, 233, 254, 0) 100%);
                pointer-events: none;
                z-index: 6;
            }

            .services-page #services .service-card[onclick*="reputation"] .absolute.top-6.right-6,
            .services-page #services .service-card[onclick*="reputation"] .absolute.top-16.left-8 {
                z-index: 6 !important;
                opacity: 0.8 !important;
            }

            .services-page #services .service-card[onclick*="reputation"] .service-card__content {
                position: absolute !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                width: 100% !important;
                padding: 26px 20px 24px !important;
                background: linear-gradient(to top, #F5F3FF 0%, rgba(245, 243, 255, 0.95) 70%, transparent 100%) !important;
                z-index: 7 !important;
            }

            /* Feature Bridge */
            .feature-bridge {
                padding: 60px 20px 50px;
            }

            .bridge-container {
                gap: 16px;
            }

            .feature-card {
                padding: 18px 20px;
                flex-direction: column;
                text-align: center;
            }

            .feature-card .feature-icon {
                width: 48px;
                height: 48px;
            }

            .feature-card .feature-icon svg {
                width: 28px;
                height: 28px;
            }

            .feature-card .feature-title {
                font-size: 1rem;
            }

            .feature-card .feature-desc {
                font-size: 0.85rem;
            }

            .orbital-hub {
                display: none;
            }

            .infinite-marquee {
                margin-top: 32px;
            }

            .m-tag {
                font-size: 0.85rem;
                padding: 6px 16px;
            }

            /* Evolution Section */
            .evolution-section {
                padding: 80px 20px;
            }

            .evo-float-card {
                display: none;
            }

            .evo-content h2 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .evo-content p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .evo-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 28px;
            }

            /* Keep decorative animations visible on mobile */
            .sv-hero-orb,
            .sv-sparkle,
            .sv-process-glow,
            .abstract-blob,
            .solar-ring {
                display: none !important;
            }

            /* Show gradient animations on mobile - enhanced visibility */
            .sv-orbit-system {
                display: block !important;
                opacity: 1 !important;
                transform: scale(1.3) !important;
            }

            .sv-morph {
                display: block !important;
                opacity: 0.7 !important;
            }

            .sv-aurora-glow {
                opacity: 1 !important;
            }

            .sv-gradient-ring {
                opacity: 0.8;
            }
        }

        @media (max-width: 480px) {
            /* Extra Small Mobile Devices */

            /* Hero Section */
            .sv-hero-title {
                font-size: 1.8rem;
                line-height: 1.25;
            }

            .sv-hero-subtitle {
                font-size: 0.9rem;
            }

            .sv-hero-chips {
                gap: 4px;
                width: 100%;
                margin: 0 auto;
                padding: 0 10px;
                align-items: stretch;
                justify-items: stretch;
                box-sizing: border-box;
            }

            .sv-chip {
                padding: 10px 6px;
                font-size: 0.62rem;
                line-height: 1.1;
                min-height: 42px;
                white-space: nowrap;
                box-sizing: border-box;
            }

            .sv-btn-primary,
            .sv-btn-demo {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .sv-hero-stat-value {
                font-size: 1.5rem;
            }

            .sv-hero-stat-label {
                font-size: 0.75rem;
            }

            /* Process Section */
            .sv-process-title {
                font-size: 1.6rem;
            }

            .sv-process-subtitle {
                font-size: 0.9rem;
            }

            .sv-process-row {
                gap: 6px;
            }

            .sv-chip {
                font-size: 0.7rem;
                padding: 6px 10px;
            }

            .sv-chip--square {
                width: 32px;
                height: 32px;
            }

            /* Services Section */
            .services-header-title {
                font-size: 1.7rem;
            }

            .services-header-subtitle {
                font-size: 0.85rem;
            }

            .relative.z-10 h3 {
                font-size: 1.1rem;
            }

            .relative.z-10 p {
                font-size: 0.85rem;
            }

            /* Feature Cards */
            .feature-card {
                padding: 16px 18px;
            }

            .feature-card .feature-title {
                font-size: 0.95rem;
            }

            .feature-card .feature-desc {
                font-size: 0.8rem;
            }

            .m-tag {
                font-size: 0.75rem;
                padding: 5px 12px;
            }

            /* Evolution Section */
            .evolution-section {
                padding: 60px 16px;
            }

            .evo-content h2 {
                font-size: 1.6rem;
            }

            .evo-content p {
                font-size: 0.85rem;
            }
        }

        /* Landscape Mode for Mobile */
        @media (max-width: 968px) and (orientation: landscape) {
            .sv-hero {
                padding: 60px 0 40px;
            }

            .sv-hero-container {
                flex-direction: row;
                align-items: center;
            }

            .sv-hero-content {
                flex: 1;
            }

            .sv-hero-visual {
                flex: 1;
                margin-top: 0;
            }

            .sv-hero-title {
                font-size: 2rem;
            }

            .sv-orbit-system {
                transform: scale(0.7);
            }

            .sv-quote-card {
                position: absolute;
                bottom: 20px;
                right: 20px;
                width: auto;
            }
        }

        /* Tablets - Portrait */
        @media (min-width: 769px) and (max-width: 1024px) {
            .sv-hero-container {
                gap: 40px;
            }

            .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile auto-animations for services cards */
        @keyframes sv-float-soft {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        @keyframes sv-float-tiny {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        @keyframes sv-scale-breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.03); }
        }

        @keyframes sv-bar-pulse {
            0%, 100% { transform: scaleY(0.9); }
            50% { transform: scaleY(1.05); }
        }

        @keyframes sv-shine-sweep {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .sv-chip,
            .sv-btn-primary,
            .sv-btn-demo,
            .feature-card {
                -webkit-tap-highlight-color: rgba(37, 99, 221, 0.1);
            }

            .sv-chip:active,
            .sv-btn-primary:active,
            .sv-btn-demo:active {
                transform: scale(0.97);
            }

            /* Increase touch targets */
            .sv-chip,
            button,
            a {
                min-height: 44px;
                min-width: 44px;
            }

            /* SEO card: show hover-only elements + gentle float */
            .service-card[onclick*="seo"] .service-card__visual .translate-y-24 {
                transform: translateY(0) !important;
                animation: sv-float-soft 4.5s ease-in-out infinite;
            }

            .service-card[onclick*="seo"] .service-card__visual [class*="w-[240px]"] {
                animation: sv-scale-breathe 5s ease-in-out infinite;
            }

            /* Analytics card: animate chart and bars */
            .service-card[onclick*="analytics"] .service-card__visual [class*="w-[240px]"] {
                animation: sv-scale-breathe 5.5s ease-in-out infinite;
            }

            .service-card[onclick*="analytics"] .service-card__visual .flex.items-end > div {
                transform-origin: bottom;
                animation: sv-bar-pulse 3.8s ease-in-out infinite;
            }

            .service-card[onclick*="analytics"] .service-card__visual .flex.items-end > div:nth-child(2) {
                animation-delay: 0.3s;
            }

            .service-card[onclick*="analytics"] .service-card__visual .flex.items-end > div:nth-child(3) {
                animation-delay: 0.6s;
            }

            .service-card[onclick*="analytics"] .service-card__visual .flex.items-end > div:nth-child(4) {
                animation-delay: 0.9s;
            }

            /* Finance card: floating calculator */
            .service-card[onclick*="finance"] .service-card__visual [class*="w-[200px]"] {
                animation: sv-scale-breathe 5s ease-in-out infinite;
            }

            /* Logistics card: subtle float of visual layer */
            .service-card[onclick*="logistics"] .service-card__visual {
                animation: sv-float-soft 6s ease-in-out infinite;
            }

            /* Bloggers card: reveal avatars and animate */
            .service-card[onclick*="bloggers"] [class*="opacity-0"][class*="group-hover:opacity-100"] {
                opacity: 1 !important;
                transform: translateY(0) !important;
                animation: sv-float-tiny 4s ease-in-out infinite;
            }

            .service-card[onclick*="bloggers"] [class*="translate-x-[-100%]"] {
                animation: sv-shine-sweep 2.8s ease-in-out infinite;
            }
        }

        /* EV Studio Section - Mobile Adaptive */
        @media (max-width: 768px) {
            .ev-studio-visual-section {
                padding: 60px 16px;
                min-height: auto;
            }

            .ev-studio-photo-grid {
                height: 380px;
                margin-bottom: 40px;
                position: relative;
            }

            /* Левое верхнее изображение */
            .ev-photo-item--left-front {
                width: 42% !important;
                left: 3% !important;
                right: auto !important;
                top: 12% !important;
                bottom: auto !important;
            }

            /* Левое нижнее изображение */
            .ev-photo-item--left-bottom {
                width: 44% !important;
                left: 2% !important;
                right: auto !important;
                top: auto !important;
                bottom: 8% !important;
            }

            /* Правое верхнее изображение */
            .ev-photo-item--right-top {
                width: 44% !important;
                right: 2% !important;
                left: auto !important;
                top: 6% !important;
                bottom: auto !important;
            }

            /* Правое нижнее изображение */
            .ev-photo-item--right-bottom {
                width: 38% !important;
                right: 5% !important;
                left: auto !important;
                top: auto !important;
                bottom: 12% !important;
            }

            .ev-photo-item > div {
                border-radius: 20px !important;
            }

            .ev-studio-center-card {
                width: 130px !important;
                padding: 14px !important;
            }

            .ev-studio-center-card .absolute.-top-4 {
                font-size: 0.65rem;
                padding: 5px 10px;
            }

            .ev-camera {
                transform: scale(0.75);
            }

            .ev-studio-figma-window {
                transform: scale(0.8);
            }

            .ev-studio-visual-section h2 {
                font-size: 1.8rem !important;
                line-height: 1.3;
                padding: 0 16px;
            }

            .gemini-pill {
                font-size: 1.7rem;
                padding: 0 8px;
            }
        }

        @media (max-width: 480px) {
            .ev-studio-photo-grid {
                height: 340px;
            }

            /* Левое верхнее изображение */
            .ev-photo-item--left-front {
                width: 40% !important;
                left: 3% !important;
                right: auto !important;
                top: 14% !important;
                bottom: auto !important;
            }

            /* Левое нижнее изображение */
            .ev-photo-item--left-bottom {
                width: 42% !important;
                left: 2% !important;
                right: auto !important;
                top: auto !important;
                bottom: 10% !important;
            }

            /* Правое верхнее изображение */
            .ev-photo-item--right-top {
                width: 42% !important;
                right: 2% !important;
                left: auto !important;
                top: 8% !important;
                bottom: auto !important;
            }

            /* Правое нижнее изображение */
            .ev-photo-item--right-bottom {
                width: 36% !important;
                right: 5% !important;
                left: auto !important;
                top: auto !important;
                bottom: 14% !important;
            }

            .ev-photo-item > div {
                border-radius: 16px !important;
            }

            .ev-studio-center-card {
                width: 100px !important;
                padding: 10px !important;
                aspect-ratio: 3/4;
            }

            .ev-camera {
                transform: scale(0.6);
            }

            .ev-studio-figma-window {
                transform: scale(0.65);
            }

            .ev-studio-visual-section h2 {
                font-size: 1.5rem !important;
            }

            .gemini-pill {
                font-size: 1.4rem;
                padding: 0 6px;
            }
        }

        /* Footer Marquee Section - Mobile Adaptive */
        @media (max-width: 768px) {
            .footer-marquee-section {
                padding: 40px 0;
            }

            .marquee-item {
                font-size: 1.2rem;
                padding: 0 12px;
            }

            .marquee-separator {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .footer-marquee-section {
                padding: 32px 0;
            }

            .marquee-item {
                font-size: 1rem;
                padding: 0 10px;
            }

            .marquee-separator {
                font-size: 0.85rem;
            }
        }

        /* Global Mobile Typography & Spacing */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            h2 {
                font-size: 1.8rem;
                line-height: 1.25;
            }

            h3 {
                font-size: 1.4rem;
                line-height: 1.3;
            }

            p {
                font-size: 1rem;
                line-height: 1.6;
            }

            .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            section {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.7rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            h3 {
                font-size: 1.2rem;
            }

            p {
                font-size: 0.9rem;
            }

            .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            section {
                padding-top: 48px;
                padding-bottom: 48px;
            }
        }

        /* Image Optimization for Mobile */
        @media (max-width: 768px) {
            img {
                max-width: 100%;
                height: auto;
            }

            .aspect-\[4\/3\] img,
            .aspect-square img {
                object-fit: cover;
                object-position: center;
            }
        }

        /* Prevent Horizontal Scroll */
        @media (max-width: 968px) {
            body {
                overflow-x: hidden;
            }

            * {
                max-width: 100%;
            }

            .container,
            .max-w-7xl,
            .max-w-6xl {
                width: 100%;
                max-width: 100%;
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* Reduce Motion for Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .animate-float-1,
            .animate-float-2,
            .animate-float-3,
            .animate-pulse,
            .animate-bounce {
                animation: none !important;
            }
        }


        /* Landscape orientation optimization */
        @media (max-width: 968px) and (orientation: landscape) {
            /* Уменьшение вертикальных spacing для landscape */
            .sv-hero,
            .sv-process,
            #services,
            .evolution-section {
                padding-top: 40px !important;
                padding-bottom: 40px !important;
            }

            /* Отключение больших декоративных элементов */
            .sv-orbit-system,
            .ev-studio-photo-grid {
                transform: scale(0.8) !important;
            }

            /* Компактный layout для buttons */
            .sv-hero-cta-buttons {
                flex-direction: row !important;
                flex-wrap: wrap;
            }

            .sv-btn-primary,
            .sv-btn-demo {
                width: auto !important;
                padding: 10px 20px !important;
            }
        }

        /* iOS Safari specific optimizations */
        @supports (-webkit-touch-callout: none) {
            @media (max-width: 768px) {
                /* Оптимизация для webkit */
                * {
                    -webkit-transform: translateZ(0);
                    -webkit-backface-visibility: hidden;
                    -webkit-perspective: 1000;
                }

                /* Отключение momentum scrolling анимаций */
                .solutions-section.carousel-mode {
                    -webkit-overflow-scrolling: auto;
                }
            }
        }

        /* Android Chrome optimizations */
        @media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
            /* Оптимизация для высоких DPI экранов */
            img {
                image-rendering: -webkit-optimize-contrast;
            }

            /* Смягчение тяжелых теней без потери дизайна */
            .sv-hero-photo-wrap,
            .service-card,
            .feature-card,
            .sv-cta-banner,
            .sv-photo-collage-frame,
            .ev-studio-center-card {
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
            }
        }

        /* Services Page Responsive Refinements */
        @media (max-width: 1024px) {
            .services-page #services .services-grid {
                grid-auto-rows: minmax(360px, auto) !important;
            }

            .services-page #services .service-card {
                min-height: clamp(360px, 60vw, 480px) !important;
            }

            .services-page .sv-cta-banner {
                border-radius: 44px;
            }

            .services-page .sv-photo-collage-frame {
                border-radius: 40px;
            }
        }

        @media (max-width: 768px) {
            .services-page #services {
                padding: 60px 16px;
            }

            .services-page #services .services-grid {
                grid-auto-rows: minmax(340px, auto) !important;
            }

            .services-page #services .service-card {
                min-height: 360px !important;
                border-radius: 24px;
            }

            .services-page #services .service-card__content {
                padding: 20px 18px 22px;
            }

            .services-page .sv-automation-visual,
            .services-page .sv-webdev-visual {
                height: 54%;
            }

            .services-page .sv-automation-diagram {
                transform: scale(0.9);
                transform-origin: top center;
            }

            .services-page .sv-webdev-stack {
                transform: scale(0.9);
                transform-origin: top center;
            }

            .services-page .sv-webdev-mobile {
                right: -12px;
                bottom: -8px;
            }

            .services-page .sv-cta-banner {
                border-radius: 32px;
                margin: 12px 0;
            }

            .services-page .sv-cta-banner-inner {
                padding: 96px 20px;
                min-height: 520px;
            }

            .services-page .sv-cta-banner h2 {
                font-size: clamp(2rem, 8vw, 2.8rem);
                line-height: 1.05;
            }

            .services-page .sv-cta-banner p {
                font-size: 1rem;
            }

            .services-page .sv-cta-buttons {
                width: 100%;
            }

            .services-page .sv-cta-buttons button {
                width: 100%;
                font-size: 1rem;
                padding: 16px 24px;
            }

            .services-page .sv-photo-collage {
                padding: 72px 16px;
            }

            .services-page .sv-photo-collage-frame {
                border-radius: 32px;
                padding: 20px;
            }

            .services-page .sv-photo-collage-grid {
                height: 380px !important;
            }

            .services-page .sv-photo-collage .ev-photo-item {
                position: absolute !important;
            }

            .services-page .sv-photo-collage .ev-photo-item > div {
                border-radius: 24px !important;
                overflow: hidden !important;
            }

            .services-page .sv-photo-collage .ev-photo-item {
                transform: translateY(10px) !important;
            }

            .services-page .sv-photo-collage .ev-photo-item--left-bottom {
                width: 44% !important;
                left: 3% !important;
                right: auto !important;
                bottom: 2% !important;
                top: auto !important;
            }

            .services-page .sv-photo-collage .ev-photo-item--left-top {
                width: 32% !important;
                left: 5% !important;
                right: auto !important;
                top: 20% !important;
                bottom: auto !important;
            }

            .services-page .sv-photo-collage .ev-photo-item--right-top {
                width: 44% !important;
                right: 3% !important;
                left: auto !important;
                top: 16% !important;
                bottom: auto !important;
            }

            .services-page .sv-photo-collage .ev-photo-item--right-bottom {
                width: 30% !important;
                right: 8% !important;
                left: auto !important;
                bottom: 4% !important;
                top: auto !important;
            }

            .services-page .sv-photo-collage .ev-studio-center-card {
                width: 140px !important;
                padding: 16px !important;
            }

            .services-page .sv-photo-collage h2 {
                font-size: clamp(1.6rem, 6vw, 2.2rem);
            }
        }

        /* Mobile fix: align 4 photos evenly in grid */
        @media (max-width: 768px) {
            .services-page .sv-photo-collage-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-auto-rows: 1fr;
                gap: 12px;
                height: auto !important;
                padding: 12px 10px 14px;
            }

            .services-page .sv-photo-collage .ev-photo-group {
                display: contents;
            }

            .services-page .sv-photo-collage .ev-photo-item {
                position: static !important;
                inset: auto !important;
                width: 100% !important;
                transform: none !important;
            }

            .services-page .sv-photo-collage .ev-photo-item > div {
                width: 100%;
                aspect-ratio: 4 / 3;
                border-radius: 22px !important;
                overflow: hidden;
            }

            .services-page .sv-photo-collage .ev-photo-item img {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
            }
        }

        @media (max-width: 480px) {
            .services-page .sv-photo-collage-grid {
                gap: 10px;
                padding: 10px 8px 12px;
            }

            .services-page .sv-photo-collage .ev-photo-item > div {
                border-radius: 18px !important;
            }
        }

        @media (max-width: 480px) {
            .services-page #services .services-grid {
                grid-auto-rows: minmax(300px, auto) !important;
            }

            .services-page #services .service-card {
                min-height: 320px !important;
                border-radius: 20px;
            }

            .services-page #services .service-card__content {
                padding: 18px 16px 20px;
            }

            .services-page .sv-automation-diagram {
                transform: scale(0.82);
            }

            .services-page .sv-webdev-stack {
                transform: scale(0.82);
            }

            .services-page .sv-cta-banner-inner {
                padding: 80px 16px;
                min-height: 440px;
            }

            .services-page .sv-cta-banner h2 {
                font-size: 1.8rem;
            }

            .services-page .sv-cta-banner p {
                font-size: 0.95rem;
            }

            .services-page .sv-cta-buttons button {
                font-size: 0.95rem;
                padding: 14px 20px;
            }

            .services-page .sv-photo-collage {
                padding: 60px 12px;
            }

            .services-page .sv-photo-collage-frame {
                border-radius: 26px;
                padding: 16px;
            }

            .services-page .sv-photo-collage-grid {
                height: 340px !important;
            }

            .services-page .sv-photo-collage .ev-photo-item > div {
                border-radius: 20px !important;
            }

            .services-page .sv-photo-collage .ev-photo-item {
                transform: translateY(10px) !important;
            }

            .services-page .sv-photo-collage .ev-photo-item--left-bottom {
                width: 42% !important;
                left: 3% !important;
                right: auto !important;
                bottom: 2% !important;
                top: auto !important;
            }

            .services-page .sv-photo-collage .ev-photo-item--left-top {
                width: 30% !important;
                left: 5% !important;
                right: auto !important;
                top: 22% !important;
                bottom: auto !important;
            }

            .services-page .sv-photo-collage .ev-photo-item--right-top {
                width: 42% !important;
                right: 3% !important;
                left: auto !important;
                top: 18% !important;
                bottom: auto !important;
            }

            .services-page .sv-photo-collage .ev-photo-item--right-bottom {
                width: 28% !important;
                right: 8% !important;
                left: auto !important;
                bottom: 4% !important;
                top: auto !important;
            }

            .services-page .sv-photo-collage .ev-studio-center-card {
                width: 120px !important;
                padding: 12px !important;
            }
        }
