:root {
  --navy: #061e63;
  --blue: #0477bc;
  --blue-2: #00a1df;
  --ink: #142033;
  --muted: #657386;
  --red: #d61f2c;
  --green: #18a96f;
  --mist: #f4f8fb;
  --soft: #eaf6fb;
  --white: #ffffff;
  --line: rgba(20, 32, 51, .12);
  --shadow: 0 22px 65px rgba(6, 30, 99, .15);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 161, 223, .08), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(214, 31, 44, .06), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fbfd 58%, #ffffff);
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.is-temporarily-hidden { display: none !important; }

.site-shell { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  background: rgba(6, 30, 99, .82);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 30, 99, .94);
  box-shadow: 0 14px 36px rgba(6, 30, 99, .18);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
}

.brand img {
  width: 72px;
  height: 58px;
  object-fit: contain;
  padding: 4px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
}

.brand span { font-size: 1.05rem; letter-spacing: 0; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a[href="soluciones.html"] {
  display: none;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .84);
  font-size: .94rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.nav-menu .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ef4853);
  box-shadow: 0 12px 26px rgba(214, 31, 44, .28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  min-height: 88vh;
  padding: 148px 0 84px;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(6, 30, 99, .96) 0%, rgba(6, 30, 99, .86) 46%, rgba(4, 119, 188, .48) 100%),
    url("../assets/cobertura/capacitacion-ventas.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .98));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 7px 11px;
  border-radius: var(--radius);
  color: var(--blue-2);
  background: rgba(0, 161, 223, .1);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .1);
}

.hero h1,
.section-heading h2,
.split-copy h2,
.cta-band h2,
.page-title h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: .98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.hero-text {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus,
.text-link:hover,
.catalog-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ef4853);
  box-shadow: 0 16px 34px rgba(214, 31, 44, .3);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .1);
}

.hero-showcase {
  position: relative;
  min-height: 440px;
}

.showcase-logo {
  width: 280px;
  height: auto;
  margin: 0 auto;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.showcase-card {
  position: absolute;
  width: 180px;
  border: 8px solid rgba(255, 255, 255, .94);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
  animation: floatCard 5.8s ease-in-out infinite;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  object-position: top;
}

.card-one { left: 4px; bottom: 38px; }
.card-two { right: 0; top: 48px; animation-delay: .7s; }

.showcase-badge {
  position: absolute;
  right: 40px;
  bottom: 10px;
  width: 148px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
}

.showcase-badge strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.intro-strip {
  transform: translateY(-36px);
  position: relative;
  z-index: 2;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.strip-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  text-align: center;
  font-weight: 900;
}

.section { padding: 86px 0; }
.section-soft { background: linear-gradient(180deg, rgba(244, 248, 251, .85), rgba(255, 255, 255, .95)); }
.section-dark { color: var(--white); background: linear-gradient(135deg, var(--navy), #083482 60%, #035e9d); }
.section-dark .section-kicker { color: var(--white); background: rgba(255,255,255,.12); }
.section-dark p { color: rgba(255,255,255,.78); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.cta-band h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.section-dark .section-heading h2 { color: var(--white); }

.personality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.personality-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .1);
  font-weight: 800;
}

.about-showcase-page {
  background:
    radial-gradient(circle at 9% 24%, rgba(6, 43, 102, .06), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(8, 126, 215, .08), transparent 24%),
    #fff;
}

.about-showcase-page::before {
  display: none;
}

.about-topbar {
  width: min(1460px, calc(100% - 76px));
  margin: 18px auto 8px;
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.about-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  color: var(--navy);
}

.about-logo img {
  width: 78px;
  height: 66px;
  object-fit: contain;
}

.about-logo span {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.about-logo strong {
  color: var(--navy);
  font-size: clamp(2.3rem, 4.1vw, 3.75rem);
  font-weight: 900;
}

.about-logo small {
  color: #0647b7;
  font-size: .84rem;
  font-weight: 700;
}

.about-section-title {
  display: grid;
  justify-items: end;
  gap: 8px;
  padding-top: 14px;
  color: var(--navy);
}

.about-section-title h1 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.about-section-title strong {
  color: #0758bd;
}

.about-section-title span {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: #0758bd;
}

.about-showcase {
  width: min(1460px, calc(100% - 76px));
  margin: 0 auto 42px;
  padding-top: 116px;
}

.about-heading-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.about-row {
  display: grid;
  gap: 36px;
  align-items: center;
}

.about-row-top {
  grid-template-columns: 176px minmax(0, 1fr);
}

.about-row-bottom {
  grid-template-columns: minmax(0, 1fr) 214px;
  margin-top: 10px;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0 18px 48px rgba(6, 30, 99, .1);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-main {
  height: clamp(330px, 44vw, 458px);
}

.about-photo-team {
  height: clamp(320px, 42vw, 437px);
}

.about-side {
  color: #333d4d;
}

.about-side h2 {
  display: inline-flex;
  margin: 0;
  padding: 9px 12px 2px;
  border-radius: 5px 5px 0 0;
  color: var(--white);
  background: #062b66;
  font-size: 1.18rem;
  line-height: 1;
  text-transform: uppercase;
}

.about-side strong {
  display: block;
  width: max-content;
  margin: 0 0 16px;
  padding: 2px 12px 9px;
  border-radius: 0 0 5px 5px;
  color: var(--white);
  background: #062b66;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.about-side span {
  display: block;
  width: 40px;
  height: 4px;
  margin: 0 0 16px 0;
  border-radius: 999px;
  background: #0758bd;
}

.about-side p {
  margin: 0;
  color: #3f4654;
  font-size: 1rem;
  line-height: 1.72;
}

.about-side-left {
  align-self: center;
  padding-top: 96px;
}

.about-side-right {
  align-self: center;
}

.about-side-right h2 {
  border-radius: 5px;
  padding: 10px 13px;
}

.about-side-right span {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .about-topbar,
  .about-showcase {
    width: min(100% - 34px, 760px);
  }

  .about-showcase {
    padding-top: 108px;
  }

  .about-topbar,
  .about-row-top,
  .about-row-bottom {
    grid-template-columns: 1fr;
  }

  .about-section-title {
    justify-items: start;
    padding-top: 0;
  }

  .about-heading-bar {
    justify-content: flex-start;
  }

  .about-row {
    gap: 18px;
  }

  .about-row-bottom {
    margin-top: 24px;
  }

  .about-side-left {
    padding-top: 0;
  }

  .about-side-right {
    order: -1;
  }
}

@media (max-width: 640px) {
  .about-topbar {
    margin-top: 14px;
  }

  .about-showcase {
    padding-top: 100px;
  }

  .about-logo img {
    width: 62px;
    height: 54px;
  }

  .about-logo strong {
    font-size: 2rem;
  }

  .about-logo small {
    font-size: .72rem;
  }

  .about-section-title h1 {
    font-size: 1.9rem;
  }

  .about-photo-main,
  .about-photo-team {
    height: auto;
  }
}
.section-heading p,
.split-copy p,
.feature-card p,
.supplier-card p,
.timeline-card p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

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

.feature-card,
.supplier-card,
.product-card,
.timeline-card,
.contact-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 30, 99, .08);
}

.feature-card {
  min-height: 246px;
  padding: 24px;
}

.feature-number {
  color: var(--red);
  font-size: .85rem;
  font-weight: 900;
}

.feature-card h3,
.supplier-card h3,
.product-card h3,
.timeline-card h3,
.value-card h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.18;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.visual-stack {
  position: relative;
}

.visual-stack img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: 210px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.split-copy p {
  margin-top: 18px;
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--red);
  font-weight: 900;
  transition: transform .2s ease;
}

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

.catalog-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  transition: transform .2s ease;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 1.06 / 1;
  object-fit: cover;
  object-position: top;
}

.catalog-card span {
  display: block;
  padding: 16px;
  font-weight: 900;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--soft), #fff);
  box-shadow: var(--shadow);
}

.location-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 30, 99, .08);
}

.location-preview h2,
.map-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 900;
}

.location-preview p,
.map-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.page-hero {
  min-height: 54vh;
  padding: 148px 0 76px;
}

.page-hero::before {
  background:
    linear-gradient(100deg, rgba(6, 30, 99, .96), rgba(4, 119, 188, .62)),
    url("../assets/catalogo-meditech.png") right top / auto 115% no-repeat;
}

body.page-nosotros .page-hero::before {
  background:
    linear-gradient(100deg, rgba(6, 30, 99, .98) 0%, rgba(6, 30, 99, .86) 46%, rgba(4, 119, 188, .34) 100%),
    url("../assets/hero/nosotros-hero.jpg") center / cover no-repeat;
}

