/* =============================================================================
   Airbytes — Static Stylesheet (v2)
   1:1 visual clone of the live airbytes.net WordPress/Elementor site,
   hand-coded without the framework.
   ============================================================================= */

/* ----- Design tokens ------------------------------------------------------ */
:root {
    /* Brand */
    --ab-red: #ff0000;
    --ab-red-dark: #cc0000;
    --ab-red-soft: #fde8e8;

    /* Greys (matched from live site) */
    --ab-black: #000000;
    --ab-grey-900: #1a1a1a;
    --ab-grey-800: #2c2c2c;
    --ab-grey-700: #4a4a4a;
    --ab-grey-600: #6a6a6a;
    --ab-grey-500: #8a8a8a;
    --ab-grey-400: #a3a3a3;
    --ab-grey-300: #cfcfcf;
    --ab-grey-200: #e5e5e5;
    --ab-grey-100: #f4f4f4;
    --ab-grey-50:  #fafafa;
    --ab-white: #ffffff;

    /* Surfaces from the live site */
    --ab-topbar-bg:    #2a2a2a;
    --ab-topbar-fg:    #f4f4f4;
    --ab-cta-bg:       #6e6e6e;
    --ab-footer-bg:    #5a5a5a;

    /* Layout */
    --ab-container: 1200px;
    --ab-container-wide: 1400px;
    --ab-radius-sm: 6px;
    --ab-radius-md: 14px;
    --ab-radius-lg: 24px;
    --ab-radius-pill: 999px;

    /* Typography */
    --ab-font-body:
        "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --ab-font-display: var(--ab-font-body);

    /* Shadow */
    --ab-shadow-card: 0 8px 28px rgba(0, 0, 0, 0.10);
    --ab-shadow-card-hover: 0 16px 40px rgba(0, 0, 0, 0.16);
    --ab-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);

    /* Header heights — used for sticky offsets */
    --ab-topbar-height: 38px;
    --ab-header-height: 84px;
    --ab-marquee-height: 38px;
}

/* ----- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--ab-white);
    color: var(--ab-grey-700);
    font-family: var(--ab-font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Reserve space at bottom for the fixed marquee bar */
    padding-bottom: var(--ab-marquee-height);
}

a { color: inherit; text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--ab-red); }

img, svg { max-width: 100%; height: auto; display: block; }

button { font-family: inherit; cursor: pointer; }

ul, ol { list-style: none; margin: 0; padding: 0; }

p { margin: 0 0 1em; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ab-font-display);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.5em;
    color: var(--ab-grey-900);
    letter-spacing: -0.01em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ab-black);
    color: var(--ab-white);
    padding: 12px 16px;
    z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ----- Layout helpers ----------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--ab-container);
    margin: 0 auto;
    padding: 0 24px;
}
.container-wide { max-width: var(--ab-container-wide); }

/* ----- Buttons ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--ab-radius-pill);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
    cursor: pointer;
}
.btn-dark {
    background: var(--ab-grey-900);
    color: var(--ab-white);
    border-color: var(--ab-grey-900);
}
.btn-dark:hover {
    background: var(--ab-red);
    border-color: var(--ab-red);
    color: var(--ab-white);
    transform: translateY(-1px);
}
.btn-light {
    background: var(--ab-white);
    color: var(--ab-grey-900);
    border-color: var(--ab-white);
}
.btn-light:hover {
    background: var(--ab-red);
    border-color: var(--ab-red);
    color: var(--ab-white);
}
.btn-red {
    background: var(--ab-red);
    color: var(--ab-white);
    border-color: var(--ab-red);
}
.btn-red:hover {
    background: var(--ab-red-dark);
    border-color: var(--ab-red-dark);
}
.btn-outline {
    background: transparent;
    color: var(--ab-grey-900);
    border-color: var(--ab-grey-900);
}
.btn-outline:hover { background: var(--ab-grey-900); color: var(--ab-white); }

/* =============================================================================
   TOP BAR
   ============================================================================= */
