/* =============================================================================
   City's Towing & Lockout Service — Homepage Styles
   File: assets/css/home.css
   Upload to: /assets/css/home.css

   ── TABLE OF CONTENTS ──────────────────────────────────────────────────────
   00. Reset & Root Variables
   01. Base & Utility
   02. Scroll Reveal System
   03. Buttons
   04. Section Layout Primitives
   05. Hero
   06. Emergency Strip
   07. Service Cards
   08. Why Choose Us
   09. Stats Counters
   10. Areas Served
   11. Lead Form
   12. Testimonial Slider
   13. Gallery
   14. FAQ Accordion
   15. SEO Content Block
   16. Final CTA
   17. Entry Popup
   18. Sticky Mobile CTA
   19. Responsive — Desktop (≥ 1024px tweaks)
   20. Responsive — Tablet (≤ 980px)
   21. Responsive — Mobile (≤ 720px)
   22. Responsive — Small Mobile (≤ 480px)
   23. Large Screen (≥ 1440px)
   24. Reduced Motion
   ============================================================================= */

/* ── 00. RESET & ROOT VARIABLES ─────────────────────────────────────────────── */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FAFAF8;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

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

:root {
    /* Brand */
    --red:           #D32F2F;
    --red-hot:       #E84141;
    --red-deep:      #A81F1F;
    --red-glow:      rgba(211, 47, 47, .35);
    --red-glow-soft: rgba(211, 47, 47, .15);

    /* Surfaces */
    --black:  #000000;
    --ink:    #0B0B0B;
    --ink-2:  #141414;
    --ink-3:  #1B1B1B;
    --white:  #FFFFFF;
    --cream:  #F5F2EE;
    --bone:   #FAFAF8;

    /* Text */
    --gray:     #B0B0B0;
    --gray-dim: #6F6F6F;

    /* Lines */
    --line:      rgba(255, 255, 255, .08);
    --line-soft: rgba(255, 255, 255, .04);

    /* Shadows */
    --shadow-lg: 0 32px 72px -28px rgba(0, 0, 0, .55);
    --shadow-md: 0 18px 40px -18px rgba(0, 0, 0, .40);
    --shadow-sm: 0 8px 24px -12px rgba(0, 0, 0, .30);

    /* Layout */
    --container:    1320px;
    --section-pad:  96px;
    --section-padx: 24px;

    /* Radius */
    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  16px;
    --r-xl:  22px;

    /* Transitions */
    --t-fast:   .15s ease;
    --t-base:   .25s ease;
    --t-slow:   .45s cubic-bezier(.2, .8, .2, 1);
}


/* ── 01. BASE & UTILITY ─────────────────────────────────────────────────────── */

/* Prevent grid/flex blowout on all layouts */
.ct-cards        > *,
.ct-why-grid     > *,
.ct-counters-grid > *,
.ct-areas-wrap   > *,
.ct-areas-list   > *,
.ct-form-grid    > *,
.ct-field-row    > *,
.ct-seo-grid     > * {
    min-width: 0;
}

.ct-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--section-padx);
}

/* Eyebrow label */
.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.ct-eyebrow::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}
.ct-eyebrow--center {
    display: flex;
    justify-content: center;
}
.ct-eyebrow--center::before { display: none; }

/* Section headings */
.ct-h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.018em;
    line-height: 1.08;
    text-wrap: balance;
    margin-bottom: 16px;
}
.ct-h2 em { font-style: normal; color: var(--red); }

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

/* Stars */
.ct-stars { display: inline-flex; gap: 2px; color: #FFC745; }
.ct-stars svg { width: 17px; height: 17px; }


/* ── 02. SCROLL REVEAL SYSTEM ───────────────────────────────────────────────── */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: .10s; }
[data-reveal][data-delay="2"] { transition-delay: .20s; }
[data-reveal][data-delay="3"] { transition-delay: .30s; }


/* ── 03. BUTTONS ────────────────────────────────────────────────────────────── */

