/* ============================================================
   OMICRON SHARED STYLES v1.0
   Tokens, reset, buttons, header, mobile nav, footer, reveal
   Shared across all Omicron custom page templates.
   ============================================================ */

/* β”€β”€β”€ TOKENS β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
:root {
    /* Theme palette: edit these for fast site-wide color changes. */
    --theme-accent: #f5c400;
    --theme-accent-dim: rgba(245, 196, 0, 0.08);
    --theme-accent-mid: rgba(245, 196, 0, 0.22);
    --theme-ink: #121212;
    --theme-black: #000000;
    --theme-black-soft: #0b0e12;
    --theme-bg: #28292d;
    --theme-bg-alt: #2c2f34;
    --theme-bg-alt-2: #24262b;
    --theme-bg-alt-3: #2b2e33;
    --theme-page-bg-start: #171b22;
    --theme-page-bg-main: #1f242d;
    --theme-page-surface: #151b23;
    --theme-page-surface-2: #1c2430;
    --theme-content-bg: #28292d;
    --theme-content-bg-alt: #2c2f34;
    --theme-content-bg-alt-2: #24262b;
    --theme-content-bg-alt-3: #2b2e33;
    --theme-content-surface: #1a1a1a;
    --theme-content-surface-2: rgba(0, 0, 0, 0.18);
    --theme-content-surface-3: #212d3b;
    --theme-content-border: rgba(255, 255, 255, 0.10);
    --theme-content-border-mid: rgba(255, 255, 255, 0.11);
    --theme-content-border-strong: rgba(255, 255, 255, 0.16);
    --theme-content-text: #ffffff;
    --theme-content-text-soft: rgba(255, 255, 255, 0.78);
    --theme-content-text-muted: rgba(255, 255, 255, 0.62);
    --theme-surface: #1a1a1a;
    --theme-surface-soft: rgba(0, 0, 0, 0.18);
    --theme-surface-strong: #212d3b;
    --theme-surface-panel: #252c36;
    --theme-grey: #4a4a4a;
    --theme-line: rgba(255, 255, 255, 0.10);
    --theme-line-mid: rgba(255, 255, 255, 0.11);
    --theme-line-strong: rgba(255, 255, 255, 0.16);
    --theme-line-light: #d7dbe2;
    --theme-text-strong: #ffffff;
    --theme-text: rgba(255, 255, 255, 0.78);
    --theme-text-muted: rgba(255, 255, 255, 0.62);
    --theme-text-soft: #f3f4f6;
    --theme-text-soft-2: rgba(243, 244, 246, 0.72);
    --theme-text-soft-3: rgba(243, 244, 246, 0.45);
    --theme-heading: #f2f6ff;

    --yellow: var(--theme-accent);
    --yellow-dim: var(--theme-accent-dim);
    --yellow-mid: var(--theme-accent-mid);
    --off-black: var(--theme-black);
    --bg: var(--theme-bg);
    --bg-alt: var(--theme-bg-alt);
    --bg-alt2: var(--theme-bg-alt-2);
    --bg-alt3: var(--theme-bg-alt-3);
    --surface: var(--theme-surface);
    --surface-2: var(--theme-surface-soft);
    --surface-3: var(--theme-surface-strong);
    --grey: var(--theme-grey);
    --border: var(--theme-line);
    --border-mid: var(--theme-line-mid);
    --border-strong: var(--theme-line-strong);
    --text-1: var(--theme-text-strong);
    --text-2: var(--theme-text);
    --text-3: var(--theme-text-muted);
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    --font: 'Manrope', sans-serif;
    --r: 16px;
    --r-sm: 10px;
    --r-lg: 22px;
}

:root[data-theme="grey"] {
    --theme-content-bg: #f1f2f4;
    --theme-content-bg-alt: #eceef1;
    --theme-content-bg-alt-2: #e5e8ec;
    --theme-content-bg-alt-3: #dde2e7;
    --theme-content-surface: #ffffff;
    --theme-content-surface-2: #f8f9fb;
    --theme-content-surface-3: #eef1f5;
    --theme-content-border: rgba(21, 27, 35, 0.10);
    --theme-content-border-mid: rgba(21, 27, 35, 0.14);
    --theme-content-border-strong: rgba(21, 27, 35, 0.18);
    --theme-content-text: #1f242b;
    --theme-content-text-soft: rgba(31, 36, 43, 0.78);
    --theme-content-text-muted: rgba(31, 36, 43, 0.58);
    --theme-heading: #1f242b;
    --theme-text-soft: #f5f6f8;
    --theme-text-soft-2: rgba(245, 246, 248, 0.78);
    --theme-text-soft-3: rgba(245, 246, 248, 0.54);
}

