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

        :root {
            --primary-color: #F75708;
            --primary-dark: #e04d07;
            --dark: #191919;
            --light: #ffffff;
            --gray: #6d6e71;
            --gray-light: #f5f5f5;
        }

        /* Custom Scrollbar Styles */
        /* WebKit browsers (Chrome, Safari, Edge) */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #191919;
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb {
            background: #F75708;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #e04d07;
        }

        /* Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: #F75708 #191919;
        }

        body {
            font-family: var(--ff-sans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Modern Header */
        .site-header {
            background: rgba(25, 25, 25, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1.25rem 0;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .site-header {
                padding: 0.875rem 0;
            }
        }

        .site-header.scrolled {
            background: rgba(25, 25, 25, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }
        
        .header-logo {
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .header-logo:hover {
            transform: scale(1.05);
        }
        
        .header-logo img {
            height: 42px;
            width: auto;
            transition: opacity 0.3s ease;
        }

        .header-logo:hover img {
            opacity: 0.8;
        }
        
        .header-nav {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            flex: 1;
            justify-content: center;
        }
        
        .header-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .header-nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #F75708;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header-nav a:hover {
            color: #F75708;
        }
        
        .header-nav a:hover::before {
            width: 100%;
        }
        
        .header-nav a.active {
            color: #F75708;
        }
        
        .header-nav a.active::before {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }

        /* Language Selector Styles */
        .language-selector {
            position: relative;
            display: inline-block;
        }

        .language-selector-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.3s ease;
            pointer-events: auto;
            z-index: 10001;
            position: relative;
        }

        .language-selector-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .language-code {
            font-weight: 600;
        }

        .language-dropdown {
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background: rgba(25, 25, 25, 0.98);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 0.5rem;
            min-width: 160px;
            display: none;
            flex-direction: column;
            gap: 0.25rem;
            z-index: 10000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            pointer-events: auto;
        }

        .language-selector.active .language-dropdown {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: auto !important;
        }

        .lang-option {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 0.625rem 0.75rem;
            background: transparent;
            border: none;
            color: #ffffff;
            text-align: left;
            cursor: pointer;
            border-radius: 4px;
            font-size: 0.875rem;
            transition: all 0.2s ease;
        }

        .lang-option:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .lang-option.active {
            background: rgba(247, 87, 8, 0.2);
            color: #F75708;
        }

        @media (max-width: 900px) {
            .language-selector-btn {
                padding: 0.5rem 0.625rem;
                font-size: 0.8125rem;
            }
            
            .language-code {
                font-size: 0.8125rem;
            }
            
            .language-selector-btn svg {
                width: 10px;
                height: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .language-dropdown {
                right: 0;
                left: auto;
                min-width: 140px;
            }
        }
        
        .header-actions .btn-login {
            background: none;
            border: none;
            color: #ffffff;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.9375rem;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .header-actions .btn-login:hover {
            color: #F75708;
            background: rgba(247, 87, 8, 0.1);
        }
        
        .header-actions .btn-signup {
            background: #F75708;
            color: #fff;
            border: none;
            padding: 0.75rem 1.75rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.9375rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(247, 87, 8, 0.2);
        }
        
        .header-actions .btn-signup:hover {
            background: #e04d07;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(247, 87, 8, 0.3);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 24px;
            height: 2px;
            background: #ffffff;
            transition: all 0.3s ease;
            display: block;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Hide menu-actions on desktop */
        .header-nav .menu-actions {
            display: none;
        }
        
        /* Tablet styles - show menu button earlier */
        @media (max-width: 1024px) {
            .header-container {
                padding: 0 1.5rem;
                gap: 1.5rem;
            }

            .header-nav {
                gap: 1.5rem;
            }

            .header-nav a {
                font-size: 0.875rem;
                padding: 0.5rem 0.25rem;
            }

            .header-actions {
                gap: 0.75rem;
            }

            .header-actions .btn-login,
            .header-actions .btn-signup {
                padding: 0.625rem 1.25rem;
                font-size: 0.875rem;
            }
        }

        @media (max-width: 900px) {
            .header-nav {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(25, 25, 25, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem 1.5rem;
                box-shadow: 0 4px 20px rgba(0,0,0,0.3);
                gap: 0;
                z-index: 999;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .header-nav.active {
                display: flex;
            }

            .header-nav a {
                padding: 1rem 0;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                color: #ffffff;
                font-size: 0.9375rem;
            }

            .header-nav a:last-child {
                border-bottom: none;
            }

            .header-nav .menu-actions {
                display: none;
            }

            .header-nav.active .menu-actions {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
            }

            .header-nav .btn-login-menu {
                background: none;
                border: 1px solid rgba(255, 255, 255, 0.2);
                color: #ffffff;
                font-weight: 600;
                padding: 0.875rem 1.5rem;
                border-radius: 4px;
                text-decoration: none;
                font-size: 0.9375rem;
                transition: all 0.3s ease;
                text-align: center;
                width: 100%;
                display: block;
            }

            .header-nav .btn-login-menu:hover {
                background: rgba(255, 255, 255, 0.05);
                border-color: rgba(255, 255, 255, 0.4);
            }

            .header-nav .btn-signup-menu {
                background: #F75708;
                color: #fff;
                border: none;
                padding: 0.875rem 1.5rem;
                border-radius: 4px;
                font-weight: 600;
                text-decoration: none;
                font-size: 0.9375rem;
                transition: all 0.3s ease;
                text-align: center;
                box-shadow: 0 2px 8px rgba(247, 87, 8, 0.2);
                width: 100%;
                display: block;
            }

            .header-nav .btn-signup-menu:hover {
                background: #e04d07;
                box-shadow: 0 4px 12px rgba(247, 87, 8, 0.3);
            }
            
            .header-actions {
                display: flex;
                gap: 0.5rem;
            }
            
            .header-actions .btn-login,
            .header-actions .btn-signup {
                display: none;
            }
            
            .header-actions .language-selector {
                display: inline-block;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }

            .header-logo img {
                height: 28px;
            }
        }

        /* Main Content */
        .main-content {
            background: #191919;
            color: #fff;
            position: relative;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 4rem 0 6rem;
            background: linear-gradient(180deg, #191919 0%, #1a1a1a 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(247, 87, 8, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 204, 255, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../images/image1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.15;
            mix-blend-mode: overlay;
            pointer-events: none;
            z-index: 1;
        }

        .hero-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        @media (max-width: 768px) {
            .hero::after {
                opacity: 0.12;
                background-size: contain;
                background-position: center top;
            }
        }

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

        .hero-eyebrow {
            font-size: 0.875rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            position: relative;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .hero-title-text {
            background: linear-gradient(135deg, #ffffff 0%, #F75708 50%, #ffffff 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
            position: relative;
            display: inline-block;
        }

        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #F75708, transparent);
            animation: expandLine 1s ease 0.5s forwards;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        @keyframes expandLine {
            from { width: 0; }
            to { width: 200px; }
        }

        .hero-description {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            margin-bottom: 4rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        /* РЈР»СѓС‡С€РµРЅРЅС‹Рµ СЃС‡РµС‚С‡РёРєРё */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin: 4rem 0;
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 0.5rem;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.8s forwards;
        }

        .btn-primary {
            background: var(--primary-color);
            color: var(--light);
            padding: 1.125rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--light);
            padding: 1.125rem 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* РџР»Р°РІРЅС‹Рµ РїРµСЂРµС…РѕРґС‹ РјРµР¶РґСѓ СЃРµРєС†РёСЏРјРё */
        .content-section {
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(247, 87, 8, 0.03) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .content-section:hover::before {
            opacity: 1;
        }

        .content-section:nth-child(even) {
            background: rgba(255, 255, 255, 0.02);
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #fff;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            max-width: 800px;
        }

        /* Hero accents */
        .hero-bonus-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #f75708;
            font-weight: 700;
            letter-spacing: 0.04em;
            margin-bottom: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-trust {
            margin-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 13px;
        }

        .section-cta {
            margin-top: 3rem;
            padding: 1.75rem 2rem;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .section-cta p {
            margin: 0;
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.05rem;
            flex: 1;
            min-width: 220px;
        }

        .section-cta__btn {
            flex-shrink: 0;
            white-space: nowrap;
        }

        .trust-chip {
            padding: 10px 14px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
        }

        /* Edge offer section */
        .edge-section .section-title,
        .steps-section .section-title {
            margin-bottom: 0.75rem;
        }

        .edge-section,
        .steps-section {
            position: relative;
        }

        .steps-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('../images/image6.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.12;
            mix-blend-mode: overlay;
            pointer-events: none;
            z-index: 1;
        }

        .edge-section .container,
        .steps-section .container {
            position: relative;
            z-index: 2;
        }

        .edge-section .section-subtitle,
        .steps-section .section-subtitle {
            max-width: 900px;
        }

        .edge-list,
        .steps-list {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .edge-item,
        .step-item {
            position: relative;
            padding-left: 3.5rem;
        }

        .edge-item::before,
        .step-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, #F75708, rgba(247, 87, 8, 0.2));
            border-radius: 2px;
            opacity: 0.6;
        }

        .edge-number,
        .step-number {
            position: absolute;
            left: -0.25rem;
            top: -1rem;
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            font-weight: 700;
            color: rgba(247, 87, 8, 0.18);
            line-height: 1;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.05em;
        }

        .edge-item h3,
        .step-item h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 0.75rem;
            color: #fff;
            font-weight: 700;
            line-height: 1.25;
            position: relative;
            display: inline-block;
        }

        .edge-item h3::after,
        .step-item h3::after {
            content: '';
            position: absolute;
            bottom: -0.4rem;
            left: 0;
            width: 90px;
            height: 3px;
            background: linear-gradient(90deg, #F75708, transparent);
            border-radius: 2px;
        }

        .edge-item p,
        .step-item p {
            margin: 0;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            max-width: 760px;
        }

        .edge-meta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.35rem 0.75rem;
            border-radius: 10px;
            background: rgba(247, 87, 8, 0.12);
            color: #f75708;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
        }

        .edge-meta .material-icons {
            font-size: 18px;
        }

        .bonus-block {
            margin-top: 2.5rem;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .bonus-block ul {
            margin: 0;
            padding-left: 1.1rem;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.65;
            display: grid;
            gap: 0.5rem;
        }

        .step-label {
            color: rgba(255, 255, 255, 0.72);
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 0.35rem;
        }

        /* FAQ */
        .faq-list {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            padding: 1.25rem 1.5rem;
            backdrop-filter: blur(8px);
        }

        .faq-q {
            font-weight: 700;
            margin: 0 0 0.5rem;
            color: #fff;
        }

        .faq-a {
            margin: 0;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.6;
        }

        /* About Section - Redesigned */
        .about-section {
            position: relative;
        }

        .about-section .container {
            position: relative;
        }

        .about-content {
            margin-top: 6rem;
            display: flex;
            flex-direction: column;
            gap: 6rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-item {
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            padding-left: 4rem;
        }

        .about-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-item:nth-child(even) {
            padding-left: 0;
            padding-right: 4rem;
            text-align: right;
        }

        .about-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, #F75708, rgba(247, 87, 8, 0.3));
            border-radius: 2px;
        }

        .about-item:nth-child(even)::before {
            left: auto;
            right: 0;
        }

        .about-item-number {
            font-size: clamp(4rem, 6vw, 6rem);
            font-weight: 700;
            color: rgba(247, 87, 8, 0.15);
            line-height: 1;
            margin-bottom: 1rem;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.05em;
            display: inline-block;
        }

        .about-item h3 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            color: #fff;
            font-weight: 700;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .about-item h3::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #F75708, transparent);
            border-radius: 2px;
        }

        .about-item:nth-child(even) h3::after {
            left: auto;
            right: 0;
            background: linear-gradient(90deg, transparent, #F75708);
        }

        .about-item p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            margin-top: 1.5rem;
            max-width: 700px;
        }

        .about-item:nth-child(even) p {
            margin-left: auto;
        }

        @media (max-width: 1024px) {
            .about-content {
                gap: 4rem;
            }

            .about-item {
                padding-left: 2rem;
            }

            .about-item:nth-child(even) {
                padding-right: 2rem;
                text-align: right;
            }

            .about-item:nth-child(even)::before {
                left: auto;
                right: 0;
            }

            .about-item:nth-child(even) p {
                margin-left: auto;
            }

            .about-item:nth-child(even) h3::after {
                left: auto;
                right: 0;
                background: linear-gradient(90deg, transparent, #F75708);
            }
        }

        /* Services Section */
        .content-section#services {
            position: relative;
        }

        .content-section#services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../images/card-consult.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.12;
            mix-blend-mode: overlay;
            pointer-events: none;
            z-index: 1;
        }

        .content-section#services .container {
            position: relative;
            z-index: 2;
        }

        .services-list {
            margin-top: 5rem;
        }

        .service-block {
            margin-bottom: 6rem;
            position: relative;
            padding-left: 4rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-block:last-child {
            margin-bottom: 0;
        }

        .service-number {
            font-size: clamp(4rem, 6vw, 6rem);
            font-weight: 700;
            color: rgba(247, 87, 8, 0.15);
            line-height: 1;
            margin-bottom: 1rem;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.05em;
            display: inline-block;
        }

        .service-block h3 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            color: #fff;
            font-weight: 700;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .service-block h3::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #F75708, transparent);
            border-radius: 2px;
        }

        .service-block p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            margin-top: 1.5rem;
            max-width: 700px;
        }


        /* Benefits Section */
        .benefits-list {
            margin-top: 5rem;
        }

        .benefit-block {
            margin-bottom: 5rem;
            position: relative;
            padding-right: 4rem;
            text-align: right;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .benefit-block:last-child {
            margin-bottom: 0;
        }

        .benefit-block::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, #F75708, rgba(247, 87, 8, 0.3));
            border-radius: 2px;
        }

        .benefit-block h3 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            color: #fff;
            font-weight: 700;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .benefit-block h3::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            right: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #F75708);
            border-radius: 2px;
        }

        .benefit-block p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            margin-top: 1.5rem;
            max-width: 700px;
            margin-left: auto;
        }

        .stats-inline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-top: 5rem;
            padding: 4rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-inline {
            text-align: left;
        }

        .stat-inline h4 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.02em;
        }

        .stat-inline p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        /* Portfolio - Enhanced Design */
        .portfolio-list {
            margin-top: 4rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .portfolio-item {
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(247, 87, 8, 0.05), rgba(124, 204, 255, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .portfolio-item:hover::before {
            opacity: 1;
        }

        .portfolio-item:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(247, 87, 8, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(247, 87, 8, 0.15);
        }

        .portfolio-item.active {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(247, 87, 8, 0.5);
            box-shadow: 0 15px 50px rgba(247, 87, 8, 0.2);
        }

        .portfolio-item.active::before {
            opacity: 1;
        }

        .portfolio-header {
            padding: 2.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .portfolio-header::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: linear-gradient(90deg, var(--primary-color), rgba(247, 87, 8, 0.3));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .portfolio-item.active .portfolio-header::after {
            width: 5px;
        }

        .portfolio-header:hover {
            padding-left: 3rem;
        }

        .portfolio-item.active .portfolio-header:hover {
            padding-left: 2.5rem;
        }

        .portfolio-number {
            font-size: clamp(3rem, 5vw, 5rem);
            font-weight: 700;
            color: rgba(247, 87, 8, 0.15);
            line-height: 1;
            margin-right: 1.5rem;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.05em;
            transition: all 0.4s ease;
            flex-shrink: 0;
            min-width: 80px;
        }

        .portfolio-item:hover .portfolio-number {
            color: rgba(247, 87, 8, 0.3);
            transform: scale(1.1);
        }

        .portfolio-item.active .portfolio-number {
            color: rgba(247, 87, 8, 0.4);
        }

        .portfolio-header-content {
            flex: 1;
            min-width: 0;
        }

        .portfolio-header h3 {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            color: #fff;
            font-weight: 700;
            margin: 0;
            transition: all 0.4s ease;
            line-height: 1.3;
            position: relative;
        }

        .portfolio-header h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), transparent);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item:hover .portfolio-header h3::after {
            width: 100px;
        }

        .portfolio-item.active .portfolio-header h3 {
            color: var(--primary-color);
        }

        .portfolio-item.active .portfolio-header h3::after {
            width: 150px;
            background: linear-gradient(90deg, var(--primary-color), rgba(247, 87, 8, 0.5));
        }

        .portfolio-toggle {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            position: relative;
            background: rgba(255, 255, 255, 0.03);
        }

        .portfolio-toggle::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 12px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary-color), rgba(124, 204, 255, 0.5));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-item:hover .portfolio-toggle {
            border-color: rgba(247, 87, 8, 0.4);
            background: rgba(247, 87, 8, 0.05);
            transform: scale(1.05);
        }

        .portfolio-item:hover .portfolio-toggle::before {
            opacity: 1;
        }

        .portfolio-toggle::after {
            content: '+';
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 300;
            line-height: 1;
        }

        .portfolio-item.active .portfolio-toggle {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: rotate(45deg) scale(1.1);
            box-shadow: 0 5px 20px rgba(247, 87, 8, 0.4);
        }

        .portfolio-item.active .portfolio-toggle::before {
            opacity: 0;
        }

        .portfolio-item.active .portfolio-toggle::after {
            color: #fff;
            transform: rotate(90deg);
        }

        .portfolio-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s ease, opacity 0.4s ease;
            padding: 0;
            opacity: 0;
            position: relative;
        }

        .portfolio-item.active .portfolio-content {
            max-height: 500px;
            padding: 0 2.5rem 2.5rem 2.5rem;
            opacity: 1;
        }

        .portfolio-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 2.5rem;
            right: 2.5rem;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(247, 87, 8, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.4s ease 0.2s;
        }

        .portfolio-item.active .portfolio-content::before {
            opacity: 1;
        }

        .portfolio-content p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            max-width: 900px;
            margin-top: 1.5rem;
            transform: translateY(10px);
            transition: transform 0.4s ease 0.2s;
        }

        .portfolio-item.active .portfolio-content p {
            transform: translateY(0);
        }

        /* Footer */
        .site-footer {
            background: rgba(25, 25, 25, 0.95);
            padding: 4rem 0 2rem;
            margin-top: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-row {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

        .footer-contact-row .footer-email {
            color: inherit;
            word-break: break-all;
        }

        .footer-copy-btn {
            background: none;
            border: none;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .footer-copy-btn:hover,
        .footer-copy-btn:focus-visible {
            color: #F75708;
            transform: translateY(-1px);
        }

        .footer-copy-btn:focus-visible {
            outline: 2px solid rgba(247, 87, 8, 0.5);
            outline-offset: 2px;
            border-radius: 6px;
        }
        
        .footer-section a:hover {
            color: #F75708;
        }
        
        .footer-newsletter {
            margin-top: 1rem;
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            margin-bottom: 0.5rem;
            font-size: 1rem;
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }
        
        .footer-newsletter input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .footer-newsletter button {
            background: #F75708;
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
            width: 100%;
        }
        
        .footer-newsletter button:hover {
            background: #e04d07;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        /* Scroll Animations */
        /* Enhanced Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Slide animations */
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Scale animations */
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Rotate animations */
        .rotate-in {
            opacity: 0;
            transform: rotate(-5deg) translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .rotate-in.visible {
            opacity: 1;
            transform: rotate(0deg) translateY(0);
        }

        /* Stagger animations for lists */
        .service-block,
        .benefit-block,
        .portfolio-item {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-block.visible,
        .benefit-block.visible,
        .portfolio-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Section title animations */
        .section-title {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .section-subtitle {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        }

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

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .fade-in-up-delay {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in-up-delay.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger animations for children */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stagger-children.visible > *:nth-child(1) {
            transition-delay: 0.1s;
        }

        .stagger-children.visible > *:nth-child(2) {
            transition-delay: 0.2s;
        }

        .stagger-children.visible > *:nth-child(3) {
            transition-delay: 0.3s;
        }

        .stagger-children.visible > *:nth-child(4) {
            transition-delay: 0.4s;
        }

        .stagger-children.visible > * {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-stats,
            .stats-inline {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content {
                gap: 4rem;
            }

            .service-block {
                padding-left: 2rem;
            }

            .benefit-block {
                padding-right: 2rem;
                text-align: right;
            }

            .benefit-block::before {
                left: auto;
                right: 0;
            }

            .benefit-block h3::after {
                left: auto;
                right: 0;
                background: linear-gradient(90deg, transparent, #F75708);
            }

            .benefit-block p {
                margin-left: auto;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 4rem 0 4rem;
                min-height: auto;
            }

            .hero::after {
                opacity: 0.12;
                background-size: contain;
                background-position: center bottom;
            }

            .content-section {
                padding: 4rem 0;
            }

            .content-section#services::before,

            .hero-stats,
            .stats-inline {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .section-cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .section-cta__btn {
                width: 100%;
                text-align: center;
            }

            .hero-bonus-badge {
                display: inline-flex;
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .service-block {
                padding-left: 2rem;
            }

            .benefit-block {
                padding-right: 2rem;
                text-align: right;
            }

            .benefit-block::before {
                left: auto;
                right: 0;
            }

            .benefit-block h3::after {
                left: auto;
                right: 0;
                background: linear-gradient(90deg, transparent, #F75708);
            }

            .benefit-block p {
                margin-left: auto;
            }

            /* Portfolio mobile styles */
            .portfolio-header {
                padding: 1.5rem;
                gap: 1rem;
            }

            .portfolio-number {
                font-size: 2.5rem;
                min-width: 50px;
                margin-right: 1rem;
            }

            .portfolio-header h3 {
                font-size: 1.25rem;
            }

            .portfolio-toggle {
                width: 40px;
                height: 40px;
            }

            .portfolio-toggle::after {
                font-size: 1.5rem;
            }

            .portfolio-item.active .portfolio-content {
                padding: 0 1.5rem 1.5rem 1.5rem;
            }

            .portfolio-content::before {
                left: 1.5rem;
                right: 1.5rem;
            }

            .portfolio-content p {
                font-size: 1rem;
            }
        }

        /* Toast Styles */
        .toast-container {
            position: fixed;
            right: 1rem;
            bottom: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 9999;
        }

        .toast {
            min-width: 280px;
            max-width: 400px;
            background: #111;
            color: #fff;
            border-radius: 12px;
            padding: 1rem 1.25rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            opacity: 0.98;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            animation: slideInRight 0.3s ease;
            transition: opacity 0.35s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 0.98;
            }
        }

        .toast--success {
            background: #1f7a1f;
        }

        .toast--error {
            background: #a11;
        }

        .toast--warning {
            background: #b96d00;
        }

        .toast__content {
            flex: 1;
        }

        .toast__text {
            margin: 0;
            opacity: 0.95;
            font-size: 0.875rem;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .toast-container {
                right: 0.5rem;
                bottom: 0.5rem;
                left: 0.5rem;
            }

            .toast {
                min-width: auto;
                max-width: 100%;
            }
        }

.in-page-nav {
  border-top: 3px solid #F75708;
  display: flex;
  padding: 0;
  margin-top: 0;
  margin-bottom: 3.4rem;
  background: none;
  width: 100%;
  position: relative;
  overflow: visible;
  animation: navTopLineGrow 0.75s cubic-bezier(.5,0,.3,1) 0.05s both;
}
@keyframes navTopLineGrow {
  0% { border-top-width: 3px; border-top-color: transparent; }
  10%{ border-top-color: #F75708; border-top-width: 3px; }
  60% { border-top-width: 3px; border-top-color: #F75708; }
  100% { border-top-width: 3px; border-top-color: #F75708; }
}
.in-page-nav__list {
  display: flex;
  flex-direction: row;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 100vw;
}
.in-page-nav__item {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
}
.in-page-nav__link {
  color: #fff !important;
  background: none;
  font-weight: 600;
  font-size: 1.04rem;
  text-decoration: none;
  border: none;
  padding: 13px 10px 8px 0;
  margin: 0;
  display: inline-block;
  transition: color .18s;
  position: relative;
  line-height: 1.25;
  max-width: 42vw;
  word-break: break-word;
  z-index: 2;
}
.in-page-nav__link:hover,
.in-page-nav__link:focus {
  color: #F75708 !important;
}
.in-page-nav__item:not(:last-child) .in-page-nav__link::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 18px;
  background: #F75708;
  margin-left: 12px;
  margin-right: 2px;
  transform: translateY(3px) scaleY(0);
  animation: dividerGrow .61s cubic-bezier(.29,1.4,.38,1) 0.35s both;
}
@keyframes dividerGrow {
  0% { transform: translateY(16px) scaleY(0.1); opacity: 0; }
  50% { opacity: 0.85; }
  85% { transform: translateY(3px) scaleY(1.1); opacity: 1; }
  100% { transform: translateY(3px) scaleY(1); opacity: 1; }
}
@media (max-width: 768px) {
  .in-page-nav__list{
    gap: 6px;
    flex-wrap: wrap;
    max-width: 100vw;
    justify-content: flex-start;
  }
  .in-page-nav__link {
    font-size: 0.91rem;
    padding: 8px 2px 4px 0;
    max-width: 47vw;
    line-height: 1.15;
    word-break: break-word;
  }
  .in-page-nav {
    border-top: 2px solid #F75708;
    margin-bottom: 2.2rem;
    animation: navTopLineGrowMob 0.65s cubic-bezier(.5,0,.3,1) 0.02s both;
  }
  @keyframes navTopLineGrowMob {
    0% { border-top-width: 2px; border-top-color: transparent; }
    10%{ border-top-color: #F75708; border-top-width: 2px; }
    60% { border-top-width: 2px; border-top-color: #F75708; }
    100% { border-top-width: 2px; border-top-color: #F75708; }
  }
  .in-page-nav__item:not(:last-child) .in-page-nav__link::after {
    height: 14px;
    margin-left: 7px;
    animation-duration: 0.44s;
  }
}

/* Floating callback widget */
.callback-widget {
  position: fixed;
  right: 32px;
  bottom: 36px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.callback-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(145deg, rgba(28,28,28,0.9), rgba(15,15,15,0.92)) padding-box,
              linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)) border-box;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 44px rgba(0,0,0,0.55), 0 10px 26px rgba(247, 87, 8, 0.16);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, translate 0.2s ease, background 0.3s ease;
  animation: callbackBreath 3.6s ease-in-out infinite;
}

.callback-fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 46px rgba(0,0,0,0.6), 0 12px 28px rgba(247, 87, 8, 0.2);
}

.callback-fab__icon {
  width: 28px;
  height: 28px;
  display: block;
  background: linear-gradient(135deg, #ffffff, #d7e4ff);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.1 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.72c.12.81.37 1.6.72 2.34a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.74-1.28a2 2 0 0 1 2.11-.45c.74.35 1.53.6 2.34.72A2 2 0 0 1 22 16.92Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.1 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.72c.12.81.37 1.6.72 2.34a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.74-1.28a2 2 0 0 1 2.11-.45c.74.35 1.53.6 2.34.72A2 2 0 0 1 22 16.92Z'/></svg>");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 22px 22px;
  mask-size: 22px 22px;
  opacity: 0.94;
}

.callback-fab__pulse {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,87,8,0.26) 0%, rgba(247,87,8,0) 60%);
  animation: callbackPulse 2.4s ease-out infinite, callbackGlow 3.2s ease-in-out infinite;
  z-index: -1;
}

@keyframes callbackPulse {
  0% { transform: scale(0.8); opacity: 0.7; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

@keyframes callbackGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(247,87,8,0.55)); }
  50% { filter: drop-shadow(0 0 16px rgba(255,173,110,0.95)); }
}

@keyframes callbackBreath {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.015); }
}

.callback-panel {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
  overflow-y: auto; /* allow scrolling when content taller than viewport */
  padding-top: env(safe-area-inset-top, 0px);
}

.callback-panel.open {
  pointer-events: auto;
  opacity: 1;
}

.callback-panel__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(0,0,0,0.5), rgba(0,0,0,0.75));
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.callback-panel.open .callback-panel__overlay {
  opacity: 1;
}

.callback-panel__card {
  position: absolute;
  right: 24px;
  bottom: 92px;
  width: min(420px, calc(100vw - 32px));
  background: #101010;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.65), 0 10px 26px rgba(247,87,8,0.16);
  padding: 24px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-top: 28px;
}

.callback-panel.open .callback-panel__card {
  transform: translateY(0);
  opacity: 1;
}

.callback-panel__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.callback-panel__close:hover {
  background: rgba(255,255,255,0.08);
  transform: rotate(4deg);
}

.callback-panel__header {
  padding-right: 36px;
  margin-bottom: 14px;
}

.callback-panel__eyebrow {
  color: #F75708;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin: 0 0 6px 0;
}

.callback-panel__header h3 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
}

.callback-panel__sub {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.callback-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.callback-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.callback-field input,
.callback-field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.95rem;
  transition: border 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.callback-field textarea {
  resize: vertical;
  min-height: 96px;
}

.callback-field input:focus,
.callback-field textarea:focus {
  border-color: rgba(247,87,8,0.75);
  outline: none;
  box-shadow: 0 0 0 2px rgba(247,87,8,0.18);
  background: rgba(255,255,255,0.06);
}

.callback-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.callback-submit {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #F75708, #ff7f2e);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, opacity 0.16s ease;
  box-shadow: 0 12px 32px rgba(247,87,8,0.25);
}

.callback-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(247,87,8,0.32);
}

.callback-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.callback-hint {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

body.callback-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .callback-widget {
    right: 16px;
    bottom: 18px;
  }
  .callback-fab {
    width: 58px;
    height: 58px;
  }
  .callback-panel__card {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    max-height: calc(100vh - 24px);
    border-radius: 18px 18px 0 0;
    padding: 20px 18px 18px;
    box-shadow: 0 -6px 32px rgba(0,0,0,0.55);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* improve iOS viewport handling */
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    padding-top: 26px;
    max-height: calc(100svh - 32px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  }
  .callback-form__grid {
    grid-template-columns: 1fr;
  }

  /* Hide inline videos on mobile */
  .js-inline-video {
    display: none !important;
  }
}

/* Variant: Text Left, Video Right */
.variant-video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 6rem;
}

.variant-video-text {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow: hidden;
}

.variant-video-items {
    margin-top: 0;
    gap: 2rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
}

.variant-video-items .about-item {
    padding-left: 4rem;
    max-width: 100%;
    overflow: hidden;
}

.variant-video-items .about-item-number {
    margin-bottom: 0.5rem;
}

.variant-video-items .about-item h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.variant-video-items .about-item p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    margin-top: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.variant-video-items .about-item:nth-child(even) {
    padding-left: 4rem;
    padding-right: 0;
    text-align: left;
}

.variant-video-items .about-item:nth-child(even)::before {
    left: 0;
    right: auto;
}

.variant-video-items .about-item:nth-child(even) h3::after {
    left: 0;
    right: auto;
    background: linear-gradient(90deg, #F75708, transparent);
}

.variant-video-items .about-item:nth-child(even) p {
    margin-left: 0;
}

.variant-video-media {
    align-self: start;
    border-radius: 12px;
    overflow: visible;
    background: transparent;
    border: none;
    min-width: 0;
    flex-shrink: 0;
}

.variant-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Bull animation in video section */
.variant-video-media .bull-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 1;
    min-width: 0;
}

.variant-video-media .bull-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transform: rotate(3deg);
    object-fit: contain;
}

.variant-video-media .bull-eyes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.variant-video-media .eye-line {
    position: absolute;
    width: 230px;
    height: 60px;
    background: #F75708;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8px 12px;
    border-radius: 12px;
    top: 45%;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
}

.variant-video-media .running-line {
    position: relative;
    width: max-content;
    color: #000;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    text-align: left;
    animation: runText 15s linear infinite;
    white-space: nowrap;
}

@keyframes runText {
    0% {
        transform: translateX(230px);
    }
    100% {
        transform: translateX(calc(-50% - 115px));
    }
}

.variant-video-media .bull-smoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.variant-video-media .smoke {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 50%;
    animation: smokeRise 3s ease-out infinite;
}

.variant-video-media .smoke-left {
    top: 60%;
    left: 42%;
    animation-delay: 0s;
}

.variant-video-media .smoke-right {
    top: 60%;
    right: 42%;
    animation-delay: 0.3s;
}

.variant-video-media .smoke::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    border-radius: 50%;
    top: -10px;
    left: 5px;
    animation: smokeRise 3s ease-out infinite;
}

.variant-video-media .smoke::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 50%;
    top: -20px;
    left: 8px;
    animation: smokeRise 3s ease-out infinite;
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) translateX(10px) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-60px) translateX(20px) scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .variant-video-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 4rem;
    }
    
    .variant-video-media {
        position: static;
        order: -1;
        max-width: 100%;
        width: 100%;
    }
    
    .variant-video-media .bull-image-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .variant-video-media .eye-line {
        width: 200px;
    }
    
    @keyframes runText {
        0% {
            transform: translateX(200px);
        }
        100% {
            transform: translateX(calc(-50% - 100px));
        }
    }
    
    .variant-video-media .running-line {
        animation: runText 15s linear infinite;
    }
    
    .variant-video-text {
        max-width: 100%;
        width: 100%;
    }
    
    .variant-video-items {
        gap: 2rem;
        max-width: 100%;
    }
    
    .variant-video-items .about-item {
        padding-left: 2rem;
        max-width: 100%;
    }
    
    .variant-video-items .about-item:nth-child(even) {
        padding-left: 2rem;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .variant-video-content {
        gap: 2rem;
        margin-top: 3rem;
    }

    /* Hide video tile blocks on mobile to avoid empty gaps */
    .tile-list .tile--full {
        display: none !important;
    }
    
    .variant-video-media {
        max-width: 100%;
        width: 100%;
    }
    
    .variant-video-media .bull-image-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .variant-video-media .eye-line {
        width: 130px !important;
        height: 35px !important;
        padding: 4px 6px !important;
        border-radius: 8px !important;
    }
    
    .variant-video-media .running-line {
        font-size: 10px;
        animation: runTextMobile 15s linear infinite;
    }
    
    @keyframes runTextMobile {
        0% {
            transform: translateX(130px);
        }
        100% {
            transform: translateX(calc(-50% - 65px));
        }
    }
    
    .variant-video-text {
        max-width: 100%;
        width: 100%;
    }
    
    .variant-video-items {
        gap: 2rem;
        max-width: 100%;
    }
    
    .variant-video-items .about-item {
        padding-left: 2rem;
        max-width: 100%;
    }
    
    .variant-video-items .about-item:nth-child(even) {
        padding-left: 2rem;
        padding-right: 0;
    }
}

/* Variant: Image Left, Text Right */
.variant-image-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 6rem;
}

.variant-image-media {
    align-self: start;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.variant-image-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.variant-image-text {
    display: flex;
    flex-direction: column;
}

.variant-image-items {
    margin-top: 0;
    gap: 2rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.variant-image-items .about-item {
    padding-left: 4rem;
}

.variant-image-items .about-item-number {
    margin-bottom: 0.5rem;
}

.variant-image-items .about-item h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.variant-image-items .about-item p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    margin-top: 0.75rem;
}

.variant-image-items .about-item:nth-child(even) {
    padding-left: 4rem;
    padding-right: 0;
    text-align: left;
}

.variant-image-items .about-item:nth-child(even)::before {
    left: 0;
    right: auto;
}

.variant-image-items .about-item:nth-child(even) h3::after {
    left: 0;
    right: auto;
    background: linear-gradient(90deg, #F75708, transparent);
}

.variant-image-items .about-item:nth-child(even) p {
    margin-left: 0;
}

@media (max-width: 1024px) {
    .variant-image-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 4rem;
    }
    
    .variant-image-media {
        order: -1;
    }
    
    .variant-image-items {
        gap: 2rem;
    }
    
    .variant-image-items .about-item {
        padding-left: 2rem;
    }
    
    .variant-image-items .about-item:nth-child(even) {
        padding-left: 2rem;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .variant-image-content {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .variant-image-items {
        gap: 2rem;
    }
    
    .variant-image-items .about-item {
        padding-left: 2rem;
    }
    
    .variant-image-items .about-item:nth-child(even) {
        padding-left: 2rem;
        padding-right: 0;
    }
}
