:root {
  --bg: #eef3f9;
  --surface: #ffffff;
  --surface-2: #e8eff8;
  --text: #142033;
  --muted: #5c697d;
  --line: #d6e1ef;
  --brand: #2563eb;
  --brand-2: #0f172a;
  --accent: #0f766e;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 22rem),
    radial-gradient(circle at 80% 20%, rgba(18, 140, 126, 0.14), transparent 20rem),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%),
    var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(214, 225, 239, 0.85);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.78rem 0;
}

.brand img {
  width: 76px;
}

.nav-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  min-width: 320px;
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem 1.15rem;
  font-size: 0.84rem;
}

.header-contact a {
  color: var(--muted);
  font-weight: 700;
}

.header-contact-top {
  width: 100%;
  min-height: 1.5rem;
}

.header-wa {
  align-self: flex-end;
  white-space: nowrap;
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-icon-svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), #0b57d0);
  color: #fff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.24);
}

.button-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.28);
}

.button-whatsapp:hover {
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.34);
}

.button-secondary {
  background: rgba(20, 32, 51, 0.06);
  color: var(--brand-2);
}

.hero {
  padding: 4.6rem 0 2.8rem;
}

.hero-tight {
  padding-top: 3rem;
}

.hero-grid,
.contact-grid,
.split-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2,
.legal-card h1,
.split-panel h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.85rem, 3.3vw, 3.4rem);
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 14.5ch;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
}

.lead,
.section-heading p,
.contact-copy p,
.split-panel p,
.service-card p,
.legal-card p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.98rem;
}

