/* ============================================================================
   Carworld Auto — Landing Page Styles
   Brand: red/black/white · Modern · Animated · Mobile-first
   ============================================================================ */

:root {
    /* Proton brand blue palette */
    --brand: #003DA5;
    --brand-dark: #002970;
    --brand-light: #DBEAFE;
    --brand-accent: #0066CC;
    --ink: #0B1929;
    --ink-2: #142840;
    --mut: #64748b;
    --mut-2: #94a3b8;
    --line: #e5e7eb;
    --bg: #ffffff;
    --bg-2: #f6f9fc;
    --wa: #25d366;
    --wa-dark: #128c7e;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
    --shadow: 0 12px 28px rgba(15, 23, 42, .08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, .15);
    --radius: 14px;
    --radius-lg: 20px;
    --max: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

/* ============================================================================
   Top utility bar
   ============================================================================ */
.topbar {
    background: var(--ink);
    color: #cbd5e1;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.topbar .container {
    display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
}
.topbar .open-now {
    display: inline-flex; align-items: center; gap: 6px;
    color: #86efac; font-weight: 600;
}
.topbar .open-now.closed { color: #fca5a5; }
.topbar .open-now::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor;
    box-shadow: 0 0 0 0 currentColor; animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(134, 239, 172, .6); }
    70% { box-shadow: 0 0 0 8px rgba(134, 239, 172, 0); }
    100% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0); }
}
.topbar a { color: #e2e8f0; }

/* ============================================================================
   Header / Nav
   ============================================================================ */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(1.6) blur(10px);
    border-bottom: 1px solid var(--line);
}
.header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; padding-bottom: 14px; gap: 16px;
}
.logo {
    display: flex; align-items: center; gap: 14px; font-weight: 800; color: var(--ink);
    text-decoration: none; font-size: 20px;
}
.logo-mark {
    width: 50px; height: 50px; border-radius: 12px;
    font-size: 18px;
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand) 60%, var(--brand-dark) 100%);
    color: #fff; display: grid; place-items: center;
    font-weight: 900; letter-spacing: -.5px;
    box-shadow: 0 8px 20px rgba(0, 61, 165, .35);
    font-family: 'Inter', sans-serif;
}
.logo small { display: block; color: var(--mut); font-weight: 500; font-size: 12px; letter-spacing: .6px; text-transform: uppercase; margin-top: 2px; }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 16px;
    border: none; cursor: pointer; text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    line-height: 1; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .35); }
.btn-wa:hover { background: var(--wa-dark); box-shadow: 0 14px 30px rgba(37, 211, 102, .45); }
.btn-call { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(0, 61, 165, .4); }
.btn-call:hover { background: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 19px 36px; font-size: 18px; }
.btn-icon { width: 20px; height: 20px; }

/* ============================================================================
   Hero
   ============================================================================ */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(1100px 540px at 75% -10%, rgba(0, 61, 165, .15), transparent 60%),
        radial-gradient(800px 400px at 5% 100%, rgba(0, 102, 204, .10), transparent 60%),
        linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
    padding: 90px 0 120px;
}
.hero .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-light); color: var(--brand-dark);
    padding: 8px 16px; border-radius: 999px;
    font-size: 14px; font-weight: 700; letter-spacing: .2px;
    margin-bottom: 22px;
}
.eyebrow::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}
.hero h1 {
    font-size: clamp(38px, 4.6vw, 72px); line-height: 1.05; letter-spacing: -2px;
    margin: 0 0 22px; font-weight: 800; color: var(--ink);
}
.hero h1 .accent { color: var(--brand); position: relative; }
.hero h1 .accent::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 12px;
    background: rgba(0, 61, 165, .14); z-index: -1; border-radius: 6px;
}
.hero .lead { font-size: 21px; color: var(--mut); margin: 0 0 36px; max-width: 620px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-strip {
    display: flex; gap: 26px; flex-wrap: wrap; align-items: center;
    color: var(--mut); font-size: 15px; font-weight: 600;
}
.trust-strip .t-item { display: inline-flex; align-items: center; gap: 6px; }
.trust-strip svg { width: 16px; height: 16px; color: var(--brand); }

.hero-visual {
    position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-visual::before {
    content: ""; position: absolute; inset: 0;
    background-image: url('../../img/hero-proton.jpg');
    background-size: cover; background-position: center;
    opacity: .9;
}
.hero-visual::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(11, 25, 41, .35) 0%, rgba(11, 25, 41, 0) 50%, rgba(0, 61, 165, .35) 100%);
}
.hero-visual .floating-badge {
    position: absolute; backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .96); border-radius: 16px; padding: 16px 22px;
    box-shadow: var(--shadow); font-weight: 700; font-size: 15px;
    display: flex; align-items: center; gap: 12px;
    animation: float 4s ease-in-out infinite;
}
.fb-1 { top: 24px; left: 24px; }
.fb-2 { bottom: 24px; right: 24px; animation-delay: -2s; }
.floating-badge .dot {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--brand-light); color: var(--brand-dark);
    display: grid; place-items: center; font-size: 20px;
}
.fb-2 .dot { background: rgba(37, 211, 102, .15); color: var(--wa-dark); }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ============================================================================
   Stats (count-up)
   ============================================================================ */
