/* ═══════════════════════════════════════════════════════
   A1 Tyres & AutoCentre - Stylesheet
   Clean, premium automotive design
   Red accent (#D4002A) + Deep Teal (#0C4054) + White
   ═══════════════════════════════════════════════════════ */

:root {
    --red: #D4002A;
    --red-dark: #A80022;
    --red-light: #E8264D;
    --teal: #0C4054;
    --teal-dark: #072D3B;
    --teal-mid: #0E5570;
    --teal-light: #148AAD;
    --dark: #0F172A;
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-500: #94A3B8;
    --gray-400: #CBD5E1;
    --gray-300: #E2E8F0;
    --gray-200: #F1F5F9;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
    --shadow-xl: 0 25px 65px rgba(0,0,0,0.12);
    --radius: 6px;
    --radius-lg: 10px;
    --radius-xl: 14px;
    --radius-2xl: 20px;
    --transition: 0.25s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 18px; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.05rem; margin-bottom: 10px; }

p { margin-bottom: 16px; color: var(--gray-700); }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 16px 22px; }

/* ── Container ──────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.01em;
}

.btn:hover { text-decoration: none; }

.btn--primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn--primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(212,0,42,0.3);
}

.btn--secondary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.btn--secondary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray-300);
}
.btn--outline:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.btn--white:hover {
    background: var(--gray-100);
    color: var(--red);
    transform: translateY(-1px);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

.btn--lg { padding: 14px 32px; font-size: 0.9375rem; }
.btn--sm { padding: 7px 16px; font-size: 0.8rem; }
.btn--block { width: 100%; }

/* ── Top Bar ────────────────────────────────────────── */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar__left, .top-bar__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar__link {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar__link:hover { color: var(--red-light); }

.top-bar__link i, .top-bar__text i, .top-bar__emergency i { color: var(--red-light); }

.top-bar__divider { opacity: 0.3; }

.top-bar__text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
}

.top-bar__emergency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red-light);
    font-weight: 600;
}

.top-bar__social {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    transition: all var(--transition);
    font-size: 0.85rem;
}

.top-bar__social:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* ── Header ─────────────────────────────────────────── */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
    overflow: visible;
}

.header.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
    border-color: transparent;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
}

.header__logo {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header__logo img {
    height: 104px;
    width: auto;
    display: block;
    transform: translateY(16px);
    transition: height var(--transition), transform var(--transition);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}

.header.scrolled .header__logo img {
    height: 88px;
    transform: translateY(10px);
}

/* ── Navigation ─────────────────────────────────────── */
.nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.nav__item { position: relative; }

.nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

.nav__link:hover, .nav__item.active > .nav__link {
    color: var(--red);
    background: var(--gray-100);
}

.nav__link--cta {
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    margin-left: 6px;
}

.nav__link--cta:hover {
    background: var(--red-dark);
    color: var(--white);
    box-shadow: 0 6px 14px rgba(212,0,42,0.3);
}

.nav__link i.fa-chevron-down { font-size: 0.65rem; opacity: 0.5; }

.nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    margin: 6px 0 0;
    padding: 8px;
    min-width: 220px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    z-index: 100;
}

/* Invisible hover-bridge — fills the 6px gap above the dropdown so the cursor
   stays "over" something hoverable while crossing from the parent menu item.
   Without this the dropdown disappears the moment the cursor enters the gap. */
.nav__dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav__item--dropdown:hover > .nav__dropdown,
.nav__item--dropdown:focus-within > .nav__dropdown { display: block; }

.nav__dropdown li a {
    display: block;
    padding: 9px 14px;
    color: var(--gray-800);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav__dropdown li a:hover {
    background: var(--gray-100);
    color: var(--red);
    padding-left: 18px;
}

/* ── Mobile Nav ─────────────────────────────────────── */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-900);
    transition: all var(--transition);
    border-radius: 2px;
}

.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav (rebuilt) ───────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 88%;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    box-shadow: -12px 0 40px rgba(15,23,42,0.22);
    color: var(--gray-900);
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active { transform: translateX(0); }

/* — Drawer header (sticky) — */
.mobile-nav__header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    z-index: 2;
}

.mobile-nav__header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--red);
}

.mobile-nav__brand {
    display: flex;
    align-items: center;
    flex: 1;
}

.mobile-nav__brand img {
    height: 48px;
    width: auto;
    display: block;
}