.ab-topbar {
    background: var(--ab-topbar-bg);
    color: var(--ab-topbar-fg);
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ab-topbar a { color: var(--ab-topbar-fg); }
.ab-topbar a:hover { color: var(--ab-red); }
.ab-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--ab-topbar-height);
    gap: 24px;
}
.ab-topbar__audience { display: flex; gap: 28px; }
.ab-topbar__audience a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.ab-topbar__audience a i { color: var(--ab-red); font-size: 0.9rem; }
.ab-topbar__audience a.is-active { color: var(--ab-white); }

.ab-topbar__right {
    display: flex;
    align-items: center;
    gap: 28px;
}
.ab-topbar__right > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.ab-topbar__right i { color: var(--ab-red); font-size: 0.9rem; }

@media (max-width: 768px) {
    .ab-topbar__right .ab-topbar__link { display: none; }
    .ab-topbar__inner { gap: 12px; }
}

/* =============================================================================
   HEADER
   ============================================================================= */
.ab-header {
    background: var(--ab-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.ab-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--ab-header-height);
    gap: 24px;
}
.ab-header__logo { display: block; flex-shrink: 0; }
.ab-header__logo img { width: 175px; height: auto; }

.ab-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.ab-nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ab-nav__item { position: static; }
.ab-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ab-grey-900);
    background: transparent;
    border: none;
    border-radius: var(--ab-radius-sm);
    cursor: pointer;
}
.ab-nav__link:hover,
.ab-nav__link[aria-expanded="true"] { color: var(--ab-red); }
.ab-nav__link i.fa-chevron-down,
.ab-nav__link i.fa-angle-down {
    font-size: 0.7rem;
    transition: transform 0.2s;
    margin-left: 2px;
}
.ab-nav__link[aria-expanded="true"] i.fa-chevron-down,
.ab-nav__link[aria-expanded="true"] i.fa-angle-down {
    transform: rotate(180deg);
}

.ab-megamenu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--ab-white);
    border-top: 1px solid var(--ab-grey-200);
    border-bottom: 3px solid var(--ab-red);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.ab-nav__item.is-open .ab-megamenu { display: block; animation: ab-fade-down 0.2s ease; }
@keyframes ab-fade-down {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ab-megamenu__inner {
    max-width: var(--ab-container);
    margin: 0 auto;
    padding: 32px 24px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}
.ab-megamenu__col { min-width: 0; }
.ab-megamenu__heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ab-grey-500);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ab-grey-200);
    font-weight: 700;
}
.ab-megamenu__links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ab-megamenu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--ab-grey-900);
    font-weight: 500;
    transition: color 0.15s ease, padding-left 0.15s ease;
}
.ab-megamenu__link:hover { color: var(--ab-red); padding-left: 4px; }
.ab-megamenu__badge {
    display: inline-block;
    padding: 2px 6px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--ab-white);
    border-radius: 3px;
    text-transform: uppercase;
    background: var(--ab-red);
}
.ab-megamenu__badge--free { background: #0a8a0a; }
.ab-megamenu__badge--refurbished { background: #7a4dd8; }

.ab-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
}
.ab-nav__toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--ab-grey-900);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.ab-nav__toggle.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.ab-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.ab-nav__toggle.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 1024px) {
    .ab-nav__toggle { display: flex; }
    .ab-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 88vw;
        max-width: 380px;
        background: var(--ab-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 24px;
        gap: 16px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        z-index: 200;
    }
    .ab-nav.is-open { transform: translateX(0); }
    .ab-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    .ab-nav__item { border-bottom: 1px solid var(--ab-grey-200); }
    .ab-nav__link { width: 100%; justify-content: space-between; padding: 14px 0; }
    .ab-megamenu {
        position: static;
        border: none;
        box-shadow: none;
        background: var(--ab-grey-50);
        margin: 0 -24px;
    }
    .ab-megamenu__inner { padding: 16px 24px; grid-template-columns: 1fr; gap: 20px; }
}

/* =============================================================================
   HERO
   ============================================================================= */