.ct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.005em;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform var(--t-base), box-shadow var(--t-base),
                background var(--t-base), border-color var(--t-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.ct-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 50%);
    pointer-events: none;
}
.ct-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Primary */
.ct-btn--primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red-deep);
    box-shadow: 0 14px 28px -12px rgba(211,47,47,.7),
                inset 0 1px 0 rgba(255,255,255,.18);
}
.ct-btn--primary:hover {
    background: var(--red-hot);
    transform: translateY(-2px);
    box-shadow: 0 22px 36px -12px rgba(232,65,65,.85),
                inset 0 1px 0 rgba(255,255,255,.22);
}

/* Ghost (dark bg context) */
.ct-btn--ghost {
    background: rgba(255,255,255,.05);
    color: #fff;
    border-color: rgba(255,255,255,.14);
}
.ct-btn--ghost:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.28);
    transform: translateY(-2px);
}

/* Outline (light bg context) */
.ct-btn--outline-dark {
    background: #fff;
    color: #111;
    border-color: rgba(0,0,0,.10);
    box-shadow: var(--shadow-sm);
}
.ct-btn--outline-dark::before { display: none; }
.ct-btn--outline-dark:hover {
    border-color: rgba(0,0,0,.20);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Size modifier */
.ct-btn--lg { padding: 17px 26px; font-size: 16px; }
.ct-btn--lg svg { width: 18px; height: 18px; }


/* ── 04. SECTION LAYOUT PRIMITIVES ──────────────────────────────────────────── */

.ct-section {
    padding: var(--section-pad) var(--section-padx);
}
.ct-section--cream { background: var(--cream); }
.ct-section--ink   { background: var(--ink);   color: #fff; }
.ct-section--dark  { background: var(--black); color: #fff; }
.ct-section--form  { background: var(--ink-2); color: #fff; }

.ct-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.ct-section-head > div { max-width: 64ch; }
.ct-section-head > a,
.ct-section-head > button { flex-shrink: 0; align-self: flex-end; }

.ct-section-head--center {
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}
.ct-section-head--center > div { max-width: unset; }

.ct-section-lead {
    font-size: 17px;
    line-height: 1.6;
    max-width: 64ch;
    text-wrap: pretty;
    color: rgba(0,0,0,.65);
    margin-bottom: 0;
}
.ct-section--ink  .ct-section-lead,
.ct-section--dark .ct-section-lead,
.ct-section--form .ct-section-lead { color: var(--gray); }


/* ── 05. HERO ────────────────────────────────────────────────────────────────── */

.ct-hero {
    position: relative;
    background: var(--black);
    color: #fff;
    overflow: hidden;
    padding: 100px var(--section-padx) 92px;
}

/* Background layers */
.ct-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 80% at 80% 15%, rgba(211,47,47,.30) 0%, rgba(211,47,47,0) 60%),
        radial-gradient(50% 60% at 10% 90%, rgba(211,47,47,.16) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
    z-index: 0;
}
.ct-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, #000 30%, transparent 80%);
    z-index: 0;
}
.ct-hero-noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 300px 300px;
}

/* Two-column layout */
.ct-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Left copy */
.ct-hero-copy { display: flex; flex-direction: column; align-items: flex-start; }

.ct-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}

.ct-hero-h1 {
    font-size: clamp(38px, 5.6vw, 72px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.02;
    text-wrap: balance;
    margin-bottom: 22px;
}
.ct-hero-h1 em {
    font-style: normal;
    background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--red) 51%, var(--red-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.ct-hero-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray);
    max-width: 54ch;
    margin-bottom: 36px;
    text-wrap: pretty;
}
.ct-hero-lead a {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.28);
    text-decoration: none;
    transition: border-color var(--t-fast);
}
.ct-hero-lead a:hover { border-color: rgba(255,255,255,.7); }

