/* ============================================================
   Flat Tyre Service — Figma redesign styles
   Fonts: Space Grotesk (headings), IBM Plex Sans (body),
          IBM Plex Mono (eyebrow / mono accents)
   Prefix: ft-  (scoped to the redesigned sections only)
   ============================================================ */

:root {
    --ft-red: #e31e25;
    --ft-red-dark: #c4161c;
    --ft-yellow: #ffd400;
    --ft-black: #111111;
    --ft-dark-bg: #0d0d0d;
    --ft-grey-bg: #f5f5f6;
    --ft-text: #1a1a1a;
    --ft-muted: #5f6368;
    --ft-muted-dark: #b5b5b5;
    --ft-border: #ececec;
    --ft-font-heading: 'Space Grotesk', sans-serif;
    --ft-font-body: 'IBM Plex Sans', sans-serif;
    --ft-font-mono: 'IBM Plex Mono', monospace;
}

.ft-section {
    font-family: var(--ft-font-body);
    padding: 90px 0;
}

/* ---------- Shared: eyebrow label ---------- */
.ft-eyebrow {
    font-family: var(--ft-font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ft-red);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.ft-eyebrow--dot::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ft-red);
    flex: 0 0 auto;
}

/* ---------- Shared: section heading ---------- */
.ft-heading {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--ft-black);
    margin-bottom: 0;
}

.ft-heading .ft-red-text {
    color: var(--ft-red);
}

/* ---------- Shared: buttons ---------- */
.ft-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ft-font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.ft-btn:hover {
    transform: translateY(-2px);
}

.ft-btn-red {
    background: rgb(14, 13, 13);
    color: #ffffff;
    /* box-shadow: 0 12px 26px rgba(227, 30, 37, .35); */
}

.ft-btn-red:hover {
    background: rgba(22, 2, 2, 0.35);
    color: #fff;
}

.ft-btn-black {
    background: var(--ft-black);
    color: #fff;
}

.ft-btn-black:hover {
    background: #000;
    color: #fff;
}

.ft-btn-black .fa-whatsapp {
    color: #25d366;
    font-size: 19px;
}

/* ============================================================
   1. HERO
   ============================================================ */
.ft-hero {
    background: #fff;
    padding-top: 120px;
    padding-bottom: 0;
}

.ft-hero h1 {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -1.5px;
    color: var(--ft-black);
    margin-bottom: 26px;
}

.ft-hero h1 .ft-red-text {
    color: var(--ft-red);
}

.ft-hero-rule {
    width: 84px;
    height: 6px;
    background: var(--ft-yellow);
    border: none;
    opacity: 1;
    margin: 0 0 28px;
}

.ft-hero-sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ft-muted);
    max-width: 460px;
    margin-bottom: 34px;
}

.ft-hero-sub strong {
    color: var(--ft-black);
    font-weight: 600;
}

.ft-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    font-family: var(--ft-font-mono);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--ft-muted);
}

.ft-hero-trust .fa-star {
    color: var(--ft-red);
    font-size: 12px;
    margin-right: 6px;
}

.ft-hero-trust .ft-trust-sep {
    color: #c9c9c9;
}

/* Hero image + arrival overlay */
.ft-hero-media {
    position: relative;
    overflow: hidden;
}

.ft-hero-media img {
    display: block;
    width: 100%;
    height: clamp(420px, 42vw, 620px);
    object-fit: cover;
}

.ft-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, 0) 45%);
    pointer-events: none;
}

.ft-hero-arrival {
    position: absolute;
    left: 30px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
}

.ft-hero-arrival-label {
    font-family: var(--ft-font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ft-hero-arrival-time {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: clamp(52px, 5.5vw, 84px);
    line-height: 1;
    letter-spacing: -2px;
}

.ft-hero-arrival-time span {
    font-size: .38em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 6px;
}

/* ============================================================
   2. HOW IT WORKS — three steps
   ============================================================ */
.ft-steps {
    margin-top: 56px;
}

.ft-step {
    border-top: 3px solid var(--ft-red);
    padding-top: 34px;
    height: 100%;
}

.ft-step-num {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.ft-step-num b {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: 46px;
    line-height: 1;
    color: var(--ft-red);
}

.ft-step-num span {
    font-family: var(--ft-font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #9b9b9b;
    text-transform: uppercase;
}

.ft-step h3 {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--ft-black);
    margin-bottom: 10px;
}

.ft-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ft-muted);
    margin-bottom: 0;
}

/* ============================================================
   3. WHERE WE COME TO YOU — location cards
   ============================================================ */
.ft-where {
    background: var(--ft-grey-bg);
}

.ft-where-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 24px;
    height: 100%;
    min-height: 185px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 26px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.ft-where-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--ft-red);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.ft-where-card h3 {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.35;
    color: var(--ft-black);
    margin-bottom: 0;
}