body.page-aliados .page-hero::before {
  background:
    linear-gradient(100deg, rgba(6, 30, 99, .98) 0%, rgba(6, 30, 99, .82) 44%, rgba(4, 119, 188, .24) 100%),
    url("../assets/hero/aliados-hero.jpg") center / cover no-repeat;
}

.coverage-hero::before {
  background:
    linear-gradient(100deg, rgba(6, 30, 99, .96), rgba(4, 119, 188, .7)),
    url("../assets/cobertura/entrega-productos.jpg") center / cover no-repeat;
}

.page-title {
  max-width: 850px;
}

.page-title h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-title p {
  max-width: 690px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.12rem;
}

.values-grid,
.timeline-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card,
.timeline-card,
.contact-card {
  padding: 24px;
}

.product-card { overflow: hidden; }
.product-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: top;
}
.product-card div { padding: 20px; }

.supplier-card { overflow: hidden; }
.supplier-card img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
  object-position: top;
}
.supplier-card div { padding: 20px; }

.allies-layout {
  display: grid;
  grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.provider-list {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
}

.provider-tab {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(6, 30, 99, .07);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.provider-tab strong,
.provider-tab span {
  display: block;
}

.provider-tab strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.provider-tab span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .88rem;
}

.provider-tab:hover,
.provider-tab:focus,
.provider-tab.active {
  transform: translateX(4px);
  border-color: rgba(0, 161, 223, .35);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.provider-tab:hover strong,
.provider-tab:hover span,
.provider-tab:focus strong,
.provider-tab:focus span,
.provider-tab.active strong,
.provider-tab.active span {
  color: var(--white);
}

.provider-content {
  min-width: 0;
}

.provider-panel {
  display: none;
  animation: panelIn .34s ease both;
}

.provider-panel.active {
  display: block;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.provider-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--soft), #fff);
  box-shadow: 0 18px 45px rgba(6, 30, 99, .08);
}

.provider-head img {
  width: 190px;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
}

.provider-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.provider-head p {
  margin: 12px 0 0;
  color: var(--muted);
}

.allied-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.allied-products article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 30, 99, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.allied-products article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.allied-products img {
  width: 100%;
  aspect-ratio: .82 / 1;
  object-fit: cover;
  object-position: top;
  background: var(--mist);
}

.allied-products h3,
.allied-products p {
  margin-left: 16px;
  margin-right: 16px;
}

.allied-products h3 {
  margin-top: 16px;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.15;
}

.allied-products p {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .92rem;
}

.stat-card {
  min-height: 142px;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}
.stat-card strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
}

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

.kpi-card {
  min-height: 154px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 30, 99, .96), rgba(4, 119, 188, .86)),
    linear-gradient(45deg, rgba(214, 31, 44, .36), transparent);
  box-shadow: var(--shadow);
}

.kpi-card strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.kpi-card strong::after {
  content: "%";
  font-size: 1.45rem;
  margin-left: 2px;
}

.kpi-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.coverage-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--mist);
}

.coverage-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-grid span {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
}

.analytics-grid {
  grid-template-columns: 1.1fr 1.1fr .9fr;
}

.chart-card {
  min-height: 380px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 30, 99, .08);
}

.chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.chart-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.15;
}

.chart-head span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.bar-chart {
  display: grid;
  gap: 16px;
}

.bar-chart div {
  display: grid;
  grid-template-columns: 116px 1fr 44px;
  gap: 12px;
  align-items: center;
}

.bar-chart div::before {
  content: "";
  grid-column: 2;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--blue), var(--blue-2) calc(var(--value) * 1%), #e7edf3 calc(var(--value) * 1%));
}

.bar-chart span {
  grid-column: 1;
  grid-row: 1;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 900;
}

.bar-chart b {
  grid-column: 3;
  grid-row: 1;
  color: var(--red);
  font-size: .92rem;
}

.line-chart {
  position: relative;
  height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 20% 100%,
    linear-gradient(180deg, #fff, var(--mist));
  overflow: hidden;
}

.line-chart i {
  position: absolute;
  inset: 22% 4% 14%;
  clip-path: polygon(0 80%, 18% 60%, 36% 66%, 54% 42%, 74% 30%, 100% 16%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(0, 161, 223, .26), rgba(0, 161, 223, .02));
}

.line-chart span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(214, 31, 44, .15);
}

.chart-months {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.pie-wrap {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.pie-chart {
  width: 178px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: conic-gradient(var(--blue) 0 42%, var(--red) 42% 66%, var(--green) 66% 85%, var(--blue-2) 85% 100%);
  box-shadow: inset 0 0 0 24px var(--white), 0 18px 35px rgba(6, 30, 99, .14);
}

.legend-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.legend-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-list b {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-blue { background: var(--blue); }
.dot-red { background: var(--red); }
.dot-green { background: var(--green); }
.dot-cyan { background: var(--blue-2); }

.photo-note {
  margin-top: 22px;
  padding: 14px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--mist);
  font-weight: 800;
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, .82fr);
  gap: 44px;
  align-items: center;
}

.delivery-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.route-map {
  position: relative;
  min-height: 390px;
  background:
    linear-gradient(135deg, rgba(6, 30, 99, .92), rgba(4, 119, 188, .82)),
    radial-gradient(circle at 24% 30%, rgba(255,255,255,.18), transparent 18%),
    radial-gradient(circle at 74% 62%, rgba(255,255,255,.14), transparent 16%);
  overflow: hidden;
}

.route-map::before,
.route-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
}

.route-map::before { width: 520px; height: 280px; left: -80px; top: 56px; transform: rotate(-16deg); }
.route-map::after { width: 360px; height: 420px; right: -80px; bottom: -80px; transform: rotate(24deg); }

.map-pin {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.pin-one { left: 18%; top: 48%; }
.pin-two { left: 45%; top: 18%; }
.pin-three { left: 66%; top: 46%; }
.pin-four { left: 38%; top: 72%; }

.route-line {
  position: absolute;
  left: 22%;
  top: 52%;
  width: 46%;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #fff 0 14px, transparent 14px 24px);
  transform: rotate(-17deg);
  opacity: .95;
}

.delivery-car {
  position: absolute;
  z-index: 3;
  left: 52%;
  top: 42%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  animation: routePulse 2.4s ease-in-out infinite;
}

@keyframes routePulse {
  0%, 100% { transform: translate(0, 0) rotate(-17deg); }
  50% { transform: translate(18px, -8px) rotate(-17deg); }
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.route-stats div {
  padding: 18px;
  background: var(--white);
}

.route-stats strong {
  display: block;
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1;
}

.route-stats span {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 800;
}

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

.field-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  box-shadow: 0 20px 45px rgba(0,0,0,.16);
}

.field-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.field-card h3,
.field-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.field-card h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.18rem;
}