.ab-hero {
    position: relative;
    min-height: 660px;
    background-image: url('/assets/img/canary-wharf.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    /* Negative bottom margin so cards overlap upward into hero */
    margin-bottom: -150px;
    padding-bottom: 150px;
    color: var(--ab-white);
}
.ab-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}
.ab-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--ab-container);
    margin: 0 auto;
    padding: 220px 24px 240px;
    text-align: left;
}
.ab-hero__eyebrow {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ab-white);
    margin: 0 0 16px;
    letter-spacing: 0;
    opacity: 0.95;
    text-transform: lowercase;
}
.ab-hero__heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--ab-white);
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .ab-hero { min-height: 480px; margin-bottom: -100px; padding-bottom: 100px; }
    .ab-hero__inner { padding: 120px 24px 160px; }
}

/* =============================================================================
   SERVICE CARDS
   ============================================================================= */
.ab-services {
    position: relative;
    z-index: 5;
    padding: 0 0 64px;
}
.ab-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ab-service-card {
    background: var(--ab-white);
    border-radius: var(--ab-radius-lg);
    padding: 40px 32px 36px;
    text-align: center;
    box-shadow: var(--ab-shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ab-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ab-shadow-card-hover);
}
.ab-service-card__icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    color: var(--ab-red);
    margin-bottom: 20px;
}
.ab-service-card__icon i {
    font-size: 4rem;
    color: var(--ab-red);
    /* Duotone fallback colours — these apply when FA Pro is wired up */
    --fa-primary-color: var(--ab-red);
    --fa-secondary-color: #ffb3b3;
    --fa-secondary-opacity: 1;
}
.ab-service-card__title {
    font-size: 1.625rem;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ab-grey-900);
}
.ab-service-card__description {
    color: var(--ab-grey-600);
    margin: 0 0 28px;
    font-size: 0.9375rem;
    flex: 1;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .ab-services__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =============================================================================
   FEATURE SECTIONS
   ============================================================================= */
.ab-feature {
    padding: 96px 0;
    background: var(--ab-white);
}
.ab-feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ab-feature--reverse .ab-feature__media { order: 1; }
.ab-feature--reverse .ab-feature__copy { order: 2; text-align: right; }
.ab-feature--reverse .ab-feature__eyebrow { text-align: right; }
.ab-feature--reverse .ab-feature__body { margin-left: auto; }

.ab-feature__eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--ab-grey-500);
    margin: 0 0 16px;
}
.ab-feature__heading {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
    color: var(--ab-red);
}
.ab-feature__body {
    font-size: 0.9375rem;
    color: var(--ab-grey-700);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 540px;
}
.ab-feature__body em {
    font-style: italic;
    color: var(--ab-red);
}
.ab-feature__body a,
.ab-feature__body strong.highlight {
    color: var(--ab-red);
    font-weight: 600;
}

.ab-feature__media {
    position: relative;
}
.ab-feature__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

@media (max-width: 900px) {
    .ab-feature { padding: 64px 0; }
    .ab-feature__grid { grid-template-columns: 1fr; gap: 32px; }
    .ab-feature--reverse .ab-feature__copy { order: 1; text-align: left; }
    .ab-feature--reverse .ab-feature__media { order: 2; }
    .ab-feature--reverse .ab-feature__eyebrow { text-align: left; }
}

/* =============================================================================
   QUOTE FORM
   ============================================================================= */
.ab-quote {
    padding: 96px 0;
    background: var(--ab-grey-50);
}
.ab-quote__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.ab-quote__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin: 0 0 12px;
    color: var(--ab-grey-900);
}
.ab-quote__lead { color: var(--ab-grey-600); margin: 0; }
.ab-quote__form {
    background: var(--ab-white);
    border-radius: var(--ab-radius-lg);
    box-shadow: var(--ab-shadow-card);
    padding: 40px;
    max-width: 760px;
    margin: 0 auto;
}
.ab-quote__steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 0 36px;
    gap: 8px;
    position: relative;
}
.ab-quote__steps::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: var(--ab-grey-200);
    z-index: 0;
}
.ab-quote__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
    text-align: center;
    gap: 8px;
}
.ab-quote__step-number {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ab-grey-200);
    color: var(--ab-grey-700);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.2s;
}
.ab-quote__step-label { font-size: 0.8125rem; color: var(--ab-grey-500); font-weight: 500; }
.ab-quote__step.is-active .ab-quote__step-number { background: var(--ab-red); color: var(--ab-white); }
.ab-quote__step.is-active .ab-quote__step-label { color: var(--ab-grey-900); font-weight: 600; }
.ab-quote__step.is-done .ab-quote__step-number { background: var(--ab-grey-900); color: var(--ab-white); }

