/* ============================================================
   MINTCSA Logistics — Sistema de diseño
   Paleta de marca: azul marino + rojo carretera, base grafito.
   ============================================================ */

/* ---------- Fuentes ---------- */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --navy: #1b2a5b;
  --navy-600: #223573;
  --navy-400: #34509c;
  --red: #c8102e;
  --red-600: #e11331;
  --red-700: #a50d26;

  --graphite: #0a0f1f;
  --surface: #0f1729;
  --surface-2: #131d34;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --ink: #f4f7fc;
  --mist: #aeb8cc;
  --mist-dim: #7e8aa3;

  --glass: rgba(255, 255, 255, 0.045);
  --glass-2: rgba(255, 255, 255, 0.07);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.75);
  --shadow-red: 0 18px 40px -16px rgba(200, 16, 46, 0.55);

  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--graphite);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
}
:focus-visible {
  outline: 3px solid var(--red-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Tipografía ---------- */
h1,
h2,
h3,
h4 {
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}
p {
  color: var(--mist);
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--mist);
  max-width: 60ch;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  position: relative;
}
.section--tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.section--alt {
  background: var(--surface);
}

/* ---------- Light Mode (bloques claros) ---------- */
.section--light {
  background: #ffffff;
  color: #0f1729;
}
.section--light.section--mist {
  background: #f1f4fa;
}
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: #0b1220;
}
.section--light p {
  color: #4a5670;
}
.section--light .lead {
  color: #515d77;
}
.section--light .eyebrow {
  color: var(--red);
}
.section--light .card {
  background: #ffffff;
  border-color: rgba(15, 23, 41, 0.1);
  box-shadow: 0 18px 44px -28px rgba(15, 23, 41, 0.4);
  backdrop-filter: none;
}
.section--light .card:hover {
  background: #ffffff;
  border-color: rgba(15, 23, 41, 0.22);
  box-shadow: 0 26px 56px -26px rgba(15, 23, 41, 0.5);
}
.section--light .card__icon {
  box-shadow: 0 10px 24px -12px rgba(27, 42, 91, 0.6);
}
.section--light .stat {
  background: #f4f6fb;
  border-color: rgba(15, 23, 41, 0.08);
}
.section--light .stat__num {
  background: linear-gradient(120deg, #1b2a5b, var(--red));
  -webkit-background-clip: text;
  background-clip: text;
}
.section--light .stat__label {
  color: #4a5670;
}
.section--light .base-card {
  background: #f4f6fb;
  border-color: rgba(15, 23, 41, 0.08);
}
.section--light .checklist li {
  color: #1b2440;
}
.section--light .tag {
  background: #eef1f8;
  border-color: rgba(15, 23, 41, 0.12);
  color: #1b2440;
}
.section--light .trust__logo {
  border-color: rgba(15, 23, 41, 0.18);
  color: #8893ab;
  background: #f6f8fc;
}
.section--light .btn-ghost {
  background: #f1f4fa;
  color: #1b2a5b;
  border-color: rgba(15, 23, 41, 0.14);
}
.section--light .btn-ghost:hover {
  background: #e7ecf6;
  border-color: rgba(15, 23, 41, 0.26);
}
.section--light .divider-glow {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(15, 23, 41, 0.14),
    transparent
  );
}
.section-head {
  max-width: 64ch;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff5d72;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}
.section-head.center .eyebrow {
  justify-content: center;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: linear-gradient(120deg, var(--red), var(--red-700));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  box-shadow: 0 22px 48px -14px rgba(200, 16, 46, 0.7);
}
.btn-ghost {
  background: var(--glass);
  color: var(--ink);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--glass-2);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-lg {
  padding: 1.1rem 2.1rem;
  font-size: 1.05rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 12, 24, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 78px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav__logo img {
  height: 40px;
  width: auto;
}
.footer__brand .nav__logo img {
  height: 46px;
}
.nav__links {
  display: flex;
  gap: 0.35rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mist);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover {
  color: var(--ink);
  background: var(--glass);
}
.nav__links a.active {
  color: #fff;
}
.nav__links a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 60%;
  margin: 3px auto 0;
  background: var(--red);
  border-radius: 2px;
}
.nav__cta {
  margin-left: 0.5rem;
}
.nav__toggle {
  display: none;
  margin-left: auto;
  background: var(--glass);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile nav */
@media (max-width: 1024px) {
  .nav__links,
  .nav > .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .mobile-menu {
    position: fixed;
    inset: 78px 0 0 0;
    background: rgba(8, 12, 24, 0.97);
    backdrop-filter: blur(18px);
    z-index: 99;
    padding: 1.5rem var(--gutter) 3rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    overflow-y: auto;
  }
  .mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-menu a {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .mobile-menu a.active {
    color: #ff5d72;
  }
  .mobile-menu .btn {
    width: 100%;
    margin-top: 1.6rem;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: opacity 0.6s ease;
    transform: none;
  }
  .hero__slide.is-active {
    transform: none;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      90deg,
      rgba(8, 12, 24, 0.94) 0%,
      rgba(11, 18, 38, 0.78) 45%,
      rgba(11, 18, 38, 0.35) 100%
    ),
    linear-gradient(0deg, rgba(8, 12, 24, 0.95) 0%, rgba(8, 12, 24, 0) 55%);
}
.hero__inner {
  max-width: 760px;
}
.hero h1 {
  margin-bottom: 1.4rem;
}
.hero h1 .accent {
  color: #ff5d72;
}
.hero .lead {
  margin-bottom: 2rem;
}
.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin-bottom: 2.4rem;
}
.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.18);
  color: #ff7184;
  flex-shrink: 0;
}
.check svg {
  width: 13px;
  height: 13px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 24, 0.85) 0%,
    rgba(10, 15, 31, 0.92) 100%
  );
}
.page-hero__inner {
  max-width: 720px;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--mist-dim);
  margin-bottom: 1rem;
}
.breadcrumb a:hover {
  color: var(--ink);
}

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.trust__logo {
  height: 64px;
  border-radius: 12px;
  border: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist-dim);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  background: var(--glass);
}

