@font-face {
            font-family: 'Eurostile';
            src: url('https://omfy-assets.netlify.app/eurostile-2/eurostile.TTF') format('truetype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Eurostile';
            src: url('https://omfy-assets.netlify.app/eurostile-2/EuroStyle Normal.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

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

        /* ===== VARIABLES ===== */
        :root {
            --primary: #FF4E00;
            --primary-hover: #d94400;
            --dark-bg: #141414;
            --dark-card: #1a1a1a;
            --dark-border: rgba(255,255,255,.08);
            --dark-text: #ffffff;
            --dark-text-secondary: rgba(255,255,255,.6);
            --light-bg: #ffffff;
            --light-card: #ffffff;
            --light-border: #e0e0e0;
            --light-text: #1a1a1a;
            --light-text-secondary: #555;
        }

        html { scroll-behavior: smooth; scroll-padding-top: 80px; }
        body {
            font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-weight: 300;
            color: #1a1a1a;
            background-color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== GLOBAL STYLES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-family: 'Eurostile', 'Geist', sans-serif;
        }

        h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-align: left;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        p {
            font-size: 1rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        a:hover {
            opacity: 0.8;
        }

        button, input[type="submit"] {
            font-family: 'Geist', sans-serif;
        }

        /* ===== SECTION THEMES ===== */
        .section-dark {
            background: var(--dark-bg);
            color: var(--dark-text);
        }
        .section-dark h2, .section-dark h3 { color: var(--dark-text); }
        .section-dark p { color: var(--dark-text-secondary); }
        .section-dark .card {
            background: var(--dark-card);
            border-color: var(--dark-border);
        }
        .section-dark .card h3, .section-dark .card h4 { color: var(--dark-text); }
        .section-dark .card p { color: var(--dark-text-secondary); }

        .section-light {
            background: var(--light-bg);
            color: var(--light-text);
        }
        .section-light h2, .section-light h3 { color: var(--light-text); }
        .section-light p { color: var(--light-text-secondary); }
        .section-light .card {
            background: var(--light-card);
            border-color: var(--light-border);
        }

        .section-tag {
            display: inline-block;
            font-family: 'Geist', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 16px;
            margin-bottom: 0;
        }
        .section-dark .section-subtitle { color: var(--dark-text-secondary); }
        .section-light .section-subtitle { color: var(--light-text-secondary); }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        /* ===== NAVIGATION — shared ===== */
        .nav-bar {
            left: 0;
            right: 0;
            padding: 1rem 0;
            z-index: 1000;
        }
        .nav-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        .nav-logo svg {
            height: 32px;
            width: auto;
        }
        .nav-cta {
            background: var(--primary);
            color: #000;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 0.95rem;
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 78, 0, 0.3);
        }
        @media (max-width: 768px) {
            .nav-cta { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
        }

        /* --- Hero nav: transparent, sits on top of hero --- */
        .nav-hero {
            position: absolute;
            top: 0;
            background: transparent;
            z-index: 10;
            transition: opacity 0.3s ease;
        }
        .nav-hero .container { padding-left: 40px; padding-right: 40px; }
        .nav-hero .hamburger span {
            background: #fff;
        }
        .nav-hero .nav-cta {
            background: rgba(255,255,255,.15);
            color: #fff;
            border: 1px solid rgba(255,255,255,.3);
            backdrop-filter: blur(6px);
        }
        .nav-hero .nav-cta:hover {
            background: var(--primary);
            color: #000;
            border-color: var(--primary);
        }

        /* --- Sticky nav: appears on scroll --- */
        .nav-scrolled {
            position: fixed;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--light-border);
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
            pointer-events: none;
        }
        .nav-scrolled.visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }
        .nav-scrolled .nav-logo svg path { fill: var(--primary); }
        .nav-scrolled .hamburger span {
            background: var(--light-text);
        }

        /* ===== HAMBURGER MENU ===== */
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 28px;
            height: 28px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            z-index: 1002;
        }
        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--light-text);
            border-radius: 2px;
            transition: all 0.3s;
        }
        .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .nav-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,.5);
            backdrop-filter: blur(4px);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .nav-menu-overlay.active { opacity: 1; pointer-events: all; }

        .nav-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            max-width: 85vw;
            height: 100vh;
            background: #fff;
            z-index: 1001;
            transition: right 0.35s cubic-bezier(.4,0,.2,1);
            padding: 80px 30px 40px;
            box-shadow: -4px 0 30px rgba(0,0,0,.15);
            overflow-y: auto;
        }
        .nav-menu.active { right: 0; }
        .nav-menu-close {
            position: absolute;
            top: 22px;
            right: 22px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
            padding: 0;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu-close:hover { background: rgba(0,0,0,.06); color: var(--primary); }
        .nav-menu a {
            display: block;
            font-family: 'Geist', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: var(--light-text);
            padding: 14px 0;
            border-bottom: 1px solid rgba(0,0,0,.06);
            text-decoration: none;
            transition: color 0.2s;
        }
        .nav-menu a:hover { color: var(--primary); }
        .nav-menu a:last-of-type { border-bottom: none; }
        .nav-menu .nav-menu-cta {
            display: block;
            text-align: center;
            margin-top: 24px;
            background: var(--primary);
            color: #000;
            padding: 14px 24px;
            border-radius: 10px;
            font-family: 'Geist', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
        }
        .nav-menu a.nav-menu-cta-secondary {
            display: block;
            text-align: center;
            margin-top: 12px;
            background: transparent;
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 10px;
            font-family: 'Geist', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 2px solid var(--primary);
        }
        .nav-menu a.nav-menu-cta-secondary:hover {
            background: var(--primary);
            color: #000;
        }

        /* ===== HERO SECTION (Video) ===== */
        .hero-video {
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            background: #000;
        }
        /* Dev A/B/C labels on hero variants */
        .hero-variant-label {
            position: absolute;
            top: 80px;
            left: 20px;
            z-index: 50;
            padding: 6px 12px;
            background: rgba(255, 78, 0, 0.92);
            color: #000;
            font-family: 'Geist', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        .hero-video video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
            object-fit: cover;
        }
        .hero-video::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.85) 100%);
            z-index: 1;
        }
        .hero-video > .container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: auto;
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        /* Brands strip pinned to hero bottom */
        .hero-brands-strip {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 1.75rem 0 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0) 100%);
        }
        .hero-brands-strip__label {
            text-align: center;
            font-family: 'Geist', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
            margin: 0 0 1.5rem;
        }
        .hero-brands-strip .marquee-wrapper { margin: 0; overflow: hidden; }
        .hero-brands-strip .marquee-wrapper::before,
        .hero-brands-strip .marquee-wrapper::after { display: none; }
        .hero-brands-strip .marquee-track { gap: 3rem; animation: marquee 40s linear infinite; }
        .hero-brands-strip .brand-logo {
            height: 110px;
            min-width: 180px;
            opacity: 0.9;
        }
        .hero-brands-strip .brand-logo img { filter: brightness(0) invert(1); }
        .hero-brands-strip .brand-logo img.logo-on-black { filter: brightness(0) invert(1); }
        .hero-video h1 {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0,0,0,.7);
        }
        .hero-video p {
            font-size: 1.2rem;
            font-weight: 300;
            color: rgba(255,255,255,.85);
            margin-bottom: 2rem;
            line-height: 1.8;
            text-shadow: 0 2px 8px rgba(0,0,0,.5);
        }
        .hero-cta {
            display: block;
            font-family: 'Geist', sans-serif;
            background: var(--primary);
            color: #000;
            padding: 1.2rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(255, 78, 0, 0.3);
            margin: 0 auto 3rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 50%;
            max-width: 450px;
            min-width: 320px;
        }
        .hero-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(255, 78, 0, 0.4);
        }
        .social-proof-bar {
            display: flex;
            justify-content: center;
            gap: 3rem;
            background: rgba(255, 78, 0, 0.12);
            border: 1px solid rgba(255, 78, 0, 0.25);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        .proof-item { text-align: center; }
        .proof-item strong {
            font-family: 'Geist', sans-serif;
            font-size: 1.3rem;
            color: var(--primary);
            display: block;
            margin-bottom: 0.3rem;
        }
        .proof-item span { font-size: 0.9rem; color: rgba(255,255,255,.7); }
        @media (max-width: 768px) {
            .nav-bar { padding: 0.15rem 0; }
            .nav-logo svg { height: 26px; }
            .hero-video { min-height: 100vh; min-height: 100dvh; }
            .hero-video > .container { padding: 64px 0 12px; }
            .hero-brands-strip { padding: 0.75rem 0 1rem; }
            .hero-brands-strip__label { font-size: 0.9rem; margin-bottom: 0.6rem; letter-spacing: 0.2em; }
            .hero-brands-strip .brand-logo { height: 56px; min-width: 96px; }
            .hero-brands-strip .marquee-track { gap: 1.75rem; }
            .nav-bar { padding: 0.25rem 0; }
            .nav-hero { top: 0; }
            .nav-hero .container { padding-left: 20px; padding-right: 20px; padding-top: 4px; padding-bottom: 4px; }
            .hero-cta { margin-top: 0.75rem; }
            .brands-section { padding: 40px 0; }
            .hero-video h1 { font-size: 1.65rem; line-height: 1.1; margin-bottom: 1rem; letter-spacing: 0; }
            .hero-video p { font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.25rem; }
            .hero-cta { padding: 0.9rem 1.6rem; font-size: 0.95rem; margin-bottom: 0.5rem; width: 100%; max-width: none; min-width: 0; }
            .social-proof-bar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
                background: transparent;
                border: none;
                padding: 0;
                margin-bottom: 1.25rem;
            }
            .social-proof-bar .proof-item {
                background: rgba(255, 78, 0, 0.12);
                border: 1px solid rgba(255, 78, 0, 0.3);
                border-radius: 10px;
                padding: 0.55rem 0.5rem;
            }
            .proof-item strong { font-size: 1.05rem; margin-bottom: 0.1rem; }
            .proof-item span { font-size: 0.7rem; line-height: 1.2; }
        }

        /* ===== BRANDS MARQUEE ===== */
        .brands-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .brands-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('https://omfy-assets.netlify.app/Gemini_Generated_Image_innemeinnemeinne.webp') center/cover no-repeat;
            opacity: 0.25;
            z-index: 0;
        }
        .brands-section > .container { position: relative; z-index: 1; }
        .marquee-wrapper {
            overflow: hidden;
            position: relative;
            margin-bottom: 4rem;
        }
        .marquee-wrapper::before,
        .marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 2;
        }
        .section-light .marquee-wrapper::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
        .section-light .marquee-wrapper::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
        .section-dark .marquee-wrapper::before { left: 0; background: linear-gradient(to right, #141414, transparent); }
        .section-dark .marquee-wrapper::after { right: 0; background: linear-gradient(to left, #141414, transparent); }
        /* Remove gradient fades on marquee edges when background photo is present */
        .marquee-no-fade::before,
        .marquee-no-fade::after { display: none !important; }
        .marquee-track {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            animation: marquee 30s linear infinite;
            width: max-content;
        }
        .marquee-track:hover { animation-play-state: paused; }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .brand-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            min-width: 150px;
            opacity: 0.6;
            transition: opacity 0.3s;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .marquee-track { gap: 1.5rem; }
            .brand-logo { height: 70px; min-width: 90px; }
        }
        .brand-logo:hover { opacity: 1; }
        .brand-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        /* Light section: make logos black */
        .section-light .brand-logo img { filter: brightness(0); }
        /* Dark section: make logos white */
        .section-dark .brand-logo img { filter: brightness(0) invert(1); }
        /* For logos on black backgrounds — invert them */
        .brand-logo img.logo-on-black { filter: brightness(0) invert(1); }
        .section-dark .brand-logo img.logo-on-black { filter: brightness(0) invert(1); }
        .section-light .brand-logo img.logo-on-black { filter: brightness(0); }

        /* ===== PRODUCT CAROUSEL ===== */
        .products-carousel-wrap {
            position: relative;
            margin-top: 3rem;
            overflow: hidden;
        }
        .products-carousel-track {
            display: flex;
            transition: transform 0.45s cubic-bezier(.4,0,.2,1);
            gap: 1.5rem;
        }
        .product-card {
            flex: 0 0 calc(33.333% - 1rem);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
            border: 1px solid;
            display: flex;
            flex-direction: column;
        }
        @media (max-width: 992px) {
            .product-card { flex: 0 0 calc(50% - 0.75rem); }
        }
        @media (max-width: 600px) {
            .product-card { flex: 0 0 100%; }
        }
        .section-light .product-card {
            background: #fff;
            border-color: var(--light-border);
            box-shadow: 0 2px 12px rgba(0,0,0,.06);
        }
        .section-light .product-card:hover {
            border-color: var(--primary);
            box-shadow: 0 12px 40px rgba(255,78,0,.15);
        }
        .product-image {
            width: 100%;
            height: 280px;
            background: #fff;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-image img { max-width: 90%; max-height: 90%; object-fit: contain; }
        .section-light .product-info {
            background: linear-gradient(135deg, #f3f3f3 0%, #eaeaea 100%);
        }
        /* Cards Variant B — all-white bg, orange divider between photo and text */
        .section-light .cards-style-white-divider .product-info {
            background: #fff;
            border-top: 3px solid var(--primary);
        }

        /* Cards Variant C — dark text bottom (white photo top + black text panel) */
        .section-light .cards-style-dark .product-card {
            background: #111;
            border-color: rgba(255, 255, 255, 0.08);
        }
        .section-light .cards-style-dark .product-info {
            background: #111;
            color: #fff;
        }
        .section-light .cards-style-dark .product-info h3 {
            color: #fff;
        }
        .section-light .cards-style-dark .product-more-btn {
            color: var(--primary);
            border-color: var(--primary);
        }
        .section-light .cards-style-dark .product-more-btn:hover {
            background: var(--primary);
            color: #000;
        }

        /* Cards Variant D — orange text bottom (white photo + orange text panel) */
        .section-light .cards-style-orange .product-info {
            background: var(--primary);
            color: #000;
        }
        .section-light .cards-style-orange .product-kicker {
            color: #000;
            opacity: 0.75;
        }
        .section-light .cards-style-orange .product-info h3 {
            color: #000;
        }
        .section-light .cards-style-orange .product-more-btn {
            color: #000;
            border-color: #000;
        }
        .section-light .cards-style-orange .product-more-btn:hover {
            background: #000;
            color: var(--primary);
        }
        .product-kicker {
            color: var(--primary);
            font-family: 'Geist', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .product-info { padding: 1.5rem 2rem; display: flex; flex-direction: column; flex: 1; }
        .product-info h3 { margin-bottom: 0.5rem; }
        .product-info p { margin-bottom: 1rem; font-size: 0.95rem; }
        .product-more-btn {
            align-self: flex-start;
            margin-top: auto;
            padding: 0.55rem 1.1rem;
            font-family: 'Geist', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--primary);
            background: transparent;
            border: 1.5px solid var(--primary);
            border-radius: 999px;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .product-more-btn:hover {
            background: var(--primary);
            color: #000;
        }

        /* Product details modal */
        .product-modal {
            padding: 0;
            border: 0;
            border-radius: 18px;
            width: min(720px, 92vw);
            max-height: 90vh;
            margin: auto;
            background: #fff;
            color: var(--light-text, #141414);
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.45);
            position: fixed;
            inset: 0;
        }
        .product-modal::backdrop {
            background: rgba(0,0,0,0.62);
            backdrop-filter: blur(3px);
        }
        .product-modal-close {
            position: absolute;
            top: 12px;
            right: 14px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 0;
            background: rgba(0,0,0,0.08);
            color: #141414;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            z-index: 10;
            transition: background 0.2s;
        }
        .product-modal-close:hover { background: rgba(0,0,0,0.18); }
        .product-modal-body {
            display: flex;
            flex-direction: column;
            max-height: 90vh;
            overflow-y: auto;
        }
        .product-modal-carousel {
            position: relative;
            background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
            overflow: hidden;
        }
        .product-modal-track {
            display: flex;
            transition: transform 0.4s cubic-bezier(.4,0,.2,1);
            width: 100%;
        }
        .product-modal-slide {
            flex: 0 0 100%;
            height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-modal-slide img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
        }
        .product-modal-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 0;
            background: rgba(255,255,255,0.9);
            color: #141414;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            transition: background 0.2s;
        }
        .product-modal-arrow:hover { background: #fff; }
        .product-modal-arrow.prev { left: 12px; }
        .product-modal-arrow.next { right: 12px; }
        .product-modal-dots {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 14px;
            display: flex;
            gap: 6px;
            justify-content: center;
        }
        .product-modal-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: 0;
            background: rgba(0,0,0,0.25);
            cursor: pointer;
            padding: 0;
            transition: all 0.2s;
        }
        .product-modal-dot.active {
            background: var(--primary);
            width: 22px;
            border-radius: 4px;
        }
        .product-modal-info {
            padding: 1.5rem 1.75rem 2rem;
        }
        .product-modal-info h3 {
            margin: 0 0 0.5rem;
            font-size: 1.4rem;
        }
        .product-modal-info p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(20,20,20,0.78);
        }
        @media (max-width: 600px) {
            /* Поп-ап — плавающий контейнер по центру, не полноэкранный */
            .product-modal {
                width: 90vw;
                max-width: 90vw;
                height: auto;
                max-height: 84vh;
                border-radius: 18px;
                margin: auto;
            }
            .product-modal-body { max-height: 84vh; }
            .product-modal-slide { height: 240px; }
            /* Стрелки скрыты на мобильном — свайп пальцем */
            .product-modal-arrow { display: none; }
        }
        /* Variant A скрыт: клиент выбрал карусель (Variant B) на всех размерах. */
        .bestsellers-variant-a { display: none; }

        .products-carousel-arrows {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 2rem;
        }
        .products-carousel-arrow {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--light-border);
            background: #fff;
            color: var(--light-text);
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .products-carousel-arrow:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .products-carousel-dots {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .products-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--light-border);
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
        }
        .products-carousel-dot.active {
            background: var(--primary);
            width: 28px;
            border-radius: 5px;
        }

        /* ===== Mobile: native scroll-snap carousel ===== */
        @media (max-width: 600px) {
            .products-carousel-wrap { overflow: visible; }
            .products-carousel-track {
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                gap: 1rem;
                padding: 0.5rem 12vw 1rem;
                margin: 0 -20px;
                scrollbar-width: none;
                transform: none;
                transition: none;
            }
            .products-carousel-track::-webkit-scrollbar { display: none; }
            .product-card { flex: 0 0 76vw; scroll-snap-align: center; }
            .products-carousel-arrow { display: none; }
            .products-carousel-arrows { margin-top: 1.25rem; }
        }
        /* Nudge animation: one-time hint that carousel is swipeable */
        @keyframes productsNudge {
            0%   { transform: translateX(0); }
            30%  { transform: translateX(-40px); }
            60%  { transform: translateX(12px); }
            100% { transform: translateX(0); }
        }
        .products-carousel-track.is-nudging {
            animation: productsNudge 900ms cubic-bezier(.4,0,.2,1) 1;
        }

        /* Bestsellers A/B variant labels (same pattern as map A/B) */
        .bestsellers-variant-label {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0 1rem;
            font-family: 'Geist', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 700;
        }

        /* Desktop (>=1024px): variant A = 5 cards as grid, no carousel arrows — placed AFTER base rules to win cascade */
        @media (min-width: 1024px) {
            .bestsellers-variant-a .products-carousel-wrap { overflow: visible; }
            .bestsellers-variant-a .products-carousel-track {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 16px;
                transform: none !important;
                width: 100%;
            }
            .bestsellers-variant-a .products-carousel-track > .product-card { flex: unset; }
            .bestsellers-variant-a .products-carousel-arrows { display: none; }
            .product-image { height: 220px; }
            .product-info { padding: 1.25rem 1.25rem 1.5rem; }
            .product-info h3 { font-size: 1.05rem; }
            .product-info p { font-size: 0.88rem; line-height: 1.5; }

            /* Variant A breakout: wider than .container (1200px) */
            /* NOTE: avoid transform — it conflicts with .fade-in's fadeInUp animation */
            .bestsellers-fullbleed {
                width: min(1560px, calc(100vw - 48px));
                position: relative;
                left: 50%;
                margin-left: calc(min(1560px, calc(100vw - 48px)) / -2);
            }

            /* Variant B: keep as 3-card carousel on desktop (override grid) */
            .bestsellers-variant-b .products-carousel-wrap { overflow: hidden; }
            .bestsellers-variant-b .products-carousel-track {
                display: flex !important;
                grid-template-columns: unset;
                gap: 1.5rem;
                width: auto;
            }
            .bestsellers-variant-b .products-carousel-track > .product-card {
                flex: 0 0 calc(33.333% - 1rem);
            }
            .bestsellers-variant-b .products-carousel-arrows { display: flex; }
            .bestsellers-variant-b .product-image { height: 280px; }
            .bestsellers-variant-b .product-info { padding: 1.5rem 2rem; }
            .bestsellers-variant-b .product-info h3 { font-size: 1.25rem; }
            .bestsellers-variant-b .product-info p { font-size: 0.95rem; }
        }

        /* ===== WHY OMFY — base ===== */
        .why-section { padding: 80px 0; }
        .why-variant-label {
            display: inline-block;
            background: var(--primary);
            color: #000;
            font-family: 'Geist', sans-serif;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 1rem;
        }

        /* --- Variant 1: full-bleed image with overlay --- */
        .why-img1-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 2.5rem;
        }
        .why-img1-card {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            min-height: 280px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background-size: cover;
            background-position: center;
            border: 3px solid #141414;
            transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
        }
        .why-img1-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 120% 110% at 50% 40%, transparent 55%, rgba(0,0,0,0.95) 100%),
                linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.9) 100%);
            z-index: 0;
        }
        .why-img1-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: 0 14px 34px rgba(0,0,0,0.45);
        }
        .why-img1-card > * { position: relative; z-index: 1; }
        .why-img1-card h4 {
            font-family: 'Geist', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 10px;
        }
        .why-img1-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.85);
            margin: 0;
        }
        @media (max-width: 768px) {
            .why-img1-grid { grid-template-columns: 1fr; gap: 14px; }
            .why-img1-card { min-height: 240px; padding: 22px; }
        }

        /* --- Video background variant (replaces static image) --- */
        .why-video-card > video.why-card-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
            border: 0;
            pointer-events: none;
        }
        .why-video-card > video.why-card-bg.loaded { opacity: 1; }
        .why-video-card::before { z-index: 1; }
        .why-video-card > .why-card-content { position: relative; z-index: 2; }

        /* --- Variant 1b: hover-reveal (desktop) / in-view reveal (mobile) --- */
        .why-img1b-card h4 {
            transform: translateY(14px);
            transition: transform 0.4s ease;
        }
        .why-img1b-card p {
            max-height: 0;
            opacity: 0;
            margin: 0;
            overflow: hidden;
            transform: translateY(10px);
            transition: max-height 0.45s ease, opacity 0.35s ease 0.05s, transform 0.4s ease, margin-top 0.35s ease;
        }
        @media (hover: hover) and (pointer: fine) {
            .why-img1b-card:hover h4 { transform: translateY(0); }
            .why-img1b-card:hover p {
                max-height: 240px;
                opacity: 1;
                transform: translateY(0);
                margin-top: 10px;
            }
        }
        @media (max-width: 768px), (hover: none) {
            .why-img1b-card h4 { transition: transform 0.8s ease; }
            .why-img1b-card p {
                transition: max-height 0.9s ease, opacity 0.7s ease 0.1s, transform 0.8s ease, margin-top 0.7s ease;
            }
            .why-img1b-card.in-view h4 { transform: translateY(0); }
            .why-img1b-card.in-view p {
                max-height: 240px;
                opacity: 1;
                transform: translateY(0);
                margin-top: 10px;
            }
        }

        /* --- Why OMFY десктоп: swap карточек 3↔4 + убрать чёрные полосы видео --- */
        @media (min-width: 769px) {
            /* Меняем местами "Own Manufacturing" (3) и "Exclusive Brands" (4) */
            /* Видео становятся по диагонали: top-right + bottom-left */
            .why-img1-card:nth-child(3) { order: 4; }
            .why-img1-card:nth-child(4) { order: 3; }
            /* Exclusive Brands: видео + постер (фон карточки) — масштабируем, чтобы обрезать чёрные полосы */
            .why-img1-card:nth-child(4) {
                background-size: 135% auto;
                background-position: center center;
            }
            .why-img1-card:nth-child(4) video.why-card-bg {
                transform: scale(1.35);
                transform-origin: center center;
            }
        }

        /* --- Variant 2: image on top, text below --- */
        .why-img2-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 2.5rem;
        }
        .why-img2-card {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 14px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.25s, border-color 0.25s;
        }
        .why-img2-card:hover { transform: translateY(-3px); border-color: var(--primary); }
        .why-img2-img {
            width: 100%;
            aspect-ratio: 16/9;
            background-size: cover;
            background-position: center;
        }
        .why-img2-body { padding: 24px 26px 28px; }
        .why-img2-card h4 {
            font-family: 'Geist', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 10px;
        }
        .why-img2-card p {
            font-size: 0.95rem;
            line-height: 1.65;
            color: var(--dark-text-secondary);
            margin: 0;
        }
        @media (max-width: 768px) {
            .why-img2-grid { grid-template-columns: 1fr; gap: 14px; }
        }

        /* --- Variant 3: thumbnail beside heading (horizontal row list) --- */
        .why-img3-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 16px; }
        .why-img3-item {
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 24px;
            padding: 20px;
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: 14px;
            align-items: center;
            transition: border-color 0.25s, transform 0.25s;
        }
        .why-img3-item:hover { border-color: var(--primary); transform: translateX(3px); }
        .why-img3-thumb {
            width: 140px;
            aspect-ratio: 1/1;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
        }
        .why-img3-item h4 {
            font-family: 'Geist', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 8px;
        }
        .why-img3-item p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--dark-text-secondary);
            margin: 0;
        }
        @media (max-width: 768px) {
            .why-img3-item { grid-template-columns: 90px 1fr; gap: 16px; padding: 14px; }
            .why-img3-thumb { width: 90px; border-radius: 8px; }
            .why-img3-item h4 { font-size: 1.05rem; }
            .why-img3-item p { font-size: 0.9rem; }
        }
        .why-highlight {
            margin-top: 2.5rem;
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            font-size: 1rem;
            background: linear-gradient(90deg, rgba(255,78,0,.15) 0%, transparent 100%);
            border-left: 3px solid var(--primary);
            color: #fff;
        }

        /* ===== HOW IT WORKS ===== */
        .how-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .how-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('Gemini_Generated_Image_zghxwozghxwozghx.webp') center/cover no-repeat;
            opacity: 0.2;
            z-index: 0;
        }
        .how-section > .container { position: relative; z-index: 1; }
        .how-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: stretch;
            margin-top: 2.5rem;
        }
        .steps-grid-2x2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .step-card {
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: border-color .2s;
            border: 1px solid;
        }
        .section-light .step-card {
            background: rgba(255,255,255,0.70);
            border-color: var(--light-border);
            box-shadow: 0 2px 8px rgba(0,0,0,.04);
            backdrop-filter: blur(6px);
        }
        .section-light .step-card:hover { border-color: var(--primary); }
        .step-card .step-icon { font-size: 28px; color: var(--primary); margin-bottom: 10px; }
        .step-card h4 {
            font-family: 'Geist', sans-serif;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 3px;
        }
        .section-light .step-card h4 { color: var(--light-text); }
        .step-card p { font-size: 12px; margin: 0; }
        .section-light .step-card p { color: var(--light-text-secondary); }
        .how-image {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--light-border);
        }
        .how-image img { width: 100%; height: 100%; object-fit: cover; }
        /* How It Works Variant B — image as background, no side image */
        .how-section-b {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .how-section-b::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('Gemini_Generated_Image_innemeinnemeinne-3.webp') center/cover no-repeat;
            opacity: 1;
            z-index: 0;
        }
        .how-section-b > .container { position: relative; z-index: 1; }
        .how-section-b .section-tag { color: #fff; }
        .how-section-b h2 { color: #fff; }
        .how-section-b .section-subtitle { color: rgba(255,255,255,0.8); }
        .how-section-b .steps-grid-full {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 2.5rem;
        }
        .how-section-b .step-card {
            background: rgba(255,255,255,0.80);
            border-color: rgba(255,255,255,0.3);
            box-shadow: 0 4px 20px rgba(0,0,0,.15);
            backdrop-filter: blur(8px);
        }
        .how-section-b .step-card:hover { border-color: var(--primary); }
        .how-section-b .step-card h4 { color: var(--light-text); }
        .how-section-b .step-card p { color: var(--light-text-secondary); }
        .flow-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            padding: 24px 32px;
            border-radius: 12px;
            margin-top: 32px;
            border: 1px solid;
        }
        .section-light .flow-bar {
            background: #fff;
            border-color: var(--light-border);
        }
        .flow-bar .flow-step {
            font-family: 'Geist', sans-serif;
            padding: 12px 22px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            border: 1px solid rgba(255,78,0,.2);
        }
        .section-light .flow-bar .flow-step { background: #f5f5f5; }
        .flow-bar .flow-step.highlight { background: var(--primary); color: #fff; border-color: var(--primary); }
        .flow-bar .flow-arrow { font-size: 22px; color: var(--primary); }
        @media (max-width: 768px) {
            .how-layout { grid-template-columns: 1fr; }
            .how-image { display: none; }
            .steps-grid-2x2 { gap: 10px; }
            .step-card { padding: 14px 12px; }
            .step-card .step-icon { font-size: 22px; margin-bottom: 6px; }
            .step-card h4 { font-size: 12px; line-height: 1.2; margin-bottom: 4px; }
            .step-card p { font-size: 11px; line-height: 1.35; }
        }

        /* ===== BENEFITS (What You Get) ===== */
        .benefits-section { padding: 80px 0; }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .benefit-item {
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid;
        }
        .section-dark .benefit-item {
            background: var(--dark-card);
            border-color: var(--dark-border);
        }
        .section-dark .benefit-item:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }
        .benefit-stat {
            font-family: 'Geist', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .benefit-item p { margin-bottom: 0; font-size: 0.95rem; }
        @media (max-width: 768px) {
            .benefits-section { padding: 48px 0; }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
            .benefit-item { padding: 1rem 0.75rem; border-radius: 12px; }
            .benefit-stat { font-size: 1.5rem; margin-bottom: 0.35rem; line-height: 1.1; }
            .benefit-item p { font-size: 0.78rem; line-height: 1.35; }
            .benefit-item.benefit-highlight .benefit-stat { font-size: 1.65rem; }
        }

        /* Highlighted benefit card (first delivery free) */
        .benefit-item.benefit-highlight {
            border-color: var(--primary) !important;
            background: linear-gradient(135deg, rgba(255,78,0,.12) 0%, rgba(255,78,0,.04) 100%) !important;
            position: relative;
        }
        .benefit-item.benefit-highlight .benefit-stat {
            font-size: 2.6rem;
        }
        .benefit-item.benefit-highlight::before {
            content: '★';
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: 16px;
            color: var(--primary);
        }

        /* Shipping promo banner (Variant B — full-width below grid) */
        .shipping-promo {
            margin-top: 2.5rem;
            padding: 28px 36px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            border: 2px solid var(--primary);
            background: linear-gradient(135deg, rgba(255,78,0,.14) 0%, rgba(255,78,0,.03) 100%);
        }
        .shipping-promo-main {
            text-align: center;
        }
        .shipping-promo-main .promo-stat {
            font-family: 'Geist', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
        .shipping-promo-main .promo-detail {
            font-size: 0.95rem;
            color: rgba(255,255,255,.7);
            margin-top: 4px;
        }
        .shipping-promo-divider {
            width: 1px;
            height: 50px;
            background: rgba(255,255,255,.12);
        }
        .shipping-promo-secondary {
            text-align: center;
        }
        .shipping-promo-secondary .promo-stat {
            font-family: 'Geist', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
        }
        .shipping-promo-secondary .promo-detail {
            font-size: 0.9rem;
            color: rgba(255,255,255,.55);
            margin-top: 2px;
        }
        @media (max-width: 600px) {
            .shipping-promo { gap: 1rem; padding: 20px 14px; }
            .shipping-promo-divider { width: 60px; height: 1px; }
            .shipping-promo-main .promo-stat { font-size: 1.5rem; white-space: nowrap; }
            .shipping-promo-main .promo-detail { font-size: 0.82rem; }
            .shipping-promo-secondary .promo-stat { font-size: 1.15rem; white-space: nowrap; }
            .shipping-promo-secondary .promo-detail { font-size: 0.78rem; }
        }

        /* ===== MID-PAGE CTA ===== */
        .mid-cta {
            padding: 60px 0;
            text-align: center;
        }
        .mid-cta h2 { text-align: center; margin-bottom: 1rem; }
        .mid-cta p { text-align: center; margin-bottom: 2rem; }
        .mid-cta-btn {
            display: inline-block;
            font-family: 'Geist', sans-serif;
            background: var(--primary);
            color: #000;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(255, 78, 0, 0.25);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .mid-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 78, 0, 0.35);
        }

        /* ===== EUROPE MAP (gradient section) ===== */
        .map-gradient-section {
            background: linear-gradient(135deg, #5F1105 0%, #FF4E00 50%, #FBB808 100%);
            padding: 0;
            overflow: hidden;
        }
        /* Map header + full-width img (used in mobile vertical layout) */
        .map-gradient-header {
            text-align: center;
            margin-bottom: 20px;
        }
        .map-gradient-header .section-tag { color: rgba(255,255,255,.7); }
        .map-gradient-header h2 {
            color: #fff;
            font-size: 2.4rem;
            text-transform: uppercase;
        }
        .map-gradient-header p {
            color: rgba(255,255,255,.8);
            max-width: 600px;
            margin: 0.5rem auto 0;
        }
        .map-gradient-img {
            display: block;
            width: 100%;
            height: auto;
        }
        .map-gradient-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px 50px;
        }
        .map-gradient-stat-card {
            background: rgba(255,255,255,.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 110px;
            transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
            cursor: default;
        }
        .map-gradient-stat-card:hover {
            background: rgba(255,255,255,.25);
            border-color: rgba(255,255,255,.4);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,.2);
        }
        .map-gradient-stat-card .stat-num {
            font-family: 'Eurostile', 'Geist', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        .map-gradient-stat-card p {
            margin: 6px 0 0 0;
            font-size: 0.9rem;
            color: rgba(255,255,255,.75);
        }
        /* ===== Partner logos inside gradient ===== */
        .map-partners-top {
            padding: 30px 0;
        }
        .map-partners-top .brand-logo {
            height: 90px;
            min-width: 150px;
            opacity: 1;
        }
        .map-partners-top .brand-logo img {
            filter: brightness(0) invert(1) !important;
        }
        /* Samokat logo — constrain width to match other logos */
        .brand-logo img[alt="Samokat"] { max-width: 140px; max-height: 50px; }
        .map-partners-top .marquee-track { gap: 1rem; }
        .map-partners-top .marquee-wrapper::before,
        .map-partners-top .marquee-wrapper::after { display: none !important; }

        /* (stat card flex centering merged into main rule above) */

        /* ===== DESKTOP: side-by-side layout (hidden on mobile) ===== */
        .map-desktop {
            display: block;
        }
        .map-gradient-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 2rem;
        }
        .map-gradient-left {
            text-align: left;
            padding: 40px 0;
        }
        .map-gradient-left .section-tag { color: rgba(255,255,255,.7); }
        .map-gradient-left h2 {
            color: #fff;
            font-size: 2.2rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .map-gradient-left p {
            color: rgba(255,255,255,.8);
            max-width: 400px;
            margin-bottom: 2rem;
        }
        .map-gradient-left .map-gradient-stats {
            grid-template-columns: repeat(2, 1fr);
            padding: 0;
            margin: 0;
            gap: 1rem;
        }
        .map-gradient-right {
            padding-bottom: 40px;
        }
        .map-gradient-right img {
            display: block;
            width: 100%;
            max-width: 550px;
            margin: 0 auto;
            height: auto;
        }

        /* ===== Desktop map variants (A/B test) ===== */
        .map-variant-label {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.25rem 20px 0;
            font-family: 'Geist', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.75);
            font-weight: 700;
        }
        /* Variant A: image uses object-fit cover with right-top anchor */
        .map-variant-a .map-gradient-right {
            padding-bottom: 0;
            align-self: stretch;
            min-height: 480px;
            overflow: hidden;
        }
        .map-variant-a .map-gradient-right img {
            width: 100%;
            height: 100%;
            max-width: none;
            margin: 0;
            object-fit: cover;
            object-position: right top;
        }
        /* Variant B: image bleeds past right column to viewport edge */
        .map-variant-b .map-gradient-inner {
            max-width: none;
            padding-left: max(20px, calc((100vw - 1200px) / 2));
            padding-right: 0;
            grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
            align-items: center;
        }
        .map-variant-b .map-gradient-right {
            padding-bottom: 0;
            overflow: hidden;
        }
        .map-variant-b .map-gradient-right img {
            width: 125%;
            max-width: none;
            margin: 0;
            display: block;
        }
        /* Marquee inside left column, above heading — wider than column (extends right), bigger logos */
        /* Uses unused vertical space above left-col content (map is taller, dictates section height) */
        .map-variant-b .map-gradient-inner { overflow: visible; }
        .map-variant-b .map-gradient-left {
            align-self: start;
            padding-top: 40px;
            overflow: visible;
        }
        .map-variant-b .map-gradient-left .map-partners-top-wide {
            width: 960px;
            max-width: none;
            padding: 0;
            margin-bottom: 1.75rem;
            overflow: visible;
        }
        .map-variant-b .map-gradient-left .map-partners-top-wide .marquee-wrapper {
            width: 100%;
            overflow: hidden;
        }
        .map-variant-b .map-gradient-left .map-partners-top-wide .brand-logo {
            height: 78px;
            min-width: 140px;
        }
        .map-variant-b .map-gradient-left .map-partners-top-wide .marquee-track {
            gap: 1.25rem;
        }
        .map-variant-b .map-gradient-left .map-partners-top-wide img[alt="Samokat"] {
            max-width: 140px;
            max-height: 52px;
        }

        /* ===== MAP TEST VARIANT: sticky left col + wider spacing ===== */
        /* overflow:hidden убивает sticky — меняем на clip (визуально то же, sticky работает) */
        .map-variant-test.map-gradient-section {
            min-height: 130vh;
            overflow: clip;
        }
        /* Левая колонка — обёртка, которая занимает всю высоту секции */
        .map-variant-test .map-gradient-left--sticky {
            align-self: stretch;
            display: flex;
            flex-direction: column;
        }
        /* Маркиза остаётся сверху (не sticky) */
        .map-variant-test .map-partners-top-wide {
            flex-shrink: 0;
            width: 1200px;
        }
        /* Блок с контентом (тег, h2, p, карточки) — sticky */
        .map-variant-test .map-gradient-left__inner {
            position: sticky;
            top: 100px; /* отступ от верха вьюпорта (с запасом под nav) */
            padding-bottom: 40px;
        }
        /* Увеличенные отступы: section-tag → h2 */
        .map-variant-test .map-gradient-left__inner .section-tag {
            margin-bottom: 1.25rem;
            color: rgba(255,255,255,.7);
        }
        /* h2 → p */
        .map-variant-test .map-gradient-left__inner h2 {
            margin-bottom: 1.5rem;
        }
        /* p → карточки */
        .map-variant-test .map-gradient-left__inner > p {
            margin-bottom: 3rem;
        }
        /* Правая колонка — карта растягивается на всю высоту секции */
        .map-variant-test .map-gradient-right {
            align-self: stretch;
            display: flex;
            align-items: stretch;
            overflow: visible;
        }
        .map-variant-test .map-gradient-right img {
            width: 125%;
            max-width: none;
            height: 100%;
            min-height: 130vh;
            object-fit: cover;
            object-position: left center;
            display: block;
            margin: 0;
        }

        /* ===== MOBILE: vertical layout (hidden on desktop) ===== */
        .map-mobile {
            display: none;
        }
        .map-mobile .map-gradient-header {
            text-align: center;
            margin-bottom: 20px;
            padding: 0 20px;
        }
        .map-mobile .map-gradient-header .section-tag { color: rgba(255,255,255,.7); }
        .map-mobile .map-gradient-header h2 {
            color: #fff;
            font-size: 1.8rem;
            text-transform: uppercase;
            text-align: center;
        }
        .map-mobile .map-gradient-header p {
            color: rgba(255,255,255,.8);
            max-width: 600px;
            margin: 0.5rem auto 0;
        }
        .map-mobile .map-gradient-img {
            display: block;
            width: 100%;
            height: auto;
        }
        .map-mobile .map-gradient-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 30px 20px 40px;
        }
        .map-mobile .map-partners-top .brand-logo {
            height: 110px;
            min-width: 160px;
        }
        .map-mobile .map-partners-top .marquee-track {
            gap: 1.25rem;
        }

        @media (max-width: 768px) {
            .map-desktop { display: none; }
            .map-mobile { display: block; }
            .map-gradient-stats { grid-template-columns: repeat(2, 1fr); }
        }
        /* legacy placeholder to keep line refs stable */
        .map-static-dot {
            fill: var(--primary);
            opacity: 0.9;
        }
        .map-static-dot-pulse {
            fill: var(--primary);
            opacity: 0.3;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 0.3; r: 8; }
            50% { opacity: 0.1; r: 14; }
        }
        .map-static-label {
            font-family: 'Geist', sans-serif;
            font-size: 10px;
            fill: rgba(255,255,255,.7);
            font-weight: 500;
        }

        /* (Brandbook map CSS removed — using .map-gradient-section above) */

        /* ===== TRUST / TESTIMONIALS ===== */
        .trust-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .trust-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('https://omfy-assets.netlify.app/Gemini_Generated_Image_zghxwozghxwozghx-2.webp') center/cover no-repeat;
            opacity: 0.5;
            z-index: 0;
        }
        .trust-section > .container { position: relative; z-index: 1; }
        .trust-stat {
            text-align: center;
            margin-bottom: 3rem;
        }
        .trust-stat .large {
            font-family: 'Geist', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .testimonial-carousel {
            position: relative;
            margin-bottom: 3rem;
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid;
        }
        .section-light .testimonial-carousel {
            border-color: var(--light-border);
            background: #fff;
            box-shadow: 0 4px 16px rgba(0,0,0,.06);
        }
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        .carousel-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: stretch;
            background: rgba(255,255,255,0.70);
            backdrop-filter: blur(6px);
            border-radius: 16px;
            overflow: hidden;
        }
        .carousel-slide-img { overflow: hidden; min-height: 300px; }
        .carousel-slide-img img { width: 100%; height: 100%; object-fit: cover; }
        .carousel-slide-text {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .carousel-slide-text .quote {
            font-size: 1.05rem;
            line-height: 1.7;
            color: rgba(0,0,0,.75);
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        .carousel-slide-text .quote::before {
            content: '\201C';
            font-size: 2rem;
            color: var(--primary);
            line-height: 0;
            margin-right: 4px;
            vertical-align: -8px;
        }
        .carousel-slide-text .author {
            font-family: 'Geist', sans-serif;
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 2px;
            color: var(--light-text);
        }
        .carousel-slide-text .role { font-size: 13px; color: rgba(0,0,0,.5); }
        .carousel-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 12px;
            pointer-events: none;
            z-index: 2;
        }
        .carousel-arrow {
            pointer-events: auto;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,.85);
            border: 1px solid var(--light-border);
            color: #1a1a1a;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s;
            box-shadow: 0 2px 8px rgba(0,0,0,.1);
        }
        .carousel-arrow:hover { background: var(--primary); }
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 16px 0;
        }
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            cursor: pointer;
            transition: background .2s;
            border: none;
        }
        .section-light .carousel-dot { background: rgba(0,0,0,.15); }
        .carousel-dot.active { background: var(--primary); }
        @media (max-width: 768px) {
            .carousel-slide { grid-template-columns: 1fr; }
            .carousel-slide-img { max-height: 220px; }
        }

        /* Supply Chain */
        .supply-chain {
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid;
        }
        .section-light .supply-chain {
            background: #fff;
            border-color: var(--light-border);
            box-shadow: 0 2px 12px rgba(0,0,0,.04);
        }
        .supply-chain h3 { text-align: center; margin-bottom: 2rem; }
        .chain-flow {
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .chain-item {
            text-align: center;
            flex: 1;
            min-width: 150px;
            border-radius: 12px;
            padding: 20px 16px;
            transition: border-color .2s;
            border: 1px solid;
        }
        .section-light .chain-item {
            background: #f5f5f5;
            border-color: var(--light-border);
        }
        .section-light .chain-item:hover { border-color: rgba(255,78,0,.3); }
        .chain-item.chain-highlight {
            background: linear-gradient(135deg, rgba(255,78,0,.15) 0%, rgba(255,78,0,.05) 100%);
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(255,78,0,.1);
        }
        .chain-item-label {
            font-family: 'Geist', sans-serif;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        .chain-item.chain-highlight .chain-item-label { font-size: 1.2rem; font-weight: 800; }
        .chain-item-detail { font-size: 0.85rem; }
        .section-light .chain-item-detail { color: var(--light-text-secondary); }
        .chain-arrow { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }
        @media (max-width: 768px) {
            .chain-flow { flex-direction: column; gap: 1.5rem; }
            .chain-arrow { transform: rotate(90deg); }
        }

        /* ===== FORM SECTION ===== */
        .form-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        /* form-section: no background image, dark bg from section-dark */
        .form-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .form-header { text-align: center; margin-bottom: 3rem; }
        .form-header h2 { text-align: center; color: #fff; }
        .form-header p { font-size: 1.05rem; color: var(--dark-text-secondary); }
        .form-box {
            background: #fff;
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 3rem;
            background-image:
                linear-gradient(#fff, #fff),
                linear-gradient(135deg, var(--primary), rgba(255, 78, 0, 0.2));
            background-origin: border-box;
            background-clip: padding-box, border-box;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
        }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--light-text);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem;
            background: #f8f8f8;
            border: 1px solid var(--light-border);
            border-radius: 8px;
            color: var(--light-text);
            font-family: 'Geist', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 15px rgba(255, 78, 0, 0.15);
        }
        .form-group input::placeholder { color: rgba(0, 0, 0, 0.35); }
        .form-submit {
            width: 100%;
            padding: 1.1rem;
            background: var(--primary);
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }
        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 78, 0, 0.3);
        }
        .form-disclaimer {
            text-align: center;
            font-size: 0.85rem;
            color: var(--light-text-secondary);
            padding: 1.5rem;
            background: rgba(255, 78, 0, 0.04);
            border-radius: 8px;
            border: 1px solid rgba(255, 78, 0, 0.12);
        }
        .form-disclaimer p { margin-bottom: 0.5rem; color: var(--light-text-secondary); }
        .form-disclaimer p:last-child { margin-bottom: 0; font-style: italic; color: var(--primary); }
        @media (max-width: 768px) {
            .form-box { padding: 2rem; }
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .faq-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('brandbook-photos/page23_img38_2731x4096.webp') center/cover no-repeat;
            opacity: 0.5;
            z-index: 0;
        }
        .faq-section > .container { position: relative; z-index: 1; }
        .faq-container { max-width: 800px; margin: 3rem auto 0; }
        .faq-item {
            border-radius: 12px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid;
        }
        .section-light .faq-item {
            background: rgba(255,255,255,0.70);
            border-color: var(--light-border);
            box-shadow: 0 2px 8px rgba(0,0,0,.04);
            backdrop-filter: blur(6px);
        }
        .section-light .faq-item:hover { border-color: var(--primary); }
        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            transition: background 0.3s;
            border: none;
            width: 100%;
            text-align: left;
        }
        .section-light .faq-question:hover { background: #f8f8f8; }
        .faq-question h4 {
            font-family: 'Geist', sans-serif;
            margin: 0;
            font-size: 1.05rem;
            flex: 1;
        }
        .section-light .faq-question h4 { color: var(--light-text); }
        .faq-toggle {
            color: var(--primary);
            font-size: 1.3rem;
            transition: transform 0.3s;
            margin-left: 1rem;
            flex-shrink: 0;
        }
        .faq-item.active .faq-toggle { transform: rotate(180deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .faq-item.active .faq-answer { max-height: 500px; }
        .faq-content {
            padding: 0 2rem 2rem;
            line-height: 1.8;
        }
        .section-light .faq-content { color: var(--light-text-secondary); }

        /* ===== FOOTER ===== */
        footer {
            background: #0a0a0a;
            padding: 3rem 0;
            color: #fff;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-brand h3 { color: var(--primary); margin-bottom: 0.5rem; font-family: 'Geist', sans-serif; display: none; }
        .footer-brand .footer-logo-svg { height: 30px; width: auto; margin-bottom: 0.75rem; }
        .footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
        .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
        .contact-item { font-size: 0.9rem; color: rgba(255,255,255,.6); }
        .contact-item a { color: rgba(255,255,255,.6); }
        .contact-item a:hover { color: var(--primary); }
        .footer-links h4 {
            font-family: 'Geist', sans-serif;
            color: #fff;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.5rem; }
        .footer-links a { color: rgba(255,255,255,.6); font-size: 0.9rem; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .social-links { display: flex; gap: 1rem; margin-bottom: 1rem; }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #222;
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s;
        }
        .social-links a:hover { background: var(--primary); color: #000; }
        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,.4);
            font-size: 0.85rem;
        }
        .partner-register-btn {
            display: inline-block;
            font-family: 'Geist', sans-serif;
            background: transparent;
            color: var(--primary);
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            border: 1px solid var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .partner-register-btn:hover {
            background: var(--primary);
            color: #000;
        }
        @media (max-width: 768px) {
            .footer-content { grid-template-columns: 1fr; gap: 2rem; }
        }

        /* ===== COMPARISON SEPARATOR ===== */
        .comparison-separator {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(90deg, transparent 0%, rgba(255,78,0,.08) 50%, transparent 100%);
            border-top: 2px dashed var(--primary);
            border-bottom: 2px dashed var(--primary);
            margin: 0;
        }
        .comparison-separator span {
            display: inline-block;
            background: var(--primary);
            color: #000;
            font-family: 'Geist', sans-serif;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 8px 24px;
            border-radius: 6px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .container { padding: 0 15px; }
            .products-grid { grid-template-columns: 1fr; }
        }
        
#allrecords a {
    color: inherit;
    text-decoration: none;
}