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

        :root {
            --brand:        #EA4C38;
            --brand-dark:   #d43d2b;
            --brand-light:  rgba(234,76,56,.08);
            --nav-bg:       rgba(255,255,255,.95);
            --nav-border:   rgba(0,0,0,.07);
            --nav-text:     #4b5563;
            --nav-hover:    #111827;
            --nav-active:   #EA4C38;
            --body-bg:      #ffffff;
            --body-text:    #111827;
            --muted:        #6b7280;
            --surface:      #f9fafb;
            --border:       #e5e7eb;
        }
        [data-theme="dark"] {
            --nav-bg:      #11182a;
            --nav-border:  rgba(255,255,255,.1);
            --nav-text:    rgba(255,255,255,.72);
            --nav-hover:   #ffffff;
            --nav-active:  #EA4C38;
            --body-bg:     #0a0a14;
            --body-text:   #f1f5f9;
            --muted:       #94a3b8;
            --surface:     #141422;
            --border:      #1e2030;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--body-bg);
            color: var(--body-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ── Nav ── */
        #site-nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--nav-bg);
            backdrop-filter: blur(18px) saturate(180%);
            -webkit-backdrop-filter: blur(18px) saturate(180%);
            border-bottom: 1px solid var(--nav-border);
            transition: box-shadow .2s;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        #site-nav.scrolled {
            box-shadow: 0 1px 16px rgba(0,0,0,.08);
        }
        [data-theme="dark"] #site-nav.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,.5);
        }

        /* Dark nav overrides */
        [data-theme="dark"] .lang-btn,
        [data-theme="dark"] .theme-toggle {
            background: transparent !important;
            color: rgba(255,255,255,.65) !important;
            box-shadow: none !important;
        }
        [data-theme="dark"] .lang-btn:hover,
        [data-theme="dark"] .theme-toggle:hover {
            background: transparent !important;
            color: #fff !important;
        }
        [data-theme="dark"] .lang-btn.open {
            background: transparent !important;
            color: var(--brand) !important;
        }
        [data-theme="dark"] .theme-toggle:hover { transform: rotate(20deg) !important; }
        [data-theme="dark"] .nav-hamburger {
            border-color: rgba(255,255,255,.22) !important;
            color: rgba(255,255,255,.72) !important;
        }
        [data-theme="dark"] .nav-hamburger:hover { border-color: rgba(255,255,255,.5) !important; }
        [data-theme="dark"] .nav-hamburger span { background: rgba(255,255,255,.8); }
        [data-theme="dark"] .nav-divider { background: rgba(255,255,255,.15); }

        /* Flag images */
        .lang-flag-img {
            width: 20px;
            height: 14px;
            object-fit: cover;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .nav-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 32px;
            height: 68px;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }
        .nav-spacer { display: none; }

        /* Logo */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
            margin-right: 8px;
        }
        .nav-logo-icon {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            display: block;
        }
        .nav-logo-wordmark {
            height: 28px;
            width: auto;
            display: block;
        }
        .nav-logo-dark  { display: none; }
        [data-theme="dark"] .nav-logo-light { display: none; }
        [data-theme="dark"] .nav-logo-dark  { display: block; }

        /* Desktop links */
        .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2px;
            list-style: none;
            flex: 1 1 auto;
            min-width: 0;
        }
        @media (max-width: 767px) { .nav-links { display: none; } }
        .nav-controls { margin-left: auto; flex-shrink: 0; }

        .nav-links li { flex-shrink: 0; }

        .nav-links a {
            display: block;
            padding: 7px 13px;
            border-radius: 8px;
            font-size: .8125rem;
            font-weight: 500;
            color: #374151;
            text-decoration: none;
            transition: color .15s, background .15s;
            letter-spacing: -.01em;
            white-space: nowrap;
        }
        [data-theme="dark"] .nav-links a {
            color: rgba(255,255,255,.72);
        }
        .nav-links a:hover {
            color: #111827;
            background: rgba(0,0,0,.06);
        }
        [data-theme="dark"] .nav-links a:hover {
            color: #ffffff;
            background: rgba(255,255,255,.1);
        }
        .nav-links a.active {
            color: var(--brand);
            background: var(--brand-light);
            font-weight: 600;
        }

        /* Landing Pages — purple text only */
        .nav-lp-link {
            color: #7c3aed !important;
            font-weight: 600 !important;
        }
        .nav-lp-link:hover {
            color: #6d28d9 !important;
            background: rgba(0,0,0,.06) !important;
        }
        [data-theme="dark"] .nav-lp-link {
            color: #a78bfa !important;
        }
        [data-theme="dark"] .nav-lp-link:hover {
            color: #c4b5fd !important;
            background: rgba(255,255,255,.1) !important;
        }

        /* Integration dropdown */
        .nav-has-dropdown {
            position: relative;
        }
        .nav-links .nav-dropdown-trigger {
            display: flex !important;
            align-items: center;
            gap: 3px;
            cursor: default;
            user-select: none;
        }
        .nav-dropdown-chevron {
            width: 12px;
            height: 12px;
            transition: transform .18s;
            opacity: .55;
            flex-shrink: 0;
        }
        .nav-has-dropdown:hover .nav-dropdown-chevron {
            transform: rotate(180deg);
            opacity: .9;
        }
        .nav-dropdown {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: calc(100% + 8px);
            min-width: 210px;
            background: var(--body-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 6px;
            box-shadow: 0 10px 32px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.07);
            display: none;
            z-index: 200;
            animation: navDropdownIn .12s ease-out;
        }
        @keyframes navDropdownIn {
            from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
        [data-theme="dark"] .nav-dropdown {
            box-shadow: 0 10px 32px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.35);
        }
        .nav-has-dropdown:hover .nav-dropdown,
        .nav-has-dropdown.dd-open .nav-dropdown { display: block; }
        .nav-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 11px;
            border-radius: 8px;
            font-size: .875rem;
            font-weight: 500;
            color: var(--body-text) !important;
            text-decoration: none;
            background: transparent !important;
            letter-spacing: -.01em;
            transition: background .12s;
        }
        .nav-dropdown a:hover { background: var(--surface) !important; }
        .nav-dropdown-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .nav-dropdown-sep {
            height: 1px;
            background: var(--border);
            margin: 4px 8px;
        }

        /* Right controls */
        .nav-controls {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Language switcher */
        .lang-switcher {
            position: relative;
        }
        .lang-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px 10px 5px 7px;
            border-radius: 20px;
            border: none;
            background: transparent;
            box-shadow: none;
            cursor: pointer;
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .04em;
            color: var(--nav-text);
            transition: color .18s;
        }
        .lang-btn:hover {
            background: transparent;
            color: var(--brand);
            box-shadow: none;
        }
        .lang-btn.open {
            background: transparent;
            color: var(--brand);
            box-shadow: none;
        }
        .lang-code {
            text-transform: uppercase;
            line-height: 1;
        }
        .lang-chevron {
            width: 10px; height: 10px;
            color: currentColor;
            transition: transform .18s;
            opacity: .7;
            flex-shrink: 0;
        }
        .lang-btn.open .lang-chevron { transform: rotate(180deg); opacity: 1; }

        .lang-dropdown {
            position: absolute;
            right: 0;
            top: calc(100% + 6px);
            width: 160px;
            background: var(--body-bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 4px;
            box-shadow: 0 8px 24px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.06);
            display: none;
            z-index: 200;
            animation: fadeSlideIn .12s ease-out;
        }
        [data-theme="dark"] .lang-dropdown {
            box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.3);
        }
        .lang-dropdown.visible { display: block; }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 8px 10px;
            border-radius: 7px;
            font-size: .875rem;
            color: var(--body-text);
            text-decoration: none;
            transition: background .12s;
        }
        .lang-option:hover { background: var(--surface); }
        .lang-option.selected {
            color: var(--brand);
            background: var(--brand-light);
            font-weight: 600;
        }
        .lang-option-check {
            margin-left: auto;
            width: 14px; height: 14px;
            color: var(--brand);
        }

        /* Theme toggle */
        .theme-toggle {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: none;
            background: transparent;
            box-shadow: none;
            cursor: pointer;
            color: var(--nav-text);
            transition: color .18s, transform .25s cubic-bezier(.34,1.56,.64,1);
        }
        .theme-toggle:hover {
            background: transparent;
            color: var(--brand);
            box-shadow: none;
            transform: rotate(20deg);
        }
        .theme-toggle svg { width: 16px; height: 16px; }
        .icon-sun, .icon-moon { display: none; }
        [data-theme="dark"]  .icon-sun  { display: block; }
        [data-theme="light"] .icon-moon { display: block; }
        html:not([data-theme]) .icon-moon { display: block; }

        /* Divider */
        .nav-divider {
            width: 1px;
            height: 20px;
            background: var(--border);
            margin: 0 2px;
        }
        @media (max-width: 767px) { .nav-divider { display: none; } }

        /* Start button + dropdown */
        .nav-start-wrap {
            position: relative;
            display: none;
        }
        @media (min-width: 640px) { .nav-start-wrap { display: block; } }

        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px 8px 12px;
            border-radius: 8px;
            font-size: .875rem;
            font-weight: 700;
            color: #fff;
            background: var(--brand);
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background .18s, box-shadow .18s, transform .1s;
            font-family: inherit;
        }
        .btn-nav-cta:hover {
            background: var(--brand-dark);
            box-shadow: 0 4px 16px rgba(234,76,56,.35);
            transform: translateY(-1px);
        }
        .btn-nav-cta:active { transform: translateY(0); }
        .btn-nav-cta-icon { width: 18px; height: 18px; flex-shrink: 0; }

        .nav-start-menu {
            position: absolute;
            right: 0;
            top: calc(100% + 6px);
            width: 180px;
            background: var(--body-bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 4px;
            box-shadow: 0 8px 28px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
            display: none;
            z-index: 300;
            animation: fadeSlideIn .12s ease-out;
        }
        [data-theme="dark"] .nav-start-menu {
            box-shadow: 0 8px 28px rgba(0,0,0,.45), 0 2px 8px rgba(0,0,0,.3);
        }
        .nav-start-menu.open { display: block; }
        .nav-start-wrap:hover .nav-start-menu { display: block; }

        .nav-start-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            border-radius: 7px;
            font-size: .875rem;
            font-weight: 500;
            color: var(--body-text);
            text-decoration: none;
            transition: background .12s;
        }
        .nav-start-menu a:hover { background: var(--surface); }
        .nav-start-menu-icon {
            width: 30px; height: 30px;
            border-radius: 7px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            font-size: 13px;
        }

        /* Mobile hamburger */
        .nav-hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 34px;
            height: 34px;
            border-radius: 8px;
            border: 1.5px solid var(--border);
            background: transparent;
            cursor: pointer;
            padding: 0 7px;
            transition: border-color .15s;
            position: relative;
            z-index: 170;
        }
        @media (min-width: 768px) { .nav-hamburger { display: none; } }
        .nav-hamburger:hover { border-color: var(--brand); }
        .nav-hamburger span {
            display: block;
            height: 1.5px;
            background: var(--nav-text);
            border-radius: 2px;
            transition: all .2s;
        }
        .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
        .nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

        /* Mobile menu — full-width panel sliding down from the nav */
        body.mobile-menu-locked { overflow: hidden; }

        #mobile-menu-backdrop {
            display: none;
            position: fixed;
            top: 68px; right: 0; bottom: 0; left: 0;
            background: rgba(10,11,20,.42);
            z-index: 150;
            opacity: 0;
            transition: opacity .28s ease;
        }
        #mobile-menu-backdrop.visible { display: block; }
        #mobile-menu-backdrop.fade-in { opacity: 1; }

        #mobile-menu {
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 68px; right: 0; bottom: 0; left: 0;
            background: var(--body-bg);
            border-top: 1px solid var(--nav-border);
            box-shadow: 0 24px 56px rgba(0,0,0,.18);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
            pointer-events: none;
            z-index: 160;
            overflow: hidden;
        }
        #mobile-menu.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition: opacity .2s ease, transform .2s ease;
            pointer-events: auto;
        }
        @media (min-width: 768px) { #mobile-menu, #mobile-menu-backdrop { display: none !important; } }

        .mobile-menu-scroll {
            flex: 1;
            overflow-y: auto;
            padding: 14px 12px;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-menu-section-label {
            padding: 14px 10px 6px;
            font-size: .6875rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .mobile-menu-section-label:first-child { padding-top: 4px; }

        .mobile-menu-link {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            padding: 11px 10px;
            border-radius: 10px;
            font-size: .9375rem;
            font-weight: 500;
            color: var(--nav-text);
            text-decoration: none;
            background: transparent;
            border: none;
            text-align: left;
            cursor: pointer;
            font-family: inherit;
            transition: background .12s, color .12s;
        }
        .mobile-menu-link:hover { background: var(--surface); color: var(--nav-hover); }
        .mobile-menu-link.active { background: var(--brand-light); color: var(--brand); font-weight: 600; }
        .mobile-menu-link.active .mobile-menu-link-icon { background: #fff; color: var(--brand); }
        .mobile-menu-link.nav-lp-link { color: #7c3aed; }
        .mobile-menu-link.nav-lp-link .mobile-menu-link-icon { color: #7c3aed; }
        [data-theme="dark"] .mobile-menu-link.nav-lp-link,
        [data-theme="dark"] .mobile-menu-link.nav-lp-link .mobile-menu-link-icon { color: #a78bfa; }

        .mobile-menu-link-icon {
            width: 32px; height: 32px;
            border-radius: 9px;
            background: var(--surface);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            color: var(--nav-text);
        }
        .mobile-menu-link-icon svg { width: 17px; height: 17px; }

        .mobile-accordion-chevron {
            margin-left: auto;
            width: 16px; height: 16px;
            opacity: .55;
            transition: transform .2s;
            flex-shrink: 0;
        }
        .mobile-accordion-trigger[aria-expanded="true"] .mobile-accordion-chevron { transform: rotate(180deg); }
        .mobile-accordion-trigger[aria-expanded="true"] { background: var(--surface); color: var(--nav-hover); }

        .mobile-accordion-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height .28s ease;
        }
        .mobile-accordion-panel.open { max-height: 480px; }

        .mobile-submenu-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 10px 9px 16px;
            margin: 1px 0 1px 26px;
            border-left: 1.5px solid var(--nav-border);
            font-size: .8438rem;
            font-weight: 500;
            color: var(--muted);
            text-decoration: none;
            transition: color .12s, border-color .12s;
        }
        .mobile-submenu-link:hover, .mobile-submenu-link.active { color: var(--brand); border-color: var(--brand); }
        .mobile-submenu-icon {
            width: 22px; height: 22px;
            border-radius: 6px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .mobile-submenu-icon svg { width: 12px; height: 12px; }

        .mobile-menu-divider { height: 1px; background: var(--nav-border); margin: 10px 8px; }

        .mobile-menu-footer {
            flex-shrink: 0;
            display: flex;
            gap: 8px;
            padding: 12px;
            border-top: 1px solid var(--nav-border);
            background: var(--nav-bg);
        }
        .mobile-menu-footer a {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            text-align: center;
            padding: 11px !important;
            border-radius: 10px;
            border: none !important;
            font-size: .875rem !important;
            font-weight: 600;
            text-decoration: none;
        }
        .mobile-menu-footer svg { width: 15px; height: 15px; flex-shrink: 0; }
        .mobile-login-btn {
            border: 1.5px solid var(--border) !important;
            color: var(--nav-text) !important;
        }
        .mobile-cta-btn {
            background: var(--brand);
            color: #fff !important;
        }

        /* Mobile lang options */
        .mobile-lang-row {
            display: flex;
            gap: 8px;
            padding: 4px 8px 2px;
        }
        .mobile-lang-opt {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 10px;
            border-radius: 9px;
            border: 1.5px solid var(--border);
            font-size: .8125rem;
            font-weight: 600;
            color: var(--nav-text);
            text-decoration: none;
            transition: all .12s;
        }
        .mobile-lang-opt.selected {
            border-color: var(--brand);
            color: var(--brand);
            background: var(--brand-light);
        }

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

        /* Utility */
        .btn-primary {
            background: var(--brand); color: #fff; border: none; border-radius: 8px;
            padding: 10px 22px; font-size: .875rem; font-weight: 600; cursor: pointer;
            text-decoration: none; display: inline-block; transition: background .15s, transform .1s;
        }
        .btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
        .btn-outline {
            background: transparent; color: var(--brand); border: 1.5px solid var(--brand);
            border-radius: 8px; padding: 9px 21px; font-size: .875rem; font-weight: 600;
            cursor: pointer; text-decoration: none; display: inline-block; transition: all .15s;
        }
        .btn-outline:hover { background: var(--brand-light); }

        /* ── Home-page card hover border line animation ── */
        @property --hw-cw {
            syntax: '<angle>';
            inherits: false;
            initial-value: 45deg;
        }
        @property --hw-ccw {
            syntax: '<angle>';
            inherits: false;
            initial-value: 45deg;
        }

        .home-card { position: relative; }

        .home-card::before,
        .home-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            padding: 1px;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity .25s;
        }

        .home-card::before {
            background: conic-gradient(
                from var(--hw-cw) at 50% 50%,
                transparent 0deg,
                #EA4C38 6deg,
                #EA4C38 18deg,
                transparent 24deg
            );
        }

        .home-card::after {
            background: conic-gradient(
                from var(--hw-ccw) at 50% 50%,
                transparent 0deg,
                #EA4C38 6deg,
                #EA4C38 18deg,
                transparent 24deg
            );
        }

        .home-card:hover::before {
            opacity: 1;
            animation: hwCW 1.8s linear infinite;
        }

        .home-card:hover::after {
            opacity: 1;
            animation: hwCCW 1.8s linear infinite;
        }

        @keyframes hwCW  { from { --hw-cw:  45deg; } to { --hw-cw:  225deg; } }
        @keyframes hwCCW { from { --hw-ccw: 45deg; } to { --hw-ccw: -135deg; } }

        /* ── Pre-footer CTA strip ── */
        .footer-cta-strip {
            margin-top: 96px;
            background: linear-gradient(135deg, #160a06 0%, #2a1208 45%, #160a06 100%);
            padding: 72px 24px;
            position: relative;
            overflow: hidden;
        }
        .footer-cta-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 55% 90% at 75% 50%, rgba(234,76,56,.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .footer-cta-strip::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 30% 60% at 10% 80%, rgba(234,76,56,.1) 0%, transparent 60%);
            pointer-events: none;
        }
        .footer-cta-inner {
            max-width: 1160px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .footer-cta-text h2 {
            font-size: clamp(1.625rem, 3.5vw, 2.5rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 10px;
            letter-spacing: -.02em;
        }
        .footer-cta-text h2 span { color: var(--brand); }
        .footer-cta-text p {
            font-size: 1.0625rem;
            color: rgba(255,255,255,.6);
            max-width: 420px;
            line-height: 1.55;
        }
        .footer-cta-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            flex-shrink: 0;
        }
        .footer-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            background: var(--brand);
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 10px;
            text-decoration: none;
            transition: background .15s, transform .12s, box-shadow .15s;
            box-shadow: 0 4px 20px rgba(234,76,56,.45);
            white-space: nowrap;
        }
        .footer-cta-btn:hover {
            background: #f55540;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(234,76,56,.55);
        }
        .footer-cta-btn:active { transform: translateY(0); }
        .footer-cta-badges {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .footer-cta-badge {
            font-size: .8125rem;
            color: rgba(255,255,255,.45);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .footer-cta-badge::before {
            content: '✓';
            color: rgba(234,76,56,.8);
            font-weight: 700;
        }
        @media (max-width: 639px) {
            .footer-cta-inner { flex-direction: column; align-items: flex-start; }
            .footer-cta-actions { align-items: flex-start; }
            .footer-cta-badges { justify-content: flex-start; }
        }

        /* ── Site footer ── (always dark) */
        .site-footer {
            background: #0d0d1c;
            padding: 72px 24px 0;
            position: relative;
        }
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(234,76,56,.3) 25%, rgba(234,76,56,.55) 50%, rgba(234,76,56,.3) 75%, transparent 100%);
        }
        .footer-inner { max-width: 1160px; margin: 0 auto; }

        .footer-grid {
            display: grid;
            grid-template-columns: 2.1fr 1fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 56px;
        }
        @media (max-width: 1023px) {
            .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
            .footer-brand-col { grid-column: 1 / -1; }
        }
        @media (max-width: 599px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
            .footer-brand-col { grid-column: 1 / -1; }
        }
        @media (max-width: 359px) { .footer-grid { grid-template-columns: 1fr; } }

        .footer-tagline {
            font-size: .875rem;
            color: rgba(255,255,255,.42);
            line-height: 1.75;
            max-width: 310px;
            margin: 14px 0 22px;
        }

        .footer-newsletter { margin-bottom: 26px; }
        .footer-newsletter-label {
            display: block;
            font-size: .8125rem;
            font-weight: 600;
            color: rgba(255,255,255,.6);
            margin-bottom: 8px;
        }
        .footer-newsletter-form { display: flex; gap: 6px; max-width: 310px; }
        .footer-newsletter-input {
            flex: 1;
            min-width: 0;
            height: 38px;
            padding: 0 12px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,.1);
            background: rgba(255,255,255,.06);
            color: #fff;
            font-size: .8125rem;
            outline: none;
            transition: border-color .15s, background .15s;
        }
        .footer-newsletter-input::placeholder { color: rgba(255,255,255,.28); }
        .footer-newsletter-input:focus {
            border-color: rgba(234,76,56,.5);
            background: rgba(255,255,255,.08);
        }
        .footer-newsletter-btn {
            height: 38px;
            padding: 0 15px;
            border-radius: 8px;
            border: none;
            background: var(--brand);
            color: #fff;
            font-size: .8125rem;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            flex-shrink: 0;
            transition: background .15s, transform .1s;
        }
        .footer-newsletter-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
        .footer-newsletter-btn:active { transform: translateY(0); }
        .footer-newsletter-note { font-size: .75rem; color: rgba(255,255,255,.26); margin-top: 7px; }
        .footer-newsletter-success {
            display: none;
            font-size: .8125rem;
            color: #4ade80;
            margin-top: 8px;
        }
        .footer-newsletter-error {
            font-size: .8125rem;
            color: #f87171;
            margin-top: 8px;
        }

        .footer-social { display: flex; gap: 7px; flex-wrap: wrap; }
        .footer-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,.1);
            color: rgba(255,255,255,.42);
            text-decoration: none;
            transition: border-color .15s, color .15s, background .15s, transform .1s;
        }
        .footer-social-link:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: rgba(234,76,56,.1);
            transform: translateY(-1px);
        }
        .footer-social-link svg { width: 15px; height: 15px; }

        .footer-section-label {
            font-size: .6875rem;
            font-weight: 700;
            color: rgba(255,255,255,.28);
            text-transform: uppercase;
            letter-spacing: .1em;
            margin-bottom: 18px;
        }

        .footer-links { display: flex; flex-direction: column; gap: 11px; }
        .footer-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: .875rem;
            color: rgba(255,255,255,.48);
            text-decoration: none;
            transition: color .15s;
            width: fit-content;
        }
        .footer-link:hover { color: #fff; }
        .footer-link-badge {
            display: inline-block;
            font-size: .625rem;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
            background: rgba(234,76,56,.18);
            color: #f87060;
            border-radius: 4px;
            padding: 1px 5px;
            line-height: 1.6;
        }

        .footer-contact-item {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: .8125rem;
            color: rgba(255,255,255,.38);
            text-decoration: none;
            transition: color .15s;
            margin-top: 4px;
        }
        .footer-contact-item:hover { color: rgba(255,255,255,.72); }
        .footer-contact-item svg { width: 13px; height: 13px; flex-shrink: 0; }

        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,.06);
            margin: 0;
        }

        .footer-bottom {
            padding: 22px 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }
        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-copyright { font-size: .8125rem; color: rgba(255,255,255,.26); }
        .footer-bottom-center {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        @media (max-width: 767px) { .footer-bottom-center { display: none; } }
        .footer-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: .75rem;
            color: rgba(255,255,255,.22);
            white-space: nowrap;
        }
        .footer-trust-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
