/* ============================================================
   INNOVAR — Rental & Services
   Sistema de diseño · Industrial editorial
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Marca */
  --blue:        #044f93;   /* azul primario */
  --blue-700:    #033c70;
  --navy:        #022a4f;   /* secciones oscuras */
  --navy-900:    #02203c;

  /* Tinta y neutros "hormigón" */
  --ink:         #11161c;
  --ink-soft:    #3a444f;
  --paper:       #f5f6f7;
  --concrete:    #e7eaed;
  --concrete-2:  #d4d9de;
  --line:        #c9ced4;
  --muted:       #6c7681;

  /* Acento hi-viz (cuentagotas) */
  --hiviz:       #ff5a1f;

  --white:       #ffffff;

  /* Tipografía */
  --sans: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1280px;
  --pad: clamp(20px, 5vw, 64px);

  /* Misc */
  --radius: 2px;
  --ease: cubic-bezier(.4, 0, .15, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, textarea { font: inherit; color: inherit; }
h1, h2, h3 { line-height: 1.04; font-weight: 800; letter-spacing: -0.02em; }

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Etiqueta de sección: índice mono + regla */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker__index { color: var(--blue); }
.kicker--light { color: rgba(255,255,255,.75); }
.kicker--light .kicker__index { color: var(--hiviz); }
.kicker__rule {
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

/* Punto vivo de marca — late suave (reemplaza al cursor) */
.beat {
  display: inline-block;
  vertical-align: baseline;
  width: 0.16em;
  height: 0.16em;
  margin-left: 0.14em;
  border-radius: 50%;
  background: var(--hiviz);
  transform-origin: 50% 50%;
  animation: beat 1.8s ease-in-out infinite;
}
@keyframes beat {
  0%, 100% { transform: scale(1);    opacity: 1;  }
  50%      { transform: scale(1.12); opacity: .65; }
}
@media (prefers-reduced-motion: reduce) {
  .beat { animation: none; }
  html { scroll-behavior: auto; }
}

/* Reveal al scroll (se activa solo si hay JS y no hay reduced-motion) */
.js-reveal main > section,
.js-reveal .site-footer {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-reveal main > section.is-in,
.js-reveal .site-footer.is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 22px;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo img { height: 38px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 10px 16px;
  transition: color .2s var(--ease);
}
.site-nav a:hover { color: var(--white); }
.site-nav__cta {
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white) !important;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.site-nav__cta:hover {
  background: var(--hiviz);
  border-color: var(--hiviz);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 120px 40px;
  overflow: hidden;
  background: var(--blue);
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  mix-blend-mode: multiply;
}
.hero__media img,
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
/* Scrim: oscurece abajo/izquierda para legibilidad */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, var(--navy-900) 3%, rgba(2,32,60,.45) 40%, rgba(2,32,60,0) 66%),
    linear-gradient(100deg, rgba(2,32,60,.92) 0%, rgba(2,32,60,.55) 34%, rgba(2,32,60,.12) 58%, rgba(2,32,60,0) 74%),
    linear-gradient(to bottom, rgba(2,32,60,.55) 0%, rgba(2,32,60,0) 16%);
}

.hero__inner { position: relative; z-index: 2; }
.hero__title {
  color: var(--white);
  font-size: clamp(2.6rem, 7vw, 6rem);
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero__lead {
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  max-width: 52ch;
  text-wrap: balance;
  margin-top: 26px;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 30px;
}
.hero__tags li {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 0 18px;
  position: relative;
}
.hero__tags li:first-child { padding-left: 0; }
.hero__tags li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 1px; height: 13px;
  background: var(--hiviz);
  transform: translateY(-50%);
}
.hero__tags li:first-child::before { display: none; }

/* Pie del hero */
.hero__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.hero__scroll svg { transition: transform .25s var(--ease); }
.hero__scroll:hover svg { transform: translateY(4px); }
.hero__loc {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* Título de sección reutilizable */
.section-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  color: var(--ink);
}

/* ============================================================
   02 · NUESTROS SERVICIOS
   ============================================================ */
.services { padding-block: clamp(72px, 10vw, 130px); }
.services .kicker { margin-bottom: clamp(56px, 6vw, 84px); }

.services__top {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}
.services__media {
  position: relative;
  width: 86%;
  margin-top: 6px;
  isolation: isolate;
}
.services__shape {
  position: absolute;
  z-index: -1;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  left: 4%;
  top: 44%;
  transform: translateY(-50%);
}
.services__product {
  position: relative;
  display: block;
  width: 100%;
  filter: drop-shadow(0 22px 34px rgba(2,32,60,.22));
}
.services__intro {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 46ch;
}
.services__intro .section-title { margin-bottom: 10px; }
.services__intro p { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-soft); }
.services__intro strong { color: var(--blue); font-weight: 700; }