.hero-actions,
.contact-points {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-copy {
  position: relative;
}

.hero-badges {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.25rem 0 0;
}

.hero-badges li {
  position: relative;
  padding: 0 0 0 1.1rem;
  color: var(--brand-2);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-badges li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #5ba4ff);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.chip {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-media img,
.service-card img {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
}

.hero-media img {
  min-height: 500px;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  right: -1.2rem;
  bottom: 1.25rem;
  width: min(330px, 90%);
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.28);
  color: #fff;
}

.hero-panel-label {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #8cd8c4;
}

.hero-panel-list {
  margin: 0;
  padding-left: 1rem;
  color: #e5eefb;
  line-height: 1.55;
  font-size: 0.93rem;
}

.hero-panel-cta {
  width: 100%;
  margin-top: 1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.metric-card {
  padding: 0.9rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.metric-card strong,
.value-item strong,
.trust-note strong,
.process-card h3 {
  display: block;
  font-family: "Outfit", sans-serif;
}

.metric-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.89rem;
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.section {
  padding: 2.5rem 0;
}

.trust-strip {
  padding: 0 0 2rem;
}

.trust-strip-inner,
.value-grid,
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.trust-copy h2,
.value-copy h2,
.cta-band-inner h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  line-height: 1.1;
}

.trust-assets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.trust-note,
.value-item,
.process-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.trust-note,
.value-item,
.process-card {
  padding: 1rem 1.05rem;
}

.trust-note span,
.value-item p,
.process-card p {
  color: var(--muted);
  line-height: 1.6;
}

.value-section {
  padding-top: 1rem;
}

.value-list {
  display: grid;
  gap: 1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-heading-light p,
.section-heading-light h2 {
  color: #fff;
}

.section-heading-light > p:last-child,
.section-dark .section-heading > p:last-child {
  color: #cfdae9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.4rem;
}

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

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

.service-card,
.contact-form,
.legal-card,
.testimonial,
.mini-card,
.bullet-panel > div,
.cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.comparison-card {
  min-height: 100%;
}

#soporteitsm,
#conmutadores,
#cableado {
  grid-column: span 2;
}

#seguridad,
#computo {
  grid-column: span 3;
}

.service-card-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.service-card-body-only {
  justify-content: flex-start;
}

.service-card h3,
.legal-card h1,
.contact-copy h2,
.testimonial footer,
.split-panel strong,
.cta-panel p {
  font-family: "Outfit", sans-serif;
}

.service-card h3 {
  margin: 0;
  font-size: 1.24rem;
}

.service-card p {
  margin: 0;
}

.service-card ul,
.legal-card ul {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.96rem;
}

.service-action {
  display: inline-flex;
  margin-top: auto;
  padding-top: 0.9rem;
  font-weight: 800;
  color: var(--brand);
}

.process-section {
  padding-top: 1rem;
}

.process-heading {
  max-width: 620px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.process-card h3 {
  margin: 0.9rem 0 0.45rem;
  font-size: 1.14rem;
}

.process-card p {
  margin: 0;
}

.cta-band {
  padding-top: 1rem;
}

.cta-band-inner {
  padding: 1.45rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #132742, #0c4d75);
  color: #fff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.cta-band .eyebrow,
.cta-band h2 {
  color: #fff;
}

.cta-band-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-dark {
  background: linear-gradient(180deg, #102033, #152941);
  color: #fff;
}

.section-dark .lead,
.section-dark p,
.section-dark li {
  color: #cfdae9;
}

.section-dark .service-card,
.section-dark .bullet-panel > div,
.section-dark .cta-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.service-card-contrast {
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.16), rgba(15, 118, 110, 0.14));
}

.bullet-panel {
  display: grid;
  gap: 1rem;
}

.bullet-panel > div,
.cta-panel {
  padding: 1.15rem 1.2rem;
}

.benefit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  padding: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.testimonial {
  padding: 1.4rem;
}

.testimonial p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial footer {
  color: var(--brand-2);
  font-weight: 700;
}

.contact-section {
  background:
    linear-gradient(rgba(8, 16, 28, 0.72), rgba(8, 16, 28, 0.72)),
    url("images/contact-bg.png") center/cover no-repeat;
  color: #fff;
}

.contact-section .eyebrow,
.contact-section p,
.contact-section a {
  color: #e8eef7;
}

.contact-copy {
  max-width: 520px;
}

.contact-benefits {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: #d4e0f0;
  line-height: 1.6;
  font-size: 0.96rem;
}

.contact-form {
  padding: 1.2rem;
}

.contact-form.contact-form-dense {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form.contact-form-dense > label,
.contact-form.contact-form-dense > .form-help,
.contact-form.contact-form-dense > .form-status,
.contact-form.contact-form-dense > button {
  margin: 0;
}

.contact-form.contact-form-dense > .field-full,
.contact-form.contact-form-dense > .form-help,
.contact-form.contact-form-dense > .form-status,
.contact-form.contact-form-dense > button {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bfd0e4;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  margin-top: 0.45rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-help {
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.prequal-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.prequal-list li {
  position: relative;
  padding: 0.05rem 0 0.05rem 1.15rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.prequal-list li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.prequal-note {
  margin: 1rem 0 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}

.micro-disclaimer {
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status-success {
  background: rgba(16, 185, 129, 0.14);
  color: #0f5132;
}

.form-status-error {
  background: rgba(239, 68, 68, 0.14);
  color: #7f1d1d;
}

.site-footer {
  background: #111c2e;
  color: #cfdae9;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  align-items: center;
}

.legal-page {
  min-height: 70vh;
}

.legal-card {
  padding: 2rem;
  max-width: 860px;
}

.alert-panel {
  align-items: stretch;
}

.panasonic-panel {
  align-items: stretch;
}

.panasonic-points {
  margin: 0;
  color: var(--muted);
}

.contact-points a {
  font-weight: 700;
}

.page-home .hero-copy h1 {
  max-width: none;
  width: 100%;
}

.page-conmutadores .hero-copy h1 {
  font-size: clamp(1.8rem, 2.65vw, 2.75rem);
  max-width: none;
  width: 100%;
}

.page-conmutadores .hero-media img {
  min-height: 470px;
  object-position: center;
}

.page-conmutadores .hero-panel {
  width: min(310px, 88%);
}

.page-conmutadores .trust-assets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0.75rem;
}

.page-conmutadores .trust-note {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-conmutadores .value-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-computo .hero-copy h1 {
  font-size: clamp(1.9rem, 2.7vw, 2.9rem);
  max-width: none;
  width: 100%;
}

.page-computo .hero-media img {
  min-height: 470px;
}

.page-computo .hero-panel {
  width: min(330px, 88%);
}

.page-cableado .hero-copy h1 {
  font-size: clamp(1.9rem, 2.7vw, 2.95rem);
  max-width: none;
  width: 100%;
}

.page-cableado .hero-media img {
  min-height: 470px;
}

.page-soporte .hero-copy h1 {
  font-size: clamp(1.9rem, 2.7vw, 2.95rem);
  max-width: none;
  width: 100%;
}

.page-soporte .hero-media img {
  min-height: 470px;
}

.page-seguridad .hero-copy h1 {
  font-size: clamp(1.9rem, 2.7vw, 2.95rem);
  max-width: none;
  width: 100%;
}

.page-seguridad .hero-media img {
  min-height: 470px;
}

.seguridad-brand-strip .trust-strip-inner {
  align-items: center;
}

.security-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.security-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.security-brand-card img {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.support-illustration-strip .trust-strip-inner {
  align-items: center;
}

.support-illustration-panel {
  display: block;
}

.support-illustration-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.support-illustration-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.support-illustration-flow span {
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
}

.support-illustration-points strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.support-illustration-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.support-illustration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.support-illustration-card {
  padding: 1rem 1rem 0.95rem;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.support-illustration-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}

.support-illustration-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.cableado-brands .trust-strip-inner {
  align-items: center;
}

.brand-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.brand-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.brand-strip-item img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

.cableado-showcase {
  align-items: stretch;
}

.cableado-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.cableado-gallery-main,
.cableado-gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.cableado-gallery-main {
  min-height: 420px;
}

.cableado-gallery-stack {
  display: grid;
  gap: 1rem;
}

.cableado-gallery-stack img {
  min-height: 202px;
}

.support-showcase {
  align-items: stretch;
}

.support-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.support-gallery-main,
.support-gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.support-gallery-main {
  min-height: 420px;
}

.support-gallery-stack {
  display: grid;
  gap: 1rem;
}

.support-gallery-stack img {
  min-height: 202px;
}

.seguridad-showcase {
  align-items: stretch;
}

.seguridad-gallery {
  display: block;
}

.seguridad-gallery-stack {
  display: grid;
  gap: 1rem;
}

.seguridad-gallery-main,
.seguridad-gallery-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.seguridad-gallery-main {
  min-height: 360px;
}

.seguridad-gallery-secondary {
  min-height: 300px;
}

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

.brand-device-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-device-card {
  border-radius: 22px;
  border: 1px solid rgba(33, 68, 111, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 20px 50px rgba(17, 28, 46, 0.08);
  overflow: hidden;
  min-height: 100%;
}

.brand-device-visual {
  aspect-ratio: 1.15 / 1;
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
}

.brand-device-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-device-copy {
  padding: 1rem 1.05rem 1.15rem;
}

.brand-device-copy h3 {
  margin: 0.7rem 0 0.45rem;
  font-size: 1.06rem;
}

.brand-device-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.seal-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.55rem;
  opacity: 0.9;
}

.seal-logo {
  width: auto;
  height: 9px;
  object-fit: contain;
}

.seal-logo-distribuidor {
  height: 10px;
}

.seal-logo-grandstream {
  height: 11px;
}

.equipment-section .section-heading {
  max-width: 840px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.equipment-card {
  border-radius: 22px;
  border: 1px solid rgba(33, 68, 111, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 20px 50px rgba(17, 28, 46, 0.08);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.equipment-visual {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6f9fd 0%, #edf4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.equipment-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.equipment-copy {
  padding: 0.95rem 0.15rem 0.1rem;
}

.equipment-copy h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.equipment-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-conmutadores2 .site-header {
  background: rgba(248, 251, 255, 0.94);
}

.conmutadores2-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
}

.conmutadores2-mini-nav {
  display: none;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.conmutadores2-header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-conmutadores2 .brand img {
  width: 58px;
}

.conmutadores2-header-actions .header-phone-link {
  display: none;
}

.conmutadores2-header-actions .button {
  width: auto;
  min-width: 0;
  padding: 0.62rem 0.82rem;
  font-size: 0.88rem;
  gap: 0.35rem;
}

.conmutadores2-header-actions .button .button-icon-svg {
  width: 0.9rem;
  height: 0.9rem;
}

.conmutadores2-header-wa-mobile {
  display: none;
}

.conmutadores2-call-button {
  padding-inline: 0.95rem;
}

.header-phone-link {
  font-weight: 800;
  color: var(--brand-2);
  white-space: nowrap;
}

.conmutadores2-call-button {
  white-space: nowrap;
}

.conmutadores2-hero {
  padding: 2.8rem 0 2.2rem;
  position: relative;
  overflow: hidden;
}

.conmutadores2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.96) 0%, rgba(248, 251, 255, 0.92) 34%, rgba(248, 251, 255, 0.72) 58%, rgba(248, 251, 255, 0.82) 100%),
    url("images/conmutadores-hero-enterprise.png") center/cover no-repeat;
  pointer-events: none;
}

.conmutadores2-hero .container {
  position: relative;
  z-index: 1;
}

.conmutadores2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1.4rem;
  align-items: start;
}

.page-conmutadores2 .hero-copy h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.conmutadores2-bullets {
  margin-top: 1rem;
}

.conmutadores2-hero-actions {
  align-items: center;
}

.hero-link {
  color: var(--brand);
  font-weight: 800;
}

.conmutadores2-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.conmutadores2-hero-notes span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--brand-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.conmutadores2-form-wrap {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1100px) {
  .conmutadores2-nav {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 0.72rem 0;
  }

  .conmutadores2-mini-nav {
    display: flex;
  }

  .page-conmutadores2 .brand img {
    width: 76px;
  }

  .conmutadores2-header-actions {
    gap: 0.75rem;
  }

  .conmutadores2-header-actions .header-phone-link {
    display: inline;
  }

  .conmutadores2-header-actions .button {
    padding: 0.72rem 1.05rem;
    font-size: 0.92rem;
    gap: 0.5rem;
  }

  .conmutadores2-header-actions .button .button-icon-svg {
    width: 1rem;
    height: 1rem;
  }

  .conmutadores2-call-button {
    padding-inline: 1.05rem;
  }
}

@media (max-width: 1099px) {
  .conmutadores2-mini-nav {
    display: none !important;
  }
}

.quick-hero-form {
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.98));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
}

.quick-form-step {
  display: grid;
  gap: 0.95rem;
}

.quick-form-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
}

.quick-form-error {
  margin: -0.2rem 0 0;
  min-height: 1.2rem;
  color: #b91c1c;
  font-size: 0.85rem;
  font-weight: 700;
}

.quick-form-button {
  width: 100%;
}

.quick-form-help {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.quick-form-help strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-2);
  font-family: "Outfit", sans-serif;
}

.conmutadores2-trustbar {
  padding: 0 0 2.5rem;
}

.conmutadores2-trustbar-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.conmutadores2-trust-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
}

.conmutadores2-trust-copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.conmutadores2-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.conmutadores2-chip-row span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--brand-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.conmutadores2-card-grid,
.conmutadores2-solution-grid,
.conmutadores2-why-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.conmutadores2-intent-card {
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.conmutadores2-intent-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
}

.conmutadores2-intent-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.conmutadores2-inline-cta {
  margin-top: auto;
  align-self: flex-start;
}

.conmutadores2-seal-row {
  margin-top: 0.2rem;
}

.conmutadores2-panasonic .cta-panel strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.conmutadores2-panasonic .contact-benefits {
  color: var(--muted);
}

.conmutadores2-panel-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.conmutadores2-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  counter-reset: process-step;
}

.conmutadores2-process-list > div,
.conmutadores2-why-grid > div {
  position: relative;
  padding: 1.05rem 1.1rem 1.05rem 3.35rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 254, 0.94));
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  font-weight: 700;
  line-height: 1.45;
}