.field-card p {
  margin-top: 0;
  margin-bottom: 20px;
  color: rgba(255,255,255,.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .72fr);
  gap: 44px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-list a,
.contact-list span {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.map-copy {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--soft), #fff);
  box-shadow: 0 18px 45px rgba(6, 30, 99, .08);
}

.map-frame {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea { resize: vertical; }
.contact-form button { border: 0; cursor: pointer; }

.contact-redinza-page::before {
  background:
    radial-gradient(circle at 9% 16%, rgba(8, 126, 215, .08), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(6, 62, 163, .06), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7fbff 48%, #fff 100%);
}

.contact-main-new {
  padding-top: 92px;
}

.contact-shell {
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #063ea3;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.contact-kicker::after {
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: #087ed7;
}

.contact-hero-new {
  padding: 28px 0 18px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, .55fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 42px 36px;
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 62%, rgba(255,255,255,.72) 100%),
    #fff;
  box-shadow: 0 18px 46px rgba(6, 30, 99, .1);
}

.contact-hero-copy h1 {
  max-width: 640px;
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.45vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.contact-hero-copy p {
  max-width: 570px;
  margin: 0;
  color: #071753;
  font-size: 1.05rem;
  line-height: 1.72;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-outline {
  color: #063ea3;
  border-color: rgba(6, 62, 163, .36);
  background: rgba(255, 255, 255, .9);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(8, 126, 215, .08);
  box-shadow: 0 12px 24px rgba(6, 62, 163, .1);
}

.contact-hero-photo {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(6, 30, 99, .12);
}

.contact-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-business-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0 22px;
}

.contact-info-panel,
.contact-form-new,
.contact-map-band {
  border: 1px solid rgba(6, 30, 99, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(6, 30, 99, .08);
}

.contact-info-panel {
  padding: 34px;
}

.contact-info-panel h2,
.contact-form-title h2,
.contact-map-copy h2 {
  margin: 12px 0 12px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-info-panel > p,
.contact-form-title p,
.contact-map-copy p {
  margin: 0;
  color: #071753;
  line-height: 1.68;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.contact-methods a,
.contact-methods > span {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(8, 126, 215, .16);
  border-radius: 8px;
  color: #071753;
  background: linear-gradient(180deg, #fff, #f6fbff);
}

.contact-methods a > span,
.contact-methods > span > span,
.contact-segments span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #063ea3, #087ed7);
}

.contact-methods svg,
.contact-segments svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-methods strong,
.contact-methods em {
  grid-column: 2;
  font-style: normal;
}

.contact-methods strong {
  color: #063176;
  font-size: .84rem;
  text-transform: uppercase;
}

.contact-methods em {
  color: #071753;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.32;
}

.contact-form-new {
  gap: 13px;
  padding: 28px;
}

.contact-form-title {
  margin-bottom: 6px;
}

.contact-form-new label {
  color: #063176;
}

.contact-form-new input,
.contact-form-new select,
.contact-form-new textarea {
  border-color: rgba(6, 30, 99, .16);
  background: #f9fcff;
}

.contact-form-new input:focus,
.contact-form-new select:focus,
.contact-form-new textarea:focus {
  outline: 3px solid rgba(8, 126, 215, .16);
  border-color: #087ed7;
  background: #fff;
}

.contact-form-new .btn {
  margin-top: 6px;
  background: linear-gradient(135deg, #063ea3, #087ed7);
  box-shadow: 0 16px 34px rgba(8, 126, 215, .26);
}

.contact-segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 10px 0 28px;
}

.contact-segments article {
  padding: 24px;
  border: 1px solid rgba(6, 30, 99, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 30, 99, .07);
}

.contact-segments h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.contact-segments p {
  margin: 0;
  color: #071753;
  line-height: 1.58;
}

.contact-map-band {
  display: grid;
  grid-template-columns: minmax(300px, .46fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  margin: 8px auto 48px;
}

.contact-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(6, 30, 99, .96), rgba(6, 62, 163, .92)),
    #061e63;
}

.contact-map-copy .contact-kicker,
.contact-map-copy h2,
.contact-map-copy p {
  color: #fff;
}

.contact-map-copy .contact-kicker::after {
  background: #67d3ff;
}

.contact-map-copy .btn {
  width: max-content;
  margin-top: 24px;
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .1);
}

.contact-map-frame {
  min-height: 360px;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  color: rgba(255,255,255,.78);
  background: #051644;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .9fr;
  gap: 28px;
  padding: 46px 0 32px;
}

.footer-grid img {
  padding: 6px;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
}

.footer-bottom {
  padding: 14px 16px 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .9rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #fff;
  opacity: .88;
  outline: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

body.is-loaded .hero-copy { animation: heroIn .75s ease both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(6, 30, 99, .98);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid,
  .section-heading,
  .split-layout,
  .contact-layout,
  .allies-layout,
  .provider-head,
  .map-section { grid-template-columns: 1fr; }
  .provider-list {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid,
  .supplier-grid,
  .product-grid,
  .stats-grid,
  .coverage-dashboard,
  .catalog-row,
  .allied-products,
  .analytics-grid,
  .delivery-layout,
  .field-grid,
  .values-grid,
  .timeline-grid,
  .contact-grid,
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-showcase { min-height: 360px; }
}

@media (max-width: 640px) {
  .brand span { display: none; }
  .hero,
  .page-hero { padding-top: 126px; }
  .hero h1,
  .page-title h1 { font-size: 3rem; }
  .feature-grid,
  .supplier-grid,
  .product-grid,
  .stats-grid,
  .coverage-dashboard,
  .catalog-row,
  .provider-list,
  .allied-products,
  .analytics-grid,
  .delivery-layout,
  .field-grid,
  .values-grid,
  .timeline-grid,
  .contact-grid,
  .strip-grid { grid-template-columns: 1fr; }
  .showcase-card { width: 138px; }
  .showcase-logo { width: 220px; }
  .card-two { top: 20px; }
  .showcase-badge { right: 12px; }
  .floating-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }
  .location-preview {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .bar-chart div {
    grid-template-columns: 90px 1fr 40px;
  }
  .route-stats {
    grid-template-columns: 1fr;
  }
}

/* HOME aprobado REDINZA */
body.home-approved::before { display: none; }

.home-approved .site-shell {
  width: min(1420px, calc(100% - 64px));
}

.unified-header .site-shell {
  width: min(1420px, calc(100% - 64px));
}

.home-approved .site-header,
.unified-header {
  border-bottom: 1px solid rgba(6, 30, 99, .08);
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px);
}

.home-approved .site-header.is-scrolled,
.unified-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 32px rgba(6, 30, 99, .12);
}

.home-approved .navbar,
.unified-header .navbar {
  min-height: 92px;
}

.home-brand {
  color: var(--navy);
  gap: 14px;
}

.home-brand img {
  width: 88px;
  height: 70px;
  padding: 0;
  background: transparent;
}

.home-brand span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.home-brand strong {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 900;
}

.home-brand small {
  color: #0647b7;
  font-size: .78rem;
  font-weight: 800;
}

.home-nav {
  gap: 10px;
}

.home-approved .nav-menu a,
.unified-header .nav-menu a {
  color: #07173f;
  background: transparent;
  font-size: .88rem;
  font-weight: 800;
}

.home-approved .nav-menu a:hover,
.home-approved .nav-menu a:focus,
.home-approved .nav-menu a.active,
.unified-header .nav-menu a:hover,
.unified-header .nav-menu a:focus,
.unified-header .nav-menu a.active {
  color: #063ea3;
  background: rgba(8, 126, 215, .08);
}

.home-approved .nav-menu a.active,
.unified-header .nav-menu a.active {
  box-shadow: inset 0 -2px 0 #063ea3;
}

.home-approved .nav-menu .nav-cta,
.unified-header .nav-menu .nav-cta {
  min-width: 160px;
  margin-left: 10px;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(135deg, #063ea3, #087ed7);
  box-shadow: 0 12px 24px rgba(8, 126, 215, .28);
}

.home-approved .menu-toggle,
.unified-header .menu-toggle {
  border-color: rgba(6, 30, 99, .18);
  background: rgba(6, 30, 99, .06);
}

.home-approved .menu-toggle span,
.unified-header .menu-toggle span {
  background: var(--navy);
}

.home-hero {
  position: relative;
  min-height: 410px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.home-hero .site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(28px, 3vw, 48px);
  padding-right: 0;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(780px, 52vw);
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .96) 0%,
    rgba(255, 255, 255, .9) 26%,
    rgba(255, 255, 255, .76) 48%,
    rgba(255, 255, 255, .52) 68%,
    rgba(255, 255, 255, .24) 86%,
    rgba(255, 255, 255, 0) 100%
  );
}

.home-hero-media {
  display: none;
}

.home-hero-overlay {
  display: none;
}

.home-hero-content {
  min-height: 410px;
  display: flex;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 10px;
}

.home-hero-copy {
  width: 100%;
  max-width: 455px;
  padding-right: 0;
  position: relative;
  z-index: 3;
}

.home-hero-copy::before {
  display: none;
}

.home-hero h1 {
  margin: 0;
  color: #071753;
  font-size: clamp(1.55rem, 2.35vw, 2.55rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-hero h1 span,
.home-hero h1 strong {
  display: block;
}

.home-hero h1 strong {
  margin-top: 10px;
  color: #064bb5;
  font-size: .86em;
}

.home-hero h1::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin: 18px 0 0;
  border-radius: 999px;
  background: #0758bd;
}

.home-hero p {
  max-width: 440px;
  margin: 16px 0 0;
  color: #071428;
  font-size: .96rem;
  line-height: 1.58;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.home-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  max-width: none;
  object-fit: fill;
  object-position: center center;
  filter: none;
}

.home-approved .btn {
  gap: 10px;
  min-height: 46px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: 0;
}

.ui-icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-approved .btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0647b7, #087ed7);
  box-shadow: 0 16px 34px rgba(8, 126, 215, .28);
}

.btn-outline-blue {
  color: #063b92;
  border-color: rgba(6, 62, 163, .55);
  background: rgba(255, 255, 255, .84);
}

.btn-outline-blue:hover,
.btn-outline-blue:focus {
  color: var(--white);
  background: #063ea3;
}

.principles-band {
  padding: 24px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, #041743, #062b66 56%, #053b8e);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.principle-card {
  min-height: 170px;
  padding: 18px 22px 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .26);
}

.principle-card:last-child {
  border-right: 0;
}

.principle-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border: 1px solid rgba(110, 206, 255, .75);
  border-radius: 999px;
  color: #6eceff;
}

.principle-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: .88rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.principle-card p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  line-height: 1.55;
}

.home-solutions {
  padding-top: 22px;
  background: var(--white);
}

.home-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--navy);
  text-align: center;
}