.ct-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.ct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.ct-hero-trust-item { display: flex; flex-direction: column; gap: 2px; }
.ct-hero-trust-item strong {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1;
}
.ct-hero-trust-item span {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 600;
    margin-top: 2px;
}

/* Right decorative card */
.ct-hero-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 8px;
    box-shadow: var(--shadow-lg);
}
.ct-hero-card-img {
    aspect-ratio: 5 / 4;
    border-radius: var(--r-lg);
    overflow: hidden;
    background:
        repeating-linear-gradient(135deg, #1a1a1a 0px, #1a1a1a 14px, #161616 14px, #161616 28px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct-hero-card-img span {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    color: var(--gray-dim);
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
}
.ct-hero-card-badge {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(12,12,12,.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
}
.ct-hero-card-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}
.ct-hero-card-badge-text strong { color: #fff; font-size: 14px; font-weight: 700; }
.ct-hero-card-badge-text small  { color: var(--gray); font-size: 11.5px; }

.ct-eta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 7px 12px;
    border-radius: var(--r-sm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    white-space: nowrap;
}


/* ── 06. EMERGENCY STRIP ─────────────────────────────────────────────────────── */

.ct-strip {
    background: linear-gradient(90deg, var(--red-deep) 0%, var(--red) 50%, var(--red-deep) 100%);
    color: #fff;
    padding: 20px var(--section-padx);
}
.ct-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.ct-strip-text {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 700;
}
.ct-strip-text .ct-pulse { background: #fff; }
.ct-strip-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: var(--r-md);
    transition: background var(--t-fast), transform var(--t-fast);
    white-space: nowrap;
}
.ct-strip-cta:hover { background: rgba(0,0,0,.30); transform: translateY(-1px); }
.ct-strip-cta svg { width: 17px; height: 17px; }


/* ── 07. SERVICE CARDS ───────────────────────────────────────────────────────── */

.ct-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ct-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.ct-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 52px -22px rgba(0,0,0,.22);
    border-color: rgba(211,47,47,.35);
}
.ct-section--ink  .ct-card,
.ct-section--dark .ct-card {
    background: var(--ink-2);
    border-color: var(--line);
    color: #fff;
}
.ct-section--ink  .ct-card:hover,
.ct-section--dark .ct-card:hover {
    box-shadow: 0 28px 52px -22px rgba(211,47,47,.35);
}

/* Card image placeholder */
.ct-card-img {
    aspect-ratio: 16 / 11;
    background:
        repeating-linear-gradient(135deg, #1a1a1a 0, #1a1a1a 12px, #161616 12px, #161616 24px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct-card-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.6) 100%);
    pointer-events: none;
}
.ct-card-img::after {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
    color: var(--gray-dim);
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.ct-card[data-img="emergency"] .ct-card-img::after { content: "[ Emergency Tow ]"; }
.ct-card[data-img="flatbed"]   .ct-card-img::after { content: "[ Flatbed Photo ]"; }
.ct-card[data-img="roadside"]  .ct-card-img::after { content: "[ Roadside Photo ]"; }
.ct-card[data-img="recovery"]  .ct-card-img::after { content: "[ Vehicle Recovery ]"; }
.ct-card[data-img="lockout"]   .ct-card-img::after { content: "[ Car Lockout ]"; }
.ct-card[data-img="locksmith"] .ct-card-img::after { content: "[ Mobile Locksmith ]"; }
.ct-card[data-img="keyrep"]    .ct-card-img::after { content: "[ Key Replacement ]"; }
.ct-card[data-img="keyfob"]    .ct-card-img::after { content: "[ Key Fob Programming ]"; }

.ct-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    padding: 22px 22px 24px;
}
.ct-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.25;
}
.ct-card-body p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(0,0,0,.60);
    flex: 1;
}
.ct-section--ink  .ct-card-body p,
.ct-section--dark .ct-card-body p { color: var(--gray); }

