/* ============================================
CDT Auto Collision — Hoja de estilos
Tipos: Oswald (titulares) + Work Sans (cuerpo)
Paleta: dorado #E4B93F, carbón #1C1B19,
concreto #ECE9E2, blanco #FFFFFF,
óxido #6B4226 (acento, uso mínimo)
============================================ */

:root {
--gold: #FFC72C;
--gold-dark: #E6A800;
--gold-bright: #FFD900;
--charcoal: #0D0D0C;
--charcoal-soft: #1E1D1A;
--concrete: #ECE9E2;
--concrete-line: #D8D3C7;
--white: #FFFFFF;
--oxide: #6B4226;
--text: #171614;
--text-soft: #5B584F;
--radius: 4px;
--max: 1180px;
}

/* ---------- Diagonal accent shapes (CARSTAR-style bold blocks) ---------- */
.diagonal-accent {
position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
}
.diagonal-accent::before {
content: ""; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%;
background: var(--gold); opacity: .08; transform: skewX(-12deg);
}
.stripe-yellow { height: 6px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright)); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
margin: 0;
font-family: 'Work Sans', -apple-system, sans-serif;
color: var(--text);
background: var(--white);
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
font-family: 'Oswald', -apple-system, sans-serif;
font-weight: 600;
margin: 0 0 .5em;
letter-spacing: 0.01em;
color: var(--charcoal);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.08; font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); line-height: 1.15; }
h3 { font-size: 1.15rem; }