.home-section-title span {
  height: 1px;
  background: rgba(8, 126, 215, .42);
}

.home-section-title h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.1;
  text-transform: uppercase;
}

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

.solution-card {
  position: relative;
  text-align: center;
}

.solution-card img {
  width: 100%;
  aspect-ratio: 2.35 / 1;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(6, 30, 99, .12);
}

.solution-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-top: -28px;
  border: 4px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #0647b7, #087ed7);
  box-shadow: 0 12px 24px rgba(6, 30, 99, .2);
}

.solution-badge svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  margin: 8px 0 7px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.solution-card p {
  margin: 0 auto;
  max-width: 290px;
  color: #22314d;
  font-size: .92rem;
  line-height: 1.55;
}

.solution-card a {
  display: inline-flex;
  margin-top: 12px;
  color: #0647b7;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.brand-logo-row a {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 30, 99, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.brand-logo-row a:hover,
.brand-logo-row a:focus {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(6, 30, 99, .14);
}

.brand-logo-row img {
  max-height: 96px;
  object-fit: contain;
}

.brand-logo-row span {
  margin-top: 12px;
  color: var(--navy);
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-contact-band {
  align-items: center;
  gap: 28px;
}

.home-contact-band p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
}

.home-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.home-contact-list a,
.home-contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(8, 126, 215, .18);
  border-radius: 6px;
  color: var(--navy);
  background: rgba(255, 255, 255, .72);
  font-size: .88rem;
  font-weight: 800;
}

.home-coverage {
  background: linear-gradient(180deg, #fff, #f6fbff);
}

.home-coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 48px;
  align-items: center;
}

.coverage-copy h2,
.quality-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.02;
}

.coverage-copy p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
}

.coverage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.coverage-map-card {
  min-height: 390px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 43, 102, .96), rgba(8, 126, 215, .8)),
    url("../assets/index/redinza-home-hero.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.nicaragua-map {
  position: relative;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
  overflow: hidden;
}

.nicaragua-map::before {
  content: "";
  position: absolute;
  inset: 34px 128px 34px 132px;
  border: 2px solid rgba(110, 206, 255, .85);
  border-radius: 46% 38% 54% 42%;
  transform: rotate(-16deg);
}

.route-dot {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: #6eceff;
  box-shadow: 0 0 0 8px rgba(110, 206, 255, .16);
}

.dot-one { left: 46%; top: 44%; }
.dot-two { left: 55%; top: 27%; }
.dot-three { left: 40%; top: 62%; }

.route-line {
  position: absolute;
  height: 2px;
  background: rgba(110, 206, 255, .8);
  transform-origin: left center;
}

.line-one {
  left: 48%;
  top: 47%;
  width: 90px;
  transform: rotate(-32deg);
}

.line-two {
  left: 42%;
  top: 65%;
  width: 94px;
  transform: rotate(-48deg);
}

.coverage-note {
  display: grid;
  gap: 3px;
  margin-top: 20px;
}

.coverage-note strong {
  font-size: 1.05rem;
}

.coverage-note span {
  color: rgba(255, 255, 255, .78);
}

.home-quality .section-kicker {
  color: #6eceff;
  background: rgba(110, 206, 255, .12);
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: center;
}

.home-quality .quality-grid h2 {
  color: var(--white);
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quality-list span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .home-approved .site-shell {
    width: min(1160px, calc(100% - 40px));
  }

  .home-brand small {
    display: none;
  }

  .home-nav {
    gap: 2px;
  }

  .home-approved .nav-menu a,
  .unified-header .nav-menu a {
    padding-inline: 9px;
    font-size: .82rem;
  }

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

  .principle-card:nth-child(3n) {
    border-right: 0;
  }

  .principle-card:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, .2);
  }
}

@media (max-width: 980px) {
  .home-approved .navbar,
  .unified-header .navbar {
    min-height: 78px;
  }

  .home-approved .nav-menu,
  .unified-header .nav-menu {
    top: 86px;
    background: rgba(255, 255, 255, .98);
  }

  .home-approved .nav-menu .nav-cta,
  .unified-header .nav-menu .nav-cta {
    margin-left: 0;
  }

  .home-hero {
    min-height: auto;
    padding: 110px 0 46px;
    background: linear-gradient(180deg, #fff 0%, #fff 54%, #eef7ff 54%, #f6fbff 100%);
  }

  .home-hero::before {
    display: none;
  }

  .home-hero-content {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-hero-copy {
    max-width: 720px;
  }

  .home-hero-copy::before {
    display: none;
  }

  .home-hero-visual {
    position: static;
    z-index: auto;
    width: 100%;
    min-height: 0;
    justify-content: center;
    overflow: visible;
  }

  .home-hero-visual img {
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .solution-grid,
  .brand-logo-row,
  .home-coverage-grid,
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-coverage-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-approved .site-shell {
    width: min(100% - 28px, 560px);
  }

  .unified-header .site-shell {
    width: min(100% - 28px, 560px);
  }

  .home-brand img {
    width: 64px;
    height: 52px;
  }

  .home-brand span {
    display: grid;
  }

  .home-brand strong {
    font-size: 1.4rem;
  }

  .home-hero h1 {
    font-size: 2.24rem;
  }

  .home-hero p {
    font-size: 1rem;
  }

  .home-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero-actions .btn {
    width: 100%;
  }

  .home-hero-visual img {
    width: min(100%, 620px);
  }

  .principles-grid,
  .solution-grid,
  .brand-logo-row,
  .quality-list {
    grid-template-columns: 1fr;
  }

  .principle-card,
  .principle-card:nth-child(3n) {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

  .principle-card:first-child {
    border-top: 0;
  }

  .home-section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-section-title span {
    width: 100%;
  }

  .coverage-map-card {
    min-height: 330px;
    padding: 18px;
  }

  .nicaragua-map {
    height: 210px;
  }
}

.maintenance-hero::before {
  background:
    linear-gradient(100deg, rgba(6, 30, 99, .94), rgba(6, 30, 99, .72), rgba(8, 126, 215, .38)),
    url("../assets/index/redinza-home-hero.jpg") center / cover no-repeat;
}

.maintenance-section {
  position: relative;
  overflow: hidden;
}

.maintenance-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .65fr);
  gap: 34px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(8, 126, 215, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(234, 244, 252, .78));
  box-shadow: 0 24px 60px rgba(6, 30, 99, .12);
}

.maintenance-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.maintenance-panel p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.maintenance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.maintenance-card {
  min-height: 310px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 43, 102, .96), rgba(8, 126, 215, .82)),
    url("../assets/index/redinza-home-hero.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.maintenance-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.maintenance-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.maintenance-list span {
  display: block;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
}

@media (max-width: 980px) {
  .maintenance-panel {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}

@media (max-width: 640px) {
  .maintenance-panel {
    padding: 20px;
  }

  .maintenance-actions {
    flex-direction: column;
  }

  .maintenance-actions .btn {
    width: 100%;
  }
}

/* Página ¿Por qué REDINZA? */
.why-redinza-page {
  background:
    radial-gradient(circle at 10% 14%, rgba(8, 126, 215, .05), transparent 24%),
    linear-gradient(180deg, #fff, #f8fbff 62%, #fff);
}

.why-redinza-page::before {
  display: none;
}

.why-main {
  padding-top: 106px;
}

.why-shell {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.why-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, .86fr);
  gap: 28px;
  align-items: center;
}

.why-hero-copy {
  padding: 24px 0 28px;
  color: var(--navy);
}

.why-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.75rem, 5.35vw, 5rem);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.why-hero-copy h1 strong {
  display: block;
  color: #0758bd;
}

.why-blue-line {
  display: block;
  width: 44px;
  height: 4px;
  margin: 24px 0 20px;
  border-radius: 999px;
  background: #0758bd;
}

.why-hero-copy > p {
  max-width: 340px;
  margin: 0;
  color: #071753;
  font-size: .98rem;
  line-height: 1.62;
}

.why-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.why-proof-icon,
.why-diff-grid article > span,
.why-process-grid article > span {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #063ea3, #087ed7);
  box-shadow: 0 14px 28px rgba(6, 62, 163, .2);
}

.why-proof-icon {
  width: 58px;
  height: 58px;
  border: 3px solid #0758bd;
  color: #0758bd;
  background: rgba(255, 255, 255, .74);
}

.why-proof svg,
.why-diff-grid svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-proof p {
  margin: 0;
  color: #071753;
  font-size: .98rem;
  line-height: 1.35;
}

.why-proof strong {
  display: block;
  color: #063ea3;
}

.why-hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 0 20px 54px rgba(6, 30, 99, .12);
}

