:root {
  --bg: #050506;
  --bg-2: #0b0d10;
  --surface: #111318;
  --surface-2: #171a20;
  --text: #f6f7f9;
  --muted: #aeb4bf;
  --line: rgba(255, 255, 255, .12);
  --red: #df171d;
  --red-2: #ff343a;
  --white: #fff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius: 22px;
  --header-h: 92px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(223, 23, 29, .18), transparent 34rem),
    linear-gradient(180deg, #050506 0%, #090a0d 45%, #050506 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--red-2);
  outline-offset: 4px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 99;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
}

.top-strip {
  background: #f6f6f6;
  color: #101010;
  font-size: .82rem;
  font-weight: 700;
}

.top-strip__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-block: 8px;
}

.top-strip span,
.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-strip svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 6, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  width: 210px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .35));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #f2f2f2;
  padding-block: 10px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .22s ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after { width: 100%; }

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.header-call {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #a70f13);
  box-shadow: 0 14px 30px rgba(223, 23, 29, .26);
  white-space: nowrap;
  font-size: .9rem;
}

.header-call svg,
.fixed-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn:hover,
.header-call:hover,
.fixed-btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), #a30d12);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(223, 23, 29, .26);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .05);
}

.btn-dark {
  color: var(--white);
  background: #090a0d;
  border-color: rgba(255, 255, 255, .18);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.section {
  padding: 96px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 80% 12%, rgba(223, 23, 29, .20), transparent 28rem),
    linear-gradient(180deg, #08090b, #050506);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .96) 0%, rgba(5, 5, 6, .62) 46%, rgba(5, 5, 6, .82) 100%),
    linear-gradient(180deg, transparent 65%, #050506 100%),
    url("assets/images/stock/hero-auto-parts-showroom.webp") center/cover no-repeat;
  z-index: -2;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: 620px;
  height: 620px;
  right: 10%;
  top: 13%;
  border: 1px solid rgba(223, 23, 29, .24);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(223, 23, 29, .035), 0 0 90px rgba(223, 23, 29, .16);
}

.hero::after {
  inset: auto -8% 9% 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: rotate(-7deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 340px;
  gap: 56px;
  align-items: center;
  padding-block: 72px;
}

.hero__content {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-2);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 7.5vw, 6.9rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.06em;
  font-weight: 1000;
}

h1 span,
.section-head h2 span { color: var(--red); }

h1 span {
  display: block;
}

.hero__lead {
  max-width: 620px;
  color: #e7e9ee;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
}

.hero__checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 32px;
  list-style: none;
  color: var(--white);
  font-weight: 800;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__checks li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(223, 23, 29, .18);
  color: var(--red-2);
  border: 1px solid rgba(223, 23, 29, .45);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 19, 24, .86), rgba(8, 9, 11, .86));
  border: 1px solid rgba(223, 23, 29, .36);
  box-shadow: var(--shadow);
}

.panel-card h2 {
  margin-bottom: 18px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.panel-card a,
.panel-card p {
  display: block;
  margin: 0 0 12px;
  color: #f3f4f5;
  font-weight: 800;
}

.panel-card a::before {
  content: "☎";
  color: var(--red-2);
  margin-right: 10px;
}

.panel-card--red {
  background: linear-gradient(135deg, rgba(223, 23, 29, .18), rgba(17, 19, 24, .88));
}

.quick-features {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article,
.product-card,
.process-grid article,
.whatsapp-form,
.category-card {
  background: linear-gradient(145deg, rgba(23, 26, 32, .94), rgba(11, 13, 16, .94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(223, 23, 29, .24), transparent 8rem),
    linear-gradient(135deg, rgba(255,255,255,.035), transparent);
  opacity: .9;
  pointer-events: none;
}

.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #8f0c10);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 34px rgba(223,23,29,.24);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.process-grid span {
  color: var(--red-2);
  font-weight: 1000;
}

.feature-grid h2,
.process-grid h3 {
  position: relative;
  margin: 8px 0 8px;
  font-size: 1.08rem;
}

.feature-grid p,
.section-head p,
.about-copy p,
.process-grid p,
.site-footer p,
.form-note {
  color: var(--muted);
}

.feature-grid p {
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  max-width: none;
}

.section-head h2,
.about-copy h2,
.contact h2,
.cta-inner h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.category-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,.16), transparent 11rem),
    linear-gradient(145deg, #151922, #08090b);
}

