:root {
  --ov-red: #be1722;
  --ov-red-dark: #9a1119;
  --ov-ink: #20232a;
  --ov-ink-deep: #0d0e10;
  --ov-text: #1b2733;
  --ov-text-muted: #3c4a58;
  --ov-line: #e6ecf1;
  --ov-surface: #f5f7f9;
  --ov-placeholder: #8a97a3;
  --ov-max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ov-text);
  background: #fff;
  overflow-x: hidden;
}

a {
  color: var(--ov-ink);
  text-decoration: none;
}

a:hover {
  color: var(--ov-red);
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

img {
  max-width: 100%;
}

.shell {
  max-width: var(--ov-max);
  margin: 0 auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ov-red) !important;
  font-size: 18px;
  margin: 0 0 16px;
}

.split .eyebrow,
.intro .eyebrow {
  color: var(--ov-red) !important;
}

.section {
  padding: 96px 24px;
}

.section--muted {
  background: var(--ov-surface);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--ov-ink);
}

.placeholder {
  background: repeating-linear-gradient(135deg, #eef2f6 0 16px, #e3e9ef 16px 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  color: var(--ov-placeholder);
  font-size: 13px;
  border-radius: 8px;
  text-align: center;
  padding: 12px;
}

.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 5px;
  padding: 14px 30px;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--ov-red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--ov-red-dark);
  color: #fff;
}

.btn--dark {
  background: var(--ov-ink);
  color: #fff;
  padding: 13px 28px;
}

.btn--dark:hover {
  background: #000;
  color: #fff;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 12px 28px;
}

.btn--ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* Top bar */
.topbar {
  background: var(--ov-ink);
  color: #e2e2e2;
  font-size: 13px;
}

.topbar .shell {
  padding-block: 8px;
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.topbar a {
  color: #e2e2e2;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.topbar a:hover {
  color: #fff;
}

.topbar__highlight {
  background: var(--ov-red);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(190, 23, 34, 0.3);
}

.topbar__highlight:hover {
  background: var(--ov-red-dark);
  color: #fff;
  box-shadow: 0 6px 16px rgba(190, 23, 34, 0.45);
  transform: translateY(-2px);
}

.topbar span {
  opacity: 0.35;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 14px rgba(20, 20, 20, 0.08);
}

.site-header .shell {
  padding-block: 14px;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
  margin: 0;
}

.brand img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ov-ink);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.nav {
  display: flex;
  gap: 26px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: var(--ov-text);
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ov-red);
  transition: width 0.3s ease;
}

.nav a:not(.nav-cta):hover {
  color: var(--ov-red);
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav .nav-cta {
  background: var(--ov-red);
  color: #fff;
  padding: 9px 18px;
  border-radius: 4px;
}

.nav .nav-cta:hover {
  background: var(--ov-red-dark);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #20232a 0%, #141518 55%, #0d0e10 100%);
  color: #fff;
  overflow: hidden;
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0 2px,
    transparent 2px 22px
  );
}

.hero__media {
  position: absolute;
  top: 0;
  right: 24px;
  width: 46%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(190, 23, 34, 0.14) 0 14px,
    rgba(190, 23, 34, 0.06) 14px 28px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.hero .shell {
  position: relative;
  padding-block: 80px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}

.hero__content {
  max-width: 620px;
  animation: ovFade 0.7s ease both;
}

.hero__rule {
  width: 56px;
  height: 4px;
  background: var(--ov-red);
  margin-bottom: 26px;
}

.hero__kicker {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9c9c9;
  margin: 0 0 14px;
  font-size: 14px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero__lead {
  font-size: 19px;
  line-height: 1.6;
  color: #d8d8d8;
  margin-bottom: 34px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__phones {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero__phones a {
  color: #d8d8d8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__phones a:hover {
  color: #fff;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

/* Service strip */
.strip {
  background: var(--ov-red);
  color: #fff;
}

.strip .shell {
  padding-inline: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
  margin: 0;
}

.strip__item {
  padding: 26px 22px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

.strip__item + .strip__item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

/* Split sections */
.split {
  max-width: var(--ov-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--ov-ink);
  margin-bottom: 24px;
}

.split p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ov-text-muted);
  margin-bottom: 18px;
}

.split .placeholder {
  min-height: 380px;
}

.section-image {
  width: 100%;
  height: auto;
  min-height: 400px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* Stats */
.stats {
  background: var(--ov-ink);
  color: #fff;
  padding: 56px 24px;
}

.stats__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__value {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 46px;
}

.stats__label {
  color: #b2b2b2;
  font-weight: 600;
  margin-top: 6px;
}

/* Alcance */
#alcance h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--ov-red);
  margin-bottom: 16px;
}

#alcance p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ov-text-muted);
  margin-bottom: 32px;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(20, 20, 20, 0.06);
  font-weight: 600;
  color: var(--ov-text);
}

.coverage-list .marker {
  color: var(--ov-red);
  font-size: 18px;
}

#alcance h2 {
  font-size: 38px;
  line-height: 1.12;
}

#alcance .placeholder {
  min-height: 460px;
  background: repeating-linear-gradient(135deg, #e6ecf1 0 16px, #dbe3ea 16px 32px);
}

/* Servicios - Tabs */
.services-tabs {
  margin-top: 48px;
  border: 2px solid var(--ov-line);
  border-radius: 12px;
  padding: 32px;
  background: #fbfcfd;
}

.services-tabs__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ov-line);
}