html[data-theme="grey"] body {
    background: var(--theme-content-bg);
    color: var(--theme-content-text);
}

html[data-theme="grey"] body section:not(.hero-wrap):not(.inner-hero),
html[data-theme="grey"] body .seo-block {
    --bg: var(--theme-content-bg);
    --bg-alt: var(--theme-content-bg-alt);
    --bg-alt2: var(--theme-content-bg-alt-2);
    --bg-alt3: var(--theme-content-bg-alt-3);
    --surface: var(--theme-content-surface);
    --surface-2: var(--theme-content-surface-2);
    --surface-3: var(--theme-content-surface-3);
    --border: var(--theme-content-border);
    --border-mid: var(--theme-content-border-mid);
    --border-strong: var(--theme-content-border-strong);
    --text-1: var(--theme-content-text);
    --text-2: var(--theme-content-text-soft);
    --text-3: var(--theme-content-text-muted);
    --heading-color: var(--theme-content-text);
    --heading-soft: var(--theme-content-text);
    --text-primary: var(--theme-content-text);
    --text-secondary: var(--theme-content-text-soft);
    --text-muted: var(--theme-content-text-muted);
}

html[data-theme="grey"] body section:not(.hero-wrap):not(.inner-hero) :is(h1, h2, h3, h4, h5, h6),
html[data-theme="grey"] body .seo-block :is(h1, h2, h3, h4, h5, h6) {
    color: var(--theme-content-text) !important;
}

/* β”€β”€β”€ RESET β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-1);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Kill Astra's default body margin and padding */
    margin: 0 !important;
    padding: 0 !important;
}

/* β”€β”€β”€ ASTRA / WP ADMIN BAR OVERRIDES β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
/* Remove WP admin bar extra space on the frontend */
#wpadminbar {
    position: fixed !important;
}