.category-card img {
  width: 100%;
  height: 215px;
  min-height: 0;
  object-fit: contain;
  padding: 16px 16px 58px;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.42));
  transition: transform .35s ease;
}

.category-card:hover img { transform: scale(1.05); }

.category-card h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(5,5,6,.82);
  border: 1px solid var(--line);
  text-transform: uppercase;
  font-size: .95rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.product-card {
  position: relative;
  overflow: hidden;
  align-self: start;
  background: linear-gradient(145deg, rgba(23, 26, 32, .98), rgba(8, 9, 11, .98));
}

.product-card::before {
  content: "";
  display: block;
  height: 230px;
  background:
    var(--product-image) center / contain no-repeat,
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.16), transparent 9rem),
    linear-gradient(180deg, #20242b, #111318);
  border-bottom: 1px solid rgba(255,255,255,.08);
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.38));
}

.product-card:nth-child(1) { --product-image: url("assets/images/customer-clean/01-sachs-clutch-kit.png"); }
.product-card:nth-child(2) { --product-image: url("assets/images/customer-clean/02-luk-clutch-kit.png"); }
.product-card:nth-child(3) { --product-image: url("assets/images/customer-clean/06-bsg-antifreeze.png"); }
.product-card:nth-child(4) { --product-image: url("assets/images/customer-clean/11-delphi-brake-shoes.png"); }

.product-card > img {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.product-card div {
  padding: 18px;
}

.product-card span {
  color: var(--red-2);
  font-weight: 1000;
  text-transform: uppercase;
  font-size: .78rem;
}

.product-card h3 {
  margin: 4px 0 14px;
}

.product-card a,
.text-link {
  color: var(--red-2);
  font-weight: 900;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(223,23,29,.08), rgba(255,255,255,.04), rgba(223,23,29,.08));
}

.brand-strip span {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.about-media {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(223,23,29,.12);
  border: 1px solid rgba(223,23,29,.28);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: start;
}

.gallery-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  padding: 12px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.14), transparent 8rem),
    linear-gradient(145deg, #151922, #08090b);
  cursor: zoom-in;
  align-self: start;
}

.gallery-item img {
  width: 100%;
  height: 150px;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 8px;
  border-radius: 12px;
  background: transparent;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.34));
  transition: transform .26s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  padding: 26px;
  min-height: 190px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(223,23,29,.15);
  border: 1px solid rgba(223,23,29,.35);
}