.ct-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,.06);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.ct-section--ink  .ct-card-link,
.ct-section--dark .ct-card-link { border-top-color: var(--line); }
.ct-card-link svg { width: 13px; height: 13px; transition: transform var(--t-fast); }
.ct-card:hover .ct-card-link svg { transform: translateX(4px); }


/* ── 08. WHY CHOOSE US ───────────────────────────────────────────────────────── */

.ct-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ct-why-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--r-lg);
    padding: 30px;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.ct-why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(211,47,47,.30);
    box-shadow: 0 20px 40px -22px rgba(0,0,0,.16);
}
.ct-why-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: rgba(211,47,47,.10);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.ct-why-icon svg { width: 22px; height: 22px; }
.ct-why-card h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}
.ct-why-card p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(0,0,0,.60);
}


/* ── 09. STATS COUNTERS ─────────────────────────────────────────────────────── */

.ct-counters {
    background: linear-gradient(135deg, var(--ink-2) 0%, var(--black) 50%, var(--ink-3) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 64px var(--section-padx);
    position: relative;
    overflow: hidden;
}
.ct-counters::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 50% 50%, rgba(211,47,47,.12) 0%, rgba(211,47,47,0) 65%);
    pointer-events: none;
}
.ct-counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}
.ct-counter-item {
    text-align: center;
    padding: 20px 24px;
    border-right: 1px solid var(--line);
}
.ct-counter-item:last-child { border-right: none; }

.ct-counter-number {
    display: block;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}
.ct-counter-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray);
}


/* ── 10. AREAS SERVED ────────────────────────────────────────────────────────── */

.ct-areas-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: center;
}

/* Decorative map */
.ct-areas-map {
    aspect-ratio: 5 / 4;
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    background:
        radial-gradient(50% 60% at 55% 45%, rgba(211,47,47,.18) 0%, rgba(211,47,47,0) 65%),
        repeating-linear-gradient(0deg,   rgba(255,255,255,.028) 0, rgba(255,255,255,.028) 1px, transparent 1px, transparent 36px),
        repeating-linear-gradient(90deg,  rgba(255,255,255,.028) 0, rgba(255,255,255,.028) 1px, transparent 1px, transparent 36px),
        linear-gradient(180deg, #0F0F0F 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}
.ct-areas-map-pin {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
    animation: pulse 2.4s ease-out infinite;
}
.ct-areas-map-pin--lg {
    width: 16px;
    height: 16px;
}
.ct-areas-map-label {
    position: absolute;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(0,0,0,.60);
    border: 1px solid var(--line);
    border-radius: 999px;
    white-space: nowrap;
    transform: translateX(-50%);
}

/* Areas grid list */
.ct-areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}
.ct-areas-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.ct-areas-list a:hover {
    background: rgba(211,47,47,.12);
    border-color: rgba(211,47,47,.45);
    transform: translateY(-2px);
}
.ct-areas-list a svg {
    width: 14px;
    height: 14px;
    color: var(--gray-dim);
    flex-shrink: 0;
    transition: color var(--t-fast), transform var(--t-fast);
}
.ct-areas-list a:hover svg { color: var(--red); transform: translateX(3px); }

/* Animated Map specific CSS */
.ct-map-glow {
    position: absolute;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(211,47,47,.25) 0%, rgba(211,47,47,0) 70%);
    transform: translate(-50%,-50%);
    transition: top 0.8s ease, left 0.8s ease;
    pointer-events: none;
    z-index: 1;
}
.ct-areas-map-pin {
    transition: background 0.4s ease, transform 0.4s ease;
    z-index: 2;
}
.ct-areas-map-pin.active {
    background: var(--red); /* Or #D32F2F */
    transform: translate(-50%, -50%) scale(1.6);
    box-shadow: 0 0 12px rgba(211,47,47,.8);
}
.ct-areas-map-label {
    transition: top 0.5s ease, left 0.5s ease, opacity 0.2s ease;
    z-index: 3;
}
/* ── 11. LEAD FORM ───────────────────────────────────────────────────────────── */