.ab-quote__panel { display: none; border: none; padding: 0; margin: 0; min-width: 0; }
.ab-quote__panel.is-active { display: block; }
.ab-quote__panel > * { min-width: 0; }
.ab-quote__legend {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--ab-grey-900);
    padding: 0;
    display: block;
    width: 100%;
}
.ab-quote__legend .req { color: var(--ab-red); }

.ab-quote__check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
    margin-bottom: 28px;
}
.ab-quote__check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--ab-grey-200);
    border-radius: var(--ab-radius-sm);
    cursor: pointer;
    font-size: 0.9375rem;
    transition: border-color 0.15s, background 0.15s;
    color: var(--ab-grey-900);
}
.ab-quote__check:hover { border-color: var(--ab-grey-300); background: var(--ab-grey-50); }
.ab-quote__check input { accent-color: var(--ab-red); }
.ab-quote__check:has(input:checked) { border-color: var(--ab-red); background: var(--ab-red-soft); }
.ab-quote__size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}
.ab-quote__size {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 16px;
    border: 2px solid var(--ab-grey-200);
    border-radius: var(--ab-radius-md);
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
}
.ab-quote__size input { display: none; }
.ab-quote__size:hover { border-color: var(--ab-grey-300); }
.ab-quote__size:has(input:checked) { border-color: var(--ab-red); background: var(--ab-red-soft); }
.ab-quote__size-label { font-weight: 700; color: var(--ab-grey-900); }
.ab-quote__size-note { font-size: 0.875rem; color: var(--ab-grey-500); }

.ab-quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ab-quote__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.ab-quote__field span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ab-grey-700);
}
.ab-quote__field span em { color: var(--ab-red); font-style: normal; }
.ab-quote__field input,
.ab-quote__field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--ab-grey-300);
    border-radius: var(--ab-radius-sm);
    font: inherit;
    background: var(--ab-white);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.ab-quote__field input:focus,
.ab-quote__field textarea:focus {
    outline: none;
    border-color: var(--ab-red);
    box-shadow: 0 0 0 3px var(--ab-red-soft);
}
.ab-quote__consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 16px 0 24px;
    font-size: 0.875rem;
    color: var(--ab-grey-700);
    line-height: 1.5;
}
.ab-quote__consent input { margin-top: 2px; accent-color: var(--ab-red); }
.ab-quote__consent em { color: var(--ab-red); font-style: normal; }
.ab-quote__actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}
.ab-quote__actions button:disabled { opacity: 0.5; cursor: not-allowed; }
.ab-quote__success {
    text-align: center;
    padding: 32px 0;
}
.ab-quote__success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(10, 138, 10, 0.1);
    color: #0a8a0a;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 700;
}
.ab-quote__error {
    background: #fff0f0;
    border: 1px solid #ffd0d0;
    border-left: 4px solid var(--ab-red);
    color: var(--ab-red-dark);
    padding: 12px 16px;
    border-radius: var(--ab-radius-sm);
    margin-bottom: 16px;
    font-size: 0.9375rem;
}
.ab-quote__honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

@media (max-width: 540px) {
    .ab-quote__row { grid-template-columns: 1fr; }
    .ab-quote__form { padding: 24px; }
    .ab-quote__step-label { display: none; }
}

/* =============================================================================
   CONTACT PAGE
   ============================================================================= */
.ab-contact-hero {
    background: var(--ab-grey-50);
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--ab-grey-200);
}
.ab-contact-hero__eyebrow {
    font-size: 0.875rem;
    color: var(--ab-grey-500);
    text-transform: lowercase;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}
.ab-contact-hero__title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0 0 32px;
    text-transform: uppercase;
    color: var(--ab-grey-900);
}