.why-hero-photo img {
  display: block;
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.why-difference {
  margin-top: 18px;
  padding: 26px 34px 36px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #041743, #062b66 58%, #041743);
  box-shadow: 0 22px 56px rgba(6, 30, 99, .18);
}

.why-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.why-section-title span {
  height: 1px;
  background: rgba(8, 126, 215, .42);
}

.why-section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.why-section-title-light span {
  background: rgba(255, 255, 255, .34);
}

.why-section-title-light h2 {
  color: #fff;
}

.why-diff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.why-diff-grid article {
  min-height: 190px;
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .34);
}

.why-diff-grid article:last-child {
  border-right: 0;
}

.why-diff-grid article > span {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.why-diff-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.2;
}

.why-diff-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  line-height: 1.55;
}

.why-commitment {
  display: grid;
  grid-template-columns: minmax(280px, .46fr) minmax(0, .8fr);
  gap: 34px;
  align-items: center;
  padding: 42px 0 24px;
}

.why-commit-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.why-commit-copy p {
  margin: 0;
  color: #071753;
  line-height: 1.7;
}

.why-commit-copy ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.why-commit-copy li {
  position: relative;
  padding-left: 32px;
  color: #071753;
  font-weight: 700;
}

.why-commit-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: #fff;
  background: #0758bd;
  font-size: .78rem;
  font-weight: 900;
}

.why-commit-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 20px 48px rgba(6, 30, 99, .12);
}

.why-commit-photo img {
  display: block;
  width: 100%;
  min-height: 330px;
  object-fit: cover;
}

.why-process {
  padding: 8px 0 44px;
}

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

.why-process-grid article {
  position: relative;
  text-align: center;
}

.why-process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  left: calc(50% + 42px);
  width: calc(100% - 68px);
  border-top: 2px dotted #0758bd;
}

.why-process-grid article > span {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

.why-process-grid svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-process-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: .9rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.why-process-grid p {
  margin: 0;
  color: #22314d;
  font-size: .78rem;
  line-height: 1.55;
}

.why-final-cta {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  color: #fff;
  background: #061e63;
}

.why-final-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 22, 68, .98) 0%, rgba(5, 22, 68, .84) 34%, rgba(5, 22, 68, .32) 58%, rgba(5, 22, 68, 0) 100%),
    url("../assets/porque-redinza/cta-flota.jpg") right center / cover no-repeat;
}

.why-final-content {
  position: relative;
  z-index: 1;
  padding: 28px 0;
}

.why-final-content h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.7vw, 2.28rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.why-final-content h2 strong {
  color: #00a1df;
}

.why-final-content p {
  margin: 18px 0 18px;
  color: rgba(255, 255, 255, .86);
}

@media (max-width: 1080px) {
  .why-diff-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .why-diff-grid article {
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .why-diff-grid article:nth-child(3n) {
    border-right: 0;
  }

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

  .why-process-grid article::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .why-main {
    padding-top: 96px;
  }

  .why-hero-grid,
  .why-commitment {
    grid-template-columns: 1fr;
  }

  .why-hero-photo img,
  .why-commit-photo img {
    min-height: 0;
  }

  .why-difference {
    padding: 24px 18px 30px;
  }
}

@media (max-width: 640px) {
  .why-shell {
    width: min(100% - 28px, 560px);
  }

  .why-hero-copy h1 {
    font-size: 3rem;
  }

  .why-diff-grid,
  .why-process-grid {
    grid-template-columns: 1fr;
  }

  .why-diff-grid article,
  .why-diff-grid article:nth-child(3n) {
    border-right: 0;
  }

  .why-section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Página Sectores */
.sectors-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(8, 126, 215, .05), transparent 26%),
    radial-gradient(circle at 78% 68%, rgba(8, 126, 215, .08), transparent 30%),
    #fff;
}

.sectors-page::before {
  display: none;
}

.sectors-main {
  padding-top: 98px;
}

.sectors-shell {
  width: min(1200px, calc(100% - 34px));
  margin: 0 auto;
}

.sectors-hero {
  overflow: hidden;
}

.sectors-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, .48fr) minmax(0, .9fr);
  gap: 24px;
  align-items: center;
}

.sectors-hero-copy {
  color: var(--navy);
  padding: 36px 0 34px;
}

.sectors-kicker {
  display: block;
  margin-bottom: 18px;
  color: #063ea3;
  font-weight: 900;
  text-transform: uppercase;
}

.sectors-kicker::after,
.sectors-coverage-copy h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, #0758bd, rgba(8, 126, 215, .18));
}

.sectors-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.95rem, 3.35vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.sectors-hero-copy p {
  max-width: 430px;
  margin: 20px 0 0;
  color: #071753;
  line-height: 1.7;
}

.sectors-hero-photo {
  position: relative;
  min-height: 385px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 0 8px;
}

.sectors-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 26%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.72), rgba(255,255,255,0));
}

.sectors-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 385px;
  display: block;
  object-fit: cover;
}

.sectors-value {
  padding-top: 22px;
}

.sectors-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.sectors-section-title span {
  height: 1px;
  background: rgba(8, 126, 215, .45);
}

.sectors-section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.sectors-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.sector-card {
  position: relative;
  padding: 24px 14px 18px;
  border: 1px solid rgba(6, 30, 99, .11);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(6, 30, 99, .08);
}

.sector-icon {
  position: absolute;
  top: 8px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #063ea3, #087ed7);
  box-shadow: 0 12px 22px rgba(6, 62, 163, .2);
}

.sector-icon svg,
.sectors-pill-row svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sector-card h3 {
  min-height: 50px;
  margin: 0 0 10px 58px;
  display: flex;
  align-items: center;
  color: #063176;
  font-size: 1.12rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.sector-card img {
  width: 100%;
  aspect-ratio: 2.1 / 1;
  display: block;
  border-radius: 5px;
  object-fit: cover;
}

.sector-card p {
  margin: 14px auto 0;
  color: #071753;
  font-size: .94rem;
  line-height: 1.62;
  text-align: center;
}

.sectors-coverage {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(320px, .6fr);
  gap: 34px;
  align-items: center;
  padding: 42px 0 30px;
  background:
    radial-gradient(circle at 85% 45%, rgba(8, 126, 215, .18), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,0), rgba(234,244,252,.64));
}

.sectors-coverage-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.sectors-coverage-copy > p {
  max-width: 500px;
  margin: 16px 0 22px;
  color: #071753;
  line-height: 1.66;
}

.sectors-pill-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sectors-pill-row article {
  padding-right: 14px;
  border-right: 1px solid rgba(6, 30, 99, .16);
}

.sectors-pill-row article:last-child {
  border-right: 0;
}

.sectors-pill-row span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  color: #0758bd;
}

.sectors-pill-row h3 {
  margin: 0 0 6px;
  color: #063176;
  font-size: .78rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.sectors-pill-row p {
  margin: 0;
  color: #071753;
  font-size: .75rem;
  line-height: 1.45;
}

.sectors-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: center;
  margin: 0;
}

.sectors-map img {
  width: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(6, 30, 99, .14));
}

.sectors-map figcaption {
  display: grid;
  gap: 10px;
  color: var(--navy);
}

.sectors-map strong {
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.sectors-map span {
  color: #071753;
  line-height: 1.55;
}

.sectors-cta {
  position: relative;
  min-height: 240px;
  margin-bottom: 44px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #061e63;
}

.sectors-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 22, 68, .98) 0%, rgba(5, 22, 68, .9) 38%, rgba(5, 22, 68, .38) 62%, rgba(5, 22, 68, 0) 100%),
    url("../assets/sectores/cta-sectores.jpg") right center / cover no-repeat;
}

.sectors-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
  padding: 34px;
}

.sectors-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
}

.sectors-cta-copy p {
  margin: 20px 0 24px;
  color: rgba(255,255,255,.9);
}

.sectors-cta-copy .btn {
  background: #fff;
  color: #063176;
  box-shadow: none;
}

@media (max-width: 980px) {
  .sectors-hero-grid,
  .sectors-coverage {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 640px) {
  .sectors-main {
    padding-top: 88px;
  }

  .sectors-card-grid,
  .sectors-pill-row {
    grid-template-columns: 1fr;
  }

  .sectors-section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sectors-pill-row article {
    border-right: 0;
    border-bottom: 1px solid rgba(6, 30, 99, .12);
    padding-bottom: 12px;
  }

  .sectors-cta-copy {
    padding: 26px 20px;
  }
}

/* Página Cobertura */
.coverage-page-new {
  background:
    radial-gradient(circle at 14% 20%, rgba(8, 126, 215, .05), transparent 26%),
    radial-gradient(circle at 78% 48%, rgba(8, 126, 215, .07), transparent 30%),
    #fff;
}

.coverage-page-new::before {
  display: none;
}

.coverage-main-new {
  padding-top: 98px;
}

.coverage-shell {
  width: min(1200px, calc(100% - 34px));
  margin: 0 auto;
}

.coverage-hero-new {
  overflow: hidden;
}

.coverage-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, .46fr) minmax(0, .9fr);
  gap: 18px;
  align-items: center;
}