.ct-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}
.ct-form-copy h2 { color: #fff; margin-bottom: 18px; }
.ct-form-copy p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.65;
    max-width: 46ch;
    margin-bottom: 24px;
}
.ct-form-bullets {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}
.ct-form-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 14.5px;
    font-weight: 500;
}
.ct-form-bullets li svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; }

/* Form card */
.ct-form-card {
    background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}
.ct-form-card-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.ct-form-card h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.012em;
    color: #fff;
    margin-bottom: 6px;
}
.ct-form-card-sub {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--gray-dim);
    margin-bottom: 22px;
}

/* Form fields */
.ct-form { display: grid; gap: 15px; }

.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.ct-field-hint {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--gray-dim);
}
.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    background: rgba(255,255,255,.04);
    color: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
    line-height: 1.4;
}
.ct-field textarea { resize: vertical; min-height: 88px; }
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--gray-dim); }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(211,47,47,.06);
    box-shadow: 0 0 0 4px rgba(211,47,47,.18);
}
.ct-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B0B0B0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    background-color: rgba(255,255,255,.04);
    padding-right: 40px;
    cursor: pointer;
}
/* Fix OS-level dropdown colors */
.ct-field select option { background-color: var(--ink-2); color: #fff; }

.ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.ct-form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    padding: 15px;
    font-size: 15.5px;
}
.ct-form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.ct-form-foot {
    margin-top: 12px;
    text-align: center;
    font-size: 12.5px;
    color: var(--gray-dim);
}
.ct-form-foot a { color: #fff; font-weight: 700; text-decoration: none; }
.ct-form-foot a:hover { text-decoration: underline; }

/* Thank-you state */
.ct-form-thanks {
    text-align: center;
    padding: 16px 4px 4px;
    animation: fadeUp .5s ease both;
}
.ct-thanks-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 2px solid var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}
.ct-thanks-icon::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 2px solid var(--red);
    opacity: 0;
    animation: pulseRing 1.6s .3s ease-out infinite;
}
.ct-thanks-icon svg {
    width: 34px;
    height: 34px;
    color: var(--red);
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck .7s .2s ease forwards;
}
.ct-form-thanks h4 {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.ct-form-thanks p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}


/* ── 12. TESTIMONIAL SLIDER ──────────────────────────────────────────────────── */

.ct-testimonials { background: var(--cream); }

.ct-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
}
.ct-slider-track {
    display: flex;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
    will-change: transform;
}
.ct-slide {
    flex: 0 0 100%;
    padding: 6px;
}
.ct-slide-inner {
    background: #fff;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 18px;
    padding: 52px 56px;
    box-shadow: 0 28px 60px -28px rgba(0,0,0,.14);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    min-height: 224px;
}
.ct-slide-quote {
    color: var(--red);
    font-size: 88px;
    line-height: .85;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    align-self: flex-start;
    user-select: none;
}
.ct-slide-body { display: flex; flex-direction: column; gap: 16px; }
.ct-slide-text {
    font-size: clamp(17px, 2.4vw, 23px);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.38;
    color: #1a1a1a;
    text-wrap: pretty;
    margin: 0;
}
.ct-slide-meta { display: flex; align-items: center; gap: 14px; }
.ct-slide-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}
.ct-slide-author { display: flex; flex-direction: column; line-height: 1.2; gap: 3px; }
.ct-slide-author strong { color: #1a1a1a; font-size: 15px; font-weight: 700; }
.ct-slide-author span {
    color: rgba(0,0,0,.50);
    font-size: 11.5px;
    letter-spacing: .10em;
    text-transform: uppercase;
    font-weight: 600;
}

.ct-slider-controls {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ct-slider-dots { display: flex; gap: 8px; }
.ct-slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.18);
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, width .25s ease, border-radius .25s ease;
}
.ct-slider-dots button.is-active {
    background: var(--red);
    width: 28px;
    border-radius: 999px;
}
.ct-slider-arrows { display: flex; gap: 10px; }
.ct-slider-arrows button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.ct-slider-arrows button:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
}
.ct-slider-arrows svg { width: 18px; height: 18px; }


