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

        :root {
            --primary-red: linear-gradient(135deg, #1a1a2e 0%, #8b2e4a 50%, #e8a562 100%);
            --red-light: linear-gradient(135deg, #2a2a4e 0%, #a0395f 100%);
            --red-dark: linear-gradient(135deg, #0f0f1e 0%, #6b2439 100%);
            --orange-accent: #e8a562;
            --burgundy-accent: #8b2e4a;
            --burgundy-hover: #a0395f;
            --navy-blue: #1a1a2e;
            --dark-text: #1a1a2e;
            --medium-gray: #454545;
            --light-gray: #F9F9F9;
            --warm-beige: linear-gradient(135deg, #fffbf5 0%, #fff5eb 100%);
            --light-pink: linear-gradient(135deg, #fff9f0 0%, #fef5eb 100%);
            --border-gray: #D9D9D9;
            --white: #FFFFFF;
            --gradient-navy-burgundy: linear-gradient(135deg, #1a1a2e 0%, #8b2e4a 100%);
            --gradient-burgundy-gold: linear-gradient(135deg, #8b2e4a 0%, #e8a562 100%);
            --gradient-full: linear-gradient(135deg, #1a1a2e 0%, #8b2e4a 50%, #e8a562 100%);
            --h3: 28px;
            --h4: 26px;
            --h5: 22px;
            --h6: 18px;
            --text-big: 20px;
            --text-base: 18px;
            --text-small: 16px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #ffffff;
            color: var(--dark-text);
            line-height: 1.4;
            overflow-x: hidden;
        }

        /* Section backgrounds - alternating colors */
        .section-bg-white {
            background: #FFFFFF;
        }

        .section-bg-beige {
            background: linear-gradient(135deg, var(--warm-beige) 0%, #FFFBF5 100%);
            position: relative;
        }

        .section-bg-pink {
            background: linear-gradient(135deg, var(--light-pink) 0%, #FFFFFF 100%);
            position: relative;
        }

        .section-bg-gradient-red {
            background: linear-gradient(135deg, #FFF5F6 0%, #FFFFFF 50%, #FFF5E6 100%);
            position: relative;
        }

        /* Decorative patterns */
        .section-pattern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: radial-gradient(circle, var(--primary-red) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Scroll Progress Bar */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-red), #FF6B6B);
            z-index: 10000;
            transition: width 0.1s ease;
        }

        /* Fade in animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.animated {
            animation-duration: 0.8s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .fade-in-up.animated {
            animation-name: fadeInUp;
        }

        .fade-in.animated {
            animation-name: fadeIn;
        }

        .scale-in.animated {
            animation-name: scaleIn;
        }

        .slide-in-left.animated {
            animation-name: slideInLeft;
        }

        .slide-in-right.animated {
            animation-name: slideInRight;
        }

        /* Stagger animation delays */
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .stagger-5 { animation-delay: 0.5s; }
        .stagger-6 { animation-delay: 0.6s; }
        .stagger-7 { animation-delay: 0.7s; }
        .stagger-8 { animation-delay: 0.8s; }
        .stagger-9 { animation-delay: 0.9s; }
        .stagger-10 { animation-delay: 1s; }
        .stagger-11 { animation-delay: 1.1s; }
        .stagger-12 { animation-delay: 1.2s; }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Navigation */
        nav {
            background: white;
            height: 145px !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-content {
            max-width: 1400px;
            width: 100%;
            display: flex;
            align-items: center;
            overflow: visible;
            justify-content: space-between;
            padding: 24px 12px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
            height: 118px !important;
        }

        .logo a {
            display: flex;
            align-items: center;
            height: 100%;
            text-decoration: none;
        }

        .logo img {
            height: 100% !important;
            width: auto;
            object-fit: contain;
        }

        .logo .partner-logo {
            height: 76% !important;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
            list-style: none;
            margin-left: auto;
            margin-right: 32px;
        }

        .nav-menu > li {
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--medium-gray);
            font-size: 16px;
            text-transform: uppercase;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-menu a:hover {
            color: var(--primary-red);
        }

        /* Dropdown styles */
        .dropdown {
            position: relative;
        }

        .dropdown-arrow {
            font-size: 10px;
            transition: transform 0.3s;
        }

        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            padding: 16px 0;
            margin-top: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            list-style: none;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            padding: 0;
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 24px;
            color: var(--dark-text);
            font-size: 15px;
            text-transform: none;
            transition: all 0.3s;
        }

        .dropdown-menu a:hover {
            background: var(--light-gray);
            color: var(--primary-red);
            padding-left: 28px;
        }

        .btn-login {
            background: var(--primary-red);
            color: white;
            border: 1px solid var(--primary-red);
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-login:hover {
            background: #7a2640;
        }

        /* Language Switcher */
        .language-switcher {
            position: relative;
        }

        .lang-select {
            padding: 6px 12px 6px 10px;
            background: #ffffff;
            border: 2px solid var(--border-gray);
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            color: var(--dark-text);
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            display: flex;
            align-items: center;
            gap: 6px;
            min-width: 85px;
            box-shadow: 0 2px 8px rgba(139, 46, 74, 0.1);
        }

        .lang-select:hover {
            border-color: var(--orange-accent);
            background: linear-gradient(135deg, #fff9f0 0%, #fef5eb 100%);
            box-shadow: 0 4px 12px rgba(232, 165, 98, 0.2);
        }

        .lang-flag {
            width: 24px;
            height: 18px;
            border-radius: 2px;
            object-fit: cover;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .lang-flag-img {
            width: 24px;
            height: 18px;
            border-radius: 2px;
            object-fit: cover;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .lang-code {
            font-size: 14px;
            font-weight: 600;
        }

        .lang-arrow {
            margin-left: auto;
            font-size: 10px;
            transition: transform 0.3s;
        }

        .lang-select.open .lang-arrow {
            transform: rotate(180deg);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: linear-gradient(135deg, #fffbf5 0%, #fff5eb 100%);
            border: 2px solid var(--border-gray);
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(139, 46, 74, 0.15);
            min-width: 180px;
            display: none;
            z-index: 1000;
            overflow: hidden;
        }

        .lang-dropdown.active {
            display: block;
        }

        .lang-option {
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-text);
        }

        .lang-option:hover {
            background: linear-gradient(135deg, #fff9f0 0%, #fef5eb 100%);
            color: var(--orange-accent);
        }

        .lang-option.selected {
            background: linear-gradient(135deg, rgba(139, 46, 74, 0.1) 0%, rgba(232, 165, 98, 0.1) 100%);
            color: var(--burgundy-accent);
            font-weight: 700;
        }

        .lang-option-flag {
            width: 28px;
            height: 21px;
            border-radius: 2px;
            object-fit: cover;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .lang-option-flag-img {
            width: 28px;
            height: 21px;
            border-radius: 2px;
            object-fit: cover;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .lang-option-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .lang-option-code {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .lang-option-name {
            font-size: 11px;
            font-weight: 400;
            opacity: 0.7;
        }

        /* Hero Section */
        .hero {
            display: flex;
            gap: 16px;
            padding: 32px 16px 64px 16px;
            align-items: center;
            background: #ffffff;
            position: relative;
            margin-bottom: 40px;
            z-index: 1;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: transparent;
            border-radius: 50%;
            pointer-events: none;
            animation: float 6s ease-in-out infinite;
        }

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

        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .hero-content h1 {
            order: 1;
            font-size: var(--h4);
            font-weight: 600;
            line-height: 1.2;
            color: var(--dark-text);
        }

        .hero-content > p {
            order: 2;
        }

        .hero-content .platform-tags {
            order: 3;
        }

        .hero-content .btn-primary {
            order: 4;
        }

        .hero-content p {
            font-size: var(--text-base);
            color: var(--dark-text);
            line-height: 1.4;
        }

        .btn-primary {
            background: var(--gradient-burgundy-gold);
            color: white;
            border: none;
            padding: 15px 50px;
            border-radius: 25px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: fit-content;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 4px 20px rgba(139, 46, 74, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #a0395f 0%, #f5b777 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 25px;
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(232, 165, 98, 0.5);
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .platform-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .platform-tag {
            background: white;
            border: 1px solid var(--border-gray);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            color: #494949;
            transition: all 0.3s;
        }

        .platform-tag:hover {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        .hero-video {
            position: relative;
            width: 750px;
            height: 422px;
            border-radius: 16px;
            overflow: hidden;
            background: #000;
            z-index: 1;
        }

        .hero-video iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 16px;
            position: relative;
            z-index: 0;
        }

        /* Logos Section */
        .logos {
            padding: 40px 0;
            background: white;
            position: relative;
            z-index: 100;
        }

        .logos-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 16px;
            display: flex;
            gap: 80px;
            justify-content: space-between;
            align-items: center;
        }

        .logo-item {
            opacity: 0.7;
            height: 70px;
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

        .logo-item-tall {
            height: 100px;
        }

        .logo-item img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            filter: grayscale(100%);
        }

        /* Values Section */
        .values {
            padding: 64px 16px;
            background: white;
            position: relative;
            z-index: 100;
        }

        .section-header {
            text-align: center;
            margin-bottom: 32px;
            position: relative;
        }

        /* Numbered sections with icons */
        .section-number {
            font-size: 120px;
            font-weight: 800;
            color: rgba(139, 46, 74, 0.08);
            line-height: 0.8;
            margin-bottom: -20px;
            user-select: none;
        }

        .section-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, rgba(139, 46, 74, 0.1) 0%, rgba(139, 46, 74, 0.05) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .section-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(139, 46, 74, 0.15) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .section-icon:hover {
            transform: scale(1.05);
        }

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

        .section-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--primary-red);
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .section-icon:hover svg {
            transform: scale(1.1);
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-light) 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            box-shadow: 0 4px 15px rgba(139, 46, 74, 0.25), 0 2px 8px rgba(255, 107, 53, 0.15);
            transition: all 0.3s ease;
        }

        .section-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 46, 74, 0.35), 0 3px 12px rgba(255, 107, 53, 0.2);
        }

        /* Badge color variants */
        .badge-orange {
            background: linear-gradient(135deg, var(--orange-accent) 0%, #FF8C61 100%);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25), 0 2px 8px rgba(255, 140, 97, 0.15);
        }

        .badge-blue {
            background: linear-gradient(135deg, var(--navy-blue) 0%, #2D4A7C 100%);
            box-shadow: 0 4px 15px rgba(26, 54, 93, 0.25), 0 2px 8px rgba(45, 74, 124, 0.15);
        }

        .badge-gradient {
            background: var(--gradient-burgundy-gold);
            box-shadow: 0 4px 15px rgba(139, 46, 74, 0.3), 0 2px 8px rgba(232, 165, 98, 0.2);
        }

        .section-header h2 {
            font-size: var(--h4);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-header h2 .red {
            background: var(--gradient-burgundy-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .section-header p {
            font-size: var(--text-big);
            line-height: 1.4;
            max-width: 1400px;
            margin: 0 auto;
        }

        .tabs {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
        }

        .tab {
            flex: 1;
            background: white;
            border: 2px solid var(--border-gray);
            border-radius: 16px;
            padding: 32px 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-burgundy-gold);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .tab.active {
            border-color: var(--burgundy-accent);
            background: linear-gradient(135deg, #fff9f0 0%, #fef5eb 100%);
            box-shadow: 0 8px 25px rgba(139, 46, 74, 0.2);
        }

        .tab.active::before {
            opacity: 0.03;
        }

        .tab.active .tab-icon i {
            background: var(--gradient-burgundy-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tab:hover {
            box-shadow: 0 8px 20px rgba(139, 46, 74, 0.15);
            transform: translateY(-3px);
            border-color: var(--orange-accent);
        }

        .tab > * {
            position: relative;
            z-index: 1;
        }

        .tab-icon {
            width: 50px;
            height: 50px;
        }

        .tab-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .tab-title {
            font-size: var(--text-base);
            text-align: center;
        }

        .tab-content {
            font-size: var(--text-big);
            text-align: center;
            line-height: 1.4;
            margin-top: 32px;
        }

        /* Benefits Section */
        .benefits {
            padding: 64px 16px;
        }

        .benefits-grid {
            background: white;
            border: 1px solid var(--border-gray);
            border-radius: 16px;
            padding: 33px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .benefit-item {
            background: #FAFAFA;
            padding: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            border: 2px solid transparent;
            border-radius: 12px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-burgundy-gold);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .benefit-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(139, 46, 74, 0.25), 0 8px 20px rgba(232, 165, 98, 0.15);
            border-color: var(--burgundy-accent);
            background: linear-gradient(135deg, #FFFFFF 0%, #fef9f4 100%);
        }

        .benefit-item:hover::before {
            opacity: 0.05;
        }

        .benefit-item:hover .benefit-icon {
            transform: scale(1.15) rotate(5deg);
            background: linear-gradient(135deg, rgba(139, 46, 74, 0.1) 0%, rgba(232, 165, 98, 0.1) 100%);
        }

        .benefit-item > * {
            position: relative;
            z-index: 1;
        }

        .benefit-item p {
            text-align: center;
            margin: 0;
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            transition: all 0.3s ease;
        }

        .benefit-icon img {
            width: 100%;
            height: 100%;
        }

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

        /* CTA Grey Section */
        .cta-grey {
            background: var(--light-gray);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 64px;
            margin: 32px 0;
        }

        .cta-logo {
            width: 90px;
            height: 90px;
        }

        .cta-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .cta-logo-large {
            width: 150px;
            height: 150px;
        }

        .cta-logo-small {
            width: 90px;
            height: 60px;
        }

        .cta-text {
            font-size: var(--text-base);
            line-height: 1.4;
            max-width: 750px;
        }

        /* Industry Selector */
        .industry-selector {
            padding: 64px 16px;
        }

        .industry-grid {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .industry-card {
            background: white;
            border: 1px solid var(--border-gray);
            border-radius: 16px;
            padding: 24px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            flex: 1 1 calc(16.666% - 12px);
            min-width: 150px;
            max-width: 180px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .industry-card p {
            font-size: 14px;
            text-align: center;
        }

        .industry-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            transform: translateY(-4px);
        }

        .industry-card.active {
            border-color: var(--primary-red);
            box-shadow: 0 4px 12px rgba(139, 46, 74, 0.2);
        }

        .industry-icon {
            width: 50px;
            height: 50px;
        }

        .industry-icon img {
            width: 100%;
            height: 100%;
        }

        /* Strategy Section */
        .strategy {
            padding: 64px 16px;
        }

        .strategy-accordion {
            display: flex;
            gap: 0;
        }

        .strategy-left {
            width: 688px;
        }

        .strategy-item {
            background: white;
            border: 1px solid var(--border-gray);
            padding: 12px 24px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 0.7;
            transform: scale(0.95);
            border-radius: 12px;
            margin-bottom: 8px;
        }

        .strategy-item:first-child {
            border-top-left-radius: 12px;
            border-bottom-left-radius: 12px;
        }

        .strategy-item:last-child {
            margin-bottom: 0;
        }

        .strategy-item:hover {
            background: #f8f8f8;
            opacity: 1;
            transform: scale(0.98);
        }

        .strategy-item.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            opacity: 1;
            transform: scale(1);
            height: 92px;
            padding: 16px 32px;
            box-shadow: 0 4px 12px rgba(139, 46, 74, 0.15);
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

        .strategy-item.active .strategy-item-text h3,
        .strategy-item.active .strategy-item-text p,
        .strategy-item.active span {
            color: white;
        }

        .strategy-item-text h3 {
            font-size: var(--h6);
            font-weight: 600;
            line-height: 1.2;
            transition: font-size 0.3s;
        }

        .strategy-item-icon {
            width: 32px;
            height: 32px;
            margin-right: 16px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .strategy-item-icon svg {
            width: 100%;
            height: 100%;
            fill: var(--primary-red);
            transition: fill 0.3s;
        }

        .strategy-item.active .strategy-item-icon svg {
            fill: white;
        }

        .strategy-item-content {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .strategy-item:not(.active) .strategy-item-text h3 {
            font-size: 16px;
        }

        .strategy-item-text p {
            font-size: var(--text-base);
            line-height: 1.4;
            transition: font-size 0.3s;
        }

        .strategy-item:not(.active) .strategy-item-text p {
            font-size: 14px;
        }

        .strategy-right {
            width: 688px;
            background: white;
            border: 1px solid var(--border-gray);
            border-radius: 16px;
            padding: 20px;
            transition: border-radius 0.3s;
        }

        .strategy-right.first-active {
            border-top-left-radius: 0;
        }

        .strategy-image {
            width: 100%;
            height: 428px;
            margin-bottom: 20px;
            background: #ffffff;
            border-radius: 8px;
        }

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

        .strategy-tags {
            font-size: var(--text-small);
            line-height: 1.4;
            margin-top: 20px;
        }

        .strategy-tags a {
            color: var(--dark-text);
            text-decoration: underline;
        }

        /* System Metrics */
        .system-metrics {
            padding: 64px 16px;
        }

        .metrics-wrapper {
            display: flex;
            gap: 16px;
        }

        .metrics-title {
            flex: 1;
            font-size: var(--h4);
            font-weight: 600;
            line-height: 1.2;
        }

        .metrics-accordion {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .metric-item {
            background: white;
            border: 1px solid var(--border-gray);
            border-radius: 16px;
            padding: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .metric-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .metric-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .metric-header h3 {
            font-size: var(--h6);
            font-weight: 600;
            line-height: 1.2;
        }

        .expand-icon {
            width: 32px;
            height: 32px;
            transition: transform 0.3s;
        }

        /* Modal/Popup */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 48px;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
        }

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

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 32px;
            color: #999;
            cursor: pointer;
            line-height: 1;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: var(--primary-red);
        }

        .modal h2 {
            font-size: var(--h4);
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--dark-text);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-text);
            font-size: var(--text-base);
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-gray);
            border-radius: 12px;
            font-size: var(--text-base);
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(139, 46, 74, 0.1);
        }

        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-gray);
            border-radius: 12px;
            font-size: var(--text-base);
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s;
            cursor: pointer;
            background-color: white;
        }

        .btn-submit {
            width: 100%;
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: var(--text-big);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-submit:hover {
            background: #7a2640;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 46, 74, 0.3);
        }

        /* Responsive */
        /* Smaller desktops - scale nav down */
        @media (max-width: 1500px) {
            .nav-menu {
                gap: 20px;
            }
            .nav-menu a {
                font-size: 14px;
            }
        }

        @media (max-width: 1350px) {
            .nav-menu {
                gap: 14px;
                margin-right: 16px;
            }
            .nav-menu a {
                font-size: 13px;
            }
            .nav-content {
                padding: 24px 12px;
            }
        }

        @media (max-width: 1200px) {
            .hero {
                flex-direction: column;
            }

            .hero-video {
                width: 100%;
                height: 350px;
            }

            .tabs {
                flex-direction: column;
            }

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

            .strategy-accordion {
                flex-direction: column;
            }

            .strategy-left,
            .strategy-right {
                width: 100%;
            }

            .metrics-wrapper {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .industry-grid {
                flex-direction: column;
            }

            .cta-grey {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Mobile menu toggle - hidden by default on desktop */
        .mobile-menu-toggle {
            display: none;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-text);
            transition: all 0.3s ease;
            padding: 8px;
        }

        .menu-icon {
            font-size: 24px;
            line-height: 1;
        }

        .menu-text {
            font-size: 14px;
        }

        /* Mobile language menu - hide on desktop */
        .mobile-lang-menu {
            display: none;
        }

        /* Desktop-only elements */
        .desktop-only {
            display: flex;
        }

        /* Hide old hamburger menu */
        .hamburger {
            display: none !important;
        }

        /* Floating Contact Button */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            background: linear-gradient(135deg, #8b2e4a 0%, #c56a45 50%, #e8a562 100%);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(139, 46, 74, 0.35);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .floating-contact:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 40px rgba(139, 46, 74, 0.5);
        }

        .floating-contact svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(139, 46, 74, 0.35);
            }
            50% {
                box-shadow: 0 8px 40px rgba(139, 46, 74, 0.55);
            }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 1000;
            background: white;
            border: 2px solid var(--primary-red);
            color: var(--primary-red);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-5px);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Counter Animation */
        .counter {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-red);
            line-height: 1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
            }

            .hero-video {
                width: 100%;
                height: 350px;
            }

            .strategy-accordion {
                flex-direction: column;
            }

            .strategy-left, .strategy-right {
                width: 100%;
            }

            .metrics-wrapper {
                grid-template-columns: 1fr !important;
            }

            .benefits-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

        @media (max-width: 768px) {
            /* Mobile header layout */
            .nav-content {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 12px 20px;
            }

            /* Show mobile menu toggle */
            .mobile-menu-toggle {
                display: flex !important;
            }

            /* Show mobile language menu */
            .mobile-lang-menu {
                display: block;
            }

            /* Current language flag in menu toggle */
            .current-lang-flag {
                width: 32px;
                height: 22px;
                object-fit: cover;
                border-radius: 3px;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }

            .mobile-lang-menu > a {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            /* Style for language menu items */
            .lang-dropdown-menu a {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 12px 20px;
            }

            .lang-dropdown-menu .lang-flag-img {
                width: 24px;
                height: 16px;
                object-fit: cover;
                border-radius: 2px;
            }

            /* Hide desktop language switcher */
            .desktop-only {
                display: none !important;
            }

            /* Adjust nav menu positioning for new layout - fullscreen */
            .nav-menu {
                display: flex;
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding: 80px 20px 40px;
                gap: 20px;
                margin: 0;
                transition: left 0.3s ease;
                z-index: 9999;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            /* Close button for mobile menu */
            .nav-menu::before {
                content: '✕';
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 32px;
                font-weight: 300;
                color: var(--dark-text);
                cursor: pointer;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .nav-menu.active::before {
                display: flex;
            }

            .nav-menu > li {
                width: 100%;
                text-align: center;
            }

            .nav-menu a {
                justify-content: center;
                padding: 12px 20px;
                width: 100%;
            }

            /* Mobile dropdown styles */
            .nav-menu .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                box-shadow: none;
                background: #f9f9f9;
                margin-top: 8px;
                border-radius: 8px;
                padding: 8px 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nav-menu .dropdown.active .dropdown-menu {
                max-height: 500px;
            }

            .btn-login {
                margin-top: 20px;
            }

            .hero-content h1 {
                font-size: 24px;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .section-number {
                font-size: 80px;
            }

            /* Hide floating buttons on mobile */
            .floating-contact {
                display: none !important;
            }

            .back-to-top {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .benefits-grid {
                grid-template-columns: 1fr !important;
            }

            .platform-tags {
                justify-content: center;
            }

            .logos-wrapper {
                flex-wrap: wrap;
                justify-content: center;
                gap: 40px;
            }

            .section-number {
                font-size: 60px;
            }

            .section-icon {
                width: 60px;
                height: 60px;
            }

            .counter {
                font-size: 36px;
            }
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            /* Typography */
            :root {
                --h3: 24px;
                --h4: 22px;
                --h5: 20px;
                --h6: 18px;
                --text-big: 18px;
                --text-base: 16px;
                --text-small: 14px;
            }

            /* Fix mobile scroll behavior */
            html, body {
                overflow-x: hidden !important;
                position: relative !important;
                width: 100% !important;
            }

            body {
                overscroll-behavior: none !important;
                -webkit-overflow-scrolling: touch !important;
            }

            /* Container */
            .container {
                padding: 32px 16px !important;
            }

            /* Navigation */
            nav {
                padding: 16px !important;
            }

            nav .logo img {
                height: 32px;
            }

            .nav-links {
                flex-direction: column;
                gap: 12px;
                display: none;
            }

            .nav-links.active {
                display: flex;
            }

            /* Hero Section */
            .hero {
                padding: 40px 16px 40px 16px !important;
                margin-bottom: 20px !important;
                display: flex;
                flex-direction: column;
            }

            .hero-content {
                display: contents;
            }

            .hero-content h1 {
                order: 1;
            }

            .hero-content p {
                order: 2;
                margin-bottom: 20px;
            }

            .hero-video {
                position: relative !important;
                order: 3;
                margin-top: 0 !important;
                margin-bottom: 20px !important;
            }

            .hero-content .platform-tags {
                order: 4;
                margin-top: 0;
                margin-bottom: 30px;
            }

            .hero-content .btn-primary {
                order: 5;
                margin-bottom: 400px;
            }

            /* Logos moved above testimonials on mobile */
            .logos-mobile-testimonials {
                order: 100;
                margin-bottom: 40px !important;
                padding: 32px 16px !important;
                background: transparent !important;
            }

            .logos-mobile-testimonials::before {
                content: "Wybrane realizacje";
                display: block;
                font-size: 32px;
                font-weight: 400;
                color: var(--dark-text);
                text-align: center;
                margin-bottom: 32px;
                line-height: 1.2;
            }

            .logos-mobile-testimonials .logos-wrapper {
                gap: 40px !important;
            }

            .logos-mobile-testimonials .logo-item {
                height: 50px !important;
            }

            /* Hide original logos section on mobile (will be shown above testimonials) */
            .logos {
                display: none !important;
            }

            .logos-mobile-testimonials {
                display: block !important;
            }

            .hero h1 {
                font-size: 32px !important;
                line-height: 1.2 !important;
            }

            .hero p {
                font-size: 16px !important;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cta-buttons button,
            .cta-buttons a {
                width: 100%;
            }

            /* Strategy Accordion */
            .strategy-accordion {
                flex-direction: column !important;
            }

            .strategy-left {
                width: 100% !important;
            }

            .strategy-right {
                width: 100% !important;
                margin-top: 24px;
            }

            .strategy-image {
                height: 250px !important;
            }

            /* Metrics Wrapper */
            .metrics-wrapper {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }

            /* Benefits Grid */
            .benefits-grid {
                grid-template-columns: 1fr !important;
            }

            /* Stats */
            .stats {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 24px !important;
            }

            /* Logos */
            .logos-wrapper {
                flex-wrap: wrap;
                gap: 24px !important;
            }

            .logo-item {
                height: 50px !important;
                flex: 0 0 calc(50% - 12px);
            }

            /* Industry Grid */
            .industry-grid {
                gap: 12px !important;
            }

            .industry-card {
                flex: 1 1 calc(50% - 6px) !important;
                min-width: 0 !important;
                max-width: none !important;
                padding: 20px 12px !important;
            }

            .industry-card p {
                font-size: 13px !important;
            }

            .industry-icon i {
                font-size: 40px !important;
            }

            /* CTA Grey */
            .cta-grey {
                padding: 20px 16px !important;
                gap: 12px !important;
            }

            .cta-grey > div[style*="display: flex"] {
                flex-direction: row !important;
                flex-wrap: wrap !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 20px !important;
                margin: 0 !important;
            }

            .cta-grey .cta-text {
                margin: 0 !important;
                line-height: 1.3 !important;
            }

            .cta-grey button {
                margin: 0 !important;
            }

            .cta-logo {
                height: 60px !important;
                width: auto !important;
            }

            .cta-logo-large {
                width: auto !important;
                height: 80px !important;
            }

            .cta-logo-small {
                width: auto !important;
                height: 50px !important;
            }

            .cta-logo-large {
                display: none !important;
            }

            /* Testimonials Short - show all cards in column on mobile */
            .testimonials-short-grid {
                grid-template-columns: 1fr !important;
                max-width: 100% !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                gap: 16px !important;
                padding: 0 !important;
            }

            .testimonial-short-card {
                min-height: auto !important;
                padding: 24px !important;
                margin: 0 !important;
            }

            .testimonial-short-card h3 {
                font-size: 18px !important;
            }

            .testimonial-short-card p {
                font-size: 14px !important;
            }

            /* Case Study */
            .case-studies-title-desktop {
                display: none !important;
            }

            .case-studies-title-mobile {
                display: block !important;
            }

            .case-study-slide > div {
                flex-direction: column !important;
                overflow: hidden;
            }

            .case-study-slide > div > div {
                flex: 1 !important;
                width: 100% !important;
            }

            .case-study-slide > div > div:first-child {
                max-height: 250px !important;
            }

            .case-study-slide > div > div:first-child img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
            }

            .case-study-slide > div > div:last-child {
                padding: 24px !important;
            }

            .case-study-slide h3 {
                font-size: 20px !important;
            }

            .case-study-slide > div > div:last-child > div[style*="display: flex"] {
                flex-direction: column !important;
                gap: 16px !important;
            }

            .case-study-slide > div > div:last-child > div[style*="display: flex"] > div {
                text-align: center !important;
            }

            .case-study-slide p {
                font-size: 14px !important;
            }

            .case-study-slide .btn-primary {
                display: flex !important;
                margin: 0 auto !important;
            }

            .case-study-slide > div > div:last-child > div:last-child {
                display: flex !important;
                justify-content: center !important;
                flex-direction: row !important;
            }

            /* Testimonials - show one card at a time with slider */
            .testimonial-slide {
                grid-template-columns: 1fr !important;
                gap: 0 !important;
                display: block !important;
                min-width: 100% !important;
            }

            .testimonial-slide > div {
                display: flex !important;
                padding: 24px !important;
                min-height: auto !important;
                margin-bottom: 0 !important;
            }

            .testimonial-slide > div h3 {
                font-size: 18px !important;
            }

            .testimonial-slide > div p {
                font-size: 14px !important;
                margin-bottom: 24px !important;
            }

            .testimonial-slide > div button {
                position: relative !important;
                bottom: auto !important;
                right: auto !important;
                margin-top: auto !important;
            }

            #testimonialsContainer {
                display: flex !important;
            }

            /* Show only first card per slide on mobile */
            .testimonial-slide > div:not(:first-child) {
                display: none !important;
            }

            /* Video Campaigns */
            .video-slide > div > div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
            }

            /* Footer */
            footer .container > div:first-child {
                grid-template-columns: 1fr !important;
                gap: 32px !important;
            }

            footer .container > div:first-child > div:nth-child(2) {
                grid-template-columns: 1fr !important;
            }

            /* Section Headers */
            .section-header {
                margin-bottom: 24px !important;
            }

            .section-header h2 {
                font-size: 28px !important;
                line-height: 1.3 !important;
            }

            .section-header p {
                font-size: 16px !important;
            }

            /* Section Numbers */
            .section-number {
                font-size: 48px !important;
            }

            .section-icon {
                width: 50px !important;
                height: 50px !important;
            }

            /* Buttons */
            .btn-primary,
            .btn-secondary {
                padding: 12px 24px !important;
                font-size: 14px !important;
            }

            /* Navigation Arrows */
            button[id*="Prev"],
            button[id*="Next"] {
                width: 36px !important;
                height: 36px !important;
                font-size: 18px !important;
            }

            /* Modal */
            .modal-content {
                width: 95% !important;
                max-width: 95% !important;
                padding: 24px !important;
                margin: 20px auto !important;
            }

            .modal-content h2 {
                font-size: 22px !important;
                word-break: break-word;
            }

            .modal-close {
                top: 12px !important;
                right: 16px !important;
            }

            .form-group {
                margin-bottom: 16px !important;
            }

            /* Hide elements on mobile */
            .strategy-item span {
                display: none;
            }

            /* Adjust flex layouts */
            div[style*="display: flex"][style*="justify-content: space-between"] {
                flex-direction: column;
                gap: 16px;
            }

            /* Video thumbnails */
            .video-thumbnail {
                padding-bottom: 56.25% !important;
            }
        }

        /* Tablet Responsive Styles */
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                padding: 48px 32px !important;
            }

            .strategy-accordion {
                gap: 24px;
            }

            .metrics-wrapper {
                grid-template-columns: 300px 1fr !important;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .stats {
                grid-template-columns: repeat(3, 1fr) !important;
            }

            .testimonial-slide {
                grid-template-columns: 1fr !important;
            }
        }