.coverage-hero-copy {
  position: relative;
  z-index: 2;
  padding: 34px 0 36px;
  color: var(--navy);
}

.coverage-kicker {
  display: block;
  margin-bottom: 18px;
  color: #063ea3;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-kicker::after,
.coverage-presence h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, #0758bd, rgba(8, 126, 215, .18));
}

.coverage-hero-copy h1 {
  margin: 0;
  color: #063176;
  font-size: clamp(2rem, 3.45vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.coverage-hero-copy h2 {
  max-width: 520px;
  margin: 10px 0 0;
  color: #071753;
  font-size: clamp(1.55rem, 2.35vw, 2.2rem);
  line-height: 1.1;
}

.coverage-hero-copy p {
  max-width: 460px;
  margin: 22px 0 28px;
  color: #071753;
  line-height: 1.7;
}

.coverage-hero-photo {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
}

.coverage-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 24%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.76), rgba(255,255,255,0));
}

.coverage-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center center;
}

.coverage-map-model {
  display: grid;
  grid-template-columns: minmax(240px, .43fr) minmax(300px, .62fr) minmax(320px, .68fr);
  gap: 30px;
  align-items: center;
  padding: 38px 0 24px;
}

.coverage-presence h2,
.coverage-model h2,
.coverage-title-line h2 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
}

.coverage-presence h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.coverage-presence p {
  margin: 16px 0 22px;
  color: #071753;
  line-height: 1.62;
}

.coverage-presence ul,
.coverage-model ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-presence li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  color: #071753;
  font-size: .9rem;
  line-height: 1.42;
}

.coverage-presence svg,
.coverage-model svg,
.coverage-more-grid svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coverage-presence li span,
.coverage-model li > span,
.coverage-more-grid span {
  display: grid;
  place-items: center;
  color: #0758bd;
}

.coverage-nicaragua {
  margin: 0;
}

.coverage-nicaragua img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 18px 34px rgba(6, 30, 99, .16));
}

.coverage-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.coverage-title-line span {
  height: 1px;
  background: rgba(8, 126, 215, .46);
}

.coverage-title-line h2 {
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  line-height: 1.1;
}

.coverage-model ol {
  position: relative;
  gap: 14px;
}

.coverage-model ol::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  border-left: 2px dashed rgba(7, 88, 189, .5);
}

.coverage-model li {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
}

.coverage-model li > span {
  position: relative;
  z-index: 1;
  grid-area: icon;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #063ea3, #087ed7);
  box-shadow: 0 12px 26px rgba(6, 62, 163, .2);
}

.coverage-model strong {
  grid-area: title;
  display: block;
  color: #063176;
  font-size: 1.04rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.coverage-model p {
  grid-area: text;
  width: auto;
  max-width: 330px;
  margin: 0;
  color: #071753;
  font-size: .82rem;
  line-height: 1.34;
}

.coverage-channel {
  padding: 8px 0 22px;
}

.coverage-channel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.coverage-mini-card {
  position: relative;
  padding: 0 0 18px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 42px rgba(6, 30, 99, .08);
  text-align: center;
}

.coverage-mini-card > span {
  position: absolute;
  top: -8px;
  left: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #fff;
  background: #0758bd;
  border: 4px solid #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.coverage-mini-card img,
.coverage-execution-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.coverage-mini-card h3,
.coverage-execution-grid h3,
.coverage-more-grid h3 {
  margin: 14px 12px 8px;
  color: #063176;
  font-size: .94rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.coverage-mini-card p,
.coverage-execution-grid p {
  margin: 0 14px;
  color: #071753;
  font-size: .82rem;
  line-height: 1.45;
}

.coverage-execution {
  padding: 6px 0 18px;
}

.coverage-execution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.coverage-execution-grid article {
  overflow: hidden;
  border-radius: 7px;
}

.coverage-more {
  padding: 8px 0 28px;
}

.coverage-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px;
  border: 1px solid rgba(7, 88, 189, .42);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
}

.coverage-more-grid article {
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid rgba(6, 30, 99, .16);
}

.coverage-more-grid article:last-child {
  border-right: 0;
}

.coverage-more-grid span {
  margin: 0 auto 10px;
  width: 50px;
  height: 50px;
  color: #0758bd;
}

.coverage-more-grid p {
  margin: 0;
  color: #071753;
  font-size: .82rem;
  line-height: 1.45;
}

.coverage-final {
  position: relative;
  min-height: 190px;
  margin-bottom: 44px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #061e63;
}

.coverage-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 22, 68, .98) 0%, rgba(5, 22, 68, .9) 38%, rgba(5, 22, 68, .38) 64%, rgba(5, 22, 68, 0) 100%),
    url("../assets/cobertura-page/cta-cobertura.jpg") right center / cover no-repeat;
}

.coverage-final-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 30px 42px;
}

.coverage-final-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.coverage-final-copy p {
  margin: 14px 0 20px;
  color: rgba(255,255,255,.9);
  line-height: 1.55;
}

.coverage-final-copy .btn {
  color: #063176;
  background: #fff;
  box-shadow: none;
}

@media (max-width: 1080px) {
  .coverage-map-model {
    grid-template-columns: 1fr 1fr;
  }

  .coverage-model {
    grid-column: 1 / -1;
  }

  .coverage-channel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .coverage-main-new {
    padding-top: 88px;
  }

  .coverage-hero-grid,
  .coverage-map-model {
    grid-template-columns: 1fr;
  }

  .coverage-hero-photo img {
    min-height: 0;
  }

  .coverage-channel-grid,
  .coverage-execution-grid,
  .coverage-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-more-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .coverage-channel-grid,
  .coverage-execution-grid,
  .coverage-more-grid {
    grid-template-columns: 1fr;
  }

  .coverage-title-line {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .coverage-more-grid article,
  .coverage-more-grid article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(6, 30, 99, .12);
    padding: 18px 0;
  }

  .coverage-more-grid article:last-child {
    border-bottom: 0;
  }

  .coverage-final-copy {
    padding: 28px 20px;
  }
}

@media (max-width: 1080px) {
  .contact-hero-grid,
  .contact-business-section,
  .contact-map-band {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy,
  .contact-hero-photo {
    min-height: auto;
  }

  .contact-hero-photo {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .contact-shell {
    width: min(100% - 24px, 560px);
  }

  .contact-main-new {
    padding-top: 88px;
  }

  .contact-hero-new {
    padding-top: 18px;
  }

  .contact-hero-copy {
    padding: 28px 22px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .contact-actions,
  .contact-actions .btn,
  .contact-form-new .btn {
    width: 100%;
  }

  .contact-methods,
  .contact-segments {
    grid-template-columns: 1fr;
  }

  .contact-info-panel,
  .contact-form-new,
  .contact-map-copy {
    padding: 24px;
  }

  .contact-hero-photo {
    height: 280px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 320px;
  }
}

/* Página Marcas */
.brands-page::before {
  background:
    radial-gradient(circle at 11% 19%, rgba(8, 126, 215, .08), transparent 25%),
    radial-gradient(circle at 86% 9%, rgba(6, 62, 163, .06), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7fbff 48%, #fff 100%);
}

.brands-main {
  padding-top: 92px;
}

.brands-shell {
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
}

.brands-hero {
  padding: 0 0 22px;
}

.brands-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, .46fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 430px;
  overflow: hidden;
  background: #fff;
}

.brands-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 26px 46px 22px;
  background: linear-gradient(100deg, #fff 0%, rgba(255,255,255,.98) 67%, rgba(255,255,255,.72) 100%);
}

.brands-kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: max-content;
  color: #063ea3;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brands-kicker::after {
  content: "";
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: #0758bd;
}

.brands-hero-copy h1 {
  max-width: 520px;
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.brands-hero-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #063ea3;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.16;
}

.brands-hero-copy p {
  max-width: 520px;
  margin: 20px 0 28px;
  color: #071753;
  line-height: 1.72;
}

.brands-hero-copy .btn {
  width: max-content;
  background: linear-gradient(135deg, #063ea3, #087ed7);
  box-shadow: 0 16px 34px rgba(8, 126, 215, .26);
}

.brands-hero-photo {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
}

.brands-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, rgba(255,255,255,.74), rgba(255,255,255,0));
  pointer-events: none;
}

.brands-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.brands-represented {
  padding: 8px 0 12px;
}

.brands-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
  margin: 10px 0 24px;
  text-align: center;
}

.brands-title-line span {
  height: 1px;
  background: rgba(8, 126, 215, .5);
}

.brands-title-line h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  justify-content: center;
}