.mobile-nav__close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: var(--gray-100);
    color: var(--gray-700);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.mobile-nav__close:hover,
.mobile-nav__close:focus {
    background: var(--red);
    color: var(--white);
    transform: rotate(90deg);
}

/* — Drawer body (scrolling menu) — */
.mobile-nav__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    overflow-y: auto;
}

.mobile-nav__link,
.mobile-nav__group > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    color: var(--gray-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    list-style: none;
    border-left: 3px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.mobile-nav__link + .mobile-nav__link,
.mobile-nav__group + .mobile-nav__link,
.mobile-nav__link + .mobile-nav__group,
.mobile-nav__group + .mobile-nav__group {
    border-top: 1px solid var(--gray-100);
}

.mobile-nav__body > .mobile-nav__link::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: color var(--transition), transform var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus,
.mobile-nav__group > summary:hover,
.mobile-nav__group > summary:focus {
    background: var(--gray-100);
    color: var(--red);
    border-left-color: var(--red);
}

.mobile-nav__link:hover::after,
.mobile-nav__link:focus::after {
    color: var(--red);
    transform: translateX(3px);
}

/* — Collapsible groups — */
.mobile-nav__group > summary::-webkit-details-marker { display: none; }
.mobile-nav__group > summary::marker { content: ''; }

.mobile-nav__chevron {
    font-size: 0.78rem;
    color: var(--gray-500);
    transition: transform 0.25s ease, color var(--transition);
}

.mobile-nav__group[open] > summary {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(212,0,42,0.05);
}

.mobile-nav__group[open] > summary .mobile-nav__chevron {
    transform: rotate(180deg);
    color: var(--red);
}

.mobile-nav__sub {
    display: flex;
    flex-direction: column;
    padding: 4px 0 10px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav__sub a {
    display: flex;
    align-items: center;
    padding: 11px 22px 11px 42px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), padding var(--transition);
    position: relative;
}

.mobile-nav__sub a::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--gray-400);
    transform: translateY(-50%);
    transition: width var(--transition), background var(--transition);
}

.mobile-nav__sub a:hover,
.mobile-nav__sub a:focus {
    background: var(--white);
    color: var(--red);
    padding-left: 48px;
}

.mobile-nav__sub a:hover::before,
.mobile-nav__sub a:focus::before {
    background: var(--red);
    width: 12px;
}

/* — Drawer footer (sticky CTA + phone) — */
.mobile-nav__footer {
    padding: 16px 18px 22px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.mobile-nav__cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--red);
    color: var(--white) !important;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 14px rgba(212,0,42,0.3);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.mobile-nav__cta:hover,
.mobile-nav__cta:focus {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(212,0,42,0.4);
}

.mobile-nav__phone {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    text-decoration: none;
    transition: box-shadow var(--transition), transform var(--transition);
}

.mobile-nav__phone:hover,
.mobile-nav__phone:focus {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.mobile-nav__phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white) !important;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.mobile-nav__phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.mobile-nav__phone-text strong {
    color: var(--gray-900) !important;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
}

.mobile-nav__phone-text small {
    color: var(--red) !important;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.mobile-nav__hours {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 0 4px;
    font-size: 0.76rem;
    color: var(--gray-600);
}

.mobile-nav__hours i { color: var(--red); }

/* — Backdrop overlay — */
.mobile-overlay { background: rgba(15,23,42,0.35); z-index: 9998; }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active { display: block; opacity: 1; }

/* ── Hero Slider ────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: stretch;
}

.hero__slides {
    position: relative;
    flex: 1;
    min-height: 620px;
}

.hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0s linear 0.9s;
    z-index: 1;
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.9s ease, visibility 0s linear 0s;
    z-index: 2;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
    z-index: 1;
}

.hero__slide.is-active .hero__bg { transform: scale(1.12); }

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15,23,42,0.88) 0%, rgba(12,64,84,0.72) 45%, rgba(12,64,84,0.35) 100%),
        linear-gradient(180deg, rgba(15,23,42,0.25) 0%, rgba(15,23,42,0.55) 100%);
    z-index: 2;
}

.hero__slide .container { position: relative; z-index: 3; width: 100%; }

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 640px);
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,0,42,0.18);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212,0,42,0.45);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero__badge i { color: var(--red-light); }

.hero__title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero__title span { color: var(--red-light); }

.hero__subtitle {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
    font-weight: 400;
    color: rgba(255,255,255,0.82);
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__trust {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    opacity: 0.75;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.hero__trust-item i { color: var(--red-light); font-size: 0.9rem; }

.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(15,23,42,0.45);
    color: var(--white);
    cursor: pointer;
    z-index: 5;
    display: grid;
    place-items: center;
    font-size: 1rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}

.hero__arrow:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.05);
}

.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

.hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero__dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    border: 0;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), width var(--transition);
}

.hero__dot.is-active {
    background: var(--red);
    width: 48px;
}

.hero__dot:hover { background: rgba(255,255,255,0.55); }
.hero__dot.is-active:hover { background: var(--red); }

/* ── Section Styles ─────────────────────────────────── */
.section {
    padding: 90px 0;
    position: relative;
}

.section--gray { background: var(--gray-100); }

.section--dark {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}

.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--dark .section__label { color: var(--red-light); }
.section--dark .section__label i { color: var(--red-light); }

.section--teal {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
}

.section--teal h2, .section--teal h3 { color: var(--white); }
.section--teal p { color: rgba(255,255,255,0.82); }
.section--teal .section__label { color: var(--red-light); }
.section--teal .section__label i { color: var(--red-light); }

.section--gradient { background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%); }