.services-tabs__button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 20px;
  border: 1px solid var(--ov-line);
  border-radius: 6px;
  background: #fff;
  color: var(--ov-text);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(20, 20, 20, 0.04);
}

.services-tabs__button:hover {
  border-color: var(--ov-red);
  color: var(--ov-red);
  box-shadow: 0 4px 8px rgba(190, 23, 34, 0.1);
}

.services-tabs__button.active {
  background: var(--ov-red);
  color: #fff;
  border-color: var(--ov-red);
  box-shadow: 0 4px 12px rgba(190, 23, 34, 0.2);
}

.services-tabs__content {
  position: relative;
}

.services-tabs__panel {
  display: none;
}

.services-tabs__panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.services-tabs__body {
  padding: 24px 0;
}

.services-tabs__body h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ov-ink);
  margin-bottom: 18px;
}

.services-tabs__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ov-text-muted);
  margin-bottom: 16px;
}

.services-tabs__body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ov-ink);
  margin-top: 24px;
  margin-bottom: 12px;
}

.services-tabs__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-tabs__body li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ov-text-muted);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.services-tabs__body li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--ov-red);
}

.services-tabs__body .placeholder {
  min-height: 300px;
}

/* Brand diagram (Marcas -> Distribuidora Oviedo -> Mercado) */
.brand-diagram {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 16px 44px;
  background: var(--ov-surface);
  border: 1px solid var(--ov-line);
  border-radius: 8px;
}

.brand-diagram__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-diagram__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ov-ink);
  margin: 0 0 14px;
}

.brand-diagram__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}

.brand-diagram__chip {
  height: 48px;
  border: 1px solid var(--ov-line);
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.brand-diagram__chip img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-diagram__hub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.brand-diagram__tag {
  border: 1px solid var(--ov-red);
  border-radius: 6px;
  background: #fff;
  color: var(--ov-red);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 10px;
}

.brand-diagram__tag--dist {
  background: var(--ov-red);
  color: #fff;
}

.brand-diagram__channels {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.brand-diagram__channels li {
  border: 1px solid var(--ov-line);
  border-radius: 6px;
  background: #fff;
  color: var(--ov-text-muted);
  font-size: 13px;
  padding: 9px 8px;
  margin-bottom: 8px;
}

.brand-diagram__arrow {
  flex: 0 0 auto;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-diagram__arrow span {
  position: relative;
  width: 100%;
  height: 0;
  border-top: 2px dashed var(--ov-red);
}

.brand-diagram__arrow span::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--ov-red);
}

.brand-diagram__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  color: var(--ov-text-muted);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

@media (max-width: 860px) {
  .brand-diagram {
    display: none;
  }
}

/* Servicios */
.intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.intro h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--ov-ink);
  margin-bottom: 20px;
}

.intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ov-text-muted);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  border: 1px solid var(--ov-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 22px rgba(20, 20, 20, 0.06);
}

.card .placeholder {
  height: 170px;
  border-radius: 0;
  font-size: 12px;
}

.card__body {
  padding: 26px;
}

.card__body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ov-ink);
  margin-bottom: 10px;
}

.card__body p {
  color: var(--ov-text-muted);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* Brand marquee */
.brands-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ov-ink);
  font-size: 15px;
  margin: 64px 0 28px;
}

.marquee {
  overflow-x: hidden;
  cursor: grab;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  min-height: 100px;
}

.marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 2px;
  background: #fff;
}

.brand-chip {
  flex: 0 0 auto;
  width: 160px;
  height: 74px;
  border: 1px solid var(--ov-line);
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  pointer-events: none;
}

.brand-chip img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Vision */
.vision {
  padding: 90px 24px;
  background: linear-gradient(120deg, #20232a, #141518);
  color: #fff;
}

.vision__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision__rule {
  width: 56px;
  height: 4px;
  background: var(--ov-red);
  margin: 0 auto 26px;
}

.vision h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 22px;
}

.vision p {
  font-size: 21px;
  line-height: 1.6;
  color: #d8d8d8;
  margin: 0;
}

