/* ============================================================================
   City's Towing & Lockout — Car Towing Service Page Styles
   File location:  /assets/css/car-towing.css
   Loaded by:      car-towing.php  (single <link> tag)
   Scoped under    .ct-car-towing-page — zero global pollution.
   All classes     tw- prefixed.
   ============================================================================ */

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

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

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

/* ---- Animations ---- */
@keyframes twPulse {
    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 twPulseWhite {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
    70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes twFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes twCheck {
    to { stroke-dashoffset: 0; }
}

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

.ct-car-towing-page .tw-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    text-transform: uppercase; letter-spacing: .22em;
    font-size: 11.5px; font-weight: 700; color: var(--tw-red); margin-bottom: 16px;
}
.ct-car-towing-page .tw-eyebrow::before {
    content: ""; width: 24px; height: 2px; background: var(--tw-red);
}
.ct-car-towing-page .tw-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-car-towing-page .tw-h2 em { font-style: normal; color: var(--tw-red); }
.ct-car-towing-page .tw-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-car-towing-page .tw-section--ink  .tw-lead,
.ct-car-towing-page .tw-section--dark .tw-lead { color: var(--tw-gray); }
.ct-car-towing-page .tw-section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.ct-car-towing-page .tw-section-head > div { max-width: 64ch; }
.ct-car-towing-page .tw-section-head .tw-lead { margin-bottom: 0; }

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

/* ---- Buttons ---- */
.ct-car-towing-page .tw-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; cursor: pointer;
    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-car-towing-page .tw-btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
.ct-car-towing-page .tw-btn--lg { padding: 18px 28px; font-size: 16px; }
.ct-car-towing-page .tw-btn--lg svg { width: 18px; height: 18px; }

.ct-car-towing-page .tw-btn--primary {
    background: var(--tw-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-car-towing-page .tw-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-car-towing-page .tw-btn--primary:hover {
    background: var(--tw-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-car-towing-page .tw-btn--ghost {
    background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.16);
}
.ct-car-towing-page .tw-btn--ghost:hover {
    background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); transform: translateY(-2px);
}
.ct-car-towing-page .tw-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-car-towing-page .tw-btn--ghost-light:hover {
    border-color: rgba(0,0,0,.18); transform: translateY(-2px);
}

/* ============================================================================
   HERO
   ============================================================================ */
.ct-car-towing-page .tw-hero {
    position: relative; min-height: 640px;
    display: flex; align-items: center;
    overflow: hidden; color: #fff; padding: 100px 24px 96px;
}
.ct-car-towing-page .tw-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 30%;
    z-index: 0;
}
.ct-car-towing-page .tw-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.72) 40%,
        rgba(11,11,11,.55) 100%
    );
}
.ct-car-towing-page .tw-hero-overlay::after {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(55% 60% at 0% 100%, rgba(211,47,47,.22) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: auto, 56px 56px, 56px 56px;
    mask-image: radial-gradient(ellipse 80% 65% at 30% 50%, #000 25%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 65% at 30% 50%, #000 25%, transparent 80%);
}
.ct-car-towing-page .tw-hero-inner {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 60px; align-items: center;
}
.ct-car-towing-page .tw-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,.12);
    border-radius: 999px; font-size: 12px; letter-spacing: .14em;
    text-transform: uppercase; color: rgba(255,255,255,.85); font-weight: 600; margin-bottom: 22px;
}
.ct-car-towing-page .tw-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-car-towing-page .tw-hero-content h1 em {
    font-style: normal;
    background: linear-gradient(180deg, #fff 0%, #fff 45%, var(--tw-red) 46%, var(--tw-red-hot) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block;
}
.ct-car-towing-page .tw-hero-sub {
    margin: 0 0 34px; font-size: 18px; color: rgba(255,255,255,.75);
    max-width: 52ch; line-height: 1.58; text-wrap: pretty;
}
.ct-car-towing-page .tw-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.ct-car-towing-page .tw-hero-trust {
    display: flex; flex-wrap: wrap; gap: 16px 24px;
    font-size: 13px; color: rgba(255,255,255,.65); font-weight: 600;
}
.ct-car-towing-page .tw-hero-trust span { display: flex; align-items: center; gap: 7px; }
.ct-car-towing-page .tw-hero-trust svg { width: 14px; height: 14px; color: var(--tw-red); }

/* Hero images */
.ct-car-towing-page .tw-hero-card {
    display: flex; flex-direction: column; gap: 14px;
}
.ct-car-towing-page .tw-hero-img-main {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--tw-shadow-lg); aspect-ratio: 4 / 3;
}
.ct-car-towing-page .tw-hero-img-main img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s ease;
}
.ct-car-towing-page .tw-hero-img-main:hover img { transform: scale(1.03); }
.ct-car-towing-page .tw-hero-dispatch-badge {
    position: absolute; left: 16px; bottom: 16px; right: 16px;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: rgba(10,10,10,.82); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08); border-radius: 12px; pointer-events: none;
}
.ct-car-towing-page .tw-hero-dispatch-badge strong { color: #fff; font-size: 14px; font-weight: 700; display: block; line-height: 1.2; }
.ct-car-towing-page .tw-hero-dispatch-badge small { color: var(--tw-gray); font-size: 11.5px; font-weight: 500; }
.ct-car-towing-page .tw-hero-img-secondary {
    border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 14px 36px -14px rgba(0,0,0,.5);
    aspect-ratio: 16 / 7; width: 70%; margin-left: auto;
}
.ct-car-towing-page .tw-hero-img-secondary img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s ease;
}
.ct-car-towing-page .tw-hero-img-secondary:hover img { transform: scale(1.04); }

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

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

