/* =======================================================
   SIVICON MX  —  styles.css
   Marca: Rojo #CC0000 | Negro #111111 | Blanco #FFFFFF
   Sin CSS custom properties — compatible con cualquier server
   ======================================================= */

/* -------------------------------------------------------
   RESET
------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/* -------------------------------------------------------
   CONTENEDOR
------------------------------------------------------- */
.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

/* -------------------------------------------------------
   TOPBAR  (franja negra superior)
------------------------------------------------------- */
.topbar {
  background: #111111;
  border-bottom: 3px solid #CC0000;
  padding: 7px 0;
  font-size: 12.5px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-items {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.72);
  transition: color .18s;
}
.topbar-item:hover { color: #ffffff; }
.topbar-item.wa:hover { color: #4ade80; }
.topbar-hours {
  font-size: 11.5px;
  color: rgba(255,255,255,.38);
}

/* -------------------------------------------------------
   HEADER
------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e4e4e4;
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 14px rgba(0,0,0,.09); }

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 16px;
}

/* Logo */
.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
/* Logo textual de respaldo si no carga imagen */
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  letter-spacing: .02em;
  line-height: 1;
}
.logo-text em {
  font-style: normal;
  color: #CC0000;
}

/* Menú */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
  color: #444444;
  border-radius: 6px;
  white-space: nowrap;
  transition: color .18s, background .18s;
}
.nav-link:hover,
.nav-link.active {
  color: #CC0000;
  background: #fff0f0;
}
.nav-link svg { flex-shrink: 0; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-top: 3px solid #CC0000;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,.11);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 200;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #444444;
  transition: color .18s, background .18s;
}
.dropdown-panel a:hover { color: #CC0000; background: #fff0f0; }

/* CTA + hamburger */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid #dddddd;
  border-radius: 6px;
  cursor: pointer;
  padding: 9px;
}
.bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #444444;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------
   BOTONES
------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .1s;
  line-height: 1;
}
.btn:active { transform: scale(.97); }