.conmutadores2-process-list > div::before {
  counter-increment: process-step;
  content: counter(process-step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), #5ba4ff);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.2);
}

.conmutadores2-process-list > div:nth-child(2n) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 248, 0.95));
  border-color: rgba(15, 118, 110, 0.12);
}

.conmutadores2-process-list > div:nth-child(2n)::before {
  background: linear-gradient(135deg, #0f766e, #29c8a9);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.18);
}

.conmutadores2-process-cta {
  margin-top: 1.15rem;
}

.conmutadores2-why-grid > div::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #7ab6ff);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.conmutadores2-why-grid > div:nth-child(2),
.conmutadores2-why-grid > div:nth-child(5) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 248, 0.95));
  border-color: rgba(15, 118, 110, 0.12);
}

.conmutadores2-why-grid > div:nth-child(2)::before,
.conmutadores2-why-grid > div:nth-child(5)::before {
  background: linear-gradient(135deg, #0f766e, #29c8a9);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.1);
}

.conmutadores2-why-grid > div:nth-child(3),
.conmutadores2-why-grid > div:nth-child(6) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 244, 255, 0.94));
  border-color: rgba(99, 102, 241, 0.12);
}

.conmutadores2-why-grid > div:nth-child(3)::before,
.conmutadores2-why-grid > div:nth-child(6)::before {
  background: linear-gradient(135deg, #4f46e5, #8b7cff);
  box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.1);
}