.cta-band {
  padding: 54px 0;
  background:
    linear-gradient(135deg, rgba(223,23,29,.94), rgba(93, 5, 9, .96)),
    url("assets/images/stock/branded-parts-studio.webp") center/cover;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-inner .eyebrow { color: #fff; }
.cta-inner h2 { margin: 0; max-width: 760px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list p {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  color: var(--red-2);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: .78rem;
}

.contact-list a { text-decoration: underline; text-decoration-color: rgba(223,23,29,.65); }

.whatsapp-form {
  padding: 28px;
}

.whatsapp-form h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.whatsapp-form label {
  display: block;
  margin: 14px 0 8px;
  font-weight: 900;
}

.whatsapp-form input,
.whatsapp-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  resize: vertical;
}

.whatsapp-form .btn {
  width: 100%;
  margin-top: 18px;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  font-size: .9rem;
}

.site-footer {
  background: #020203;
  border-top: 1px solid var(--line);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 32px;
}

.footer-grid img {
  width: 220px;
  height: auto;
  margin-bottom: 12px;
}

.footer-grid nav,
.footer-grid div:last-child {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-grid a:hover { color: var(--red-2); }

.footer-bottom {
  margin-top: 42px;
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
  text-align: center;
  color: #d7d7d7;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.fixed-actions {
  position: fixed;
  right: 22px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  gap: 10px;
}

.fixed-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  min-width: 150px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(0,0,0,.34);
}

.fixed-btn--call { background: linear-gradient(135deg, var(--red), #9c0c11); }
.fixed-btn--wa { background: linear-gradient(135deg, #25d366, #128c45); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.86);
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-height: 78vh;
  width: min(92vw, 860px);
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
}

.lightbox p {
  margin: 14px 0 0;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1060px) {
  .header-call { display: none; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(8, 9, 11, .98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .hero__grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid,
  .showcase-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  :root { --header-h: 76px; }
  .container {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
  }
  .site-header,
  .top-strip,
  main,
  section,
  footer {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .top-strip__inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 5px;
    overflow: hidden;
  }
  .top-strip span,
  .top-strip a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .top-strip span:nth-child(1),
  .top-strip span:nth-child(2) {
    grid-column: 1 / -1;
  }
  .brand { width: 164px; }
  .hero {
    min-height: auto;
  }
  .hero__grid {
    padding-block: 52px 70px;
    gap: 28px;
    width: 100%;
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }
  .hero__content,
  .hero-panel,
  .panel-card,
  .feature-grid article,
  .category-card,
  .product-card,
  .process-grid article,
  .whatsapp-form {
    width: 100%;
    max-width: calc(100vw - 32px);
    min-width: 0;
  }
  h1 {
    font-size: clamp(2.05rem, 11vw, 2.85rem);
    letter-spacing: -.045em;
    max-width: 100%;
    overflow-wrap: normal;
  }
  .hero__lead,
  .feature-grid p,
  .section-head p,
  .about-copy p,
  .process-grid p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero__actions .btn {
    min-width: 0;
    padding-inline: 12px;
  }
  .hero-panel,
  .feature-grid,
  .category-grid,
  .showcase-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .quick-features { margin-top: 0; padding-top: 18px; }
  .section { padding: 70px 0; }
  .section-head--split,
  .cta-inner {
    display: grid;
    align-items: start;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fixed-actions {
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
  }
  .fixed-btn {
    justify-content: center;
    min-height: 48px;
    padding-inline: 10px;
  }
  .site-footer {
    padding-bottom: 72px;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
    margin-left: 16px;
    margin-right: auto;
  }
  .hero__grid,
  .hero__content,
  .hero-panel,
  .panel-card,
  .feature-grid article,
  .category-card,
  .product-card,
  .process-grid article,
  .whatsapp-form {
    max-width: calc(100vw - 32px);
  }
  .hero__lead {
    font-size: 1rem;
    max-width: 30ch;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
    margin-left: 12px;
    margin-right: auto;
  }
  .hero__grid,
  .hero__content,
  .hero-panel,
  .panel-card,
  .feature-grid article,
  .category-card,
  .product-card,
  .process-grid article,
  .whatsapp-form {
    max-width: calc(100vw - 24px);
  }
  .top-strip { font-size: .76rem; }
  .hero__actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
  .hero__actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    gap: 10px;
  }
  .gallery-item img {
    padding: 6px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
  }
  .hero__grid,
  .hero__content,
  .hero-panel,
  .panel-card,
  .feature-grid article,
  .category-card,
  .product-card,
  .process-grid article,
  .whatsapp-form {
    max-width: calc(100vw - 32px);
  }
  h1 {
    font-size: clamp(2rem, 10.5vw, 2.55rem);
  }
  .hero__lead {
    font-size: 1rem;
    max-width: 30ch;
  }
  .hero__actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero__actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
  .fixed-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    left: 12px;
    right: auto;
    width: calc(100vw - 24px);
  }
  .fixed-btn {
    min-width: 0;
    width: 100%;
    padding-inline: 8px;
    overflow: hidden;
  }
}

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