.section--teal-soft {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
}
.section--teal-soft h2, .section--teal-soft h3, .section--teal-soft .section__label { color: var(--white); }
.section--teal-soft p { color: rgba(255,255,255,0.82); }

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section__header p { font-size: 1.05rem; color: var(--gray-600); }
.section--dark .section__header p, .section--teal .section__header p { color: rgba(255,255,255,0.75); }

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.section__label i { color: var(--red); }

/* ── Page Hero ──────────────────────────────────────── */
.page-hero {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--dark) 100%);
}

.page-hero--image {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero--image::before {
    background:
        linear-gradient(90deg, rgba(15,23,42,0.92) 0%, rgba(12,64,84,0.78) 55%, rgba(12,64,84,0.45) 100%),
        linear-gradient(180deg, rgba(15,23,42,0.15) 0%, rgba(15,23,42,0.55) 100%);
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    position: relative;
}

.page-hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--red);
    margin-top: 18px;
    border-radius: 2px;
}

.page-hero p {
    font-size: 1.05rem;
    opacity: 0.82;
    max-width: 620px;
    color: rgba(255,255,255,0.85);
    margin-top: 14px;
}

/* ── Breadcrumb ─────────────────────────────────────── */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}

.breadcrumb a { color: rgba(255,255,255,0.85); font-weight: 500; }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb li span { opacity: 0.4; margin: 0 2px; }

/* ── Services Grid ──────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--gray-100);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card__image img { transform: scale(1.06); }

.service-card__icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 14px rgba(212,0,42,0.35);
    z-index: 2;
}

.service-card__body { padding: 32px 26px 26px; }

.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card__title a { color: var(--gray-900); }
.service-card__title a:hover { color: var(--red); }

.service-card__text {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap var(--transition);
}

.service-card__link:hover { gap: 10px; color: var(--red-dark); }

/* ── Feature Cards ──────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    background: rgba(255,255,255,0.06);
}

.section:not(.section--dark):not(.section--teal) .feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.section:not(.section--dark):not(.section--teal) .feature-card:hover { box-shadow: var(--shadow-md); }

.feature-card__icon {
    width: 52px;
    height: 52px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
    box-shadow: 0 6px 14px rgba(212,0,42,0.3);
}

.feature-card__title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.section:not(.section--dark):not(.section--teal) .feature-card__title { color: var(--gray-900); }

.feature-card__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.7;
}

.section:not(.section--dark):not(.section--teal) .feature-card__text { color: var(--gray-600); }

/* ── Stats ──────────────────────────────────────────── */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
}

.section:not(.section--dark):not(.section--teal) .stat__number { color: var(--red); }

.stat__label {
    font-size: 0.8rem;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.section:not(.section--dark):not(.section--teal) .stat__label { color: var(--gray-600); }

/* ── Tier Cards ─────────────────────────────────────── */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tier-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.tier-card--featured {
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(212,0,42,0.1);
}

.tier-card--featured:hover { border-color: var(--red); }

.tier-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 10px rgba(212,0,42,0.35);
}