.conmutadores2-faq-list {
  display: grid;
  gap: 0.95rem;
}

.conmutadores2-faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.conmutadores2-faq-list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1rem 1.1rem;
  padding-right: 3.2rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.conmutadores2-faq-list summary::-webkit-details-marker {
  display: none;
}

.conmutadores2-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 800;
}

.conmutadores2-faq-list details[open] summary::after {
  content: "−";
}

.conmutadores2-faq-list details p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.conmutadores2-final-cta {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.75rem 0.85rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  color: #fff;
}

.mobile-sticky-cta span {
  font-size: 0.84rem;
  font-weight: 800;
}

.mobile-sticky-cta-actions {
  display: flex;
  gap: 0.6rem;
}

.mobile-sticky-cta-actions a {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  font-weight: 800;
}

.mobile-sticky-cta-actions a:first-child {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.mobile-sticky-cta-actions a:last-child {
  background: #fff;
  color: var(--brand-2);
}

.mobile-sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.form-status-actions {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .split-panel,
  .trust-strip-inner,
  .value-grid,
  .cta-band-inner,
  .service-grid,
  .process-grid,
  .hero-metrics,
  .trust-assets,
  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  #soporteitsm,
  #conmutadores,
  #cableado,
  #seguridad,
  #computo {
    grid-column: auto;
  }

  .hero-panel {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-media img {
    min-height: 360px;
  }

  .page-conmutadores .trust-assets {
    grid-template-columns: 1fr;
  }

  .contact-form.contact-form-dense {
    grid-template-columns: 1fr;
  }

  .computo-hero .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand-device-grid {
    grid-template-columns: 1fr;
  }

  .brand-strip-grid,
  .security-brand-grid,
  .cableado-gallery,
  .support-gallery,
  .support-illustration-panel,
  .seguridad-gallery,
  .seguridad-gallery-stack {
    grid-template-columns: 1fr;
  }

  .support-illustration-grid {
    grid-template-columns: 1fr;
  }

  .cableado-gallery-main,
  .cableado-gallery-stack img,
  .support-gallery-main,
  .support-gallery-stack img,
  .seguridad-gallery-main,
  .seguridad-gallery-secondary {
    min-height: 280px;
  }

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

  .page-conmutadores .trust-note {
    min-height: auto;
  }

  .nav-side {
    width: 100%;
    align-items: flex-start;
    min-width: 0;
  }

  .header-contact {
    justify-content: flex-start;
  }

  .header-wa {
    align-self: flex-start;
  }

  .conmutadores2-nav,
  .conmutadores2-hero-grid,
  .conmutadores2-card-grid,
  .conmutadores2-solution-grid,
  .conmutadores2-process-list,
  .conmutadores2-why-grid {
    grid-template-columns: 1fr;
  }

  .conmutadores2-mini-nav {
    display: none;
  }

  .conmutadores2-nav {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0.55rem 0;
  }

  .page-conmutadores2 .brand img {
    width: 58px;
  }

  .conmutadores2-header-actions {
    width: auto;
    justify-content: flex-end;
    align-items: center;
    gap: 0.45rem;
    display: flex;
  }

  .conmutadores2-header-actions .header-phone-link {
    display: none;
  }

  .conmutadores2-header-actions .button {
    width: auto;
    min-width: 0;
    padding: 0.62rem 0.82rem;
    font-size: 0.88rem;
    gap: 0.35rem;
  }

  .conmutadores2-header-actions .button .button-icon-svg {
    width: 0.9rem;
    height: 0.9rem;
  }

  .conmutadores2-call-button {
    padding-inline: 0.95rem;
  }

}

@media (max-width: 720px) {
  .nav,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section {
    padding: 2.4rem 0;
  }

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

  .hero-copy h1,
  .section-heading h2,
  .contact-copy h2,
  .legal-card h1,
  .split-panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .button,
  .header-contact,
  .nav-side,
  .hero-actions,
  .contact-points,
  .cta-band-actions {
    width: 100%;
  }

  .header-wa,
  .hero-actions .button,
  .cta-band-actions .button {
    width: 100%;
  }

  .conmutadores2-hero {
    padding-top: 1.8rem;
  }

  .page-conmutadores2 .hero-copy h1 {
    max-width: none;
  }

  .conmutadores2-nav {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.6rem;
    padding: 0.42rem 0;
  }

  .page-conmutadores2 .brand img {
    width: 50px;
  }

  .conmutadores2-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .conmutadores2-header-actions .button {
    width: auto;
    flex: 0 0 auto;
    min-width: 0;
    padding: 0.56rem 0.72rem;
    font-size: 0.8rem;
    gap: 0.28rem;
    line-height: 1;
    white-space: nowrap;
  }

  .conmutadores2-header-actions .button .button-icon-svg {
    width: 0.82rem;
    height: 0.82rem;
  }

  .conmutadores2-header-wa-desktop {
    display: none;
  }

  .conmutadores2-header-wa-mobile {
    display: inline;
  }

  .conmutadores2-header-wa {
    max-width: 9rem;
  }

  .conmutadores2-call-button {
    padding-inline: 0.8rem;
  }

  .mobile-sticky-cta {
    display: flex;
  }

}
