        :root {
            --bg-0: #8c0917;
            --bg-1: #98101c;
            --bg-2: #a31521;
            --panel: rgba(255, 15, 47, 0.75);
            --panel-strong: rgba(255, 15, 47, 0.88);
            --stroke: rgba(255, 255, 255, 0.2);
            --text: #f6f3f4;
            --muted: #e1cfd3;
            --accent: #ff0f2f;
            --accent-2: #ff7a84;
            --shadow-1: 0 20px 50px rgba(22, 6, 8, 0.45);
            --shadow-2: 0 12px 24px rgba(22, 6, 8, 0.35);
            --radius-lg: 28px;
            --radius-md: 18px;
            --radius-sm: 12px;
        }

        body.site-body {
            background:
                radial-gradient(900px 600px at 80% -10%, rgba(255, 15, 47, 0.38), transparent 60%),
                radial-gradient(800px 500px at 15% 10%, rgba(255, 122, 132, 0.34), transparent 65%),
                radial-gradient(700px 450px at 50% 85%, rgba(210, 22, 48, 0.34), transparent 60%),
                linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-2) 100%);
            color: var(--text);
            font-family: "Manrope", "Inter", system-ui, sans-serif;
            min-height: 100vh;
        }

        h1, h2, h3 {
            font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
            color: var(--text);
            letter-spacing: -0.01em;
        }

        p, li, a, span {
            color: inherit;
        }

        a {
            color: #ffe1e4;
            text-decoration-line: underline !important;
            text-decoration-color: currentColor;
            text-underline-offset: 4px;
            text-decoration-thickness: 3px;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }

        a:hover {
            color: #ffd7dc;
            text-decoration-color: rgba(255, 215, 220, 0.9);
        }

        .page-glow {
            position: fixed;
            inset: -20% 0 auto 0;
            height: 60vh;
            background: radial-gradient(650px 320px at 50% 0%, rgba(255, 122, 132, 0.6), transparent 70%);
            filter: blur(20px);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            width: 100%;
            background: linear-gradient(90deg, var(--accent), var(--accent-2));
            transform-origin: left;
            transform: scaleX(0);
            z-index: 9999;
        }

        .lang-switcher,
        .lang-switcher-top {
            position: fixed;
            top: 20px;
            right: 20px;
            display: inline-flex;
            gap: 0.5rem;
            padding: 0.5rem;
            background: rgba(42, 15, 20, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 999px;
            backdrop-filter: blur(12px);
            box-shadow: 0 12px 30px rgba(22, 6, 8, 0.4);
            z-index: 20;
        }

        .lang-switcher a,
        .lang-switcher-top a {
            text-decoration: none !important;
        }

        .lang-switcher .lang-btn,
        .lang-switcher-top .lang-btn {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .lang-switcher .lang-btn:hover,
        .lang-switcher-top .lang-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(22, 6, 8, 0.35);
            border-color: rgba(255, 255, 255, 0.35);
        }

        .lang-switcher .lang-btn.active,
        .lang-switcher-top .lang-btn.active {
            background: rgba(255, 45, 58, 0.25);
            border-color: rgba(255, 45, 58, 0.6);
            box-shadow: 0 12px 26px rgba(255, 45, 58, 0.35);
        }

        .hero {
            padding: 6rem 0 4rem;
            position: relative;
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            gap: 2.5rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .hero-copy h1 {
            font-size: clamp(2.6rem, 2vw + 2rem, 4.1rem);
            line-height: 1.05;
            margin-bottom: 1.5rem;
        }

        .hero-copy p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--muted);
            margin-bottom: 2rem;
        }

        .hero-panel {
            display: flex;
            justify-content: center;
        }

        .hero-card {
            background: var(--panel);
            border: 1px solid var(--stroke);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-1);
            padding: 2rem;
            backdrop-filter: blur(16px);
        }

        .hero-card-inner h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .hero-card-inner p {
            color: var(--muted);
            line-height: 1.65;
            margin-bottom: 1rem;
        }

        section {
            padding: 4.5rem 0;
            position: relative;
            z-index: 1;
        }

        .section-alt,
        section.bg-gray-50,
        section.bg-gray-100,
        section.bg-white {
            background: #ffffff;
            color: #7C0101;
        }

        .section-alt h1,
        .section-alt h2,
        .section-alt h3,
        .section-alt p,
        .section-alt li,
        section.bg-gray-50 h1,
        section.bg-gray-50 h2,
        section.bg-gray-50 h3,
        section.bg-gray-50 p,
        section.bg-gray-50 li,
        section.bg-gray-100 h1,
        section.bg-gray-100 h2,
        section.bg-gray-100 h3,
        section.bg-gray-100 p,
        section.bg-gray-100 li,
        section.bg-white h1,
        section.bg-white h2,
        section.bg-white h3,
        section.bg-white p,
        section.bg-white li {
            color: #7C0101;
        }

        .section-alt a,
        section.bg-gray-50 a,
        section.bg-gray-100 a,
        section.bg-white a {
            color: #7C0101;
            text-decoration-color: #7C0101;
        }

        .section-cta {
            background: linear-gradient(135deg, rgba(255, 45, 58, 0.2), rgba(255, 255, 255, 0.08));
            border-top: 1px solid rgba(255, 255, 255, 0.18);
        }

        .section-heading {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .sub-heading {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .split-grid {
            display: grid;
            gap: 2.5rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .split-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .section-lead {
            color: var(--muted);
            margin-bottom: 2.5rem;
        }

        .card-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .card-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .card {
            background: var(--panel);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-2);
            padding: 1.8rem;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .card-grid:not(.projects-grid) .card {
            padding-top: 3.8rem;
        }

        .card::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 1px solid rgba(255, 255, 255, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-1);
        }

        .card:hover::after {
            opacity: 1;
        }

        .card img {
            width: 100%;
            border-radius: var(--radius-sm);
            margin-bottom: 1rem;
        }

        .card-grid:not(.projects-grid) .card img {
            width: 42px;
            height: 42px;
            margin-bottom: 0.2rem;
        }

        .card h3 {
            margin-top: 1.6rem;
        }

        .card p {
            color: var(--muted);
            line-height: 1.6;
        }

        .projects-grid .card {
            background: var(--panel-strong);
        }

        .projects-grid .card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: var(--radius-md);
            padding: 2px;
            background: linear-gradient(135deg, #ff0f2f, #ff7a84, #ffd7dc, #ff0f2f);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .projects-grid .card:hover::before {
            opacity: 1;
            animation: borderRotate 3s linear infinite;
        }

        .projects-grid .card:hover {
            box-shadow: 0 24px 60px rgba(255, 31, 58, 0.35);
        }

        .image-frame {
            background: #F10101;
            border: 1px solid var(--stroke);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-frame img {
            width: 100%;
            max-width: 420px;
            border-radius: var(--radius-md);
            transition: none !important;
            transform: none !important;
            filter: none !important;
            opacity: 1 !important;
            mix-blend-mode: normal !important;
        }

        .image-frame:hover img {
            filter: none !important;
            opacity: 1 !important;
        }

        .image-section {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }

        @media (min-width: 768px) {
            .image-section {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .image-section img {
            border-radius: var(--radius-md);
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.9rem 2.4rem;
            border-radius: 999px;
            background: linear-gradient(120deg, var(--accent), var(--accent-2));
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow: 0 12px 30px rgba(255, 45, 58, 0.35);
            font-weight: 600;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            text-decoration: none !important;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(255, 45, 58, 0.45);
            color: #ffffff;
            text-decoration: none !important;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.9rem 2.4rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text);
            gap: 0.75rem;
            transition: transform 0.2s ease, background 0.2s ease;
            text-decoration: none !important;
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.22);
            color: var(--text);
        }

        .download-wrap {
            display: flex;
            justify-content: center;
        }

        .logo-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            align-items: center;
        }

        .logo-grid img {
            max-height: 46px;
            margin: 0 auto;
            opacity: 0.85;
            transition: opacity 0.2s ease;
        }

        .logo-grid img:hover {
            opacity: 1;
        }

        .cities-shell {
            background: var(--panel);
            border: 1px solid var(--stroke);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-2);
        }

        .cities-grid {
            display: grid;
            gap: 1.5rem;
            margin-top: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        .cities-grid-inner {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        .scrollable-content {
            max-height: 360px;
            overflow: hidden;
        }

        .scroll-animation-container {
            display: grid;
            gap: 1rem;
        }

        .city-card {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--radius-sm);
            padding: 1rem;
        }

        .city-country {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .city-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.35rem;
            color: var(--muted);
        }

        .city-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .city-pin {
            width: 16px;
            height: 16px;
        }

        .cta-card {
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            padding: 2rem;
            display: grid;
            gap: 2rem;
            box-shadow: var(--shadow-2);
        }

        .cta-card p {
            color: var(--muted);
        }

        .contact-details {
            display: grid;
            gap: 0.5rem;
        }

        .contact-logo {
            max-width: 220px;
            height: auto;
        }

        .btn-icon {
            display: inline-flex;
        }

        .btn-icon svg {
            width: 1.1rem;
            height: 1.1rem;
            fill: currentColor;
        }

        .benefit-icon-bg {
            width: 42px;
            height: 42px;
            border-radius: 999px;
            padding: 0.35rem;
            background: rgba(255, 255, 255, 0.22);
            border: 1px solid rgba(255, 255, 255, 0.4);
            position: absolute;
            top: 1.1rem;
            left: 1.1rem;
        }

        .faq-grid {
            display: grid;
            gap: 1.5rem;
        }

        .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-sm);
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.12);
        }

        .footer-nav {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(42, 15, 20, 0.8);
            padding: 1.5rem 0;
        }

        .footer-nav-inner {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .site-footer {
            background: rgba(42, 15, 20, 0.9);
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding: 2rem 0;
            text-align: center;
        }

        .reveal {
            opacity: 0;
            transform: translateY(18px);
            filter: blur(2px);
            transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        @keyframes borderRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @media (max-width: 768px) {
            .lang-switcher,
            .lang-switcher-top {
                position: absolute;
            }
        }
    .image-section {
        flex-direction: row;
    }
    .image-section img {
        width: 50%;
    }
}