/* ============================================================
   4. WHAT WE DO ON-SITE — dark list
   ============================================================ */
.ft-onsite {
    background: var(--ft-dark-bg);
}

.ft-onsite .ft-heading {
    color: #fff;
}

.ft-onsite-list {
    margin-top: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ft-onsite-row {
    display: grid;
    grid-template-columns: 64px 96px minmax(220px, 300px) 1fr;
    gap: 28px;
    align-items: center;
    padding: 38px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.ft-onsite-num {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: 32px;
    color: var(--ft-red);
}

.ft-onsite-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(227, 30, 37, .12);
    border: 1px solid rgba(227, 30, 37, .3);
    color: var(--ft-red);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-onsite-row h3 {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: 25px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0;
}

.ft-onsite-row p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ft-muted-dark);
    max-width: 760px;
    margin-bottom: 0;
}

/* ============================================================
   5. TYRE BRANDS — marquee + vehicles pill
   ============================================================ */
.ft-brands {
    background: #fff;
    text-align: center;
}

.ft-brands-sub {
    font-size: 17px;
    color: var(--ft-muted);
    margin: 16px auto 48px;
}

.ft-marquee {
    position: relative;
    overflow: hidden;
    padding: 10px 0 26px;
}

.ft-marquee::before,
.ft-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.ft-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.ft-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.ft-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: ft-marquee-scroll 32s linear infinite;
}

.ft-marquee:hover .ft-marquee-track {
    animation-play-state: paused;
}

@keyframes ft-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ft-brand-card {
    background: #fff;
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
    min-width: 230px;
    height: 110px;
    padding: 20px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.ft-brand-card img {
    max-height: 44px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
}

.ft-vehicle-pill {
    display: inline-block;
    background: var(--ft-yellow);
    color: var(--ft-black);
    font-family: var(--ft-font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 999px;
    margin-top: 22px;
}

/* ============================================================
   6. TABBY BANNER
   ============================================================ */
.ft-tabby {
    background: #fff;
    padding-top: 0;
}

.ft-tabby-banner {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #0a0a0a url('../images/homepage/tabby-section-img.webp') right center / cover no-repeat;
    min-height: 430px;
    display: flex;
    align-items: center;
}

.ft-tabby-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 8, 8, .97) 0%, rgba(8, 8, 8, .88) 38%, rgba(8, 8, 8, .3) 62%, rgba(8, 8, 8, 0) 80%);
}

.ft-tabby-content {
    position: relative;
    z-index: 1;
    padding: 64px 30px 64px 64px;
    max-width: 620px;
}

.ft-tabby-pill {
    display: inline-block;
    background: #38e8ad;
    color: #0a0a0a;
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    padding: 9px 20px 11px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.ft-tabby-content h2 {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 12px;
}

.ft-tabby-sub {
    color: #b9b9b9;
    font-size: 18px;
    margin-bottom: 32px;
}

.ft-tabby .ft-btn .fa-arrow-right {
    font-size: 14px;
}

/* ============================================================
   7. EMERGENCY DISPATCH CTA
   ============================================================ */
.ft-emergency {
    background: var(--ft-red);
    text-align: center;
    padding: 100px 0;
}

.ft-emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    padding: 9px 22px;
    font-family: var(--ft-font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
}

.ft-emergency-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ft-yellow);
    flex: 0 0 auto;
}

.ft-emergency h2 {
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: clamp(38px, 4.8vw, 62px);
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 24px;
}

.ft-emergency p {
    color: rgba(255, 255, 255, .95);
    font-size: 18px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 36px;
}

/* ============================================================
   8. MOBILE FITTING VS THE GARAGE — comparison
   ============================================================ */
.ft-compare {
    background: var(--ft-grey-bg);
}

.ft-compare-wrap {
    position: relative;
    margin-top: 56px;
}

.ft-compare-card {
    border-radius: 22px;
    padding: 32px 38px 18px;
    height: 100%;
}

.ft-compare-card--dark {
    background: #0c0c0c;
    border-top: 6px solid var(--ft-red);
    box-shadow: 0 30px 70px rgba(227, 30, 37, .18);
}

.ft-compare-card--light {
    background: #fff;
    border: 1px solid var(--ft-border);
}

.ft-compare-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: 23px;
    padding-bottom: 22px;
    margin-bottom: 0;
}