html,
html[style*="margin-top"] {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Keep sticky Omicron header correctly offset when admin bar is visible */
body.admin-bar .hdr {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .hdr {
        top: 46px;
    }
}

/* Astra injects its own header β€” hide it on our full-HTML templates */
.ast-header-html-outside .site-header,
#masthead,
.ast-above-header-wrap,
.ast-below-header-wrap,
.main-header-bar-wrap,
.main-header-bar,
.ast-main-header-wrap,
.site-header-wrap,
.ast-primary-header-wrap,
.entry-header,
header.site-header,
.ast-site-branding,
.ast-masthead-custom-menu-items,
.astra-hf-header-wrap,
/* Astra page title bar */
.ast-archive-description,
header.page-header,
.site-above-footer-wrap,
.site-below-footer-wrap,
.site-footer-wrap,
#colophon,
.astra-footer-area {
    display: none !important;
}

/* Remove any Astra margin/padding that pushes content below the Astra chrome */
.hdr {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Also nuke Astra's own content padding-top when it's a full-page template */
.ast-page-builder-template .entry-content, .ast-page-builder-template .site, .ast-page-builder-template .site-content,
.hfeed .hdr,
.woocommerce .hdr,
.woocommerce-page .hdr {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


a {
    text-decoration: none;
    color: inherit;
    transition: color .2s, background .2s, border-color .2s, transform .22s, opacity .2s, box-shadow .22s;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

h1 {
    font-size: clamp(32px, 3.6vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.035em;
}

h2 {
    font-size: clamp(24px, 2.4vw, 40px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.028em;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em;
}

/* β”€β”€β”€ KEYFRAMES β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* β”€β”€β”€ BUTTONS β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 13px 26px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all .22s ease;
}

.btn-y,
.btn-primary {
    background: var(--yellow);
    color: #000;
    box-shadow: 0 8px 28px var(--yellow-mid);
}

.btn-y:hover,
.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.btn-y:active,
.btn-primary:active {
    transform: scale(.97);
}

.btn-g,
.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-1);
    border-color: var(--border-strong);
}

.btn-g:hover,
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 12px;
    padding: 10px 20px;
}

/* β”€β”€β”€ HEADER β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
.hdr {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(11, 14, 18, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

.hdr.is-scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.hdr-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.hdr-brand img {
    height: 66px;
    width: auto;
    opacity: 0;
    animation: slideInLeft .9s ease-out forwards;
}

.hdr-brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
    opacity: 0;
    animation: slideInRight .9s ease-out .2s forwards;
}

.hdr-brand-name .w-opel,
.hdr-brand-name .w-service {
    font-family: "Saira Semi Condensed", var(--font);
    text-transform: uppercase;
    display: inline-block;
}

.hdr-brand-name .w-opel {
    font-size: 30px;
    font-weight: 800;
    color: #f5f3ee;
    letter-spacing: .12em;
    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.35),
        2px 2px 0 rgba(59, 64, 72, 0.78),
        4px 4px 10px rgba(0, 0, 0, 0.16);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
}

.hdr-brand-name .w-service {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3em;
    color: var(--yellow);
    text-shadow:
        1px 1px 0 rgba(59, 64, 72, 0.72),
        3px 3px 8px rgba(0, 0, 0, 0.14);
    margin-left: 2px;
}

.hdr-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
}

.hdr .hdr-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr .hdr-top-item {
    opacity: 0;
    transform: translateX(24px);
    animation: hdrTopSlide .7s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: var(--hdr-delay, 0s);
}

@keyframes hdrTopSlide {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hdr .hdr-top-item {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.hdr .phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border: 1.5px solid var(--border-strong);
    border-radius: 999px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.04);
}

.hdr .phone-pill i {
    color: var(--yellow);
    font-size: 12px;
}

.hdr .phone-pill:hover {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
    transform: translateY(-2px);
}

.hdr .phone-pill:hover i {
    color: #000;
}

.hdr .soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-mid);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-2);
}

.hdr .theme-toggle,
.mob-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--border-mid);
    background: var(--surface);
    color: var(--text-1);
    cursor: pointer;
    transition: background .22s, border-color .22s, color .22s, transform .22s;
    font-family: var(--font);
    font-weight: 700;
}

.hdr .theme-toggle {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mob-theme-toggle {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
}

.hdr .theme-toggle i,
.mob-theme-toggle i {
    color: var(--yellow);
    font-size: 13px;
}

.hdr .soc-btn:hover {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
    transform: translateY(-2px);
}

.hdr .theme-toggle:hover,
.mob-theme-toggle:hover,
.hdr .theme-toggle[aria-pressed="true"],
.mob-theme-toggle[aria-pressed="true"] {
    background: var(--yellow-dim);
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}

.hdr .burger {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border-mid);
    color: var(--text-1);
    width: 40px;
    height: 40px;
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 17px;
}

.hdr .nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
}

.hdr .nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 8px 13px;
    border-radius: 8px;
    color: var(--text-2);
}

.hdr .nav-links a:hover {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.05);
}

.hdr .nav-links a.on {
    color: var(--yellow);
}

/* β”€β”€β”€ CART BUTTON β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
.hdr .cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    border: 1.5px solid rgba(255, 215, 0, 0.25);
    color: var(--yellow);
    font-size: 15px;
    transition: background .2s, border-color .2s, transform .2s;
}

.hdr .cart-btn:hover {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--yellow);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mob-nav .mob-cart-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: var(--font);
    font-weight: 700;
    color: var(--yellow);
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.05);
}

.mob-nav .mob-cart-link .cart-count {
    position: static;
    margin-left: 4px;
}


/* β”€β”€β”€ MOBILE NAV β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
.mob-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(0, 0, 0, 0.78);
}

.mob-nav.open {
    display: block;
}

.mob-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 93vw);
    height: 100%;
    background: var(--surface);
    border-left: 1px solid var(--border);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mob-nav .mob-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mob-nav .mob-top span {
    font-family: var(--font);
    font-weight: 800;
    font-size: 16px;
}

.mob-close {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-mid);
    color: var(--text-1);
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.mob-nav .mob-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: #000;
    font-family: var(--font);
    font-weight: 900;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 15px;
}

.mob-nav .mob-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mob-nav .mob-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-2);
}

.nav-link-icon {
    font-size: 0.95em;
    line-height: 1;
    flex-shrink: 0;
}

.mob-nav .mob-links a:hover,
.mob-nav .mob-links a.on {
    background: var(--yellow-dim);
    color: var(--yellow);
}

.mob-soc {
    display: flex;
    gap: 10px;
}

/* β”€β”€β”€ INNER HERO (shared inner pages) β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
.inner-hero {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg,
            var(--off-black) 0%, var(--off-black) 38%,
            var(--grey) 38%, var(--grey) 43%,
            var(--yellow) 43%, var(--yellow) 63%,
            var(--grey) 63%, var(--grey) 68%,
            var(--off-black) 68%, var(--off-black) 100%);
}

.inner-hero::before,
.inner-hero::after {
    display: none;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 72px 0 64px;
    opacity: 0;
    animation: fadeUp 1s ease-out .35s forwards;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
    color: var(--yellow);
}

.breadcrumb i {
    font-size: 9px;
}

.kicker-pill {
    display: inline-flex;
    align-items: center;
    background: var(--yellow);
    color: #000;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.inner-hero h1 {
    margin-bottom: 16px;
    color: var(--text-1);
}

.inner-hero-subtitle {
    font-size: 17px;
    line-height: 1.68;
    color: var(--text-2);
    max-width: 520px;
    margin-bottom: 30px;
}

.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-1);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.trust-badge i {
    color: var(--text-1);
    font-size: 11px;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-1);
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    line-height: 1;
    white-space: nowrap;
}

.trust-chip i {
    color: var(--text-1);
    font-size: 11px;
}

.hero-visual-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-strong);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-visual-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--yellow);
}

.hero-visual-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
}

.hero-visual-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.35);
    z-index: 1;
    text-align: center;
    font-size: 14px;
}

.hero-visual-placeholder i {
    font-size: 52px;
    color: rgba(255, 215, 0, 0.28);
}

/* β”€β”€β”€ FOOTER β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
.ftr {
    background: #090C10;
    border-top: 1px solid var(--border);
    padding: 68px 0 0;
}

.ftr-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--border);
}

.ftr-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ftr-brand img {
    height: 54px;
}

.ftr-brand-name {
    font-size: 16px;
    font-weight: 900;
}

.ftr-brand-tag {
    font-size: 11px;
    color: var(--text-3);
    font-weight: 600;
    letter-spacing: .04em;
    margin-top: 2px;
}

.ftr-about {
    font-size: 13px;
    line-height: 1.78;
    color: var(--text-3);
    max-width: 360px;
    margin-bottom: 22px;
}

.ftr-about strong {
    color: var(--text-2);
}

.ftr-soc {
    display: flex;
    gap: 8px;
}

.ftr-soc-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    background: var(--surface);
    border: 1px solid var(--border-mid);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-2);
}

.ftr-soc-chip:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.ftr-col-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-2);
    margin-bottom: 18px;
}

.ftr-addr {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-3);
    margin-bottom: 14px;
}

.ftr-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 10px;
}

.ftr-link:hover {
    opacity: .75;
}

.ftr-contacts {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 14px;
}

.ftr-contacts a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--text-3);
}

.ftr-contacts a i {
    color: var(--yellow);
    width: 14px;
    font-size: 12px;
}

.ftr-contacts a:hover {
    color: var(--yellow);
}

.ftr-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ftr-nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
}

.ftr-nav a:hover {
    color: var(--yellow);
}

.ftr-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.ftr-copy {
    font-size: 12px;
    color: var(--text-3);
}

.ftr-legal {
    display: flex;
    gap: 20px;
}

.ftr-legal a {
    font-size: 12px;
    color: var(--text-3);
}

.ftr-legal a:hover {
    color: var(--yellow);
}

/* β”€β”€β”€ SECTION COMMONS β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
.section-pad {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 52px;
}

.section-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
}

.section-head h2 {
    margin-bottom: 12px;
}

.section-lead {
    font-size: 16px;
    line-height: 1.68;
    color: var(--text-2);
    max-width: 560px;
}

.body-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-2);
    margin-bottom: 20px;
}

/* β”€β”€β”€ REVEAL β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* β”€β”€β”€ FINAL CTA (shared) β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
.final-cta {
    padding: 80px 0;
}

.final-cta-inner {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 52px 56px;
}

.final-cta-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--yellow);
}

.final-cta-inner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05));
    pointer-events: none;
}

.cta-text h2 {
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 520px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    flex-shrink: 0;
}

/* β”€β”€β”€ RESPONSIVE SHARED β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ */
@media (max-width:1100px) {
    .ftr-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:1024px) {
    .inner-hero-content {
        grid-template-columns: 1fr;
    }

    .inner-hero-right {
        display: none;
    }
}

@media (max-width:768px) {
    .hdr-inner {
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
    }

    .hdr-brand {
        margin: 0 auto;
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
    }

    .hdr-right {
        width: 100%;
        align-items: center;
    }

    .hdr .hdr-top {
        width: 100%;
        justify-content: center;
        gap: 24px;
    }
    .hdr .nav-links {
        display: none;
    }

    .hdr .burger {
        display: flex;
    }

    .hdr .hdr-top .phone-pill {
        display: none;
    }

    .inner-hero {
        min-height: 100svh;
        background: linear-gradient(160deg, var(--off-black) 38%, var(--grey) 46%, var(--yellow) 46.1%);
    }

    .section-pad {
        padding: 52px 0;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }

    .cta-actions {
        align-items: flex-start;
    }

    .ftr-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ftr-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }
}


.hero-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
