: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; }

.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 {
  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); }
.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; }

.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;
}

.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;
  }
}