.ft-compare-card--dark .ft-compare-name {
    color: #fff;
}

.ft-compare-card--light .ft-compare-name {
    color: #8f8f8f;
}

.ft-compare-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.ft-compare-card--dark .ft-compare-dot {
    background: var(--ft-red);
}

.ft-compare-card--light .ft-compare-dot {
    background: #b5b5b5;
}

.ft-compare-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 0;
}

.ft-compare-card--dark .ft-compare-row {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.ft-compare-card--light .ft-compare-row {
    border-top: 1px solid #efefef;
}

.ft-compare-ico {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: 0 0 auto;
}

.ft-compare-card--dark .ft-compare-ico {
    background: var(--ft-red);
    color: #fff;
}

.ft-compare-card--light .ft-compare-ico {
    background: #ececec;
    color: #9a9a9a;
}

.ft-compare-label {
    font-size: 16px;
}

.ft-compare-card--dark .ft-compare-label {
    color: #fff;
}

.ft-compare-card--light .ft-compare-label {
    color: #444;
}

.ft-compare-val {
    margin-left: auto;
    font-family: var(--ft-font-mono);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.ft-compare-card--dark .ft-compare-val {
    color: #fff;
}

.ft-compare-card--light .ft-compare-val {
    color: #9a9a9a;
}

.ft-compare-vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--ft-yellow);
    color: #111;
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

/* ============================================================
   9. LOCATIONS WE SERVE
   ============================================================ */
.ft-locations {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.ft-locations::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(70, 16, 16, .85) 0%, rgba(46, 10, 10, .8) 34%, rgba(10, 10, 10, 0) 60%);
    pointer-events: none;
}

.ft-locations .container {
    position: relative;
    z-index: 1;
}

.ft-locations-title {
    font-family: 'Anton', var(--ft-font-heading);
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(36px, 3.6vw, 54px);
    line-height: 1.18;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.ft-locations-list {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 3;
    column-gap: 56px;
}

.ft-locations-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    color: #f3f3f3;
    font-size: 17px;
    break-inside: avoid;
}

.ft-locations-list li i {
    color: var(--ft-red);
    font-size: 16px;
    flex: 0 0 auto;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
    .ft-section {
        padding: 64px 0;
    }

    .ft-tabby {
        padding-top: 0;
    }

    .ft-tabby-content {
        padding: 48px 32px;
        max-width: 560px;
    }

    .ft-tabby-banner {
        background-position: 78% center;
    }

    .ft-tabby-banner::before {
        background: linear-gradient(to right, rgba(8, 8, 8, .97) 0%, rgba(8, 8, 8, .9) 55%, rgba(8, 8, 8, .55) 100%);
    }

    .ft-emergency {
        padding: 72px 0;
    }

    .ft-compare-vs {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }

    .ft-locations-title {
        margin-bottom: 40px;
    }

    .ft-locations-list {
        column-count: 2;
        column-gap: 36px;
    }

    .ft-hero {
        padding-top: 120px;
        padding-bottom: 0;
    }

    .ft-hero-media {
        margin-top: 40px;
    }

    .ft-onsite-row {
        grid-template-columns: 48px 72px 1fr;
        gap: 18px;
        row-gap: 14px;
    }

    .ft-onsite-row p {
        grid-column: 1 / -1;
    }

    .ft-onsite-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        font-size: 19px;
    }

    .ft-onsite-row h3 {
        font-size: 21px;
    }
}

@media (max-width: 575px) {
    .ft-hero h1 {
        letter-spacing: -1px;
    }

    /* Trust facts become icon chips instead of a plain stacked list */
    .ft-hero-trust {
        gap: 8px;
        margin-top: 26px;
    }

    .ft-hero-trust .ft-trust-sep {
        display: none;
    }

    .ft-hero-trust > span:not(.ft-trust-sep) {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: #f6f6f7;
        border: 1px solid #ececec;
        border-radius: 999px;
        padding: 8px 14px;
        font-size: 12px;
        letter-spacing: 0.4px;
        color: #333;
        line-height: 1;
    }

    .ft-hero-trust > span:not(.ft-trust-sep) > a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        line-height: 1;
    }

    /* Font Awesome icon before each fact (star already present on the first) */
    .ft-hero-trust > span:not(.ft-trust-sep)::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
        color: var(--ft-red);
    }

    .ft-hero-trust > span:nth-child(1)::before {
        content: none;
    }

    .ft-hero-trust > span:nth-child(3)::before {
        content: "\f058";
        /* circle-check */
    }

    .ft-hero-trust > span:nth-child(5)::before {
        content: "\f017";
        /* clock */
    }

    .ft-hero-trust > span:nth-child(7)::before {
        content: "\f3c5";
        /* location-dot */
    }

    .ft-tabby-content {
        padding: 40px 24px;
    }

    .ft-compare-card {
        padding: 26px 24px 12px;
    }

    .ft-locations-list {
        column-count: 2;
        column-gap: 24px;
    }

    .ft-hero-media img {
        height: 380px;
    }

    .ft-hero-arrival {
        left: 20px;
        bottom: 18px;
    }

    .ft-btn {
        padding: 14px 22px;
        font-size: 15px;
    }

    .ft-where-card {
        min-height: 0;
        gap: 20px;
    }

    .ft-brand-card {
        min-width: 180px;
        height: 92px;
        padding: 16px 26px;
    }
}

