/* ============================================================================
   City's Towing & Lockout — Flatbed Towing Page Styles
   File location:  /assets/css/flatbed-towing.css
   Loaded by:      /services/flatbed-towing.php  (single <link> tag)
   Scoped under    .ct-ft-page — zero global pollution.
   All classes     ft- prefixed.
   Hero style:     About page — dark grid + red glow (NO background image).
   ============================================================================ */

.ct-ft-page,
.ct-ft-page * { box-sizing: border-box; }

.ct-ft-page {
    --ft-red:        #D32F2F;
    --ft-red-hot:    #E84141;
    --ft-red-deep:   #A81F1F;
    --ft-green:      #34A853;
    --ft-black:      #000000;
    --ft-ink:        #0B0B0B;
    --ft-ink-2:      #141414;
    --ft-white:      #FFFFFF;
    --ft-gray:       #B0B0B0;
    --ft-gray-dim:   #6F6F6F;
    --ft-line:       rgba(255,255,255,.08);
    --ft-cream:      #F5F2EE;
    --ft-bone:       #FAFAF8;
    --ft-shadow-lg:  0 30px 70px -28px rgba(0,0,0,.55);
    --ft-shadow-md:  0 18px 40px -18px rgba(0,0,0,.40);
    --ft-font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    font-family: var(--ft-font);
    color: #1a1a1a;
    background: var(--ft-bone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Animations ---- */
@keyframes ftPulse {
    0%   { box-shadow: 0 0 0 0 rgba(211,47,47,.65); }
    70%  { box-shadow: 0 0 0 12px rgba(211,47,47,0); }
    100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
}
@keyframes ftPulseWhite {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
    70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ---- Layout ---- */
.ct-ft-page .ft-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.ct-ft-page .ft-section   { padding: 96px 24px; position: relative; }
.ct-ft-page .ft-section--dark  { background: var(--ft-black); color: #fff; }
.ct-ft-page .ft-section--ink   { background: var(--ft-ink);   color: #fff; }
.ct-ft-page .ft-section--cream { background: var(--ft-cream); }

.ct-ft-page .ft-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    text-transform: uppercase; letter-spacing: .22em; font-size: 11.5px;
    font-weight: 700; color: var(--ft-red); margin-bottom: 16px;
}
.ct-ft-page .ft-eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--ft-red); }
.ct-ft-page .ft-h2 {
    margin: 0 0 16px; font-size: clamp(28px, 4vw, 44px);
    font-weight: 800; letter-spacing: -.018em; line-height: 1.08; text-wrap: balance;
}
.ct-ft-page .ft-h2 em { font-style: normal; color: var(--ft-red); }
.ct-ft-page .ft-lead {
    margin: 0 0 48px; font-size: 17px; line-height: 1.6;
    color: rgba(0,0,0,.65); max-width: 64ch; text-wrap: pretty;
}
.ct-ft-page .ft-section--ink  .ft-lead,
.ct-ft-page .ft-section--dark .ft-lead { color: var(--ft-gray); }
.ct-ft-page .ft-section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.ct-ft-page .ft-section-head > div { max-width: 64ch; }
.ct-ft-page .ft-section-head .ft-lead { margin-bottom: 0; }

/* Pulse dots */
.ct-ft-page .ft-pulse-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: var(--ft-red); animation: ftPulse 1.8s ease-out infinite; flex: 0 0 auto;
}
.ct-ft-page .ft-pulse-dot--white {
    background: #fff; animation: ftPulseWhite 1.8s ease-out infinite;
}

/* ---- Buttons ---- */
.ct-ft-page .ft-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px; border-radius: 12px; font-size: 15px; font-weight: 700;
    text-decoration: none; border: 1px solid transparent;
    font-family: inherit; line-height: 1.2; white-space: nowrap;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ct-ft-page .ft-btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
.ct-ft-page .ft-btn--lg  { padding: 18px 28px; font-size: 16px; }
.ct-ft-page .ft-btn--lg svg { width: 18px; height: 18px; }
.ct-ft-page .ft-btn--primary {
    background: var(--ft-red); color: #fff;
    box-shadow: 0 14px 28px -12px rgba(211,47,47,.7), inset 0 1px 0 rgba(255,255,255,.18);
    position: relative; overflow: hidden;
}
.ct-ft-page .ft-btn--primary::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 45%);
    pointer-events: none;
}
.ct-ft-page .ft-btn--primary:hover {
    background: var(--ft-red-hot); transform: translateY(-2px);
    box-shadow: 0 20px 36px -12px rgba(232,65,65,.85), inset 0 1px 0 rgba(255,255,255,.22);
}
.ct-ft-page .ft-btn--ghost {
    background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.16);
}
.ct-ft-page .ft-btn--ghost:hover {
    background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); transform: translateY(-2px);
}
.ct-ft-page .ft-btn--ghost-light {
    background: #fff; color: #111; border-color: rgba(0,0,0,.08);
    box-shadow: 0 8px 20px -10px rgba(0,0,0,.2);
}
.ct-ft-page .ft-btn--ghost-light:hover { border-color: rgba(0,0,0,.18); transform: translateY(-2px); }

