:root {
  --ink: #07101b;
  --ink-2: #0d1826;
  --graphite: #151f2b;
  --steel: #657184;
  --muted: #6f7a89;
  --line: #dfe5ec;
  --soft: #f3f6f9;
  --white: #ffffff;
  --blue: #1456c8;
  --blue-2: #2f75eb;
  --blue-3: #0b3c92;
  --green: #1eaa61;
  --shadow: 0 18px 45px rgba(10, 23, 40, .12);
  --shadow-sm: 0 10px 24px rgba(10, 23, 40, .09);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1240px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: #eef2f6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.section { padding: 28px 0; }
.section--tight { padding: 18px 0; }
.section--white { background: var(--white); }
.section--soft { background: var(--soft); }
.section--dark { color: var(--white); background: var(--ink); }
.hidden { display: none !important; }

/* Type */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}
.section-head h2, .page-intro h1, .feature-copy h2, .mechanic-copy h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.03;
  text-transform: uppercase;
}
.section-head h2 { font-size: clamp(1.55rem, 2.5vw, 2.3rem); }
.section-head p { margin: 6px 0 0; color: var(--muted); max-width: 680px; }
.section-note { color: var(--muted); font-size: .88rem; }
.lead { font-size: clamp(1rem, 1.2vw, 1.14rem); color: #dfe8f2; }
.price { font-weight: 900; color: var(--ink); }
.text-blue { color: var(--blue); }
.small { font-size: .84rem; }

/* Buttons */
.btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--blue-2), var(--blue)); box-shadow: 0 10px 24px rgba(20, 86, 200, .28); }
.btn--primary:hover { box-shadow: 0 14px 30px rgba(20, 86, 200, .34); }
.btn--dark { color: #fff; background: var(--ink); border-color: #27374a; }
.btn--outline { color: var(--ink); background: #fff; border-color: #cbd5e1; }
.btn--outline-light { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(6,13,22,.35); backdrop-filter: blur(10px); }
.btn--ghost { padding-inline: 10px; min-height: 38px; color: var(--blue); background: transparent; }
.btn--sm { min-height: 36px; padding: 9px 13px; font-size: .82rem; border-radius: 7px; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* Header */
.topbar { color: #d8e1ec; background: #06101b; font-size: .78rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar__items { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar__item svg { width: 14px; height: 14px; color: #8eb5ff; }
.topbar .btn { min-height: 28px; padding: 7px 11px; font-size: .72rem; border-radius: 6px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  color: #fff;
  background: rgba(8, 17, 28, .97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 22px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 176px; height: 58px; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(0,0,0,.35)); }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 18px; font-size: .78rem; font-weight: 700; white-space: nowrap; }
.main-nav a { position: relative; padding: 28px 0 25px; color: #dbe4ef; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 17px; height: 2px; background: var(--blue-2); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; gap: 9px; }
.header-actions .btn { min-height: 38px; font-size: .76rem; padding: 9px 13px; }
.menu-toggle { display: none; width: 42px; height: 42px; color: #fff; background: #162334; border: 1px solid #2b3a4e; border-radius: 9px; align-items: center; justify-content: center; }
.menu-toggle svg { width: 23px; height: 23px; }

/* Hero */
.hero-wrap { background: var(--ink); }
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4,10,17,.98) 0%, rgba(4,10,17,.92) 28%, rgba(4,10,17,.42) 54%, rgba(4,10,17,.05) 100%), url('assets/img/hero-gspeed.webp');
  background-size: cover;
  background-position: center;
  border-radius: 0 0 18px 18px;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(180deg, transparent, rgba(5,12,20,.6)); pointer-events: none; }
.hero__content { position: relative; z-index: 2; min-height: 560px; display: flex; align-items: center; }
.hero__copy { width: min(540px, 47%); padding: 42px 0 90px; }
.hero h1 { margin: 0 0 16px; font-size: clamp(2.45rem, 4.8vw, 4.6rem); line-height: .96; letter-spacing: -.055em; font-weight: 950; }
.hero p { max-width: 535px; margin: 0; color: #dce5ef; }
.hero__actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero-strips { position: absolute; z-index: 3; left: 0; right: 0; bottom: 18px; display: flex; gap: 10px; }
.hero-strip { flex: 1; min-width: 0; padding: 10px 13px; border-radius: 9px; color: #eef5ff; background: rgba(8,16,26,.78); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); display: flex; align-items: center; gap: 9px; font-size: .77rem; font-weight: 700; }
.hero-strip svg { width: 17px; height: 17px; color: #79a8ff; flex: 0 0 auto; }

/* Cards */
.quick-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 10px; margin-top: -1px; padding: 10px 0 12px; background: var(--ink); }
.quick-card { overflow: hidden; background: #fff; border: 1px solid #dbe3ec; border-radius: 12px; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quick-card__media { display: block; height: 132px; overflow: hidden; background: #111827; }
.quick-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.quick-card:hover img { transform: scale(1.05); }
.quick-card__body { padding: 14px 14px 12px; }
.quick-card__title { display: flex; align-items: center; gap: 8px; margin: 0 0 7px; font-weight: 900; font-size: .95rem; line-height: 1.1; }
.quick-card__title svg { width: 19px; height: 19px; color: var(--blue); }
.quick-card p { min-height: 55px; margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.quick-card .btn { margin-top: 6px; padding-left: 0; }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.price-layout { display: grid; grid-template-columns: 230px 1fr; gap: 14px; }
.price-photo { min-height: 335px; overflow: hidden; border-radius: 14px; background: var(--ink); }
.price-photo img { width: 100%; height: 100%; object-fit: cover; }
.wash-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.wash-card { padding: 16px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 13px; }
.wash-card h3 { margin: 0 0 4px; font-size: 1rem; }
.wash-card > p { min-height: 42px; margin: 0 0 12px; color: var(--muted); font-size: .76rem; }
.price-list { display: grid; gap: 7px; margin: 0 0 13px; }
.price-row { min-height: 46px; padding: 9px 11px; border-radius: 9px; background: #f8fafc; border: 1px solid #e6ebf1; display: flex; align-items: center; justify-content: space-between; gap: 10px; text-align: left; }
.price-row span { color: var(--muted); font-size: .76rem; }
.price-row strong { font-size: .95rem; white-space: nowrap; }

.service-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 12px; }
.info-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.service-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 13px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.service-card__image { height: 132px; overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 13px; }
.service-card h3 { margin: 0 0 7px; font-size: .9rem; line-height: 1.15; }
.service-card p { min-height: 48px; margin: 0 0 8px; color: var(--muted); font-size: .75rem; }
.service-card__meta { display: flex; flex-direction: column; gap: 2px; font-size: .74rem; color: var(--muted); }
.service-card__meta strong { color: var(--ink); font-size: .88rem; }

/* Ceramics / polish */
.ceramic-layout { display: grid; grid-template-columns: 280px 1fr; gap: 14px; align-items: stretch; }
.ceramic-photo { border-radius: 15px; overflow: hidden; background: var(--ink); }
.ceramic-photo img { width: 100%; height: 100%; object-fit: cover; }
.ceramic-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.ceramic-card { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.ceramic-card h3 { margin: 0 0 13px; font-size: 1.35rem; }
.ceramic-card .price-row { min-height: 40px; background: transparent; border-width: 0 0 1px; border-radius: 0; padding-inline: 0; }
.ceramic-card .price-row:last-child { border: 0; }
.ceramic-footer { margin-top: 12px; padding: 13px 16px; color: var(--muted); background: #f7f9fc; border: 1px solid var(--line); border-radius: 12px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.polish-grid { display: grid; grid-template-columns: 1.25fr 1.25fr 1fr; gap: 12px; }
.polish-card { min-height: 195px; display: grid; grid-template-columns: 43% 1fr; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.polish-card img { width: 100%; height: 100%; object-fit: cover; }
.polish-card__body { padding: 15px; }
.polish-card h3 { margin: 0 0 9px; }
.polish-card .price-row { padding: 6px 0; min-height: 30px; background: transparent; border: 0; }

/* Paint */
.paint-layout { display: grid; grid-template-columns: 1fr 280px; gap: 14px; }
.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px; }
.process-card { min-height: 118px; padding: 16px 10px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.process-card svg { width: 24px; height: 24px; color: var(--blue); }
.process-card strong { font-size: .82rem; line-height: 1.3; }
.paint-photo { overflow: hidden; border-radius: 14px; }
.paint-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Mechanic */
.mechanic-layout { display: grid; grid-template-columns: .95fr 1.15fr; gap: 14px; }
.mechanic-copy { position: relative; min-height: 390px; overflow: hidden; padding: 28px; color: #fff; border-radius: 16px; background-image: linear-gradient(90deg, rgba(4,10,17,.97), rgba(4,10,17,.45)), url('assets/img/mecanica.webp'); background-size: cover; background-position: center; }
.mechanic-copy h2 { font-size: clamp(1.6rem, 2.3vw, 2.4rem); }
.mechanic-copy p { max-width: 360px; color: #dbe4ef; }
.check-list { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; }
.check-list svg { flex: 0 0 auto; width: 18px; height: 18px; color: #78a8ff; margin-top: 2px; }
.form-panel { padding: 22px; }
.form-panel h3 { margin: 0 0 15px; font-size: 1.15rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.form-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #354155; font-size: .74rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 43px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(47,117,235,.12); }
.form-hint { margin: 10px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 14px; }
.tag { padding: 7px 10px; border-radius: 999px; background: #eef4ff; border: 1px solid #cfe0ff; color: #1b56b8; font-size: .74rem; font-weight: 800; }

/* Products */
.benefit-row { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px; margin-bottom: 14px; }
.benefit { padding: 12px 9px; display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; font-size: .75rem; font-weight: 800; color: #354155; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.benefit svg { width: 20px; height: 20px; color: var(--blue); }
.product-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 10px; }
.product-card { padding: 13px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 13px; }
.product-card img { width: 120px; height: 120px; margin: 0 auto 5px; object-fit: cover; border-radius: 10px; }
.product-card h3 { margin: 0; font-size: .9rem; }
.product-card p { margin: 3px 0; color: var(--muted); font-size: .7rem; }
.product-card .price { display: block; margin: 6px 0 8px; font-size: .9rem; }
.stock { display: inline-flex; align-items: center; gap: 5px; color: #5b6777; font-size: .66rem; }
.stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* Parts */
.parts-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }
.parts-search { padding: 20px; }
.parts-photo { min-height: 260px; overflow: hidden; border-radius: 15px; background: var(--ink); }
.parts-photo img { width: 100%; height: 100%; object-fit: cover; }
.popular { margin-top: 12px; display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.popular strong { font-size: .76rem; margin-right: 4px; }
.popular span { padding: 6px 10px; color: #1a4d9e; background: #f3f7ff; border: 1px solid #d7e5ff; border-radius: 999px; font-size: .7rem; }

/* Gallery + before after */
.showcase-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 14px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.filter-btn { min-height: 32px; padding: 7px 11px; color: #355273; background: #fff; border: 1px solid #dbe3ec; border-radius: 7px; font-size: .72rem; font-weight: 800; }
.filter-btn.active, .filter-btn:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; }
.gallery-card { position: relative; aspect-ratio: 1.25; overflow: hidden; border-radius: 9px; background: #152131; border: 0; padding: 0; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(4,10,17,.75)); }
.gallery-card span { position: absolute; z-index: 2; left: 8px; right: 8px; bottom: 7px; color: #fff; font-size: .66rem; font-weight: 800; text-align: left; }
.gallery-card:hover img { transform: scale(1.07); }
.before-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
.before-card { position: relative; overflow: hidden; border-radius: 10px; background: #111827; }
.before-card:last-child { grid-column: 1 / -1; }
.before-card img { width: 100%; height: 145px; object-fit: cover; }
.before-card__labels { position: absolute; inset: 8px 8px auto; display: flex; justify-content: space-between; color: #fff; font-size: .65rem; font-weight: 800; }
.before-card__labels span { padding: 4px 7px; border-radius: 6px; background: rgba(5,13,23,.76); }
.before-slider { position: relative; min-height: 360px; overflow: hidden; border-radius: 16px; background: #0b1420; }
.before-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.before-slider .after-image { clip-path: inset(0 0 0 50%); }
.before-slider input { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.before-slider__line { position: absolute; z-index: 3; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; }
.before-slider__handle { position: absolute; z-index: 4; left: 50%; top: 50%; width: 48px; height: 48px; transform: translate(-50%,-50%); border-radius: 50%; background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.3); display: grid; place-items: center; pointer-events: none; }
.before-slider__handle::before { content: "↔"; color: var(--blue); font-size: 1.2rem; font-weight: 900; }

/* Workflow / why / faq */
.steps { display: grid; grid-template-columns: repeat(8, minmax(0,1fr)); gap: 5px; }
.step { position: relative; min-height: 110px; padding: 10px 8px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 34px; right: -8px; width: 16px; height: 1px; background: #b9c8da; }
.step__number { font-size: 2rem; line-height: 1; color: var(--blue); font-weight: 900; }
.step strong { margin-top: 6px; font-size: .73rem; line-height: 1.25; }
.why-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 8px; }
.why-item { min-height: 105px; padding: 12px 8px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.why-item svg { width: 26px; height: 26px; color: var(--blue); }
.why-item strong { font-size: .7rem; line-height: 1.3; }
.faq-list { display: grid; gap: 7px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.faq-question { width: 100%; padding: 12px 14px; border: 0; background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; font-weight: 800; font-size: .78rem; }
.faq-question svg { width: 16px; height: 16px; transition: transform .2s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 14px 13px; color: var(--muted); font-size: .76rem; }
.faq-item.open .faq-answer { display: block; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .78fr .68fr 1.1fr; gap: 14px; }
.contact-card { padding: 20px; }
.contact-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; }
.contact-list svg { width: 18px; height: 18px; color: var(--blue); flex: 0 0 auto; margin-top: 2px; }
.map-card { overflow: hidden; min-height: 320px; border-radius: 15px; border: 1px solid var(--line); }
.map-card img { width: 100%; height: 100%; object-fit: cover; }
.message-preview { min-height: 132px; padding: 14px; white-space: pre-line; color: #354155; background: #f6f8fb; border: 1px dashed #b9c7d8; border-radius: 9px; font-size: .78rem; }

/* Final CTA + footer */
.final-cta { position: relative; overflow: hidden; min-height: 190px; padding: 28px 42px; color: #fff; background-image: linear-gradient(90deg, rgba(5,12,20,.98) 0%, rgba(5,12,20,.94) 45%, rgba(5,12,20,.25) 100%), url('assets/img/headlight.webp'); background-size: cover; background-position: right center; border-radius: 17px 17px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.final-cta h2 { max-width: 520px; margin: 0 0 8px; font-size: clamp(1.8rem, 3vw, 3.1rem); line-height: 1; letter-spacing: -.045em; }
.final-cta p { margin: 0; color: #d6e0ec; }
.final-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.footer { color: #cbd5e1; background: #07101b; }
.footer__main { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 26px; padding: 34px 0 27px; }
.footer__brand img { width: 185px; height: 72px; object-fit: contain; }
.footer__brand p { max-width: 260px; margin: 8px 0; color: #91a0b3; font-size: .78rem; }
.footer h3 { margin: 7px 0 12px; color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; font-size: .76rem; }
.footer a:hover { color: #fff; }
.socials { display: flex; gap: 8px; margin-top: 12px; }
.socials a { width: 34px; height: 34px; border: 1px solid #29384b; border-radius: 50%; display: grid; place-items: center; }
.socials svg { width: 17px; height: 17px; }
.footer__bottom { min-height: 45px; border-top: 1px solid #1d2a3b; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #718096; font-size: .68rem; }
.footer__legal { display: flex; gap: 15px; }

/* Floating / mobile bar */
.float-whatsapp { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 58px; height: 58px; color: #fff; background: #25D366; border: 0; border-radius: 50%; box-shadow: 0 12px 30px rgba(37,211,102,.38); display: grid; place-items: center; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; }
.float-whatsapp:hover { transform: translateY(-2px) scale(1.04); background: #20bd5a; box-shadow: 0 16px 34px rgba(37,211,102,.45); }
.float-whatsapp:focus-visible { outline: 3px solid rgba(255,255,255,.9); outline-offset: 3px; }
.float-whatsapp .whatsapp-brand-icon { width: 31px; height: 31px; display: block; fill: currentColor; stroke: none; }
.mobile-bottom { display: none; }

/* Page interiors */
.page-hero { position: relative; min-height: 360px; color: #fff; background: var(--ink); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,10,17,.98), rgba(4,10,17,.55)); }
.page-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .76; }
.page-intro { position: relative; z-index: 2; min-height: 360px; display: flex; flex-direction: column; justify-content: center; max-width: 650px; }
.page-intro h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
.page-intro p { margin: 14px 0 0; color: #d8e2ed; font-size: 1.05rem; }
.breadcrumbs { display: flex; gap: 8px; margin-bottom: 14px; color: #aebdce; font-size: .76rem; }
.breadcrumbs span { color: #fff; }
.content-grid { display: grid; grid-template-columns: 1fr 330px; gap: 24px; }
.sidebar-card { padding: 20px; position: sticky; top: calc(var(--header-h) + 18px); }
.article-card { padding: 24px; }
.article-card h2 { margin-top: 0; }
.article-card + .article-card { margin-top: 16px; }
.note-box { padding: 14px 16px; color: #355273; background: #edf4ff; border-left: 4px solid var(--blue); border-radius: 9px; }

/* Modal */
.modal { position: fixed; z-index: 2000; inset: 0; padding: 24px; display: none; place-items: center; background: rgba(3,8,14,.86); backdrop-filter: blur(8px); }
.modal.open { display: grid; }
.modal__dialog { position: relative; width: min(980px, 100%); max-height: 90vh; overflow: hidden; border-radius: 16px; background: #0a1421; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.modal__dialog img { width: 100%; max-height: 78vh; object-fit: contain; }
.modal__caption { padding: 14px 18px; color: #dce5ef; }
.modal__close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 40px; height: 40px; color: #fff; background: rgba(5,12,20,.75); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }

/* Animations */
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --container: 1080px; }
  .main-nav { gap: 11px; font-size: .72rem; }
  .header-actions .btn--outline-light { display: none; }
  .quick-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .info-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .steps { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .step:nth-child(4)::after { display: none; }
}

@media (max-width: 1120px) {
  :root { --header-h: 70px; }
  .topbar__items .topbar__item:nth-child(3), .topbar__items .topbar__item:nth-child(4) { display: none; }
  .brand img { width: 155px; height: 54px; }
  .main-nav { position: fixed; inset: calc(38px + var(--header-h)) 0 auto; height: calc(100dvh - 38px - var(--header-h)); padding: 20px; background: #08121f; display: none; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 15px 12px; border-bottom: 1px solid #1d2a3a; font-size: .92rem; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .header-actions { display: none; }
  .hero { min-height: 620px; background-image: linear-gradient(90deg, rgba(4,10,17,.98) 0%, rgba(4,10,17,.84) 55%, rgba(4,10,17,.32) 100%), url('assets/img/hero-gspeed.webp'); background-position: 62% center; }
  .hero__content { min-height: 620px; align-items: flex-start; }
  .hero__copy { width: min(600px, 76%); padding-top: 80px; }
  .hero-strips { display: grid; grid-template-columns: repeat(3,1fr); }
  .price-layout, .ceramic-layout, .paint-layout, .mechanic-layout, .parts-layout, .showcase-layout, .contact-layout, .why-faq, .content-grid { grid-template-columns: 1fr; }
  .price-photo { min-height: 280px; }
  .wash-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ceramic-photo { max-height: 300px; }
  .polish-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(5, minmax(150px,1fr)); overflow-x: auto; padding-bottom: 6px; }
  .mechanic-copy { min-height: 430px; }
  .benefit-row { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .why-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .map-card { min-height: 360px; }
  .footer__main { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .sidebar-card { position: static; }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 22px, var(--container)); }
  .topbar__inner { min-height: 34px; }
  .topbar__items { gap: 10px; }
  .topbar__item { font-size: .68rem; }
  .topbar__item:nth-child(2) { display: none; }
  .topbar .btn { display: none; }
  .site-header { top: 0; }
  .brand img { width: 145px; }
  .hero { min-height: 670px; border-radius: 0 0 14px 14px; background-image: linear-gradient(180deg, rgba(4,10,17,.45) 0%, rgba(4,10,17,.72) 39%, rgba(4,10,17,.98) 78%), url('assets/img/hero-gspeed-mobile.webp'); background-position: 58% top; }
  .hero__content { min-height: 670px; align-items: flex-end; }
  .hero__copy { width: 100%; padding: 0 0 178px; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 3.6rem); }
  .hero__actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-strips { bottom: 12px; grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .hero-strip { padding: 9px 8px; font-size: .66rem; }
  .quick-grid { grid-template-columns: 1fr; gap: 9px; }
  .quick-card { display: grid; grid-template-columns: 115px 1fr; }
  .quick-card__media { height: 100%; min-height: 126px; }
  .quick-card p { min-height: auto; }
  .section { padding: 22px 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .price-layout { gap: 10px; }
  .price-photo { min-height: 210px; }
  .wash-grid, .service-grid, .ceramic-grid, .product-grid, .info-grid { grid-template-columns: 1fr; }
  .wash-card { text-align: left; }
  .wash-card > p { min-height: 0; }
  .service-card { display: grid; grid-template-columns: 120px 1fr; }
  .service-card__image { height: 100%; min-height: 155px; }
  .service-card p { min-height: auto; }
  .ceramic-footer { align-items: stretch; flex-direction: column; }
  .polish-card { grid-template-columns: 115px 1fr; }
  .mechanic-copy { min-height: 510px; padding: 22px; background-position: 64% center; }
  .form-grid, .form-grid--3 { grid-template-columns: 1fr; }
  .benefit-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-card { display: grid; grid-template-columns: 105px 1fr; gap: 8px; text-align: left; align-items: center; }
  .product-card img { width: 100px; height: 100px; margin: 0; grid-row: 1 / 7; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .before-grid { grid-template-columns: 1fr; }
  .before-card:last-child { grid-column: auto; }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .step:nth-child(even)::after { display: none; }
  .why-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-layout { gap: 10px; }
  .final-cta { min-height: 300px; padding: 26px 22px; align-items: flex-start; justify-content: flex-end; flex-direction: column; background-image: linear-gradient(180deg, rgba(5,12,20,.15), rgba(5,12,20,.94) 62%), url('assets/img/headlight.webp'); }
  .final-cta__actions { width: 100%; display: grid; }
  .footer__main { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { padding: 12px 0; align-items: flex-start; flex-direction: column; }
  .footer__legal { flex-wrap: wrap; }
  .float-whatsapp { display: none; }
  .mobile-bottom { position: fixed; z-index: 1100; left: 0; right: 0; bottom: 0; height: 68px; padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); color: #fff; background: #07101b; border-top: 1px solid #243247; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .mobile-bottom a { min-width: 0; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; font-size: .63rem; font-weight: 800; }
  .mobile-bottom a:nth-child(2) { background: #1ca95d; }
  .mobile-bottom svg { width: 18px; height: 18px; }
  .page-hero, .page-intro { min-height: 320px; }
  .page-intro h1 { font-size: 2.6rem; }
  .article-card, .sidebar-card { padding: 18px; }
}

@media (max-width: 420px) {
  .topbar__item:first-child span { max-width: 160px; overflow: hidden; text-overflow: ellipsis; }
  .hero h1 { font-size: 2.45rem; }
  .hero p { font-size: .88rem; }
  .hero-strip { font-size: .62rem; }
  .quick-card { grid-template-columns: 100px 1fr; }
  .service-card { grid-template-columns: 105px 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}


/* =========================================================
   Responsive hardening pass
   Keeps every page usable from small phones to large screens.
   ========================================================= */

html, body { width: 100%; max-width: 100%; }
body, main, header, footer, section, nav, form, article, aside,
.container, .panel, .section-head > *,
.quick-grid > *, .wash-grid > *, .service-grid > *, .info-grid > *,
.ceramic-layout > *, .ceramic-grid > *, .polish-grid > *,
.paint-layout > *, .mechanic-layout > *, .product-grid > *,
.parts-layout > *, .showcase-layout > *, .contact-layout > *,
.why-faq > *, .content-grid > * { min-width: 0; }

h1, h2, h3, h4, p, a, span, strong, label, li {
  overflow-wrap: break-word;
  word-break: normal;
}

img, picture, video, canvas, iframe, svg { max-width: 100%; }
input, select, textarea, button { min-width: 0; max-width: 100%; }
.btn { text-align: center; white-space: normal; }

/* Collapse the long navigation before it can collide with the logo/actions. */
@media (max-width: 1120px) {
  body.menu-open { overflow: hidden; touch-action: none; }
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 990;
    background: rgba(2, 8, 15, .66);
    backdrop-filter: blur(3px);
  }

  .site-header { z-index: 1000; }
  .site-header__inner { gap: 14px; }
  .main-nav {
    position: fixed;
    z-index: 1002;
    top: var(--mobile-nav-top, var(--header-h));
    right: 0;
    bottom: 0;
    left: auto;
    width: min(390px, 100%);
    height: auto;
    margin: 0;
    padding: 12px 16px calc(24px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: #fff;
    background: #08121f;
    border-left: 1px solid #243247;
    box-shadow: -22px 0 55px rgba(0, 0, 0, .34);
    transform: translateX(102%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, visibility .25s ease;
  }
  .main-nav.open {
    display: flex;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav a {
    width: 100%;
    padding: 15px 12px;
    border-bottom: 1px solid #1d2a3a;
    font-size: .94rem;
    line-height: 1.25;
    white-space: normal;
  }
  .main-nav a::after { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; flex: 0 0 auto; }
  .header-actions { display: none; }

  .hero__copy { max-width: 650px; }
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }
  .footer__main { row-gap: 30px; }
}

@media (max-width: 900px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .topbar__items .topbar__item:nth-child(3),
  .topbar__items .topbar__item:nth-child(4) { display: none; }

  .hero { min-height: 620px; }
  .hero__content { min-height: 620px; }
  .hero__copy { width: min(610px, 82%); }
  .hero h1 { font-size: clamp(2.65rem, 8vw, 4.2rem); }

  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefit-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .step::after { display: none !important; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }

  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .container { width: calc(100% - 22px); }
  .section { padding: 24px 0; }
  .section--tight { padding: 16px 0; }

  .topbar__inner { min-height: 34px; }
  .topbar__items { width: 100%; min-width: 0; }
  .topbar__item:first-child { width: 100%; min-width: 0; }
  .topbar__item:first-child span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .topbar__item:nth-child(n+2), .topbar .btn { display: none; }
  .site-header__inner { gap: 10px; }
  .brand img { width: 136px; height: 48px; }
  .menu-toggle { width: 42px; height: 42px; }
  .main-nav { width: 100%; border-left: 0; }

  .hero {
    min-height: max(700px, calc(100svh - 34px));
    border-radius: 0 0 14px 14px;
    background-image:
      linear-gradient(180deg, rgba(4,10,17,.38) 0%, rgba(4,10,17,.64) 34%, rgba(4,10,17,.96) 72%, rgba(4,10,17,1) 100%),
      url('assets/img/hero-gspeed-mobile.webp');
    background-position: center top;
  }
  .hero__content {
    min-height: max(700px, calc(100svh - 34px));
    align-items: flex-end;
  }
  .hero__copy {
    width: 100%;
    max-width: none;
    padding: 52px 0 210px;
  }
  .hero h1 {
    max-width: 12ch;
    margin-bottom: 13px;
    font-size: clamp(2.15rem, 10.6vw, 3.15rem);
    line-height: .98;
  }
  .hero p { max-width: 38rem; font-size: .93rem; line-height: 1.48; }
  .hero__actions {
    width: 100%;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .hero__actions .btn { width: 100%; min-height: 46px; }
  .hero-strips {
    left: 11px;
    right: 11px;
    bottom: 13px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .hero-strip {
    min-height: 43px;
    padding: 8px 9px;
    gap: 7px;
    font-size: .68rem;
    line-height: 1.15;
  }

  .quick-grid { grid-template-columns: 1fr; padding-top: 11px; }
  .quick-card { grid-template-columns: 112px minmax(0, 1fr); }
  .quick-card__body { padding: 12px; }
  .quick-card__media { min-height: 132px; }

  .section-head { margin-bottom: 14px; }
  .section-head h2 { font-size: clamp(1.45rem, 7.2vw, 2rem); }
  .section-head .btn { width: 100%; }
  .eyebrow { margin-bottom: 7px; font-size: .71rem; }

  .price-photo { min-height: 205px; max-height: 300px; }
  .price-photo img { aspect-ratio: 16 / 9; }
  .wash-grid { grid-template-columns: 1fr; }
  .wash-card { padding: 15px; }
  .wash-card .btn { width: 100%; }

  .service-grid, .ceramic-grid, .info-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 112px minmax(0, 1fr); }
  .service-card__image { min-height: 150px; }
  .service-card__body { padding: 12px; }

  .ceramic-photo { max-height: 260px; }
  .ceramic-card { padding: 16px; }
  .ceramic-footer .btn { width: 100%; }

  .polish-grid { grid-template-columns: 1fr; }
  .polish-card { grid-template-columns: 112px minmax(0, 1fr); min-height: 175px; }

  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .process-card { min-height: 105px; padding: 13px 8px; }
  .paint-photo { min-height: 220px; }
  .paint-photo img { aspect-ratio: 16 / 9; }

  .mechanic-copy {
    min-height: 470px;
    padding: 22px 18px;
    background-image: linear-gradient(180deg, rgba(4,10,17,.94), rgba(4,10,17,.55)), url('assets/img/mecanica.webp');
    background-position: 66% center;
  }
  .mechanic-copy p { max-width: 100%; }
  .form-panel, .article-card, .sidebar-card, .parts-search, .contact-card { padding: 17px; }
  .form-grid, .form-grid--3 { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }

  .benefit-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit { min-height: 58px; padding: 10px 7px; font-size: .7rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card {
    grid-template-columns: 100px minmax(0, 1fr);
    padding: 12px;
    text-align: left;
  }
  .product-card img { width: 94px; height: 94px; }

  .parts-photo { min-height: 205px; }
  .popular { align-items: flex-start; }
  .popular strong { width: 100%; }

  .filter-bar {
    flex-wrap: nowrap;
    margin-right: -11px;
    padding-right: 11px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .filter-btn { flex: 0 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card { aspect-ratio: 1.1; }
  .before-slider { min-height: 280px; }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
  .step { min-height: 102px; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-item { min-height: 96px; padding: 10px 7px; }

  .map-card { min-height: 250px; }
  .message-preview { min-height: 110px; }

  .final-cta {
    min-height: 330px;
    padding: 24px 18px;
    border-radius: 14px 14px 0 0;
  }
  .final-cta h2 { font-size: clamp(1.8rem, 9vw, 2.45rem); }
  .final-cta__actions { width: 100%; display: grid; }
  .final-cta__actions .btn { width: 100%; }

  .footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand img { width: 165px; height: 64px; }

  .mobile-bottom {
    height: calc(68px + env(safe-area-inset-bottom));
    padding-bottom: calc(7px + env(safe-area-inset-bottom));
  }

  .page-hero, .page-intro { min-height: 300px; }
  .page-hero::after { background: linear-gradient(180deg, rgba(4,10,17,.52), rgba(4,10,17,.96)); }
  .page-hero__image { object-position: 62% center; }
  .page-intro { padding: 36px 0; }
  .page-intro h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .page-intro p { font-size: .95rem; }
  .breadcrumbs { flex-wrap: wrap; }

  .modal { padding: 12px; }
  .modal__dialog { max-height: calc(100dvh - 24px); }
  .modal__dialog img { max-height: calc(100dvh - 100px); }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 18px); }
  .hero__copy { padding-bottom: 220px; }
  .hero h1 { font-size: clamp(2.05rem, 11vw, 2.65rem); }
  .hero-strip { font-size: .64rem; }

  .quick-card { grid-template-columns: 96px minmax(0, 1fr); }
  .quick-card__media { min-height: 138px; }
  .service-card { grid-template-columns: 100px minmax(0, 1fr); }
  .service-card__image { min-height: 160px; }
  .polish-card { grid-template-columns: 100px minmax(0, 1fr); }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { gap: 7px; }
  .gallery-card span { font-size: .61rem; }
  .before-card img { height: 125px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-item { min-height: 76px; text-align: left; align-items: flex-start; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { gap: 8px; }
  .footer__legal { gap: 9px; }

  .page-intro h1 { font-size: 2.15rem; }
  .article-card h2 { font-size: 1.35rem; }
}

@media (max-width: 380px) {
  .brand img { width: 126px; }
  .hero { min-height: 720px; }
  .hero__content { min-height: 720px; }
  .hero__copy { padding-bottom: 226px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: .86rem; }
  .hero-strip { min-height: 42px; padding: 7px; font-size: .61rem; }
  .hero-strip svg { width: 15px; height: 15px; }

  .quick-card, .service-card, .polish-card { grid-template-columns: 92px minmax(0, 1fr); }
  .quick-card__body, .service-card__body, .polish-card__body { padding: 10px; }
  .price-row { gap: 6px; }
  .price-row span { font-size: .72rem; }
  .price-row strong { font-size: .88rem; }
  .benefit-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 84px; }
}

@media (max-height: 520px) and (orientation: landscape) and (max-width: 960px) {
  body { padding-bottom: 0; }
  .mobile-bottom { display: none; }
  .hero, .hero__content { min-height: 560px; }
  .hero__copy { padding: 34px 0 165px; }
  .hero h1 { max-width: 15ch; font-size: 2.35rem; }
  .hero-strips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

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

/* =========================================================
   Responsive verification patch — 2026-07-02
   Layout-only adjustments. No content, prices or sections changed.
   ========================================================= */

/* Prevent intrinsic sizing from forcing any page wider than the viewport. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
header,
footer,
nav,
article,
aside,
form,
.container,
.panel,
.section-head,
.section-head > *,
.hero__content,
.hero__copy,
.quick-grid > *,
.price-layout > *,
.wash-grid > *,
.service-grid > *,
.info-grid > *,
.ceramic-layout > *,
.ceramic-grid > *,
.polish-grid > *,
.paint-layout > *,
.process-grid > *,
.mechanic-layout > *,
.product-grid > *,
.parts-layout > *,
.showcase-layout > *,
.contact-layout > *,
.why-faq > *,
.content-grid > *,
.footer__main > * {
  min-width: 0;
  max-width: 100%;
}

img,
picture,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

/* The off-canvas menu is completely removed from layout while closed,
   preventing hidden navigation from increasing document width. */
@media (max-width: 1120px) {
  .main-nav {
    display: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav.open {
    display: flex;
    transform: none;
  }

  .main-nav a {
    overflow-wrap: anywhere;
  }
}

/* Tablet: keep information readable without cramped multi-column cards. */
@media (min-width: 721px) and (max-width: 1024px) {
  .quick-grid,
  .service-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-layout,
  .ceramic-layout,
  .paint-layout,
  .mechanic-layout,
  .parts-layout,
  .showcase-layout,
  .contact-layout,
  .why-faq,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .wash-grid,
  .ceramic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: stack primary content and preserve legibility. */
@media (max-width: 720px) {
  .hero-strips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-card,
  .service-card,
  .polish-card,
  .product-card {
    min-width: 0;
  }

  .quick-card__body,
  .service-card__body,
  .polish-card__body,
  .product-card > * {
    min-width: 0;
  }

  .quick-card__title,
  .service-card h3,
  .product-card h3,
  .price-row,
  .faq-question,
  .benefit,
  .step strong,
  .why-item strong {
    overflow-wrap: anywhere;
  }

  .price-row {
    align-items: flex-start;
  }

  .price-row span {
    flex: 1 1 auto;
  }

  .price-row strong {
    flex: 0 0 auto;
  }

  .filter-bar {
    width: calc(100% + 11px);
    max-width: calc(100% + 11px);
  }

  .footer__bottom,
  .footer__legal {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .quick-card,
  .service-card,
  .polish-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .product-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .product-card img {
    width: 82px;
    height: 82px;
  }

  .hero-strips {
    gap: 6px;
  }

  .hero-strip {
    min-width: 0;
  }
}

/* Keep the whole hamburger button clickable, including its SVG icon. */
.menu-toggle svg,
.menu-toggle svg * {
  pointer-events: none;
}

@media (max-width: 720px) {
  /* Horizontal category scrolling stays inside its section. */
  .filter-bar {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding-right: 0;
  }
}