/* Tres pilares */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(48px, 7vw, 88px);
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 34px 36px 0 0;
  border-left: 1px solid var(--line);
  padding-left: 36px;
}
.pillar:first-child { border-left: 0; padding-left: 0; }
.pillar__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--hiviz);
}
.pillar__title {
  font-size: 1.4rem;
  margin: 14px 0 10px;
  letter-spacing: -0.01em;
}
.pillar__text { color: var(--muted); font-size: 1rem; line-height: 1.55; }

/* ============================================================
   03 · ALQUILER Y VENTA
   ============================================================ */
.catalog {
  background: var(--concrete);
  padding-block: clamp(72px, 10vw, 130px);
}
.catalog__head { margin-bottom: clamp(40px, 5vw, 60px); }
.catalog .kicker { margin-bottom: clamp(44px, 5vw, 72px); }
.catalog__headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.catalog__lead {
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* Grilla de categorías — líneas finas tipo tabla técnica */
.grid-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--concrete-2);
  background: var(--concrete-2);
  gap: 1px;
}
.cat {
  background: var(--paper);
  min-height: 184px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.cat__icon {
  width: 46px;
  height: 46px;
  background-color: var(--blue);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
  transition: background-color .2s var(--ease), transform .25s var(--ease);
}
.cat__name {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 16ch;
}
.cat:hover { background: var(--blue); transform: translateY(-2px); }
.cat:hover .cat__icon { background-color: var(--white); }
.cat:hover .cat__name { color: var(--white); }

/* Celda CTA */
.cat--cta { background: var(--navy); padding: 0; }
.cat--cta a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 28px;
}
.cat--cta .cat__name { color: rgba(255,255,255,.7); font-weight: 400; }
.cat__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.cat--cta:hover { background: var(--blue); transform: translateY(-2px); }
.cat--cta:hover .cat__cta svg { transform: translateX(4px); }
.cat__cta svg { transition: transform .25s var(--ease); }

/* ============================================================
   04 · METALÚRGICA Y MANTENIMIENTO
   ============================================================ */
.metal {
  background: linear-gradient(115deg, #0c1218 0%, #05223b 58%, #033b6e 100%);
  color: var(--white);
  overflow: hidden;
}
.metal__inner {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  align-items: stretch;
}
.metal__content {
  padding-block: clamp(72px, 10vw, 128px);
  padding-right: clamp(40px, 5vw, 80px);
  padding-left: max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad)));
}
.metal .kicker { margin-bottom: clamp(40px, 5vw, 64px); }
.metal .section-title { color: var(--white); }
.metal__intro {
  margin-top: 24px;
  max-width: 48ch;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}
.metal__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-top: clamp(36px, 4vw, 52px);
}
.metal__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
}
.metal__list svg {
  flex: none;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  color: var(--hiviz);
}
.metal__media { position: relative; min-height: 540px; }
.metal__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

/* ============================================================
   05 · TORRES TELESCÓPICAS — equipo destacado
   ============================================================ */
.feature { padding-block: clamp(72px, 10vw, 130px); }
.feature__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: stretch;
}
.feature__media {
  position: relative;
  min-height: 540px;
  background: var(--concrete);
}
.feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.feature__content { align-self: center; }
.feature--reverse .feature__inner { grid-template-columns: 1.15fr 0.85fr; }
.feature--alt { background: var(--paper); }
.feature__label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 34px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.feature__label + .feature__specs { margin-top: 22px; }
.kicker__star {
  width: 15px;
  height: 15px;
  margin-left: 4px;
  color: var(--hiviz);
}
.feature .kicker { margin-bottom: 26px; }
.feature__desc {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}
.feature__stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.feature__num {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
}
.feature__unit {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.feature__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
  margin-top: 30px;
}
.feature__specs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--ink);
}
.feature__specs svg {
  flex: none;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  color: var(--blue);
}

/* ============================================================
   07 · TRÁILERS Y MÓDULOS
   ============================================================ */
.modules {
  background: var(--concrete);
  padding-block: clamp(72px, 10vw, 130px);
}
.modules__head { margin-bottom: clamp(40px, 5vw, 60px); }
.modules .kicker { margin-bottom: clamp(40px, 5vw, 64px); }
.modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
}
.modcard {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.modcard__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.modcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s var(--ease);
}
.modcard__body { padding: 28px 28px 32px; }
.modcard__title {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.modcard__text {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.5;
}
.modcard:hover { transform: translateY(-4px); box-shadow: 0 24px 40px rgba(2,32,60,.22); }
.modcard:hover .modcard__media img { transform: scale(1.04); }
.modules--four .modules__grid { grid-template-columns: repeat(4, 1fr); }
.modules--four .modcard__title { font-size: 1.3rem; }
.modules--four .modcard__body { padding: 24px 24px 28px; }

/* ============================================================
   08 · FABRICACIÓN DE MÓDULOS A MEDIDA
   ============================================================ */
.custom { padding-block: clamp(72px, 10vw, 130px); }
.custom__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: stretch;
}
.custom__content { align-self: center; }
.custom .kicker { margin-bottom: 26px; }
.custom__specs { grid-template-columns: 1fr; margin-top: 32px; }
.custom__media {
  position: relative;
  align-self: center;
  display: flex;
  justify-content: center;
  isolation: isolate;
}
.custom__shape {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
}
.custom__product {
  position: relative;
  width: 86%;
  filter: drop-shadow(0 24px 36px rgba(2,32,60,.28));
}