/* ============================================================================
   HERO — ABOUT PAGE STYLE (dark grid + red glow, NO background image)
   ============================================================================ */
.ct-ft-page .ft-hero {
    position: relative; background: var(--ft-black); color: #fff;
    overflow: hidden; padding: 96px 24px 88px;
}
/* Red radial glows */
.ct-ft-page .ft-hero-bg-effects {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(65% 75% at 90% 10%, rgba(211,47,47,.28) 0%, rgba(211,47,47,0) 55%),
        radial-gradient(45% 55% at  5% 95%, rgba(211,47,47,.15) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
}
/* Subtle grid overlay */
.ct-ft-page .ft-hero-grid {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 65% at 50% 45%, #000 25%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 45%, #000 25%, transparent 80%);
}
.ct-ft-page .ft-hero-inner {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
.ct-ft-page .ft-hero-pre {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 14px 8px 10px; background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10); border-radius: 999px;
    font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.85); font-weight: 600; margin-bottom: 24px;
}
.ct-ft-page .ft-hero-content h1 {
    margin: 0 0 22px; font-size: clamp(36px, 5.2vw, 68px);
    font-weight: 800; letter-spacing: -.025em; line-height: 1.02; text-wrap: balance;
}
.ct-ft-page .ft-hero-content h1 em {
    font-style: normal;
    background: linear-gradient(180deg, #fff 0%, #fff 45%, var(--ft-red) 46%, var(--ft-red-hot) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block;
}
.ct-ft-page .ft-hero-sub {
    margin: 0 0 32px; font-size: 18px; color: var(--ft-gray); max-width: 54ch; line-height: 1.58; text-wrap: pretty;
}
.ct-ft-page .ft-hero-link {
    color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3);
    transition: color .18s ease, border-color .18s ease;
}
.ct-ft-page .ft-hero-link:visited { color: #fff; }
.ct-ft-page .ft-hero-link:hover   { color: var(--ft-red-hot); border-color: var(--ft-red-hot); }
.ct-ft-page .ft-hero-cta   { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.ct-ft-page .ft-hero-trust {
    display: flex; flex-wrap: wrap; gap: 14px 22px;
    font-size: 13px; color: rgba(255,255,255,.62); font-weight: 600;
}
.ct-ft-page .ft-hero-trust span { display: flex; align-items: center; gap: 7px; }
.ct-ft-page .ft-hero-trust svg  { width: 14px; height: 14px; color: var(--ft-red); }

/* Hero media — glassmorphism image cards */
.ct-ft-page .ft-hero-media { display: flex; flex-direction: column; gap: 14px; }
.ct-ft-page .ft-hero-img-main {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--ft-line); box-shadow: var(--ft-shadow-lg); aspect-ratio: 4 / 3;
    background: var(--ft-ink-2, #141414);
}
.ct-ft-page .ft-hero-img-main img {
    width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease;
}
.ct-ft-page .ft-hero-img-main:hover img { transform: scale(1.03); }
.ct-ft-page .ft-hero-img-badge {
    position: absolute; left: 14px; bottom: 14px; right: 14px;
    display: flex; align-items: center; gap: 12px; padding: 12px 14px;
    background: rgba(8,8,8,.84); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--ft-line); border-radius: 12px; pointer-events: none;
}
.ct-ft-page .ft-hero-img-badge strong { color: #fff; font-size: 14px; font-weight: 700; display: block; line-height: 1.2; }
.ct-ft-page .ft-hero-img-badge small  { color: var(--ft-gray); font-size: 11.5px; font-weight: 500; }
.ct-ft-page .ft-hero-img-secondary {
    position: relative; border-radius: 14px; overflow: hidden;
    border: 1px solid var(--ft-line); box-shadow: 0 14px 36px -14px rgba(0,0,0,.5);
    aspect-ratio: 16 / 7; width: 68%; margin-left: auto;
    background: var(--ft-ink-2, #141414);
}
.ct-ft-page .ft-hero-img-secondary img {
    width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease;
}
.ct-ft-page .ft-hero-img-secondary:hover img { transform: scale(1.04); }
.ct-ft-page .ft-hero-img-tag {
    position: absolute; top: 10px; left: 10px;
    padding: 5px 12px; background: var(--ft-red); color: #fff;
    border-radius: 999px; font-size: 10.5px; font-weight: 800;
    letter-spacing: .06em; text-transform: uppercase; pointer-events: none;
}

/* ============================================================================
   EMERGENCY STRIP
   ============================================================================ */
.ct-ft-page .ft-strip {
    background: linear-gradient(90deg, var(--ft-red-deep) 0%, var(--ft-red) 50%, var(--ft-red-deep) 100%);
    color: #fff; padding: 22px 24px; border-bottom: 1px solid rgba(0,0,0,.18);
}
.ct-ft-page .ft-strip-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.ct-ft-page .ft-strip-text { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 700; }
.ct-ft-page .ft-strip a {
    color: #fff; text-decoration: none; font-size: 18px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px; background: rgba(0,0,0,.2); border-radius: 10px;
    border: 1px solid rgba(255,255,255,.2); transition: background .18s ease, transform .18s ease;
}
.ct-ft-page .ft-strip a:hover { background: rgba(0,0,0,.32); transform: translateY(-1px); }
.ct-ft-page .ft-strip a svg { width: 17px; height: 17px; }

/* ============================================================================
   STATS BAR
   ============================================================================ */
.ct-ft-page .ft-stats-bar { background: var(--ft-red); color: #fff; padding: 0 24px; border-bottom: 1px solid rgba(0,0,0,.18); }
.ct-ft-page .ft-stats-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.ct-ft-page .ft-stat { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; gap: 2px; }
.ct-ft-page .ft-stat:last-child { border-right: 0; }
.ct-ft-page .ft-stat strong { font-size: clamp(28px, 3vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1; display: block; }
.ct-ft-page .ft-stat span   { font-size: 14px; font-weight: 700; opacity: .95; }
.ct-ft-page .ft-stat small  { font-size: 11px; opacity: .72; letter-spacing: .06em; text-transform: uppercase; font-weight: 500; margin-top: 2px; }

/* ============================================================================
   BENEFITS GRID
   ============================================================================ */
.ct-ft-page .ft-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--ft-line); border-radius: 18px; overflow: hidden; }
.ct-ft-page .ft-benefit-card {
    background: var(--ft-ink-2, #141414); padding: 32px 28px;
    transition: background .2s ease;
}
.ct-ft-page .ft-benefit-card:hover { background: rgba(211,47,47,.09); }
.ct-ft-page .ft-benefit-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(211,47,47,.14); color: var(--ft-red); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ct-ft-page .ft-benefit-icon svg { width: 22px; height: 22px; }
.ct-ft-page .ft-benefit-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: #fff; }
.ct-ft-page .ft-benefit-card p  { margin: 0; font-size: 14px; color: var(--ft-gray); line-height: 1.6; }

/* ============================================================================
   COMPARISON — WHY FLATBED MATTERS
   ============================================================================ */
.ct-ft-page .ft-compare-wrap {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center;
    margin-bottom: 40px;
}
.ct-ft-page .ft-compare-side { border-radius: 18px; overflow: hidden; }
.ct-ft-page .ft-compare-header { padding: 18px 24px; }
.ct-ft-page .ft-compare-badge {
    display: inline-flex; padding: 6px 16px; border-radius: 999px;
    font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.ct-ft-page .ft-compare-badge--red   { background: rgba(211,47,47,.15); color: var(--ft-red);   border: 1px solid rgba(211,47,47,.3); }
.ct-ft-page .ft-compare-badge--green { background: rgba(52,168,83,.15);  color: var(--ft-green); border: 1px solid rgba(52,168,83,.3); }
.ct-ft-page .ft-compare-side--danger { background: rgba(211,47,47,.04); border: 1px solid rgba(211,47,47,.18); }
.ct-ft-page .ft-compare-side--safe   { background: rgba(52,168,83,.04);  border: 1px solid rgba(52,168,83,.18); }
.ct-ft-page .ft-compare-list {
    list-style: none; padding: 0 24px 24px; margin: 0; display: grid; gap: 12px;
}
.ct-ft-page .ft-compare-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14.5px; color: rgba(0,0,0,.72); line-height: 1.5; font-weight: 500;
}
.ct-ft-page .ft-compare-list li svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }
.ct-ft-page .ft-compare-side--danger .ft-compare-list li svg { color: var(--ft-red); }
.ct-ft-page .ft-compare-side--safe   .ft-compare-list li svg { color: var(--ft-green); }
.ct-ft-page .ft-compare-vs {
    font-size: 22px; font-weight: 900; color: rgba(0,0,0,.18);
    letter-spacing: .1em; text-align: center; white-space: nowrap;
}
.ct-ft-page .ft-compare-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================================
   VEHICLE TYPES GRID
   ============================================================================ */
.ct-ft-page .ft-vehicles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ct-ft-page .ft-vehicle-card {
    background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 16px; padding: 26px 22px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex; flex-direction: column; gap: 10px;
}
.ct-ft-page .ft-vehicle-card:hover { transform: translateY(-3px); border-color: rgba(211,47,47,.28); box-shadow: 0 20px 38px -20px rgba(0,0,0,.14); }
.ct-ft-page .ft-vehicle-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(211,47,47,.1); color: var(--ft-red); display: inline-flex; align-items: center; justify-content: center; }
.ct-ft-page .ft-vehicle-icon svg { width: 22px; height: 22px; }
.ct-ft-page .ft-vehicle-card h3 { margin: 0; font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; }
.ct-ft-page .ft-vehicle-card p  { margin: 0; color: rgba(0,0,0,.6); font-size: 13.5px; line-height: 1.58; flex: 1; }
.ct-ft-page .ft-vehicle-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.ct-ft-page .ft-vehicle-tags span {
    padding: 3px 10px; border-radius: 999px;
    background: rgba(211,47,47,.08); border: 1px solid rgba(211,47,47,.15);
    color: var(--ft-red); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}

/* ============================================================================
   IMAGE SHOWCASE
   ============================================================================ */
.ct-ft-page .ft-showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.ct-ft-page .ft-showcase-tile {
    position: relative; border-radius: 12px; overflow: hidden; background: var(--ft-ink);
    box-shadow: 0 8px 24px -10px rgba(0,0,0,.25);
    transition: transform .28s ease, box-shadow .28s ease;
}
.ct-ft-page .ft-showcase-tile:hover { transform: scale(1.025); box-shadow: 0 18px 40px -14px rgba(0,0,0,.35); }
.ct-ft-page .ft-showcase-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.ct-ft-page .ft-showcase-tile:hover img { transform: scale(1.06); }
.ct-ft-page .ft-tile-label {
    position: absolute; inset: auto 0 0 0; padding: 16px 14px 12px;
    background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 100%);
    color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.ct-ft-page .ft-tile-lg { grid-column: span 2; grid-row: span 2; }

/* ============================================================================
   SERVICE AREAS GRID
   ============================================================================ */
.ct-ft-page .ft-areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ct-ft-page .ft-area-card {
    background: var(--ft-ink-2, #141414); border: 1px solid var(--ft-line); border-radius: 14px; padding: 24px;
    display: flex; flex-direction: column; gap: 12px;
    text-decoration: none; color: #fff;
    transition: background .2s ease, border-color .2s ease, transform .22s ease;
}
.ct-ft-page .ft-area-card:hover { background: rgba(211,47,47,.1); border-color: rgba(211,47,47,.42); transform: translateY(-2px); }
.ct-ft-page .ft-area-header { display: flex; flex-direction: column; gap: 4px; }
.ct-ft-page .ft-area-header h3 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -.01em; }
.ct-ft-page .ft-area-kw { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ft-red); }
.ct-ft-page .ft-area-card > p { margin: 0; font-size: 13.5px; color: var(--ft-gray); line-height: 1.58; flex: 1; }
.ct-ft-page .ft-area-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ft-red);
}
.ct-ft-page .ft-area-link svg { width: 13px; height: 13px; transition: transform .2s ease; }
.ct-ft-page .ft-area-card:hover .ft-area-link svg { transform: translateX(4px); }