.btn-sm { padding: 9px 18px;  font-size: 13px; }
.btn-md { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* Primario — rojo */
.btn-primary { background: #CC0000; color: #ffffff; border-color: #CC0000; }
.btn-primary:hover {
  background: #AA0000;
  border-color: #AA0000;
  box-shadow: 0 4px 14px rgba(204,0,0,.35);
}
/* Contorno oscuro */
.btn-outline { background: transparent; color: #111111; border-color: #cccccc; }
.btn-outline:hover { background: #f4f4f4; border-color: #aaaaaa; }
/* Blanco (sobre fondo oscuro/rojo) */
.btn-white { background: #ffffff; color: #CC0000; border-color: #ffffff; font-weight: 800; }
.btn-white:hover { background: #f0f0f0; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
/* Outline blanco */
.btn-outline-white { background: transparent; color: #ffffff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #ffffff; }

/* -------------------------------------------------------
   HERO
------------------------------------------------------- */
.hero {
  background: #111111;
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero-red-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #CC0000;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,.14);
  border: 1px solid rgba(204,0,0,.4);
  color: #ff9090;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #CC0000;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(204,0,0,0); }
}

/* Título */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.hero-title-red { color: #CC0000; }

/* Bajada */
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

/* Botones del hero */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Puntos de confianza */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}
.trust-item svg { color: #CC0000; flex-shrink: 0; }

/* Imagen del hero */
.hero-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
}
.hero-img-frame img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(204,0,0,.45);
  object-fit: cover;
  max-height: 440px;
}
/* Etiqueta flotante sobre la imagen */
.hero-img-label {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: #CC0000;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 4px 18px rgba(204,0,0,.45);
}
/* Ilustración SVG de respaldo cuando no hay imagen */
.hero-svg-fallback {
  animation: floatY 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.5));
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* -------------------------------------------------------
   BARRA DE ESTADÍSTICAS
------------------------------------------------------- */
.stats-bar {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  padding: 30px 0;
}
.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 18px;
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #CC0000;
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 13px;
  color: #777777;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: #e0e0e0;
}

/* -------------------------------------------------------
   SECCIÓN PRODUCTOS
------------------------------------------------------- */
.products-section {
  background: #f6f6f6;
  padding: 72px 0;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.s-tag {
  display: inline-block;
  background: #fff0f0;
  color: #CC0000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid #ffc8c8;
}
.s-tag-light {
  background: rgba(204,0,0,.15);
  color: #ffaaaa;
  border-color: rgba(204,0,0,.3);
}
.s-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.s-title-light { color: #ffffff; }
.s-desc { font-size: 15.5px; color: #666666; line-height: 1.7; }
.s-desc-light { color: rgba(255,255,255,.7); }

/* Grid de productos */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .18s;
}
.prod-card:hover {
  border-color: #CC0000;
  box-shadow: 0 6px 22px rgba(204,0,0,.13);
  transform: translateY(-2px);
}
.prod-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  color: inherit;
}

/* Imagen del card */
.prod-thumb {
  width: 100%;
  height: 165px;
  object-fit: cover;
  background: #f0f0f0;
  display: block;
}
/* Ícono de respaldo */
.prod-icon-wrap {
  padding: 22px 22px 0;
}
.prod-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.ic-red    { background: #fff0f0; color: #CC0000; }
.ic-blue   { background: #ebf4ff; color: #1a6fc4; }
.ic-amber  { background: #fff5e0; color: #a06000; }
.ic-teal   { background: #e0f5f2; color: #09806a; }
.ic-green  { background: #e8f6ea; color: #1d7033; }
.ic-purple { background: #f0ecff; color: #5533cc; }

.prod-body { padding: 14px 22px; flex: 1; }
.prod-title {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  line-height: 1.25;
}
.prod-desc {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 12px;
}
.prod-features { margin-bottom: 16px; }
.prod-features li {
  font-size: 13px;
  color: #555555;
  padding-left: 18px;
  position: relative;
  margin-bottom: 5px;
}
.prod-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #CC0000;
  border-radius: 50%;
}
.prod-footer {
  border-top: 1px solid #eeeeee;
  padding: 12px 22px 18px;
  margin-top: auto;
}
.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #CC0000;
  transition: gap .18s;
}
.prod-card:hover .prod-cta { gap: 9px; }

.prods-footer { text-align: center; margin-top: 42px; }

/* -------------------------------------------------------
   POR QUÉ SIVICON
------------------------------------------------------- */
.why-section {
  background: #111111;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.why-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-ico {
  width: 42px;
  height: 42px;
  background: rgba(204,0,0,.16);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6060;
  flex-shrink: 0;
}
.why-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.why-item p {
  font-size: 13.5px;
  color: rgba(255,255,255,.52);
  line-height: 1.55;
  margin: 0;
}

/* Columna de tarjetas visuales */
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  transition: background .2s;
}
.why-card:hover { background: rgba(255,255,255,.09); }
.why-card:nth-child(2) { margin-left: 22px; }
.why-card:nth-child(3) { margin-left: 11px; }

/* -------------------------------------------------------
   SECTORES
------------------------------------------------------- */
.sectors-section {
  background: #ffffff;
  padding: 72px 0;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sector-card {
  background: #f6f6f6;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color .2s, box-shadow .2s, transform .16s;
}
.sector-card:hover {
  border-color: #CC0000;
  box-shadow: 0 4px 14px rgba(204,0,0,.1);
  transform: translateY(-1px);
}
.sector-emoji { font-size: 28px; display: block; margin-bottom: 9px; line-height: 1; }
.sector-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}
.sector-desc { font-size: 13px; color: #666666; line-height: 1.55; margin: 0; }

/* -------------------------------------------------------
   CTA BANNER
------------------------------------------------------- */
.cta-banner {
  background: #CC0000;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(0,0,0,.09);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
.site-footer { background: #1a1a1a; color: rgba(255,255,255,.62); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 40px;
  padding: 60px 0 48px;
}

/* Marca */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-wrap img { height: 36px; width: auto; }
.footer-logo-txt {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: .02em;
}
.footer-logo-txt em { font-style: normal; color: #CC0000; }
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.42);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 285px;
}

/* Redes */
.footer-social { display: flex; gap: 10px; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  color: rgba(255,255,255,.52);
  transition: color .18s, border-color .18s, background .18s;
}
.social-btn:hover { color: #4ade80; border-color: #4ade80; background: rgba(74,222,128,.08); }

/* Columnas nav */
.footer-col-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.33);
  margin-bottom: 16px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,.58);
  transition: color .18s;
}
.footer-nav a:hover { color: #ffffff; }

/* Contacto */
.footer-addr { font-style: normal; }
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; color: #CC0000; }
.footer-contact-list a { color: rgba(255,255,255,.7); transition: color .18s; }
.footer-contact-list a:hover { color: #ffffff; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-copy, .footer-legal {
  font-size: 12.5px;
  color: rgba(255,255,255,.28);
}
.footer-legal a { color: rgba(255,255,255,.38); transition: color .18s; }
.footer-legal a:hover { color: rgba(255,255,255,.72); }

/* -------------------------------------------------------
   ACCESIBILIDAD
------------------------------------------------------- */
a:focus-visible,
button:focus-visible {
  outline: 3px solid #CC0000;
  outline-offset: 2px;
  border-radius: 4px;
}

/* -------------------------------------------------------
   RESPONSIVE — TABLET ≤992px
------------------------------------------------------- */
@media screen and (max-width: 992px) {

  .hamburger { display: flex; }

  .navbar-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 290px;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 76px 12px 24px;
    box-shadow: -5px 0 28px rgba(0,0,0,.14);
    transform: translateX(100%);
    transition: transform .25s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    z-index: 99;
  }
  .navbar-menu.open { transform: translateX(0); }

  .nav-link { padding: 12px 14px; font-size: 15px; }

  .dropdown-panel {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-top: none;
    background: #f6f6f6;
    border-radius: 6px;
    margin: 4px 0 8px 14px;
    padding: 4px 0;
    display: none;
  }
  .has-dropdown:hover .dropdown-panel { display: block; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img-col { display: none; }
  .trust-list { align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }

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

  .why-inner { grid-template-columns: 1fr; }
  .why-cards { display: none; }

  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-col-brand { grid-column: 1 / -1; }
}

/* -------------------------------------------------------
   RESPONSIVE — MÓVIL ≤640px
------------------------------------------------------- */
@media screen and (max-width: 640px) {

  .container { padding-left: 14px; padding-right: 14px; }

  .topbar-item:last-child { display: none; }
  .topbar-hours { display: none; }

  .hero { padding: 48px 0 56px; }
  .hero-title { font-size: 2.1rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-lg { width: 100%; justify-content: center; }

  .stat-sep { display: none; }
  .stat-number { font-size: 2rem; }

  .prod-grid { grid-template-columns: 1fr; }

  .why-reasons { grid-template-columns: 1fr; }

  .sectors-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-col-brand { grid-column: unset; }
  .footer-bottom-row { flex-direction: column; text-align: center; gap: 5px; }
}

/* -------------------------------------------------------
   PRINT
------------------------------------------------------- */
@media print {
  .topbar, .navbar-actions, .hamburger,
  .hero-img-col, .cta-banner, .footer-social { display: none; }
  body { font-size: 12pt; color: #000; }
  .hero { background: #fff; padding: 18pt 0; }
  .hero-title, .hero-sub, .trust-item { color: #000; }
  .site-footer { background: #fff; color: #000; }
}