.stats { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat .num {
    font-size: clamp(40px, 4vw, 64px); font-weight: 800; color: var(--brand);
    letter-spacing: -2px; line-height: 1;
}
.stat .label { color: var(--mut); font-size: 16px; font-weight: 600; margin-top: 10px; letter-spacing: .2px; }

/* ============================================================================
   Sections
   ============================================================================ */
section { padding: 110px 0; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
    font-size: clamp(32px, 3.4vw, 52px); margin: 0 0 18px; letter-spacing: -1.4px; font-weight: 800; line-height: 1.1;
}
.section-head p { color: var(--mut); font-size: 19px; margin: 0; line-height: 1.55; }

/* ============================================================================
   Services grid
   ============================================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--brand-accent), var(--brand)); transform: scaleX(0);
    transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
    width: 54px; height: 54px; border-radius: 13px;
    background: var(--brand-light); color: var(--brand-dark);
    display: grid; place-items: center; margin-bottom: 18px;
    transition: transform .4s ease;
}
.service-card:hover .icon { transform: rotate(-10deg) scale(1.08); }
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.service-card p { margin: 0; color: var(--mut); font-size: 14.5px; }

/* Photo service card variant */
.service-card.has-photo { padding: 0; overflow: hidden; }
.service-card .photo {
    position: relative; aspect-ratio: 16 / 10; overflow: hidden;
    background: #e2e8f0;
}
.service-card .photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
}
.service-card.has-photo:hover .photo img { transform: scale(1.06); }
.service-card .photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 25, 41, .15) 100%);
}
.service-card .body { padding: 26px 28px 32px; }
.service-card .body h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.25; }
.service-card .body p { font-size: 16px; line-height: 1.55; color: var(--mut); }
.service-card .pill {
    position: absolute; top: 16px; left: 16px; z-index: 1;
    background: rgba(255, 255, 255, .96); color: var(--brand);
    padding: 6px 13px; border-radius: 999px;
    font-weight: 700; font-size: 12.5px; letter-spacing: .4px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

/* ============================================================================
   Accident highlight banner
   ============================================================================ */
.accident-section { padding-top: 0; }
.accident-card {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.accident-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.accident-photo { position: relative; overflow: hidden; min-height: 360px; background: #e2e8f0; }
.accident-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.accident-photo .pill {
    position: absolute; top: 18px; left: 18px; z-index: 1;
    background: rgba(255, 255, 255, .96); color: var(--brand);
    padding: 7px 14px; border-radius: 999px;
    font-weight: 700; font-size: 12.5px; letter-spacing: .4px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}
.accident-body {
    padding: 50px 46px;
    display: flex; flex-direction: column; justify-content: center;
}
.accident-body .eyebrow { align-self: flex-start; }
.accident-body h3 { margin: 0 0 14px; font-size: 28px; line-height: 1.2; letter-spacing: -.6px; }
.accident-body p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--mut); }

/* ============================================================================
   Benefits grid (10 reasons)
   ============================================================================ */
.benefits { background: var(--bg-2); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.benefit {
    display: flex; gap: 20px; padding: 28px 30px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.benefit:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow-sm); }
.benefit .b-ico {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 13px;
    background: linear-gradient(135deg, var(--brand-light), #c7d8f7);
    color: var(--brand-dark);
    display: grid; place-items: center;
}
.benefit .b-ico svg { width: 26px; height: 26px; }
.benefit h4 { margin: 0 0 6px; font-size: 19px; font-weight: 700; color: var(--ink); }
.benefit p { margin: 0; color: var(--mut); font-size: 16px; line-height: 1.55; }


/* ============================================================================
   Promotions
   ============================================================================ */
.promos { background: var(--ink); color: #e2e8f0; }
.promos .section-head h2 { color: #fff; }
.promos .section-head p { color: #94a3b8; }
.promos .eyebrow { background: rgba(0, 102, 204, .18); color: #93c5fd; }
.promos .eyebrow::before { background: #93c5fd; }
.promos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.promo-card {
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, .07); border-radius: var(--radius);
    padding: 34px; position: relative; overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}
.promo-card:hover { transform: translateY(-6px); border-color: var(--brand); }
.promo-card .price {
    display: inline-block; background: var(--brand); color: #fff;
    padding: 7px 16px; border-radius: 999px; font-weight: 800;
    font-size: 15px; margin-bottom: 18px; letter-spacing: .4px;
}
.promo-card h3 { margin: 0 0 12px; font-size: 24px; color: #fff; line-height: 1.25; }
.promo-card p { margin: 0; color: #94a3b8; font-size: 16px; line-height: 1.6; }
.promo-card .valid { display: block; margin-top: 18px; color: #64748b; font-size: 13px; }

/* ============================================================================
   How it works (timeline)
   ============================================================================ */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.how-grid::before {
    content: ""; position: absolute; top: 40px; left: 14%; right: 14%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--brand) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step .num {
    width: 80px; height: 80px; margin: 0 auto 22px; border-radius: 50%;
    background: #fff; border: 3px solid var(--brand); color: var(--brand);
    display: grid; place-items: center; font-size: 30px; font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 61, 165, .25);
}
.step h3 { margin: 0 0 10px; font-size: 22px; }
.step p { margin: 0; color: var(--mut); font-size: 16px; line-height: 1.55; max-width: 320px; margin-inline: auto; }

/* ============================================================================
   Testimonials carousel
   ============================================================================ */
.testimonials { background: var(--bg-2); }
.tcarousel {
    position: relative; max-width: 800px; margin: 0 auto;
    overflow: hidden;
}
.tcarousel-track {
    display: flex; transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}
.tcarousel-slide { min-width: 100%; padding: 0 8px; }
.tcarousel { max-width: 920px; }
.tcard {
    background: #fff; padding: 52px 48px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); text-align: center;
}
.tcard .stars {
    display: inline-flex; gap: 3px; color: #f59e0b; font-size: 22px; margin-bottom: 22px;
}
.tcard blockquote {
    font-size: 21px; line-height: 1.55; color: var(--ink); margin: 0 0 24px;
    font-style: italic; quotes: "“" "”";
}
.tcard blockquote::before { content: open-quote; color: var(--brand); font-size: 32px; line-height: 0; vertical-align: -16px; margin-right: 4px; }
.tcard blockquote::after  { content: close-quote; color: var(--brand); font-size: 32px; line-height: 0; vertical-align: -16px; margin-left: 4px; }
.tcard .who { font-weight: 700; font-size: 17px; }
.tcard .who small { display: block; color: var(--mut); font-weight: 500; margin-top: 4px; font-size: 14px; }
.tcarousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.tcarousel-dots button {
    width: 10px; height: 10px; border-radius: 50%; background: var(--mut-2);
    border: none; cursor: pointer; padding: 0; transition: all .2s;
}
.tcarousel-dots button.on { background: var(--brand); width: 28px; border-radius: 5px; }

/* ============================================================================
   Location
   ============================================================================ */
.location-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: stretch; }
.location-info { display: flex; flex-direction: column; gap: 20px; }
.info-block { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.info-block h4 { margin: 0 0 8px; font-size: 13px; text-transform: uppercase; letter-spacing: .9px; color: var(--mut); font-weight: 700; }
.info-block p { margin: 0; font-size: 18px; font-weight: 600; line-height: 1.45; }
.info-block .icon { color: var(--brand); margin-bottom: 8px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ============================================================================
   Final CTA
   ============================================================================ */
.final-cta {
    background:
        radial-gradient(800px 400px at 70% 0%, rgba(0, 102, 204, .45), transparent 55%),
        linear-gradient(135deg, #0B1929 0%, #142840 100%);
    color: #fff; text-align: center;
}
.final-cta h2 { font-size: clamp(34px, 3.8vw, 56px); margin: 0 0 18px; letter-spacing: -1.4px; font-weight: 800; line-height: 1.1; }
.final-cta p { color: #cbd5e1; font-size: 20px; margin: 0 auto 36px; max-width: 720px; line-height: 1.55; }
.final-cta .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }
.final-cta .btn-ghost:hover { background: #fff; color: var(--ink); }

/* ============================================================================
   Footer
   ============================================================================ */
.footer {
    background: #020617; color: #94a3b8; padding: 50px 0 100px;
    font-size: 15px; line-height: 1.6; border-top: 1px solid rgba(255, 255, 255, .05);
}
.footer .container { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.footer a { color: #cbd5e1; }

/* ============================================================================
   Mobile sticky CTA bar
   ============================================================================ */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    display: none;
    background: rgba(255, 255, 255, .98); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line); padding: 10px 12px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .12);
    gap: 8px;
}
.sticky-cta .btn { flex: 1; padding: 14px 16px; font-size: 14px; }

/* ============================================================================
   Animations (IntersectionObserver-triggered)
   ============================================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================================================
   Responsive
   ============================================================================ */
/* ============================================================================
   RESPONSIVE
   Breakpoints:
     1024px ↓  — tablet landscape (iPad Pro 11", iPad landscape)
      768px ↓  — tablet portrait + large phones
      480px ↓  — small phones
   ============================================================================ */

/* -------- Tablet landscape (≤1024px) -------- */
@media (max-width: 1024px) {
    body { font-size: 16px; }
    .container { padding: 0 24px; }

    .hero { padding: 70px 0 90px; }
    .hero .container { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { order: -1; aspect-ratio: 16 / 10; max-width: 720px; margin: 0 auto; width: 100%; }
    .hero h1 { font-size: clamp(36px, 6vw, 56px); }
    .hero .lead { font-size: 19px; max-width: 100%; }
    .hero-ctas { gap: 10px; }

    section { padding: 80px 0; }
    .section-head { margin-bottom: 48px; }
    .section-head h2 { font-size: clamp(30px, 4.4vw, 42px); }
    .section-head p { font-size: 17px; }

    .stats { padding: 60px 0; }
    .stats .grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .stat .num { font-size: clamp(34px, 5vw, 48px); }

    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .service-card { padding: 28px; }
    .service-card .body { padding: 22px 24px 26px; }
    .service-card .body h3 { font-size: 20px; }

    .accident-card { grid-template-columns: 1fr; }
    .accident-photo { min-height: 320px; aspect-ratio: 16 / 9; }
    .accident-body { padding: 38px 32px; }
    .accident-body h3 { font-size: 24px; }
    .accident-body p { font-size: 16px; }

    .promos-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .promo-card { padding: 28px; }
    .promo-card h3 { font-size: 21px; }

    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .benefit { padding: 24px; gap: 16px; }
    .benefit h4 { font-size: 17px; }
    .benefit p { font-size: 15px; }

    .how-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .how-grid::before { top: 32px; }
    .step .num { width: 64px; height: 64px; font-size: 24px; }
    .step h3 { font-size: 19px; }
    .step p { font-size: 15px; }

    .location-grid { grid-template-columns: 1fr; gap: 28px; }
    .map-wrap { min-height: 320px; }
    .map-wrap iframe { min-height: 320px; }

    .tcarousel { max-width: 740px; }
    .tcard { padding: 40px 36px; }
    .tcard blockquote { font-size: 19px; }

    .final-cta h2 { font-size: clamp(30px, 4.4vw, 42px); }
    .final-cta p { font-size: 18px; }
}

/* -------- Tablet portrait + large phones (≤768px) -------- */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .topbar { padding: 8px 0; font-size: 13px; }
    .topbar .container { gap: 8px; }
    .topbar .topbar-contact { display: none; }

    .header .container { padding-top: 12px; padding-bottom: 12px; }
    .logo { font-size: 17px; gap: 11px; }
    .logo-mark { width: 42px; height: 42px; font-size: 16px; }
    .logo small { font-size: 11px; }
    .header .nav-cta .btn-call { display: none; }

    .hero { padding: 50px 0 70px; }
    .hero .container { gap: 36px; }
    .hero h1 { font-size: clamp(32px, 7.5vw, 42px); letter-spacing: -1px; line-height: 1.1; }
    .hero .lead { font-size: 17px; }
    .hero-ctas { flex-direction: column; gap: 12px; }
    .hero-ctas .btn { width: 100%; }
    .hero-visual { aspect-ratio: 4 / 3; }
    .floating-badge { font-size: 13px; padding: 12px 16px; }
    .floating-badge .dot { width: 36px; height: 36px; font-size: 17px; }
    .trust-strip { font-size: 13px; gap: 16px; }

    section { padding: 64px 0; }
    .section-head { margin-bottom: 40px; }
    .section-head h2 { font-size: clamp(26px, 6vw, 32px); }
    .section-head p { font-size: 16px; }

    .stats { padding: 50px 0; }
    .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .stat .num { font-size: 36px; }
    .stat .label { font-size: 13px; }

    .services-grid { grid-template-columns: 1fr; gap: 18px; }
    .service-card.has-photo .photo { aspect-ratio: 16 / 9; }

    .accident-photo { min-height: 240px; aspect-ratio: 4 / 3; }
    .accident-body { padding: 32px 24px; }
    .accident-body h3 { font-size: 22px; }
    .accident-body p { font-size: 15px; }

    .promos-grid { grid-template-columns: 1fr; gap: 18px; }
    .promo-card { padding: 26px; }

    .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
    .benefit { padding: 20px; gap: 14px; }
    .benefit .b-ico { width: 46px; height: 46px; }
    .benefit .b-ico svg { width: 22px; height: 22px; }

    .how-grid { grid-template-columns: 1fr; gap: 32px; }
    .how-grid::before { display: none; }
    .step .num { width: 56px; height: 56px; font-size: 22px; }

    .location-grid { gap: 18px; }
    .map-wrap { min-height: 280px; }
    .map-wrap iframe { min-height: 280px; }

    .tcarousel { max-width: 100%; }
    .tcard { padding: 32px 24px; }
    .tcard blockquote { font-size: 17px; line-height: 1.55; }
    .tcard .stars { font-size: 18px; margin-bottom: 16px; }

    .final-cta h2 { font-size: clamp(26px, 6vw, 34px); }
    .final-cta p { font-size: 17px; }
    .final-cta .hero-ctas { flex-direction: row !important; flex-wrap: wrap; }

    .footer { padding: 36px 0 100px; font-size: 14px; }
    .footer .container { gap: 8px; }

    /* Mobile sticky bottom CTA — show */
    .sticky-cta { display: flex; }
    body { padding-bottom: 80px; }
    .footer { padding-bottom: 110px; }
}

/* -------- Small phones (≤480px) -------- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .topbar { font-size: 12px; }
    .topbar .open-now { font-size: 12px; }

    .header .container { padding-top: 10px; padding-bottom: 10px; }
    .logo small { display: none; }
    .nav-cta .btn { padding: 8px 14px; font-size: 13px; }

    .hero { padding: 40px 0 56px; }
    .hero h1 { font-size: 28px; }
    .hero h1 .accent::after { height: 8px; }
    .hero .lead { font-size: 16px; }
    .btn-lg { padding: 16px 22px; font-size: 16px; }
    .trust-strip { gap: 10px 18px; font-size: 12.5px; }
    .floating-badge { font-size: 12px; padding: 10px 12px; }
    .floating-badge .dot { width: 30px; height: 30px; font-size: 15px; }
    .fb-1 { top: 14px; left: 14px; }
    .fb-2 { bottom: 14px; right: 14px; }
    .floating-badge small { display: none !important; }
    .floating-badge br { display: none; }

    section { padding: 52px 0; }
    .section-head { margin-bottom: 32px; }
    .section-head h2 { font-size: 26px; letter-spacing: -.5px; }

    .service-card .body { padding: 20px 22px 24px; }
    .service-card .body h3 { font-size: 18px; }
    .service-card .body p { font-size: 14.5px; }

    .accident-body { padding: 26px 20px; }
    .accident-body h3 { font-size: 20px; }

    .promo-card { padding: 22px; }
    .promo-card h3 { font-size: 19px; }

    .benefit { padding: 18px; gap: 14px; }
    .benefit h4 { font-size: 16px; }
    .benefit p { font-size: 14px; }

    .tcard { padding: 28px 20px; }
    .tcard blockquote { font-size: 16px; }
    .tcard blockquote::before, .tcard blockquote::after { font-size: 26px; }

    .info-block { padding: 22px; }
    .info-block p { font-size: 16px; }

    .sticky-cta { padding: 8px 10px; gap: 6px; }
    .sticky-cta .btn { padding: 12px 10px; font-size: 13.5px; }
}