/* ── 13. GALLERY ─────────────────────────────────────────────────────────────── */

.ct-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
}
.ct-gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md);
    background:
        repeating-linear-gradient(135deg, #1a1a1a 0, #1a1a1a 12px, #161616 12px, #161616 24px);
    transition: transform var(--t-base), opacity var(--t-base);
}
.ct-gallery-tile:hover { transform: scale(1.016); }
.ct-gallery-tile::after {
    content: attr(data-label);
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px 16px 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.75) 100%);
}
.ct-gallery-tile--lg   { grid-column: span 3; grid-row: span 2; }
.ct-gallery-tile--wide { grid-column: span 4; }


/* ── 14. FAQ ACCORDION ───────────────────────────────────────────────────────── */

.ct-faq { max-width: 880px; margin-inline: auto; }

.ct-faq-item {
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.ct-faq-item:first-child { border-top: 1px solid rgba(0,0,0,.08); }

.ct-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 8px;
    text-align: left;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.4;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.ct-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(211,47,47,.10);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-base), background var(--t-fast);
}
.ct-faq-icon svg { width: 14px; height: 14px; transition: transform var(--t-base); }
.ct-faq-item.is-open .ct-faq-icon { background: rgba(211,47,47,.18); }
.ct-faq-item.is-open .ct-faq-icon svg { transform: rotate(45deg); }

.ct-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease;
}
.ct-faq-item.is-open .ct-faq-a { max-height: 640px; }

.ct-faq-a-inner {
    padding: 0 8px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0,0,0,.65);
    max-width: 70ch;
}
.ct-faq-a a { color: var(--red); font-weight: 600; text-decoration: none; }
.ct-faq-a a:hover { text-decoration: underline; }
.ct-faq-a strong { color: #1a1a1a; }


/* ── 15. SEO CONTENT BLOCK ───────────────────────────────────────────────────── */

.ct-seo {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.ct-seo-header {
    margin-bottom: 48px;
}
.ct-seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.ct-seo-grid h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 12px;
    margin-top: 0;
}
.ct-seo-grid h3 + h3 { margin-top: 28px; }
.ct-seo-grid p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(0,0,0,.65);
    margin-bottom: 12px;
    max-width: 65ch;
    text-wrap: pretty;
}
.ct-seo-grid a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(211,47,47,.30);
    transition: border-color var(--t-fast);
}
.ct-seo-grid a:hover { border-color: var(--red); }


/* ── 16. FINAL CTA ───────────────────────────────────────────────────────────── */

.ct-final-cta {
    position: relative;
    overflow: hidden;
    padding: 120px var(--section-padx);
    color: #fff;
    text-align: center;
}
.ct-final-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 80% at 100% 0%,   rgba(232,65,65,.22) 0%, rgba(232,65,65,0) 60%),
        radial-gradient(50% 70% at 0%  100%,   rgba(211,47,47,.14) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
    z-index: 0;
}
.ct-final-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ct-final-cta-h2 {
    font-size: clamp(32px, 5vw, 60px);
    margin-bottom: 18px;
    max-width: 22ch;
}
.ct-final-cta-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--gray);
    max-width: 56ch;
    margin-bottom: 44px;
    text-wrap: pretty;
}
.ct-final-cta-lead a {
    color: rgba(255,255,255,.80);
    border-bottom: 1px solid rgba(255,255,255,.28);
    text-decoration: none;
    transition: color var(--t-fast), border-color var(--t-fast);
}
.ct-final-cta-lead a:hover { color: #fff; border-color: rgba(255,255,255,.70); }
.ct-final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}


/* ── 17. ENTRY POPUP ─────────────────────────────────────────────────────────── */