/* ============================================================
   10 · SOLICITÁ TU PRESUPUESTO
   ============================================================ */
.contact {
  background: linear-gradient(120deg, #0c1218 0%, #04243f 100%);
  color: var(--white);
  padding-block: clamp(72px, 10vw, 130px);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact .kicker { margin-bottom: clamp(36px, 4vw, 52px); }
.contact .section-title { color: var(--white); }
.contact__lead {
  margin-top: 22px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 36ch;
}
.contact__list { margin-top: 44px; display: flex; flex-direction: column; gap: 20px; }
.contact__list li { display: flex; align-items: center; gap: 16px; font-size: 1.08rem; }
.contact__list svg { flex: none; width: 22px; height: 22px; color: var(--hiviz); }
.contact__list a { transition: color .2s var(--ease); }
.contact__list a:hover { color: var(--hiviz); }

/* Formulario */
.contact__form { display: flex; flex-direction: column; gap: 28px; padding-top: 6px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  padding: 10px 0;
  color: var(--white);
  font-size: 1.05rem;
  border-radius: 0;
  transition: border-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 70px; }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--hiviz); }
.btn-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding: 15px 32px;
  background: var(--blue);
  color: var(--white);
  border: 0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.btn-submit:hover { background: var(--hiviz); }
.btn-submit svg { transition: transform .25s var(--ease); }
.btn-submit:hover svg { transform: translateX(4px); }
.btn-submit.is-loading { opacity: .6; cursor: progress; }
.btn-submit:disabled { pointer-events: none; }

/* Honeypot anti-spam: fuera de pantalla, invisible para humanos */
.field--trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Mensaje de estado del envío */
.contact__status {
  margin: 4px 0 0;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.45;
  border-left: 3px solid var(--muted);
  background: var(--concrete);
  color: var(--ink);
}
.contact__status--ok {
  border-left-color: var(--blue);
  background: rgba(4, 79, 147, .08);
}
.contact__status--error {
  border-left-color: var(--hiviz);
  background: rgba(255, 90, 31, .08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue);
  color: var(--white);
  padding-block: clamp(48px, 6vw, 72px);
}
.site-footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.site-footer__logo img { height: 56px; width: auto; }
.site-footer__tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
}
.site-footer__legal {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.6);
}
.site-footer__sign {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.site-footer__sign span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.site-footer__sign img {
  height: 24px;
  width: auto;
  opacity: .92;
  transition: opacity .2s var(--ease);
}
.site-footer__sign:hover img { opacity: 1; }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float svg { width: 34px; height: 34px; }
.wa-float:hover { transform: scale(1.07); box-shadow: 0 14px 32px rgba(0,0,0,.34); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .custom__inner { grid-template-columns: 1fr; }
  .custom__media { order: 2; margin-top: 8px; }
  .custom__product { width: 260px; }
  .custom__content { order: 1; }
  .modules__grid { grid-template-columns: 1fr; max-width: 480px; }
  .modules--four .modules__grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .feature__inner,
  .feature--reverse .feature__inner { grid-template-columns: 1fr; }
  .feature__media { order: 2; min-height: 380px; }
  .feature__content { order: 1; }
  .metal__inner { grid-template-columns: 1fr; }
  .metal__content { padding-inline: var(--pad); order: 1; }
  .metal__media { order: 2; min-height: 420px; }
  .services__top { grid-template-columns: 1fr; gap: 36px; }
  .services__head { order: 2; }
  .services__intro { order: 1; }
  .services__media { width: 260px; margin-top: 0; }
  .pillars { grid-template-columns: 1fr; border-top: 0; }
  .pillar { border-left: 0; border-top: 1px solid var(--line); padding: 28px 0 0; }
  .pillar:first-child { padding-top: 0; border-top: 0; }
  .grid-cats { grid-template-columns: repeat(2, 1fr); }
  .catalog__headline { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 720px) {
  .site-nav { gap: 0; }
  .site-nav a { padding: 8px 10px; font-size: 12px; }
  .site-nav__cta { display: none; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__tags { flex-direction: column; }
  .hero__tags li { padding-left: 0 !important; }
  .hero__tags li::before { display: none; }
  .services__head { flex-direction: column; align-items: flex-start; }
  .cat { min-height: 150px; padding: 22px; }
  .modules--four .modules__grid { grid-template-columns: 1fr; max-width: 480px; }
  .site-footer__main { flex-direction: column; text-align: center; gap: 18px; }
  .site-footer__bar { flex-direction: column; text-align: center; gap: 18px; }
}