p { color: var(--text-soft); max-width: 62ch; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--dark p { color: #C9C6BE; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--concrete { background: var(--concrete); }

/* ---------- Skip link ---------- */
.skip-link {
position: absolute; left: -999px; top: 0; background: var(--gold);
color: var(--charcoal); padding: 10px 16px; z-index: 200; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Nav ---------- */
.nav {
position: sticky; top: 0; z-index: 100;
background: var(--white);
border-bottom: 1px solid var(--concrete-line);
}
.nav__inner {
max-width: var(--max); margin: 0 auto; padding: 0 24px;
display: flex; align-items: center; justify-content: space-between;
height: 68px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__brand img { height: 42px; width: auto; }
.nav__brand-text {
font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.02rem;
color: var(--charcoal); line-height: 1.1;
}
.nav__brand-text span { display: block; font-family: 'Work Sans', sans-serif;
font-weight: 500; font-size: .68rem; color: var(--text-soft); letter-spacing: .02em; }

.nav__links {
display: flex; align-items: center; gap: 30px; list-style: none;
margin: 0; padding: 0;
}
.nav__links a {
text-decoration: none; font-weight: 500; font-size: .93rem; color: var(--text);
padding: 6px 2px; border-bottom: 2px solid transparent;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { border-bottom-color: var(--gold); }

.nav__links a.nav__cta {
background: var(--charcoal); color: var(--white) !important; text-decoration: none;
padding: 10px 18px; border-radius: var(--radius); font-weight: 600; font-size: .88rem;
white-space: nowrap; border-bottom: none;
}
.nav__links a.nav__cta:hover { background: var(--gold); color: var(--charcoal) !important; }

.nav__right { display: flex; align-items: center; gap: 8px; }

.lang-toggle {
display: flex; align-items: center; gap: 6px; background: var(--concrete);
border: 1px solid var(--concrete-line); border-radius: 999px; padding: 5px 10px 5px 6px;
cursor: pointer; font-weight: 700; font-size: .78rem; color: var(--charcoal);
font-family: 'Oswald', sans-serif; letter-spacing: .03em;
}
.lang-toggle:hover { border-color: var(--gold); background: #FBF3DC; }
.lang-toggle .pr-flag { width: 22px; height: auto; border-radius: 2px; flex-shrink: 0; }

.nav__toggle {
display: none; background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__toggle span {
display: block; width: 24px; height: 3px; border-radius: 2px; background: var(--charcoal); margin: 5px 0;
transition: background .15s ease;
}
.nav__toggle:hover span { background: var(--gold-dark); }

@media (max-width: 860px) {
.nav__links {
position: fixed; inset: 68px 0 0 0; background: var(--white);
flex-direction: column; align-items: flex-start; gap: 0;
padding: 10px 24px 24px; transform: translateY(-8px);
opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
overflow-y: auto; z-index: 95; box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.nav__links.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav__links li { width: 100%; border-bottom: 1px solid var(--concrete-line); }
.nav__links a { display: block; padding: 14px 2px; }
.nav__links .nav__cta { margin: 14px 0 0; display: inline-block; }
.nav__toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 14px 26px; border-radius: var(--radius); text-decoration: none;
font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer;
}
.btn--primary { background: var(--gold); color: var(--charcoal); }
.btn--primary:hover { background: var(--gold-dark); }
.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { background: var(--charcoal-soft); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn--block { width: 100%; justify-content: center; }
.btn--whatsapp { background: #25D366; color: var(--white); }
.btn--whatsapp:hover { background: #1EBE5A; }

/* ---------- Hero (home) ---------- */
.hero {
position: relative; color: var(--white); overflow: hidden;
min-height: 82vh; display: flex; align-items: flex-end;
}
.hero__img {
position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
object-position: center 65%;
}
.hero__scrim {
position: absolute; inset: 0;
background: linear-gradient(180deg, rgba(20,19,17,.25) 0%, rgba(20,19,17,.55) 55%, rgba(20,19,17,.92) 100%);
}
.hero__diagonal {
position: absolute; top: 0; right: 0; width: 55%; height: 100%; z-index: 1;
background: linear-gradient(100deg, transparent 0%, transparent 30%, rgba(255,199,44,.16) 32%, rgba(255,199,44,.16) 35%, transparent 37%, transparent 60%, rgba(13,13,12,.4) 62%);
pointer-events: none;
}
.hero__diagonal::after {
content: ''; position: absolute; top: 0; left: 30%; width: 6px; height: 100%;
background: var(--gold-bright); transform: skewX(-12deg); box-shadow: 0 0 30px rgba(255,217,0,.6);
}
.hero__content { position: relative; z-index: 2; padding: 56px 0 52px; width: 100%; }
.hero__trust { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero__trust-item {
font-size: .92rem; color: var(--white); font-weight: 600; display: flex; align-items: center; gap: 6px;
}
.hero__trust-item b { color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 1.05rem; }
.hero__eyebrow {
display: inline-block; background: var(--gold); color: var(--charcoal);
font-family: 'Oswald', sans-serif; font-weight: 600; font-size: .82rem;
padding: 6px 12px; border-radius: var(--radius); margin-bottom: 18px;
}
.hero h1 {
color: var(--white); max-width: 13ch;
font-size: clamp(2.8rem, 7.5vw, 5.6rem); line-height: .98; letter-spacing: -.01em;
text-transform: uppercase; font-weight: 700;
text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero__lede { color: #EDEAE3; font-size: 1.08rem; max-width: 46ch; margin-top: 14px; }
.hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Stat strip ---------- */
.stats {
display: grid; grid-template-columns: repeat(4, 1fr);
border-top: 1px solid var(--concrete-line);
border-bottom: 1px solid var(--concrete-line);
}
.stats__item {
padding: 26px 18px; text-align: center; border-right: 1px solid var(--concrete-line);
}
.stats__item:last-child { border-right: none; }
.stats__num {
font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.9rem; color: var(--charcoal);
display: block;
}
.stats__label { font-size: .82rem; color: var(--text-soft); margin-top: 2px; }
@media (max-width: 720px) {
.stats { grid-template-columns: repeat(2, 1fr); }
.stats__item:nth-child(2) { border-right: none; }
.stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--concrete-line); }
}

/* ---------- Section heads ---------- */
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
font-family: 'Oswald', sans-serif; font-weight: 700; font-size: .82rem;
color: var(--gold-dark); text-transform: uppercase; letter-spacing: .08em;
display: block; margin-bottom: 8px; position: relative; padding-left: 16px;
}
.kicker::before {
content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
width: 10px; height: 3px; background: var(--gold-dark);
}
.section--dark .kicker { color: var(--gold); }
.section--dark .kicker::before { background: var(--gold); }

/* ---------- Service ticket lines ---------- */
.ticket-list { border-top: 1px solid var(--concrete-line); }
.ticket-line {
display: grid; grid-template-columns: 64px 1fr auto; gap: 20px; align-items: start;
padding: 26px 0; border-bottom: 1px solid var(--concrete-line);
}
.ticket-line__icon {
width: 46px; height: 46px; border-radius: 50%; background: var(--concrete);
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ticket-line__icon svg { width: 24px; height: 24px; stroke: var(--charcoal); }
.ticket-line__body h3 { margin-bottom: 4px; }
.ticket-line__body p { margin: 0; font-size: .95rem; }
.ticket-line__tag {
font-family: 'Oswald', sans-serif; font-size: .78rem; font-weight: 600;
color: var(--text-soft); white-space: nowrap; padding-top: 6px;
}
@media (max-width: 640px) {
.ticket-line { grid-template-columns: 46px 1fr; }
.ticket-line__tag { grid-column: 2; padding-top: 0; }
}

/* ---------- Insurer badges ---------- */
.insurer-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.insurer-badge {
border: 1px solid var(--concrete-line); border-radius: var(--radius);
padding: 22px 14px; text-align: center; background: var(--white);
display: flex; flex-direction: column; align-items: center; justify-content: center;
gap: 6px; min-height: 110px; position: relative; transition: border-color .15s ease, transform .15s ease;
}
.insurer-badge:hover { border-color: var(--gold); transform: translateY(-2px); }
.insurer-badge img {
max-height: 40px; max-width: 100%; width: auto; object-fit: contain;
}
.insurer-badge__check {
width: 22px; height: 22px; border-radius: 50%; background: var(--gold);
color: var(--charcoal); font-weight: 700; font-size: .78rem;
display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.insurer-badge__mark {
font-family: 'Oswald', sans-serif; font-weight: 700; font-size: .68rem;
color: var(--text-soft); letter-spacing: .08em; margin-top: 2px; display: block;
}
.insurer-badge__name { font-weight: 700; font-size: 1.02rem; color: var(--charcoal); font-family: 'Oswald', sans-serif; }
@media (max-width: 640px) { .insurer-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Before/after gallery ---------- */
.ba-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-card {
border: 1px solid var(--concrete-line); border-radius: var(--radius); overflow: hidden; background: var(--white);
}
.ba-card__pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-card__slot { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--concrete); }
.ba-card__slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-card__label {
position: absolute; top: 8px; left: 8px; font-family: 'Oswald', sans-serif; font-weight: 700;
font-size: .68rem; letter-spacing: .08em; padding: 3px 9px; border-radius: 2px; color: var(--white);
}
.ba-card__label--before { background: rgba(20,20,18,.72); }
.ba-card__label--after { background: var(--gold-dark); color: var(--charcoal); }
.ba-card__caption { padding: 12px 14px; font-size: .92rem; color: var(--text-soft); }
.ba-placeholder {
width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
gap: 6px; color: var(--text-soft); background: repeating-linear-gradient(135deg, var(--concrete), var(--concrete) 10px, #E4E0D5 10px, #E4E0D5 20px);
}
.ba-placeholder svg { width: 26px; height: 26px; opacity: .5; }
.ba-placeholder span { font-size: .68rem; font-family: 'Oswald', sans-serif; letter-spacing: .05em; text-transform: uppercase; opacity: .7; }

/* ---------- Shop / team photo strip ---------- */
.shop-strip {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 760px) { .shop-strip { grid-template-columns: repeat(2, 1fr); } }
.shop-strip__item { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; }
.shop-strip__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Guarantee seal ---------- */
.seal {
display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 10px;
border: 1.5px solid var(--gold); border-radius: 999px; background: rgba(255,199,44,.08);
}
.seal svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
.seal__text { display: flex; flex-direction: column; line-height: 1.15; }
.seal__line1 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; }
.seal__line2 { font-size: .74rem; opacity: .85; }
.seal--dark { border-color: var(--gold); color: var(--white); }
.seal--dark .seal__line1 { color: var(--gold); }
.seal--dark .seal__line2 { color: rgba(255,255,255,.75); }
.seal--light { background: var(--white); border-color: var(--gold-dark); }
.seal--light .seal__line1 { color: var(--charcoal); }
.seal--light .seal__line2 { color: var(--text-soft); }

/* ---------- Service article media (servicios.html) ---------- */
.service-media {
display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start;
}
@media (max-width: 760px) { .service-media { grid-template-columns: 1fr; } }
.service-media__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.service-media__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-media__body :first-child { margin-top: 0; }

/* ---------- Numbered process ---------- */
.process { counter-reset: step; }
.process__step {
display: grid; grid-template-columns: 48px 1fr; gap: 18px;
padding: 22px 0; border-bottom: 1px solid var(--concrete-line);
}
.process__step:last-child { border-bottom: none; }
.process__num {
font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.3rem;
color: var(--gold-dark); border: 2px solid var(--gold); border-radius: 50%;
width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}
.process__step h3 { margin-bottom: 4px; }
.process__step p { margin: 0; font-size: .95rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
background: var(--white); border: 1px solid var(--concrete-line);
padding: 26px 22px; border-radius: var(--radius);
}
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: .93rem; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- Quote ticket / form ---------- */
.quote-ticket {
background: var(--white); border: 1px solid var(--concrete-line);
border-radius: var(--radius); max-width: 680px; margin: 0 auto;
box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.quote-ticket__head {
background: var(--charcoal); color: var(--white); padding: 20px 28px;
display: flex; align-items: center; justify-content: space-between;
border-radius: var(--radius) var(--radius) 0 0;
}
.quote-ticket__head h2 { color: var(--white); margin: 0; font-size: 1.3rem; }
.quote-ticket__id { font-family: 'Oswald', sans-serif; color: var(--gold); font-size: .85rem; }
.quote-ticket__body { padding: 28px; }

.quote-ticket--highlight { animation: quoteTicketPulse 1.6s ease-out 2; }
@keyframes quoteTicketPulse {
0% { box-shadow: 0 0 0 0 rgba(255,196,0,.55); }
70% { box-shadow: 0 0 0 14px rgba(255,196,0,0); }
100% { box-shadow: 0 0 0 0 rgba(255,196,0,0); }
}

.field { margin-bottom: 18px; }
.field label {
display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--charcoal);
}
.field .hint { font-size: .8rem; color: var(--text-soft); margin-top: 4px; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
width: 100%; padding: 12px 14px; border: 1px solid var(--concrete-line);
border-radius: var(--radius); font-family: inherit; font-size: .95rem; color: var(--text);
background: var(--white);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.file-drop {
border: 1.5px dashed var(--concrete-line); border-radius: var(--radius);
padding: 22px; text-align: center; background: var(--concrete);
}
.file-drop input[type="file"] { display: block; margin: 10px auto 0; font-size: .85rem; }
.file-drop p { margin: 0; font-size: .9rem; }

.divider-or {
display: flex; align-items: center; gap: 12px; margin: 22px 0; color: var(--text-soft);
font-size: .82rem; font-weight: 600;
}
.divider-or::before, .divider-or::after { content: ""; flex: 1; height: 1px; background: var(--concrete-line); }

.form-note { font-size: .82rem; color: var(--text-soft); margin-top: 14px; }
.form-success {
display: none; background: var(--concrete); border: 1px solid var(--concrete-line);
border-radius: var(--radius); padding: 20px; margin-top: 18px; text-align: center;
}
.form-success.is-visible { display: block; }

/* ---------- Contact / location ---------- */
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
padding: 16px 0; border-bottom: 1px solid var(--concrete-line);
display: grid; grid-template-columns: 110px 1fr; gap: 12px;
}
.info-list .k { font-weight: 600; font-family: 'Oswald', sans-serif; font-size: .85rem;
color: var(--text-soft); text-transform: uppercase; letter-spacing: .03em; }
.info-list .v { color: var(--text); }
.map-frame {
border: 1px solid var(--concrete-line); border-radius: var(--radius); overflow: hidden;
aspect-ratio: 4/3; width: 100%;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Reviews strip ---------- */
.review-card {
background: var(--white); border: 1px solid var(--concrete-line); border-radius: var(--radius);
padding: 22px; font-size: .93rem;
}
.review-card__stars { color: var(--gold-dark); font-size: 1rem; margin-bottom: 8px; letter-spacing: 2px; }
.review-card p { margin: 0 0 10px; }
.review-card__name { font-weight: 600; color: var(--charcoal); font-size: .85rem; }

/* ---------- CTA band ---------- */
.cta-band {
background: var(--gold); padding: 48px 0; text-align: center;
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { margin: 0 auto 22px; color: var(--charcoal); opacity: .8; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: #C9C6BE; padding: 52px 0 26px; }
.footer__grid {
display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand img { height: 38px; }
.footer__brand-text { font-family: 'Oswald', sans-serif; color: var(--white); font-weight: 700; }
.footer h4 {
color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em;
margin-bottom: 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; font-size: .92rem; }
.footer a { text-decoration: none; color: #C9C6BE; }
.footer a:hover { color: var(--gold); }
.footer__bottom {
border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px;
font-size: .8rem; color: #8C897F; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Social links ---------- */
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
display: flex; align-items: center; justify-content: center;
width: 36px; height: 36px; border-radius: 50%;
background: rgba(255,255,255,.08); color: var(--white);
transition: background .15s ease;
}
.footer__social a:hover { background: var(--gold); color: var(--charcoal); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
position: fixed; right: 20px; bottom: 20px; z-index: 999;
width: 58px; height: 58px; border-radius: 50%;
background: #25D366; display: flex; align-items: center; justify-content: center;
box-shadow: 0 4px 14px rgba(0,0,0,.25);
transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
@media (max-width: 480px) {
.wa-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
.wa-float svg { width: 26px; height: 26px; }
}

/* ---------- Utility ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.pill {
border: 1px solid var(--concrete-line); border-radius: 999px; padding: 6px 14px;
font-size: .82rem; font-weight: 600; color: var(--text-soft);
}