.brand-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 272px;
  padding: 24px 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(6, 30, 99, .08);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 36px rgba(6, 30, 99, .08);
}

.brand-card img {
  display: block;
  width: 100%;
  height: 116px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.brand-card h3 {
  margin: 0 0 8px;
  color: #063176;
  font-size: .94rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-card p {
  margin: 0;
  color: #071753;
  font-size: .88rem;
  line-height: 1.55;
}

.brand-card-dark {
  color: #fff;
  background: #050505;
  border-color: #050505;
}

.brand-card-dark h3,
.brand-card-dark p {
  color: #fff;
}

.brand-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 0 0 8px 8px;
  color: #fff;
  background: #0758bd;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-card-wide {
  grid-column: 3 / 4;
}

.brand-card-wide img {
  height: 108px;
  border-radius: 6px;
  object-fit: cover;
}

.windsor-mark {
  display: grid;
  place-items: center;
  height: 116px;
  margin-bottom: 18px;
  color: #063176;
  line-height: 1;
}

.windsor-mark::before {
  content: "♛";
  color: #c99a2b;
  font-size: 2.2rem;
  line-height: .8;
}

.windsor-mark span {
  color: #063176;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  font-weight: 700;
}

.windsor-mark small {
  color: #063176;
  font-size: .9rem;
  font-weight: 800;
}

.brand-relationship {
  padding: 8px 0 34px;
}

.relationship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(8, 126, 215, .38);
  border-bottom: 1px solid rgba(8, 126, 215, .16);
}

.relationship-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px 16px;
  padding: 24px 22px;
  border-right: 1px solid rgba(8, 126, 215, .5);
}

.relationship-grid article:last-child {
  border-right: 0;
}

.relationship-grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #063ea3, #087ed7);
}

.relationship-grid svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.relationship-grid article:first-child svg {
  width: 36px;
  height: 36px;
}

.relationship-grid .relationship-image-icon {
  background: transparent;
  box-shadow: none;
}

.relationship-grid .relationship-image-icon img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 999px;
}

.relationship-grid h3 {
  margin: 0;
  color: #063176;
  font-size: .92rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.relationship-grid p {
  margin: 0;
  color: #071753;
  font-size: .85rem;
  line-height: 1.55;
}

.brands-product-cta {
  position: relative;
  display: block;
  margin-bottom: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: #04184c;
  box-shadow: 0 20px 48px rgba(6, 30, 99, .16);
}

.brands-product-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.brands-banner-link {
  position: absolute;
  left: 2.3%;
  bottom: 10.5%;
  width: 23.5%;
  height: 13.5%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.brands-banner-link:hover,
.brands-banner-link:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 14px 28px rgba(255, 255, 255, .18), 0 12px 28px rgba(0, 0, 0, .18);
  outline: 0;
}

@media (max-width: 1180px) {
  .brand-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .brand-card-wide {
    grid-column: auto;
  }

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

  .relationship-grid article:nth-child(2) {
    border-right: 0;
  }

  .relationship-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(8, 126, 215, .25);
  }
}

@media (max-width: 920px) {
  .brands-main {
    padding-top: 88px;
  }

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

  .brands-hero-copy {
    padding: 34px 24px;
  }

  .brands-hero-photo {
    min-height: 320px;
  }

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

}

@media (max-width: 640px) {
  .brands-shell {
    width: min(100% - 24px, 560px);
  }

  .brands-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .brands-hero-copy .btn {
    width: 100%;
  }

  .brands-title-line {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .brand-card-grid,
  .relationship-grid {
    grid-template-columns: 1fr;
  }

  .relationship-grid article,
  .relationship-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 126, 215, .22);
  }

  .relationship-grid article:last-child {
    border-bottom: 0;
  }

}

/* Página Calidad */
.quality-page::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(8, 126, 215, .08), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(6, 62, 163, .06), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8fbff 48%, #fff 100%);
}

.quality-main {
  padding-top: 92px;
}

.quality-shell {
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
}

.quality-hero {
  padding: 0 0 24px;
}

.quality-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, .48fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 630px;
  overflow: hidden;
  background: #fff;
}

.quality-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 34px 56px 22px;
  background: linear-gradient(100deg, #fff 0%, rgba(255,255,255,.98) 66%, rgba(255,255,255,.72) 100%);
}

.quality-kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: max-content;
  color: #063ea3;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.quality-kicker::after {
  content: "";
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: #0758bd;
}

.quality-hero-copy h1 {
  max-width: 550px;
  margin: 28px 0 22px;
  color: var(--navy);
  font-size: clamp(2.45rem, 4.25vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.quality-hero-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #063176;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 1.2;
}

.quality-hero-copy p {
  max-width: 580px;
  margin: 34px 0 32px;
  color: #071753;
  line-height: 1.75;
}

.quality-hero-copy .btn {
  width: max-content;
  background: linear-gradient(135deg, #063ea3, #087ed7);
  box-shadow: 0 16px 34px rgba(8, 126, 215, .26);
}

.quality-hero-photo {
  position: relative;
  min-height: 630px;
  margin: 0;
  overflow: hidden;
}

.quality-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,0));
  pointer-events: none;
}

.quality-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.quality-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 34px 28px;
  border: 1px solid rgba(6, 30, 99, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 38px rgba(6, 30, 99, .11);
}

.quality-pillars article {
  padding: 0 32px;
  text-align: center;
  border-right: 1px solid rgba(8, 126, 215, .26);
}

.quality-pillars article:last-child {
  border-right: 0;
}

.quality-pillars span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #063176, #0758bd);
}

.quality-pillars svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-pillars h2 {
  margin: 0 0 18px;
  color: #063176;
  font-size: clamp(1.15rem, 1.8vw, 1.62rem);
  line-height: 1.18;
}

.quality-pillars p {
  margin: 0;
  color: #071753;
  font-size: .94rem;
  line-height: 1.72;
}

.quality-process {
  padding: 36px 0 34px;
}

.quality-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.quality-title-line span {
  height: 2px;
  background: rgba(6, 62, 163, .72);
}

.quality-title-line h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.quality-step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}

.quality-step {
  position: relative;
  text-align: center;
}

.quality-step:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 78px;
  right: -29px;
  color: #063176;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.quality-step img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(6, 30, 99, .14);
}

.quality-step p {
  max-width: 210px;
  margin: 0 auto;
  color: #071753;
  font-size: .91rem;
  line-height: 1.65;
}

.quality-final {
  position: relative;
  margin-bottom: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: #04184c;
  box-shadow: 0 20px 48px rgba(6, 30, 99, .16);
}

.quality-final img {
  display: block;
  width: 100%;
  height: auto;
}

.quality-final-link {
  position: absolute;
  left: 3.8%;
  bottom: 9.8%;
  width: 27.2%;
  height: 14.5%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.quality-final-link:hover,
.quality-final-link:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 14px 28px rgba(255, 255, 255, .18), 0 12px 28px rgba(0, 0, 0, .18);
  outline: 0;
}

@media (max-width: 1180px) {
  .quality-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-pillars article:nth-child(2) {
    border-right: 0;
  }

  .quality-pillars article:nth-child(-n+2) {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(8, 126, 215, .22);
  }

  .quality-pillars article:nth-child(n+3) {
    padding-top: 28px;
  }

  .quality-step-grid {
    gap: 22px;
  }
}

@media (max-width: 920px) {
  .quality-main {
    padding-top: 88px;
  }

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

  .quality-hero-copy {
    padding: 36px 24px;
  }

  .quality-hero-photo {
    min-height: 390px;
  }

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

  .quality-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .quality-shell {
    width: min(100% - 24px, 560px);
  }

  .quality-hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .quality-hero-copy .btn {
    width: 100%;
  }

  .quality-pillars,
  .quality-step-grid,
  .quality-title-line {
    grid-template-columns: 1fr;
  }

  .quality-pillars article,
  .quality-pillars article:nth-child(2),
  .quality-pillars article:nth-child(-n+2),
  .quality-pillars article:nth-child(n+3) {
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 126, 215, .22);
  }

  .quality-pillars article:last-child {
    border-bottom: 0;
  }

  .quality-final-link {
    left: 4%;
    bottom: 9%;
    width: 32%;
    height: 15%;
  }
}

/* Página Sea nuestro socio */
.partner-page {
  background:
    radial-gradient(circle at 10% 18%, rgba(8, 126, 215, .08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 56%, #fff 100%);
}

.partner-main {
  padding-top: 92px;
}

.partner-shell {
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
}

.partner-hero {
  padding-bottom: 34px;
}

.partner-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, .43fr) minmax(0, 1fr);
  min-height: 555px;
  overflow: hidden;
  background: #fff;
}