.tier-card__header {
    padding: 32px 28px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.tier-card--featured .tier-card__header {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.tier-card--featured .tier-card__header h3,
.tier-card--featured .tier-card__points { color: var(--white); }

.tier-card__header h3 { margin-bottom: 6px; }

.tier-card__points {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
}

.tier-card__body { padding: 24px 28px; flex: 1; }

.tier-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tier-card__list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.tier-card__list li:last-child { border-bottom: 0; }

.tier-card__list li i {
    color: var(--red);
    font-size: 0.78rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.tier-card__footer { padding: 0 28px 28px; }

/* ── Posts Grid ─────────────────────────────────────── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.post-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.post-card__image {
    aspect-ratio: 16 / 10;
    background: var(--gray-100);
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-card__image img { transform: scale(1.05); }

.post-card__body { padding: 24px 22px; }

.post-card__meta {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.post-card__meta i { color: var(--red); margin-right: 4px; }

.post-card__title {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.post-card__title a { color: var(--gray-900); }
.post-card__title a:hover { color: var(--red); }

.post-card__excerpt {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 14px;
    line-height: 1.7;
}

/* ── Content Grid (main + sidebar) ──────────────────── */
.content__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

.content__main { min-width: 0; }

.content__main h2 {
    font-size: 1.7rem;
    margin-top: 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}

.content__main h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--red);
}

.content__main h3 {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-900);
}

.content__main h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
}

.content__main strong { color: var(--gray-900); }

/* ── Sidebar ────────────────────────────────────────── */
.sidebar { position: sticky; top: 100px; }

.sidebar__contact {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    padding: 28px 26px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.sidebar__contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.sidebar__contact h3 { color: var(--white); margin-bottom: 8px; }
.sidebar__contact p { color: rgba(255,255,255,0.82); margin-bottom: 18px; font-size: 0.9rem; }

.sidebar__widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 24px 22px;
    margin-bottom: 20px;
    border-top: 3px solid var(--red);
}

.sidebar__widget h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-900);
}

.sidebar__widget ul { list-style: none; margin: 0; padding: 0; }

.sidebar__widget ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: color var(--transition), padding var(--transition);
}

.sidebar__widget ul li:last-child a { border-bottom: 0; }

.sidebar__widget ul li a i { color: var(--red); font-size: 0.75rem; }

.sidebar__widget ul li a:hover {
    color: var(--red);
    padding-left: 6px;
}

/* ── Two-Col Content ───────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

/* ── Checklist ──────────────────────────────────────── */
.checklist {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px 20px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    border-left: 3px solid var(--red);
    transition: background var(--transition), transform var(--transition);
}

.checklist li:hover { background: var(--white); transform: translateX(3px); box-shadow: var(--shadow-sm); }

.checklist li i { color: var(--red); font-size: 0.85rem; }

/* ── Contact / Forms ────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
}

.required { color: var(--red); }

.form-control {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font);
    font-size: 0.95rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
    outline: 0;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(212,0,42,0.1);
}

textarea.form-control { min-height: 140px; resize: vertical; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--red);
    transition: box-shadow var(--transition), transform var(--transition);
}

.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.contact-info-card__icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.contact-info-card__text h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-card__text p { font-size: 0.88rem; color: var(--gray-700); margin: 0; }
.contact-info-card__text a { color: var(--red); font-weight: 600; }

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ── Discount Badges ────────────────────────────────── */
.discount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin: 32px 0;
}

.discount-badge {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    transition: all var(--transition);
    border-top: 3px solid var(--red);
}

.discount-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}

.discount-badge i {
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 10px;
}

.discount-badge h4 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-900);
}

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.cta-banner__text h2 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1.6rem;
}

.cta-banner__text p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; }

.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Alerts ─────────────────────────────────────────── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid;
}