/* ============================================================================
   SEO CONTENT
   ============================================================================ */
.ct-ft-page .ft-seo { background: #fff; }
.ct-ft-page .ft-seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.ct-ft-page .ft-seo h3 { margin: 0 0 14px; font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.ct-ft-page .ft-seo p  { color: rgba(0,0,0,.65); font-size: 15px; line-height: 1.7; margin: 0 0 14px; text-wrap: pretty; }
.ct-ft-page .ft-seo-link { color: var(--ft-red); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(211,47,47,.25); transition: border-color .18s ease; }
.ct-ft-page .ft-seo-link:hover { border-color: var(--ft-red); }

/* ============================================================================
   FAQ
   ============================================================================ */
.ct-ft-page .ft-faq { max-width: 880px; margin: 0 auto; }
.ct-ft-page .ft-faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.ct-ft-page .ft-faq-item:first-child { border-top: 1px solid rgba(0,0,0,.08); }
.ct-ft-page .ft-faq-q {
    width: 100%; background: none; border: 0; padding: 24px 8px; text-align: left;
    font-family: inherit; font-size: 17px; font-weight: 600; letter-spacing: -.01em;
    color: inherit; cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; gap: 24px; line-height: 1.4;
}
.ct-ft-page .ft-faq-toggle { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: rgba(211,47,47,.1); color: var(--ft-red); display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease; }
.ct-ft-page .ft-faq-toggle svg { width: 14px; height: 14px; transition: transform .25s ease; }
.ct-ft-page .ft-faq-item.is-open .ft-faq-toggle svg { transform: rotate(45deg); }
.ct-ft-page .ft-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ct-ft-page .ft-faq-item.is-open .ft-faq-a { max-height: 420px; }
.ct-ft-page .ft-faq-a-inner { padding: 0 8px 24px; color: rgba(0,0,0,.65); font-size: 15px; line-height: 1.68; max-width: 68ch; }

/* ============================================================================
   RELATED SERVICES
   ============================================================================ */
.ct-ft-page .ft-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 36px; }
.ct-ft-page .ft-related-card {
    display: flex; align-items: center; gap: 16px; padding: 20px;
    background: var(--ft-ink-2, #141414); border: 1px solid var(--ft-line); border-radius: 14px;
    text-decoration: none; color: #fff;
    transition: background .2s ease, border-color .2s ease, transform .22s ease;
}
.ct-ft-page .ft-related-card:hover { background: rgba(211,47,47,.1); border-color: rgba(211,47,47,.42); transform: translateY(-2px); }
.ct-ft-page .ft-related-icon { width: 44px; height: 44px; border-radius: 10px; flex: 0 0 auto; background: rgba(211,47,47,.14); color: var(--ft-red); display: inline-flex; align-items: center; justify-content: center; }
.ct-ft-page .ft-related-icon svg { width: 20px; height: 20px; }
.ct-ft-page .ft-related-body { flex: 1; min-width: 0; }
.ct-ft-page .ft-related-body h3 { margin: 0 0 3px; font-size: 15px; font-weight: 700; }
.ct-ft-page .ft-related-body p  { margin: 0; font-size: 12.5px; color: var(--ft-gray); line-height: 1.4; }
.ct-ft-page .ft-related-arrow { flex: 0 0 auto; color: var(--ft-gray-dim); transition: color .18s ease, transform .18s ease; }
.ct-ft-page .ft-related-arrow svg { width: 16px; height: 16px; }
.ct-ft-page .ft-related-card:hover .ft-related-arrow { color: var(--ft-red); transform: translateX(4px); }
.ct-ft-page .ft-related-links {
    display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center;
    padding-top: 28px; border-top: 1px solid var(--ft-line);
}
.ct-ft-page .ft-text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--ft-gray); font-size: 13px; font-weight: 600; text-decoration: none; transition: color .18s ease; }
.ct-ft-page .ft-text-link svg { width: 14px; height: 14px; color: var(--ft-red); }
.ct-ft-page .ft-text-link:hover { color: #fff; }

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.ct-ft-page .ft-final {
    position: relative; overflow: hidden; padding: 116px 24px; color: #fff; text-align: center;
    background:
        radial-gradient(65% 70% at 50%  0%, rgba(211,47,47,.24) 0%, rgba(211,47,47,0) 55%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
}
.ct-ft-page .ft-final::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 30%, transparent 80%);
}
.ct-ft-page .ft-final-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.ct-ft-page .ft-final .ft-eyebrow { justify-content: center; margin-bottom: 18px; }
.ct-ft-page .ft-final h2 { margin: 0 0 18px; font-size: clamp(30px, 4.6vw, 56px); font-weight: 800; letter-spacing: -.024em; line-height: 1.04; text-wrap: balance; }
.ct-ft-page .ft-final h2 em { font-style: normal; background: linear-gradient(180deg, var(--ft-red) 0%, var(--ft-red-hot) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ct-ft-page .ft-final p { margin: 0 auto 42px; color: var(--ft-gray); font-size: 17px; line-height: 1.6; max-width: 56ch; }
.ct-ft-page .ft-final-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 28px; }
.ct-ft-page .ft-final-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; color: var(--ft-gray-dim); font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.ct-ft-page .ft-final-trust svg { width: 14px; height: 14px; color: var(--ft-red); }

/* ============================================================================
   STICKY CALL
   ============================================================================ */
.ct-ft-page .ft-sticky-call {
    display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 950;
    padding: 16px 20px; border-radius: 14px; background: var(--ft-red); color: #fff;
    text-decoration: none; font-weight: 800; font-size: 15.5px;
    box-shadow: 0 18px 36px -10px rgba(211,47,47,.6), inset 0 1px 0 rgba(255,255,255,.18);
    align-items: center; justify-content: center; gap: 10px; font-family: inherit;
}
.ct-ft-page .ft-sticky-call svg { width: 18px; height: 18px; }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1200px) {
    .ct-ft-page .ft-vehicles-grid   { grid-template-columns: repeat(3, 1fr); }
    .ct-ft-page .ft-benefits-grid   { grid-template-columns: repeat(2, 1fr); }
    .ct-ft-page .ft-related-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
    .ct-ft-page .ft-hero-inner      { grid-template-columns: 1fr; gap: 44px; }
    .ct-ft-page .ft-hero            { padding: 72px 20px 80px; }
    .ct-ft-page .ft-compare-wrap    { grid-template-columns: 1fr; }
    .ct-ft-page .ft-compare-vs      { text-align: center; color: rgba(0,0,0,.25); font-size: 16px; padding: 8px 0; }
    .ct-ft-page .ft-vehicles-grid   { grid-template-columns: repeat(2, 1fr); }
    .ct-ft-page .ft-areas-grid      { grid-template-columns: repeat(2, 1fr); }
    .ct-ft-page .ft-seo-grid        { grid-template-columns: 1fr; gap: 32px; }
    .ct-ft-page .ft-showcase-grid   { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .ct-ft-page .ft-tile-lg         { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 760px) {
    .ct-ft-page .ft-stats-inner     { grid-template-columns: repeat(2, 1fr); }
    .ct-ft-page .ft-stat            { border-bottom: 1px solid rgba(255,255,255,.14); }
    .ct-ft-page .ft-stat:nth-child(2) { border-right: 0; }
    .ct-ft-page .ft-stat:nth-child(3) { border-bottom: 0; }
    .ct-ft-page .ft-stat:nth-child(4) { border-right: 0; border-bottom: 0; }
    .ct-ft-page .ft-benefits-grid   { grid-template-columns: 1fr; }
    .ct-ft-page .ft-vehicles-grid   { grid-template-columns: 1fr; }
    .ct-ft-page .ft-areas-grid      { grid-template-columns: 1fr; }
    .ct-ft-page .ft-related-grid    { grid-template-columns: 1fr; }
    .ct-ft-page .ft-section         { padding: 64px 20px; }
    .ct-ft-page .ft-hero-cta        { flex-direction: column; }
    .ct-ft-page .ft-hero-cta .ft-btn { justify-content: center; }
    .ct-ft-page .ft-final-btns      { flex-direction: column; }
    .ct-ft-page .ft-final-btns .ft-btn { justify-content: center; }
    .ct-ft-page .ft-compare-cta     { flex-direction: column; align-items: center; }
    .ct-ft-page .ft-sticky-call     { display: inline-flex; }
    .ct-ft-page                     { padding-bottom: 76px; }
}
@media (max-width: 480px) {
    .ct-ft-page .ft-showcase-grid   { grid-template-columns: 1fr; }
    .ct-ft-page .ft-tile-lg         { grid-column: span 1; }
    .ct-ft-page .ft-hero-img-secondary { width: 62%; }
}
@media (prefers-reduced-motion: reduce) {
    .ct-ft-page * { animation: none !important; transition: none !important; }
}