.ct-popup-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.74);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ct-popup-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
}
.ct-popup {
    position: relative;
    background: var(--ink-2);
    color: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    width: min(480px, 100%);
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    box-shadow: 0 56px 100px -30px rgba(0,0,0,.85);
    transform: translateY(28px) scale(.96);
    opacity: 0;
    transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.ct-popup-scrim.is-open .ct-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.ct-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), transform var(--t-fast);
    z-index: 2;
}
.ct-popup-close:hover { background: rgba(255,255,255,.14); transform: rotate(90deg); }
.ct-popup-close svg { width: 16px; height: 16px; }

.ct-popup-head {
    padding: 28px 28px 0;
}
.ct-popup-head .ct-live-badge {
    margin-bottom: 14px;
    font-size: 10.5px;
}
.ct-popup-head h3 {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.015em;
    line-height: 1.15;
    margin-bottom: 8px;
}
.ct-popup-head p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--gray);
    margin: 0;
}

.ct-popup-body { padding: 20px 28px 28px; }
.ct-popup-body .ct-form { gap: 12px; }
.ct-popup-body .ct-form-submit { margin-top: 6px; padding: 14px; }

.ct-popup-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-dim);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin: 16px 0;
}
.ct-popup-divider::before,
.ct-popup-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.ct-popup-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: background var(--t-fast), border-color var(--t-fast);
}
.ct-popup-call:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.25); }
.ct-popup-call svg { width: 16px; height: 16px; flex-shrink: 0; }
.ct-popup-call small {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-left: 2px;
}


/* ── 18. STICKY MOBILE CTA ───────────────────────────────────────────────────── */

.ct-sticky-call {
    display: none; /* shown only on mobile via media query */
    position: fixed;
    inset: auto 16px 16px;
    z-index: 950;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15.5px;
    letter-spacing: -.005em;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 18px 36px -10px rgba(211,47,47,.65),
                0 2px 10px rgba(0,0,0,.30),
                inset 0 1px 0 rgba(255,255,255,.18);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.ct-sticky-call:hover { transform: translateY(-2px); }
.ct-sticky-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.ct-sticky-call span { white-space: nowrap; }


/* ── 19. ANIMATIONS & KEYFRAMES ──────────────────────────────────────────────── */

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(211,47,47,.65); }
    70%  { box-shadow: 0 0 0 10px rgba(211,47,47,0); }
    100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
}
@keyframes pulseWhite {
    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); }
}
@keyframes pulseRing {
    0%   { transform: scale(.85); opacity: .55; }
    100% { transform: scale(1.32); opacity: 0; }
}
@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ── 20. RESPONSIVE — TABLET (≤ 980px) ───────────────────────────────────────── */

@media (max-width: 980px) {

    :root {
        --section-pad:  72px;
        --section-padx: 20px;
    }

    /* Hero */
    .ct-hero { padding: 72px var(--section-padx) 80px; }
    .ct-hero-inner { grid-template-columns: 1fr; gap: 0; }
    .ct-hero-card  { display: none; } /* hide decorative card on tablet */

    /* Sections */
    .ct-section-head { margin-bottom: 40px; }

    /* Services */
    .ct-cards { grid-template-columns: repeat(2, 1fr); }

    /* Why */
    .ct-why-grid { grid-template-columns: repeat(2, 1fr); }

    /* Counters */
    .ct-counters-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-counter-item  { border-right: none; border-bottom: 1px solid var(--line); }
    .ct-counter-item:nth-child(odd)  { border-right: 1px solid var(--line); }
    .ct-counter-item:last-child      { border-bottom: none; }
    .ct-counter-item:nth-last-child(2) { border-bottom: none; }

    /* Areas */
    .ct-areas-wrap  { grid-template-columns: 1fr; gap: 36px; }
    .ct-areas-map   { aspect-ratio: 16/8; }
    .ct-areas-list  { grid-template-columns: repeat(3, 1fr); }

    /* Form */
    .ct-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .ct-form-card  { padding: 28px; }

    /* Testimonials */
    .ct-slide-inner { padding: 36px 32px; }

    /* Gallery */
    .ct-gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
    .ct-gallery-tile        { grid-column: span 2; grid-row: span 1; }
    .ct-gallery-tile--lg    { grid-column: span 4; grid-row: span 2; }
    .ct-gallery-tile--wide  { grid-column: span 4; }

    /* SEO */
    .ct-seo-grid { grid-template-columns: 1fr; gap: 36px; }
}