/* Mision */
#mision h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--ov-ink);
  margin-bottom: 48px;
  text-align: center;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 18px rgba(20, 20, 20, 0.06);
  border-top: 4px solid var(--ov-red);
  transition: all 0.3s ease;
  cursor: pointer;
}

.mission-card:hover {
  box-shadow: 0 12px 28px rgba(190, 23, 34, 0.15);
  transform: translateY(-8px);
}

.mission-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ov-ink);
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--ov-text-muted);
  line-height: 1.65;
  font-size: 15px;
  margin: 0;
  text-align: justify;
}

/* Valores */
#valores h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--ov-ink);
  margin-bottom: 48px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}

.value-card {
  border: 1px solid var(--ov-line);
  border-radius: 10px;
  padding: 30px;
  background: #fbfcfd;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.value-card:hover {
  background: #fff;
  border-color: var(--ov-red);
  box-shadow: 0 12px 28px rgba(190, 23, 34, 0.15);
  transform: translateY(-8px);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ov-red) 0%, var(--ov-red-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(190, 23, 34, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.value-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ov-ink);
  margin-bottom: 12px;
  text-align: center;
}

.value-card p {
  color: var(--ov-text-muted);
  line-height: 1.65;
  font-size: 15px;
  margin: 0;
  text-align: justify;
}

/* Dependencias */
.dragscroll {
  overflow-x: auto;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}

.dragscroll::-webkit-scrollbar {
  display: none;
}

.dragscroll__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 2px;
}

.dep-card {
  flex: 0 0 auto;
  width: 440px;
  max-width: 80vw;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(20, 20, 20, 0.08);
}

.dep-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.drag-hint {
  text-align: center;
  font-family: monospace;
  color: var(--ov-placeholder);
  font-size: 12px;
  margin-top: 16px;
}

/* Contacto */
.contact {
  padding: 96px 24px;
  background: #e8eaed;
  color: var(--ov-text);
}

.contact__inner {
  max-width: var(--ov-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}

.contact .eyebrow {
  color: var(--ov-red);
}

.contact h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 26px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}

.contact__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ov-red);
  font-size: 13px;
  margin-bottom: 6px;
}

.contact__details a {
  color: var(--ov-text);
}

.contact__details a:hover {
  color: var(--ov-red);
  text-decoration: underline;
}

.contact__phone {
  font-size: 20px;
  font-weight: 600;
}

.contact__address {
  color: var(--ov-text-muted);
  font-size: 17px;
  margin: 0;
}

.social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(190, 23, 34, 0.12);
  color: var(--ov-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.social a:hover {
  background: var(--ov-red);
  color: #fff;
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 13px 15px;
  border: 1px solid #dbe3ea;
  border-radius: 6px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  color: var(--ov-text);
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .span-2 {
  grid-column: span 2;
}

.contact-form button {
  grid-column: span 2;
  background: var(--ov-red);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--ov-red-dark);
}

.form-status {
  grid-column: span 2;
  margin: 0;
  font-size: 14px;
  color: var(--ov-text-muted);
  min-height: 20px;
}

/* Footer */
.site-footer {
  background: var(--ov-ink-deep);
  color: #b5b5b5;
  padding: 56px 24px 26px;
}

.site-footer__grid {
  max-width: var(--ov-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.site-footer img {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 16px;
}

.site-footer p {
  line-height: 1.65;
  font-size: 15px;
  max-width: 340px;
}

.site-footer h4 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.site-footer a {
  color: #d8d8d8;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.site-footer__legal {
  max-width: var(--ov-max);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #8c8c8c;
}

@keyframes ovFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }

  .cards,
  .mission-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: 0 12px 20px rgba(20, 20, 20, 0.1);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--ov-line);
  }

  .nav .nav-cta {
    text-align: center;
    margin-top: 12px;
    border-bottom: none;
  }

  .site-header .shell {
    position: relative;
  }

  .hero {
    min-height: 0;
  }

  .hero__media {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .strip .shell {
    grid-template-columns: 1fr;
  }

  .strip__item + .strip__item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 64px 24px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-tabs__panel.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split h2,
  #alcance h2,
  .intro h2,
  .section-head h2,
  .vision h2,
  .contact h2 {
    font-size: 30px;
  }

  .cards,
  .mission-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    font-size: 11px;
  }

  .topbar .shell {
    gap: 12px;
    padding-block: 6px;
  }

  .topbar__highlight {
    padding: 4px 10px;
    font-size: 11px;
  }

  .section {
    padding: 56px 16px;
  }

  .mission-card,
  .value-card {
    padding: 20px 16px;
  }

  .services-tabs {
    padding: 20px 16px;
    margin-top: 32px;
  }

  .services-tabs__nav {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 16px;
  }
}

@media (max-width: 520px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stats__value {
    font-size: 38px;
  }

  .contact-form {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .contact-form .span-2,
  .contact-form button,
  .form-status {
    grid-column: span 1;
  }
}