.alert--success { background: #ECFDF5; color: #065F46; border-color: #10B981; }
.alert--error   { background: #FEF2F2; color: #991B1B; border-color: var(--red); }
.alert--info    { background: #EFF6FF; color: #1E40AF; border-color: #3B82F6; }

/* ── Callout Box ────────────────────────────────────── */
.callout {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 26px;
    background: var(--gray-100);
    border-left: 4px solid var(--red);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 28px 0;
}

.callout--teal { border-left-color: var(--teal); }
.callout--dark { background: var(--dark); color: rgba(255,255,255,0.85); border-left-color: var(--red); }
.callout--dark strong, .callout--dark h3, .callout--dark .callout__title { color: var(--white); }
.callout--red {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    border-left: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(212,0,42,0.25);
}
.callout--red,
.callout--red *,
.callout--red p,
.callout--red strong,
.callout--red em,
.callout--red .callout__title,
.callout--red a,
.callout--red a:link,
.callout--red a:visited,
.callout--red a:hover,
.callout--red a:active,
.callout--red a[href^="tel"],
.callout--red a[href^="mailto"] { color: #ffffff !important; }
.callout--red a { text-decoration: underline; }
.callout--red a:hover { opacity: 0.85; }

.callout--dark,
.callout--dark *,
.callout--dark p,
.callout--dark strong,
.callout--dark em,
.callout--dark a,
.callout--dark a:link,
.callout--dark a:visited,
.callout--dark a[href^="tel"],
.callout--dark a[href^="mailto"] { color: #ffffff !important; }

/* Same treatment for any red/dark teal banner with links inside.
   Exclude .btn — button variants control their own colour against their own background. */
.cta-banner a[href^="tel"]:not(.btn),
.cta-banner a[href^="mailto"]:not(.btn),
.sidebar__contact a[href^="tel"]:not(.btn),
.sidebar__contact a[href^="mailto"]:not(.btn),
.page-hero a[href^="tel"]:not(.btn),
.page-hero a[href^="mailto"]:not(.btn),
.section--dark a[href^="tel"]:not(.btn),
.section--dark a[href^="mailto"]:not(.btn),
.section--teal a[href^="tel"]:not(.btn),
.section--teal a[href^="mailto"]:not(.btn) { color: #ffffff !important; }

/* Belt-and-braces: any .btn--white phone/mail link, anywhere — keep dark text */
a.btn--white[href^="tel"],
a.btn--white[href^="mailto"] { color: var(--dark) !important; }
a.btn--white[href^="tel"]:hover,
a.btn--white[href^="mailto"]:hover { color: var(--red) !important; }

.callout__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 1.05rem;
}

.callout--teal .callout__icon { background: var(--teal); }
.callout--red .callout__icon { background: rgba(255,255,255,0.18); }

.callout__body { flex: 1; }
.callout__body > *:first-child { margin-top: 0; }
.callout__body > *:last-child { margin-bottom: 0; }

.callout__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-900);
}

/* ── Fact Strip ─────────────────────────────────────── */
.fact-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    background: var(--teal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 32px 0;
    box-shadow: var(--shadow-md);
    position: relative;
}

.fact-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.fact-strip__item {
    padding: 28px 22px;
    text-align: center;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.fact-strip__item:last-child { border-right: 0; }

.fact-strip__number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.fact-strip__number span { color: var(--red-light); }

.fact-strip__label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
    font-weight: 600;
}

/* ── Process Steps ──────────────────────────────────── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 36px 0;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 32px 24px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--red);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.process-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: -16px;
    left: 24px;
    min-width: 44px;
    height: 32px;
    padding: 0 10px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 10px rgba(212,0,42,0.3);
}

.process-step h4 { margin: 8px 0 10px; font-size: 1.05rem; color: var(--gray-900); }
.process-step p { font-size: 0.9rem; color: var(--gray-600); margin: 0; line-height: 1.65; }

/* ── Brand Strip ────────────────────────────────────── */
.brand-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 0;
    margin: 24px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.brand-strip__item {
    padding: 10px 18px;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--gray-800);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all var(--transition);
    cursor: default;
}

.brand-strip__item:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ── FAQ Accordion ──────────────────────────────────── */
.faq {
    margin: 32px 0;
    border-top: 1px solid var(--gray-200);
}

.faq__item {
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
}

.faq__item > summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
    transition: color var(--transition);
}

.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::marker { content: ''; }

.faq__item > summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.faq__item[open] > summary { color: var(--red); }

.faq__item[open] > summary::after {
    content: '\f068';
    background: var(--red);
    color: var(--white);
}

.faq__item > summary:hover { color: var(--red); }
.faq__item > summary:hover::after { background: var(--red); color: var(--white); }

.faq__body {
    padding: 0 0 22px;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq__body > *:first-child { margin-top: 0; }
.faq__body > *:last-child { margin-bottom: 0; }

/* ── Info Tile Grid ─────────────────────────────────── */
.info-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 32px 0;
}

.info-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 3px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--gray-800);
    text-decoration: none;
    transition: all var(--transition);
}

.info-tile:hover {
    border-color: var(--gray-300);
    border-left-color: var(--red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--gray-800);
}