/* ---------- Tyre Size WhatsApp Banner ---------- */
.ft-tyre-size-banner {
    background: var(--ft-dark-bg);
    padding: 32px 0;
    text-align: center;
}

.ft-tyre-size-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ft-tyre-size-main {
    font-family: var(--ft-font-body);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ft-tyre-size-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ft-yellow);
    color: var(--ft-black);
    font-family: var(--ft-font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    line-height: 1;
}

.ft-tyre-size-wa {
    color: var(--ft-yellow);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color .2s ease;
}

.ft-tyre-size-wa:hover {
    color: #ffe94d;
}

.ft-tyre-size-sub {
    font-family: var(--ft-font-body);
    font-size: 13px;
    color: var(--ft-muted-dark);
    margin: 0;
}

@media (max-width: 575.98px) {
    .ft-tyre-size-banner {
        padding: 24px 0;
    }

    .ft-tyre-size-main {
        font-size: 14px;
        gap: 8px;
    }

    .ft-tyre-size-sub {
        font-size: 12px;
    }
}

/* ---------- Why Choose Us ---------- */
.ft-why {
    background: #fff;
}

.ft-why .ft-heading {
    margin-bottom: 48px;
}

.ft-why-grid {
    margin-top: 8px;
}

.ft-why-card {
    background: #f5f5f6;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ft-why-icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ft-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    margin-top: 2px;
}

.ft-why-title {
    font-family: var(--ft-font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--ft-black);
    margin: 0 0 6px;
}

.ft-why-desc {
    font-family: var(--ft-font-body);
    font-size: 14px;
    color: var(--ft-muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 767.98px) {
    .ft-why-card {
        padding: 24px 20px;
    }

    .ft-why .ft-heading {
        margin-bottom: 32px;
    }
}

/* ---------- When Can a Tyre Be Repaired ---------- */
.ft-when {
    background: var(--ft-grey-bg);
}

.ft-when .ft-heading {
    margin-bottom: 16px;
}

.ft-when-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    text-align: center;
}

.ft-when-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ft-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.ft-when-card h3 {
    font-family: var(--ft-font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--ft-black);
    margin-bottom: 10px;
}

.ft-when-card p {
    font-family: var(--ft-font-body);
    font-size: 14px;
    color: var(--ft-muted);
    line-height: 1.6;
    margin: 0;
}

.ft-when-disclaimer {
    margin-top: 40px;
    padding: 24px 28px;
    background: #fff;
    border-left: 4px solid var(--ft-red);
    border-radius: 0 12px 12px 0;
}

.ft-when-disclaimer p {
    font-family: var(--ft-font-body);
    font-size: 15px;
    color: var(--ft-muted);
    line-height: 1.6;
    margin: 0;
}

/* ---------- FAQ Accordion ---------- */
.ft-faq {
    background: #fff;
}

.ft-faq .ft-heading {
    margin-bottom: 48px;
}

.ft-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.ft-faq-item {
    border-bottom: 1px solid var(--ft-border);
}

.ft-faq-item:first-child {
    border-top: 1px solid var(--ft-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--ft-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ft-black);
    text-align: left;
    transition: color .15s ease;
}

.faq-question:hover {
    color: var(--ft-red);
}

.faq-icon {
    flex: 0 0 auto;
    transition: transform .25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.ft-faq-answer {
    padding: 0 0 22px;
    font-family: var(--ft-font-body);
    font-size: 15px;
    color: var(--ft-muted);
    line-height: 1.65;
}

/* ---------- Locations Note ---------- */
.ft-locations-note {
    font-family: var(--ft-font-body);
    font-size: 14px;
    color: var(--ft-muted);
    margin-top: 16px;
    font-style: italic;
}