/* ============================================================================
   WHY CHOOSE US
   ============================================================================ */
.ct-car-towing-page .tw-why-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.ct-car-towing-page .tw-why-card {
    background: #fff; border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px; padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ct-car-towing-page .tw-why-card:hover {
    transform: translateY(-3px); border-color: rgba(211,47,47,.3);
    box-shadow: 0 22px 40px -20px rgba(0,0,0,.15);
}
.ct-car-towing-page .tw-why-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(211,47,47,.1); color: var(--tw-red);
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.ct-car-towing-page .tw-why-icon svg { width: 22px; height: 22px; }
.ct-car-towing-page .tw-why-card h3 {
    margin: 0 0 10px; font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; line-height: 1.3;
}
.ct-car-towing-page .tw-why-card p {
    margin: 0; color: rgba(0,0,0,.6); font-size: 13.5px; line-height: 1.6;
}

/* ============================================================================
   SERVICES GRID
   ============================================================================ */
.ct-car-towing-page .tw-services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ct-car-towing-page .tw-service-card {
    background: #fff; border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px; overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex; flex-direction: column;
}
.ct-car-towing-page .tw-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 48px -22px rgba(0,0,0,.22);
    border-color: rgba(211,47,47,.28);
}
.ct-car-towing-page .tw-service-img-wrap {
    position: relative; aspect-ratio: 16 / 11; overflow: hidden;
}
.ct-car-towing-page .tw-service-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .45s ease;
}
.ct-car-towing-page .tw-service-card:hover .tw-service-img-wrap img { transform: scale(1.06); }
.ct-car-towing-page .tw-service-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}
.ct-car-towing-page .tw-service-body {
    padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.ct-car-towing-page .tw-service-body h3 {
    margin: 0; font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25;
}
.ct-car-towing-page .tw-service-body p {
    margin: 0; color: rgba(0,0,0,.6); font-size: 13.5px; line-height: 1.55; flex: 1;
}
.ct-car-towing-page .tw-service-link {
    margin-top: auto; padding-top: 12px;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--tw-red); font-size: 12.5px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
    border-top: 1px solid rgba(0,0,0,.06);
    transition: gap .2s ease;
}
.ct-car-towing-page .tw-service-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.ct-car-towing-page .tw-service-card:hover .tw-service-link svg { transform: translateX(4px); }

/* ============================================================================
   SERVICE AREA CARDS
   ============================================================================ */
.ct-car-towing-page .tw-areas-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.ct-car-towing-page .tw-area-card {
    background: var(--tw-ink-2, #141414); border: 1px solid var(--tw-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-car-towing-page .tw-area-card:hover {
    background: rgba(211,47,47,.1); border-color: rgba(211,47,47,.45); transform: translateY(-2px);
}
.ct-car-towing-page .tw-area-card-header { display: flex; flex-direction: column; gap: 4px; }
.ct-car-towing-page .tw-area-card h3 {
    margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -.01em; color: #fff;
}
.ct-car-towing-page .tw-area-kw {
    font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--tw-red);
}
.ct-car-towing-page .tw-area-card > p {
    margin: 0; font-size: 13.5px; color: var(--tw-gray); line-height: 1.58; flex: 1;
}
.ct-car-towing-page .tw-area-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--tw-red); margin-top: auto;
    transition: gap .2s ease;
}
.ct-car-towing-page .tw-area-cta svg { width: 13px; height: 13px; transition: transform .2s ease; }
.ct-car-towing-page .tw-area-card:hover .tw-area-cta svg { transform: translateX(4px); }

/* ============================================================================
   ANIMATED MAP
   ============================================================================ */