.ab-contact-channels {
    padding: 80px 0;
    background: var(--ab-white);
}
.ab-contact-channels__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.ab-contact-card {
    background: var(--ab-white);
    border-radius: var(--ab-radius-lg);
    padding: 48px 32px;
    text-align: center;
    color: inherit;
    display: block;
    box-shadow: var(--ab-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.ab-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ab-shadow-card-hover);
}
.ab-contact-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--ab-red);
    display: grid;
    place-items: center;
    font-size: 3rem;
}
.ab-contact-card__icon i {
    color: var(--ab-red);
    --fa-primary-color: var(--ab-red);
    --fa-secondary-color: #ffb3b3;
    --fa-secondary-opacity: 1;
}
.ab-contact-card__title {
    font-size: 1.5rem;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: var(--ab-grey-900);
}
.ab-contact-card__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ab-grey-900);
    margin: 0 0 12px;
    line-height: 1.3;
}
.ab-contact-card__meta {
    color: var(--ab-grey-500);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}
.ab-contact-card__meta strong { color: var(--ab-grey-900); display: block; margin-bottom: 4px; }

.ab-company {
    padding: 80px 0;
    background: var(--ab-grey-50);
}
.ab-company__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.ab-company__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}
.ab-company__detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ab-company__detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ab-grey-500);
}
.ab-company__detail-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ab-grey-900);
    font-style: italic;
}
.ab-company__map {
    border-radius: var(--ab-radius-lg);
    overflow: hidden;
    box-shadow: var(--ab-shadow-card);
    aspect-ratio: 4 / 3;
    width: 100%;
}
.ab-company__map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 900px) {
    .ab-company__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.ab-cta {
    background: var(--ab-cta-bg);
    color: var(--ab-white);
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: visible;
}
.ab-cta__inner {
    max-width: var(--ab-container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.ab-cta__eyebrow {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 12px;
    letter-spacing: 0.02em;
    font-weight: 400;
}
.ab-cta__title {
    color: var(--ab-white);
    font-size: clamp(2rem, 4vw, 2.875rem);
    margin: 0 0 32px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.ab-cta__media {
    position: relative;
}
.ab-cta__media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
    .ab-cta {
        padding: 80px 0 64px;
        clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
    }
    .ab-cta__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.ab-footer {
    background: var(--ab-footer-bg);
    color: var(--ab-grey-200);
    padding: 64px 0 32px;
    font-size: 0.9375rem;
}
.ab-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px;
}
.ab-footer__col-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ab-white);
    margin: 0 0 20px;
}
.ab-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ab-footer__col a {
    color: var(--ab-grey-200);
    font-size: 0.9rem;
}
.ab-footer__col a:hover { color: var(--ab-white); }

.ab-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ab-footer__badge img,
.ab-footer__badge svg {
    height: 44px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.ab-footer__badge:hover img,
.ab-footer__badge:hover svg { opacity: 1; }

.ab-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 32px;
}
.ab-footer__legal {
    font-size: 0.8125rem;
    color: var(--ab-grey-300);
    line-height: 1.6;
}
.ab-footer__legal strong { color: var(--ab-white); display: block; margin-bottom: 6px; letter-spacing: 0.05em; }
.ab-footer__right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.ab-footer__social,
.ab-footer__regions {
    display: flex;
    gap: 12px;
}
.ab-footer__social a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--ab-white);
    transition: all 0.2s;
}
.ab-footer__social a:hover { background: var(--ab-red); color: var(--ab-white); }
.ab-footer__social i { font-size: 0.95rem; }
.ab-footer__regions a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.2s;
}
.ab-footer__regions a:hover { background: var(--ab-white); }
.ab-footer__regions img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }

@media (max-width: 768px) {
    .ab-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .ab-footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .ab-footer__grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   MARQUEE — fixed scrolling banner at bottom of viewport
   ============================================================================= */
.ab-marquee {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    height: var(--ab-marquee-height);
    background: var(--ab-red);
    color: var(--ab-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.10);
}
.ab-marquee__track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    align-items: center;
    animation: ab-marquee-scroll 40s linear infinite;
    padding-left: 64px;
}
@keyframes ab-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ab-marquee:hover .ab-marquee__track { animation-play-state: paused; }
.ab-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ab-white);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}
.ab-marquee__item:hover { color: var(--ab-white); text-decoration: underline; }
.ab-marquee__item i { font-size: 1rem; }
.ab-marquee__item strong { font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
    .ab-marquee__track { animation: none; }
}