.info-tile__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gray-100);
    color: var(--red);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1rem;
    transition: all var(--transition);
}

.info-tile:hover .info-tile__icon { background: var(--red); color: var(--white); }

.info-tile__text { display: flex; flex-direction: column; gap: 2px; }

.info-tile__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-900);
    line-height: 1.3;
}

.info-tile__meta { font-size: 0.76rem; color: var(--gray-600); }

/* ── Split Panel ────────────────────────────────────── */
.split-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin: 36px 0;
    position: relative;
}

.split-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--red);
    z-index: 2;
}

.split-panel--reverse { direction: rtl; }
.split-panel--reverse > * { direction: ltr; }

.split-panel__image {
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

.split-panel__content {
    padding: 36px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-panel__content h3 { margin-top: 0; font-size: 1.4rem; color: var(--gray-900); }
.split-panel__content > *:last-child { margin-bottom: 0; }

/* ── Inline Content Image ───────────────────────────── */
.inline-image {
    margin: 32px 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.inline-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.inline-image:hover img { transform: scale(1.03); }

.inline-image figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,0.85) 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.inline-image figcaption::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--red);
    vertical-align: middle;
    margin-right: 10px;
}

/* ── Image Grid ─────────────────────────────────────── */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.image-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.image-grid img:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ── Footer ─────────────────────────────────────────── */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer__logo {
    margin-bottom: 16px;
    opacity: 0.95;
    background: #fff;
    padding: 8px 12px;
    border-radius: var(--radius);
    display: block;
    max-width: 190px;
}

.footer__about { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; color: var(--white); }

.footer__social { display: flex; gap: 8px; }

.footer__social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    transition: all var(--transition);
}

.footer__social a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__heading {
    font-size: 0.95rem;
    color: #ffffff !important;
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
}

.footer__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.footer__heading--mt { margin-top: 30px; }

.footer__links { list-style: none; margin: 0; padding: 0; }

.footer__links li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.footer__links li a i { font-size: 0.7rem; color: var(--red); }

.footer__links li a:hover { color: var(--white); padding-left: 5px; }

.footer__contact { list-style: none; margin: 0; padding: 0; }

.footer__contact li {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.footer__contact li i {
    color: var(--red);
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
}

.footer__contact li a { color: rgba(255,255,255,0.85); }
.footer__contact li a:hover { color: var(--red-light); }
.footer__contact small { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

.footer__bottom {
    background: rgba(0,0,0,0.25);
    padding: 22px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.footer__bottom-inner p { margin: 0; }

/* ── Cookie Consent ─────────────────────────────────── */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 18px 0;
    z-index: 9999;
    border-top: 2px solid var(--red);
}

.cookie-consent__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent__text p { font-size: 0.82rem; color: #ffffff; opacity: 1; margin: 0; }
.cookie-consent__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav { display: none; }
    .header__burger { display: flex; }
    .mobile-nav { display: flex; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__subtitle { margin: 0 auto 36px; }
    .hero__actions { justify-content: center; }
    .hero__trust { justify-content: center; flex-wrap: wrap; }
    .hero__arrow { width: 40px; height: 40px; }
    .hero__arrow--prev { left: 12px; }
    .hero__arrow--next { right: 12px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .content__grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .two-col--reverse { direction: ltr; }
    .tier-grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .split-panel { grid-template-columns: 1fr; }
    .split-panel--reverse { direction: ltr; }
    .split-panel__image { min-height: 220px; }
    .split-panel__content { padding: 28px 24px; }
    .sidebar { position: static; }
}

@media (max-width: 640px) {
    .top-bar__left .top-bar__text { display: none; }
    .top-bar__divider { display: none; }
    .header__inner { height: 60px; }
    .header__logo img { height: 80px; transform: translateY(12px); }
    .header.scrolled .header__logo img { height: 68px; transform: translateY(8px); }
    .section { padding: 64px 0; }
    .hero { min-height: 420px; }
    .hero__inner { padding: 50px 0; }
    .cta-banner__inner { flex-direction: column; text-align: center; }
    .cta-banner__actions { justify-content: center; }
    .footer__grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .posts-grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
    .image-grid { grid-template-columns: 1fr 1fr; }
    .fact-strip { grid-template-columns: 1fr 1fr; }
    .fact-strip__item:nth-child(2n) { border-right: 0; }
    .fact-strip__item { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