.ct-car-towing-page .tw-map-wrap {
    display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: center;
}
.ct-car-towing-page .tw-map {
    position: relative; aspect-ratio: 5 / 4; border-radius: 22px;
    border: 1px solid var(--tw-line);
    background:
        repeating-linear-gradient(0deg,   rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 36px),
        repeating-linear-gradient(90deg,  rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 36px),
        linear-gradient(180deg, #0F0F0F 0%, #050505 100%);
    overflow: hidden;
}
.ct-car-towing-page .tw-map-glow {
    position: absolute; width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(211,47,47,.22) 0%, rgba(211,47,47,0) 70%);
    top: 38%; left: 24%; transform: translate(-50%,-50%);
    transition: top .8s ease, left .8s ease; pointer-events: none;
}
.ct-car-towing-page .tw-map-pin {
    position: absolute; width: 11px; height: 11px; border-radius: 50%;
    background: rgba(211,47,47,.35); border: 2px solid rgba(211,47,47,.5);
    transform: translate(-50%,-50%);
    transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.ct-car-towing-page .tw-map-pin.lg { width: 16px; height: 16px; }
.ct-car-towing-page .tw-map-pin.active {
    background: var(--tw-red); border-color: var(--tw-red);
    animation: twPulse 1.8s ease-out infinite; z-index: 5;
}
.ct-car-towing-page .tw-map-active-label {
    position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,.72); backdrop-filter: blur(8px);
    border: 1px solid var(--tw-line); color: #fff;
    padding: 6px 18px; border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    white-space: nowrap; transition: opacity .35s ease; pointer-events: none;
}

.ct-car-towing-page .tw-map-cities {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-content: start;
}
.ct-car-towing-page .tw-map-city-pill {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 12px 14px; background: rgba(255,255,255,.04);
    border: 1px solid var(--tw-line); border-radius: 10px;
    color: #fff; text-decoration: none; font-size: 13px; font-weight: 600;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.ct-car-towing-page .tw-map-city-pill:hover {
    background: rgba(211,47,47,.12); border-color: rgba(211,47,47,.45); transform: translateY(-1px);
}
.ct-car-towing-page .tw-map-city-pill svg { width: 12px; height: 12px; color: var(--tw-gray-dim); transition: color .18s ease, transform .18s ease; }
.ct-car-towing-page .tw-map-city-pill:hover svg { color: var(--tw-red); transform: translateX(3px); }
.ct-car-towing-page .tw-map-city-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--tw-red); opacity: .7; flex: 0 0 auto;
}

/* ============================================================================
   IMAGE SHOWCASE
   ============================================================================ */
.ct-car-towing-page .tw-showcase-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px;
}
.ct-car-towing-page .tw-showcase-tile {
    position: relative; border-radius: 12px; overflow: hidden; background: #1a1a1a;
    box-shadow: 0 8px 24px -10px rgba(0,0,0,.25);
    transition: transform .28s ease, box-shadow .28s ease;
}
.ct-car-towing-page .tw-showcase-tile:hover {
    transform: scale(1.025); box-shadow: 0 18px 40px -14px rgba(0,0,0,.35);
}
.ct-car-towing-page .tw-showcase-tile img {
    width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease;
}
.ct-car-towing-page .tw-showcase-tile:hover img { transform: scale(1.06); }
.ct-car-towing-page .tw-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-car-towing-page .tw-tile-lg { grid-column: span 2; grid-row: span 2; }

/* ============================================================================
   FAQ
   ============================================================================ */