/* ── 21. RESPONSIVE — MOBILE (≤ 720px) ───────────────────────────────────────── */

@media (max-width: 720px) {

    :root {
        --section-pad:  60px;
        --section-padx: 16px;
    }

    /* Hero */
    .ct-hero { padding: 60px var(--section-padx) 68px; }
    .ct-hero-h1 { font-size: clamp(34px, 9vw, 46px); }
    .ct-hero-lead { font-size: 16px; }
    .ct-hero-actions .ct-btn--lg { padding: 15px 20px; font-size: 15px; }
    .ct-hero-trust { gap: 20px 28px; }
    .ct-hero-trust-item strong { font-size: 19px; }

    /* Sticky call visible */
    .ct-sticky-call { display: inline-flex; }
    body { padding-bottom: 76px; }

    /* Strip */
    .ct-strip-inner { gap: 16px; }
    .ct-strip-text  { font-size: 14px; }
    .ct-strip-cta   { font-size: 16px; padding: 10px 14px; }

    /* Section head */
    .ct-section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
    .ct-section-head > a { align-self: flex-start; }

    /* Services */
    .ct-cards { grid-template-columns: 1fr; }

    /* Why */
    .ct-why-grid { grid-template-columns: 1fr; }

    /* Counters */
    .ct-counters-grid { grid-template-columns: repeat(2, 1fr); }

    /* Areas */
    .ct-areas-list { grid-template-columns: repeat(2, 1fr); }

    /* Form */
    .ct-field-row { grid-template-columns: 1fr; }

    /* Slider */
    .ct-slide-inner {
        padding: 28px 22px;
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: unset;
    }
    .ct-slide-quote { font-size: 60px; }
    .ct-slide-text  { font-size: 17px; }

    /* Gallery */
    .ct-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
    .ct-gallery-tile        { grid-column: span 2; }
    .ct-gallery-tile--lg    { grid-row: span 2; }
    .ct-gallery-tile--wide  { grid-column: span 2; }

    /* Final CTA */
    .ct-final-cta { padding: 80px var(--section-padx); }
    .ct-final-cta-actions { flex-direction: column; align-items: stretch; }
    .ct-final-cta-actions .ct-btn { justify-content: center; }

    /* Popup */
    .ct-popup-head,
    .ct-popup-body { padding-inline: 22px; }
    .ct-popup-head { padding-top: 24px; }
    .ct-popup-body { padding-bottom: 24px; }
}


/* ── 22. RESPONSIVE — SMALL MOBILE (≤ 480px) ─────────────────────────────────── */

@media (max-width: 480px) {
    .ct-counters-grid { grid-template-columns: 1fr 1fr; }
    .ct-areas-list    { grid-template-columns: 1fr 1fr; }
    .ct-hero-actions  { flex-direction: column; align-items: stretch; }
    .ct-hero-actions .ct-btn { justify-content: center; }
}


/* ── 23. LARGE SCREEN (≥ 1440px) ─────────────────────────────────────────────── */

@media (min-width: 1440px) {
    :root {
        --section-pad:  112px;
        --section-padx: 48px;
    }
    .ct-hero        { padding: 120px var(--section-padx) 108px; }
    .ct-counters    { padding: 72px var(--section-padx); }
    .ct-final-cta   { padding: 144px var(--section-padx); }
}

@media (min-width: 1800px) {
    :root { --container: 1480px; }
}


/* ── 24. REDUCED MOTION ───────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}