.partner-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 28px 54px 22px;
  background: linear-gradient(100deg, #fff 0%, rgba(255, 255, 255, .98) 58%, rgba(255, 255, 255, .72) 84%, rgba(255, 255, 255, .32) 100%);
}

.partner-kicker {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.partner-kicker::after {
  content: "";
  width: 52px;
  height: 3px;
  background: var(--brand-blue);
}

.partner-hero-copy h1 {
  max-width: 600px;
  margin: 24px 0 22px;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.25vw, 4.25rem);
  font-weight: 900;
  line-height: 1.02;
}

.partner-hero-copy h1 strong {
  display: block;
  color: #087ed7;
}

.partner-hero-copy p {
  max-width: 540px;
  margin: 0 0 30px;
  color: #071753;
  font-size: 1.05rem;
  line-height: 1.7;
}

.partner-hero-copy .btn {
  width: max-content;
  min-width: 318px;
  justify-content: space-between;
  padding: 18px 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #062c78, #0758bd);
  box-shadow: 0 16px 28px rgba(6, 49, 118, .2);
}

.partner-hero-copy .btn::after {
  content: ">";
  margin-left: 18px;
  font-size: 1.45rem;
  line-height: 1;
}

.partner-hero-photo {
  position: relative;
  min-height: 555px;
  margin: 0;
  overflow: hidden;
}

.partner-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 36%;
  background: linear-gradient(90deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.partner-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.partner-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.partner-title-line span {
  height: 2px;
  background: rgba(6, 62, 163, .76);
}

.partner-title-line h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.partner-value {
  padding: 2px 0 42px;
}

.partner-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.partner-value-grid article {
  padding: 0 42px;
  text-align: center;
  border-right: 1px solid rgba(6, 62, 163, .22);
}

.partner-value-grid article:last-child {
  border-right: 0;
}

.partner-value-grid span,
.partner-market-steps svg {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #062c78, #0758bd);
  box-shadow: 0 16px 32px rgba(6, 49, 118, .18);
}

.partner-value-icon {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  object-fit: contain;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(6, 49, 118, .18);
}

.partner-value-grid svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-value-grid h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.partner-value-grid p {
  margin: 0;
  color: #071753;
  font-size: .97rem;
  line-height: 1.68;
}

.partner-market {
  margin-top: 6px;
  overflow: hidden;
  background: linear-gradient(135deg, #04184c 0%, #062c78 48%, #03123b 100%);
}

.partner-market-grid {
  display: grid;
  grid-template-columns: minmax(430px, .56fr) minmax(0, 1fr);
  min-height: 390px;
}

.partner-market-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 28px 40px 22px;
  color: #fff;
}

.partner-market-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 42%, rgba(23, 167, 255, .22), transparent 26%),
    radial-gradient(circle at 78% 50%, rgba(255, 255, 255, .12), transparent 2px),
    linear-gradient(90deg, rgba(4, 24, 76, .98), rgba(4, 24, 76, .86));
}

.partner-market-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.08;
}

.partner-market-copy h2 strong {
  color: #17a7ff;
}

.partner-market-copy > span {
  width: 48px;
  height: 3px;
  margin: 22px 0 18px;
  background: #17a7ff;
}

.partner-market-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  line-height: 1.65;
}

.partner-market-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.partner-market-steps article {
  min-width: 0;
  color: #fff;
  text-align: center;
}

.partner-market-steps svg {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  padding: 10px;
  background: transparent;
  box-shadow: none;
  fill: none;
  stroke: #20b9ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-market-steps strong {
  display: block;
  font-size: .81rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.partner-market-photo {
  position: relative;
  margin: 0;
  min-height: 390px;
}

.partner-market-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 18%;
  background: linear-gradient(90deg, rgba(4, 24, 76, .82), rgba(4, 24, 76, 0));
  pointer-events: none;
}

.partner-market-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.partner-market-banner {
  margin-top: 6px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 0;
  background: #04184c;
  box-shadow: 0 18px 40px rgba(6, 30, 99, .16);
}

.partner-market-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.partner-cta {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(380px, .42fr);
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 42px 54px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 24% 26%, rgba(23, 167, 255, .22), transparent 30%),
    linear-gradient(135deg, #04184c 0%, #063176 100%);
  box-shadow: 0 22px 46px rgba(6, 30, 99, .18);
}

.partner-cta h2 {
  max-width: 720px;
  margin: 0 0 30px;
  font-size: clamp(2.1rem, 3.7vw, 3.65rem);
  font-weight: 900;
  line-height: 1.08;
}

.partner-cta h2 strong {
  display: block;
  color: #17a7ff;
}

.partner-cta-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 760px;
}

.partner-cta-proof p {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-weight: 700;
  line-height: 1.35;
}

.partner-cta-proof p:first-child {
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, .38);
}

.partner-cta-proof span,
.partner-action span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  color: #20b9ff;
}

.partner-cta-proof svg,
.partner-action svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-cta-actions {
  display: grid;
  gap: 14px;
}

.partner-action {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 14px 22px;
  border: 2px solid rgba(255, 255, 255, .86);
  border-radius: 8px;
  color: #fff;
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.partner-action strong {
  font-size: 2rem;
  line-height: 1;
}

.partner-action-light {
  color: var(--navy);
  background: #fff;
}

.partner-action:hover,
.partner-action:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .2);
  outline: 0;
}

.partner-action-light:hover,
.partner-action-light:focus {
  background: #f4f8ff;
}

.partner-cta-actions small {
  color: rgba(255, 255, 255, .88);
  font-size: .9rem;
  text-align: center;
}

.partner-trusted {
  padding: 0 0 20px;
}

.partner-logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px 0 18px;
  background: rgba(255, 255, 255, .76);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partner-logo-carousel:hover .partner-logo-track {
  animation-play-state: paused;
}

.partner-logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 54px;
  animation: partnerLogoMarquee 30s linear infinite;
}

.partner-logo-track img {
  display: block;
  width: auto;
  height: 62px;
  max-width: 178px;
  object-fit: contain;
  filter: saturate(1.03);
}

@keyframes partnerLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-contact-bar {
  color: #fff;
  background: linear-gradient(135deg, #04184c, #063176);
}

.partner-contact-bar .partner-shell {
  display: grid;
  grid-template-columns: repeat(4, auto) 1fr;
  gap: 32px;
  align-items: center;
  min-height: 82px;
}

.partner-contact-bar span,
.partner-contact-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.partner-contact-bar strong {
  justify-self: end;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .partner-hero-grid {
    grid-template-columns: minmax(330px, .48fr) minmax(0, 1fr);
  }

  .partner-value-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .partner-value-grid article:nth-child(2) {
    border-right: 0;
  }

  .partner-value-grid article:nth-child(-n+2) {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(6, 62, 163, .18);
  }

  .partner-value-grid article:nth-child(n+3) {
    padding-top: 30px;
  }

  .partner-market-grid,
  .partner-cta {
    grid-template-columns: 1fr;
  }

  .partner-market-photo {
    min-height: 330px;
  }

  .partner-contact-bar .partner-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-contact-bar strong {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .partner-main {
    padding-top: 88px;
  }

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

  .partner-hero-copy {
    padding: 38px 24px;
  }

  .partner-hero-photo {
    min-height: 420px;
  }

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

  .partner-logo-track {
    gap: 38px;
    animation-duration: 24s;
  }

  .partner-logo-track img {
    height: 52px;
    max-width: 150px;
  }

  .partner-cta {
    padding: 34px 28px;
  }
}

@media (max-width: 640px) {
  .partner-shell {
    width: min(100% - 24px, 560px);
  }

  .partner-hero-copy h1 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .partner-hero-copy .btn,
  .partner-action {
    width: 100%;
    min-width: 0;
  }

  .partner-title-line,
  .partner-value-grid,
  .partner-market-steps,
  .partner-cta-proof,
  .partner-contact-bar .partner-shell {
    grid-template-columns: 1fr;
  }

  .partner-title-line {
    gap: 16px;
  }

  .partner-value-grid article,
  .partner-value-grid article:nth-child(2),
  .partner-value-grid article:nth-child(-n+2),
  .partner-value-grid article:nth-child(n+3) {
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 62, 163, .18);
  }

  .partner-value-grid article:last-child {
    border-bottom: 0;
  }

  .partner-market-grid {
    min-height: auto;
  }

  .partner-market-copy {
    padding: 36px 20px;
  }

  .partner-market-photo {
    min-height: 285px;
  }

  .partner-cta-proof p:first-child {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .34);
  }

  .partner-action {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
    font-size: 1rem;
  }

  .partner-logo-carousel {
    padding-bottom: 12px;
  }

  .partner-logo-track {
    gap: 30px;
  }

  .partner-logo-track img {
    height: 44px;
    max-width: 128px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-logo-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .partner-logo-track img[aria-hidden="true"] {
    display: none;
  }
}