.ct-car-towing-page .tw-faq { max-width: 880px; margin: 0 auto; }
.ct-car-towing-page .tw-faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.ct-car-towing-page .tw-faq-item:first-child { border-top: 1px solid rgba(0,0,0,.08); }
.ct-car-towing-page .tw-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-car-towing-page .tw-faq-toggle {
    flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%;
    background: rgba(211,47,47,.1); color: var(--tw-red);
    display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.ct-car-towing-page .tw-faq-toggle svg { width: 14px; height: 14px; transition: transform .25s ease; }
.ct-car-towing-page .tw-faq-item.is-open .tw-faq-toggle svg { transform: rotate(45deg); }
.ct-car-towing-page .tw-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ct-car-towing-page .tw-faq-item.is-open .tw-faq-a { max-height: 400px; }
.ct-car-towing-page .tw-faq-a-inner {
    padding: 0 8px 24px; color: rgba(0,0,0,.65); font-size: 15px; line-height: 1.68; max-width: 68ch;
}

/* ============================================================================
   SEO CONTENT
   ============================================================================ */
.ct-car-towing-page .tw-seo { background: #fff; }
.ct-car-towing-page .tw-seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.ct-car-towing-page .tw-seo h3 { margin: 0 0 14px; font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.ct-car-towing-page .tw-seo p {
    color: rgba(0,0,0,.65); font-size: 15px; line-height: 1.7;
    margin: 0 0 14px; text-wrap: pretty;
}

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.ct-car-towing-page .tw-final {
    position: relative; overflow: hidden; padding: 112px 24px; color: #fff; text-align: center;
    background:
        radial-gradient(65% 70% at 50%   0%, rgba(211,47,47,.22) 0%, rgba(211,47,47,0) 55%),
        radial-gradient(40% 50% at 0%  100%, rgba(211,47,47,.14) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
}
.ct-car-towing-page .tw-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-car-towing-page .tw-final-inner {
    position: relative; z-index: 2; max-width: 820px; margin: 0 auto;
}
.ct-car-towing-page .tw-final .tw-eyebrow { justify-content: center; margin-bottom: 18px; }
.ct-car-towing-page .tw-final h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4.5vw, 54px);
    font-weight: 800; letter-spacing: -.022em; line-height: 1.05; text-wrap: balance;
}
.ct-car-towing-page .tw-final h2 em {
    font-style: normal;
    background: linear-gradient(180deg, var(--tw-red) 0%, var(--tw-red-hot) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ct-car-towing-page .tw-final p {
    margin: 0 auto 40px; color: var(--tw-gray); font-size: 17px; line-height: 1.6; max-width: 56ch;
}
.ct-car-towing-page .tw-final-btns {
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 28px;
}
.ct-car-towing-page .tw-final-trust {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
    color: var(--tw-gray-dim); font-size: 12.5px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
}
.ct-car-towing-page .tw-final-trust svg { width: 14px; height: 14px; color: var(--tw-red); }

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

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1200px) {
    .ct-car-towing-page .tw-why-grid      { grid-template-columns: repeat(3, 1fr); }
    .ct-car-towing-page .tw-services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1060px) {
    .ct-car-towing-page .tw-areas-grid    { grid-template-columns: repeat(2, 1fr); }
    .ct-car-towing-page .tw-map-cities    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
    .ct-car-towing-page .tw-hero-inner    { grid-template-columns: 1fr; gap: 44px; }
    .ct-car-towing-page .tw-hero          { min-height: 520px; padding: 80px 20px; }
    .ct-car-towing-page .tw-hero-img-secondary { width: 55%; }
    .ct-car-towing-page .tw-why-grid      { grid-template-columns: repeat(2, 1fr); }
    .ct-car-towing-page .tw-services-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-car-towing-page .tw-map-wrap      { grid-template-columns: 1fr; gap: 36px; }
    .ct-car-towing-page .tw-map           { aspect-ratio: 16 / 9; }
    .ct-car-towing-page .tw-seo-grid      { grid-template-columns: 1fr; gap: 32px; }
    .ct-car-towing-page .tw-showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .ct-car-towing-page .tw-tile-lg       { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 760px) {
    .ct-car-towing-page .tw-stats-inner   { grid-template-columns: repeat(2, 1fr); }
    .ct-car-towing-page .tw-stat          { border-bottom: 1px solid var(--tw-line); }
    .ct-car-towing-page .tw-stat:nth-child(2) { border-right: 0; }
    .ct-car-towing-page .tw-stat:nth-child(3) { border-bottom: 0; }
    .ct-car-towing-page .tw-stat:nth-child(4) { border-right: 0; border-bottom: 0; }
    .ct-car-towing-page .tw-why-grid      { grid-template-columns: 1fr; }
    .ct-car-towing-page .tw-services-grid { grid-template-columns: 1fr; }
    .ct-car-towing-page .tw-areas-grid    { grid-template-columns: 1fr; }
    .ct-car-towing-page .tw-section       { padding: 64px 20px; }
    .ct-car-towing-page .tw-final-btns    { flex-direction: column; }
    .ct-car-towing-page .tw-final-btns .tw-btn { justify-content: center; }
    .ct-car-towing-page .tw-hero-cta      { flex-direction: column; }
    .ct-car-towing-page .tw-hero-cta .tw-btn { justify-content: center; }
    .ct-car-towing-page .tw-sticky-call   { display: inline-flex; }
    .ct-car-towing-page                   { padding-bottom: 76px; }
    .ct-car-towing-page .tw-map-cities    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ct-car-towing-page .tw-showcase-grid { grid-template-columns: 1fr; }
    .ct-car-towing-page .tw-tile-lg       { grid-column: span 1; }
    .ct-car-towing-page .tw-map-cities    { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .ct-car-towing-page * { animation: none !important; transition: none !important; }
}