/* Client logo grid (real logos) */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
}
.logo-cell {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 41, 0.08);
  box-shadow: 0 10px 26px -20px rgba(15, 23, 41, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.logo-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -18px rgba(15, 23, 41, 0.5);
}
.logo-cell img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: filter 0.25s var(--ease), opacity 0.25s var(--ease);
}
.logo-cell:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}
.stat {
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
}
.stat__num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.04;
  background: linear-gradient(120deg, #fff, #ff7184);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__num.is-text {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.stat__label {
  margin-top: 0.6rem;
  color: var(--mist);
  font-size: 0.95rem;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 1.25rem;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: var(--glass-2);
}
.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-400), var(--navy));
  color: #fff;
  margin-bottom: 1.3rem;
}
.card__icon svg {
  width: 26px;
  height: 26px;
}
.card h3 {
  margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.97rem;
}
.card--accent::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}

/* Two-column media + text */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media {
  order: 2;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.split__media .badge-float {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(8, 12, 24, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
}
.split__media .badge-float strong {
  display: block;
  font-size: 1.6rem;
  color: #ff7184;
  line-height: 1;
}
.split__media .badge-float span {
  font-size: 0.82rem;
  color: var(--mist);
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media {
    order: 0;
  }
}

/* Feature list with checks */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem 1.6rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.4rem 0;
}

/* Product cards */
.product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.product__body {
  padding: clamp(1.8rem, 4vw, 3rem);
}
.product__body h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 1rem;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0;
}
.tag {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--glass-2);
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
@media (max-width: 760px) {
  .product {
    grid-template-columns: 1fr;
  }
  .product__media img {
    min-height: 240px;
  }
}

/* ---------- Coverage map ---------- */
.map-wrap {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}
.map-wrap img.map {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}
.section--light .map-wrap img.map {
  filter: none;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  text-align: center;
}
.map-pin img {
  width: 34px;
  margin-inline: auto;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.6));
  transition: transform 0.25s var(--ease);
}
.map-pin:hover img,
.map-pin:focus img {
  transform: scale(1.18) translateY(-4px);
}
.map-pin__label {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 12, 24, 0.92);
  border: 1px solid var(--line-strong);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.map-pin:hover .map-pin__label,
.map-pin:focus .map-pin__label {
  opacity: 1;
}
.map-pin__ping {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.45);
  animation: ping 2.4s var(--ease) infinite;
  z-index: -1;
}
@keyframes ping {
  0% {
    transform: translateX(-50%) scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-50%) scale(2.2);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .map-pin__ping {
    animation: none;
  }
}

.bases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 3rem;
}
.base-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
}
.base-card__state {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff7184;
}
.base-card h3 {
  font-size: 1.3rem;
  margin: 0.3rem 0 0.4rem;
}

/* ---------- Trajectory head + badge 15 años ---------- */
.trajectory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}
.trajectory-head .badge-15 {
  width: clamp(120px, 16vw, 180px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.5));
}
@media (max-width: 640px) {
  .trajectory-head .badge-15 {
    width: 130px;
  }
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding-left: 1.8rem;
  border-left: 2px solid var(--line-strong);
}
.timeline__item h3 {
  font-size: 1.2rem;
}
.timeline__item .year {
  color: #ff7184;
  font-weight: 800;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.2);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy), var(--graphite));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.35), transparent 70%);
  top: -120px;
  right: -80px;
}
.cta-band h2 {
  max-width: 22ch;
  margin: 0 auto 1rem;
  position: relative;
}
.cta-band p {
  max-width: 56ch;
  margin: 0 auto 2rem;
  position: relative;
}
.cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--mist);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--mist-dim);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red-600);
  background: rgba(255, 255, 255, 0.07);
}
.field select option {
  background: var(--surface);
  color: var(--ink);
}

/* Contact info cards */
.contact-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
}
.contact-card .role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7184;
}
.contact-card .name {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0.3rem 0 0.8rem;
}
.contact-card a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--mist);
  padding: 0.25rem 0;
  font-size: 0.95rem;
}
.contact-card a:hover {
  color: var(--ink);
}
.contact-card svg {
  width: 17px;
  height: 17px;
  color: #ff7184;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #070b16;
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 860px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
.footer__brand .nav__logo {
  margin-bottom: 1.2rem;
}
.footer__brand p {
  max-width: 38ch;
  font-size: 0.95rem;
}
.footer__col h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer__col a,
.footer__col li {
  display: block;
  color: var(--mist);
  font-size: 0.92rem;
  padding: 0.28rem 0;
}
.footer__col a:hover {
  color: var(--ink);
}
.footer__contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.footer__contact .role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist-dim);
}
.footer__contact .name {
  font-weight: 700;
  margin: 0.2rem 0 0.5rem;
}
.footer__contact a {
  display: block;
  font-size: 0.9rem;
  color: var(--mist);
  padding: 0.12rem 0;
}
.footer__contact a:hover {
  color: var(--ink);
}
.footer__bottom {
  margin-top: 2.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--mist-dim);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mb-0 {
  margin-bottom: 0;
}
.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  border: 0;
}
