:root {
  --bg: #07101e;
  --bg-deep: #040914;
  --bg-soft: #0a1424;
  --surface: rgba(13, 24, 41, .88);
  --surface-solid: #0d1829;
  --surface-2: #101d31;
  --surface-3: #16243a;
  --text: #f5f7fb;
  --muted: #aab4c4;
  --muted-2: #77849a;
  --yellow: #ffd000;
  --yellow-2: #ffb900;
  --orange: #ff8a00;
  --green: #1dcc6d;
  --border: rgba(255, 255, 255, .10);
  --border-strong: rgba(255, 208, 0, .35);
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, .24);
  --radius: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --container: 1240px;
  --header-height: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(24, 63, 112, .18), transparent 28%),
    radial-gradient(circle at 82% 35%, rgba(255, 174, 0, .07), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  font-family: Inter, "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #111; background: var(--yellow); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #111;
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.section { position: relative; padding: 112px 0; }
.section.compact { padding: 88px 0; }
.section-dark { background: linear-gradient(180deg, rgba(7, 16, 30, .72), rgba(4, 9, 20, .92)); }
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(255, 208, 0, .55);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.9rem, 5.6vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.7rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }
p { color: var(--muted); }
.lead { font-size: clamp(1rem, 1.35vw, 1.18rem); color: #c6cfdd; }
.accent { color: var(--yellow); }
.text-gradient {
  color: transparent;
  background: linear-gradient(135deg, #ffe45c 0%, var(--yellow) 45%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.icon-lg { width: 30px; height: 30px; }
.icon-xl { width: 40px; height: 40px; }
.icon-shell {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--yellow);
  border: 1px solid var(--border-strong);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 208, 0, .10), rgba(255, 255, 255, .015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 850;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn .icon { width: 19px; height: 19px; }
.btn-primary {
  color: #111;
  background: linear-gradient(135deg, #ffe261, var(--yellow) 55%, var(--yellow-2));
  box-shadow: 0 12px 30px rgba(255, 197, 0, .22);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(255, 197, 0, .34); }
.btn-secondary {
  color: #fff;
  background: rgba(8, 16, 29, .62);
  border-color: rgba(255, 255, 255, .24);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover { border-color: var(--yellow); }
.btn-outline {
  color: #fff;
  background: transparent;
  border-color: var(--border-strong);
}
.btn-outline:hover { color: #111; background: var(--yellow); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(4, 10, 20, .84);
  backdrop-filter: blur(18px) saturate(130%);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(4, 10, 20, .96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
}
.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand img { width: 112px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .94rem;
  font-weight: 750;
}
.nav-links a {
  position: relative;
  display: block;
  padding: 31px 0 28px;
  color: #d9e0ec;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 22px;
  height: 2px;
  background: var(--yellow);
  transition: left .25s ease, right .25s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--yellow); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { left: 0; right: 0; }
.header-contacts { display: flex; align-items: center; gap: 22px; }
.header-contact {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}
.header-contact .icon { color: var(--yellow); width: 25px; height: 25px; }
.header-contact strong { display: block; font-size: .84rem; line-height: 1.2; }
.header-contact small { display: block; margin-top: 2px; color: var(--muted-2); font-size: .72rem; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-solid);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Home hero */
.home-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, .96) 0%, rgba(5, 12, 23, .78) 39%, rgba(5, 12, 23, .34) 68%, rgba(3, 8, 18, .68) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(4, 10, 20, .72)),
    url("../img/bannerhome-scaled.webp") center 48% / cover no-repeat;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 52%, rgba(255, 208, 0, .16), transparent 20%),
    linear-gradient(180deg, transparent 55%, var(--bg) 100%);
}
.home-hero::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: 12%;
  width: 430px;
  height: 260px;
  opacity: .12;
  background-image: radial-gradient(circle, var(--yellow) 1px, transparent 1.3px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse, #000 25%, transparent 72%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .66fr);
  gap: 68px;
  align-items: center;
  padding: 78px 0 116px;
}
.hero-copy { max-width: 690px; }
.hero-copy h1 { max-width: 680px; margin-bottom: 24px; text-wrap: balance; }
.hero-copy > p { max-width: 600px; margin-bottom: 30px; font-size: 1.08rem; color: #c5cedb; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  color: #cad3df;
  font-size: .9rem;
}
.hero-note .icon { color: var(--yellow); }

.tracking-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(14, 27, 47, .95), rgba(5, 12, 24, .93));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.tracking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 28%, transparent 74%, rgba(255, 208, 0, .05));
}
.tracking-card h2 { margin-bottom: 8px; font-size: 1.65rem; }
.tracking-card > p { margin-bottom: 22px; font-size: .94rem; }
.tracking-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.form-control {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  outline: none;
  background: rgba(2, 8, 17, .74);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-control:focus {
  border-color: var(--yellow);
  background: rgba(4, 12, 24, .95);
  box-shadow: 0 0 0 4px rgba(255, 208, 0, .10);
}
.form-control::placeholder { color: #7f8da2; }
textarea.form-control { min-height: 142px; resize: vertical; }
select.form-control { color-scheme: dark; }
.tracking-form .btn { min-height: 52px; padding-inline: 18px; }
.tracking-flow {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.tracking-flow::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  bottom: 20px;
  border-left: 1px dashed rgba(255, 208, 0, .36);
}
.tracking-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
}
.step-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--yellow);
  border: 1px solid rgba(255, 208, 0, .32);
  border-radius: 50%;
  background: #0a1728;
}
.step-marker .icon { width: 18px; height: 18px; }
.tracking-step strong { display: block; font-size: .92rem; }
.tracking-step span { display: block; color: var(--muted-2); font-size: .76rem; }
.tracking-step time { color: #dce3ed; font-size: .73rem; }
.tracking-help {
  margin: 20px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .82rem;
}
.tracking-help a { color: var(--yellow); font-weight: 800; }

.stats-section { position: relative; z-index: 3; margin-top: -68px; }
.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 26, 45, .96), rgba(5, 12, 24, .98));
  box-shadow: var(--shadow);
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 24px 30px;
}
.stat-card + .stat-card { border-left: 1px solid var(--border); }
.stat-card .icon-shell { width: 48px; height: 48px; border: 0; background: rgba(255, 208, 0, .08); }
.stat-number { display: block; color: #fff; font-size: 1.85rem; font-weight: 900; line-height: 1; }
.stat-label { display: block; margin-top: 7px; color: var(--muted); font-size: .82rem; }

/* About preview */
.about-preview { padding-top: 132px; }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center; }
.media-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0a1424 center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}
.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 18, .08), rgba(3, 8, 18, .78));
}
.media-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}
.media-card-content h3 { max-width: 350px; margin: 0; font-size: 1.65rem; }
.play-button {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #111;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .32);
}
.play-button .icon { width: 26px; height: 26px; transform: translateX(2px); }
.about-content h2 { max-width: 650px; margin-bottom: 20px; }
.about-content > p { max-width: 700px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.principle-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(15, 29, 49, .82), rgba(8, 17, 31, .74));
}
.principle-card .icon { margin-bottom: 18px; color: var(--yellow); width: 29px; height: 29px; }
.principle-card h3 { margin-bottom: 10px; font-size: 1.02rem; }
.principle-card p { margin-bottom: 0; font-size: .82rem; }

/* Services */
.services-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 181, 0, .07), transparent 28%),
    linear-gradient(180deg, rgba(5, 12, 24, .6), rgba(4, 9, 20, .95));
}
.section-heading { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-heading h2 { margin-bottom: 16px; }
.service-explorer { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: stretch; }
.service-tabs { display: grid; gap: 10px; align-content: start; }
.service-tab {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 16px 18px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  background: rgba(13, 24, 41, .72);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}
.service-tab:hover { transform: translateX(4px); border-color: rgba(255, 208, 0, .24); }
.service-tab .icon-shell { width: 44px; height: 44px; border: 0; background: rgba(255, 255, 255, .03); }
.service-tab strong { display: block; margin-bottom: 4px; font-size: .93rem; }
.service-tab small { display: block; color: var(--muted-2); font-size: .75rem; line-height: 1.35; }
.service-tab.is-active {
  color: #121212;
  border-color: var(--yellow);
  background: linear-gradient(135deg, #ffe66b, var(--yellow) 58%, var(--yellow-2));
  box-shadow: 0 16px 34px rgba(255, 197, 0, .18);
}
.service-tab.is-active .icon-shell { color: #111; background: rgba(0, 0, 0, .08); }
.service-tab.is-active small { color: rgba(0, 0, 0, .70); }
.service-panels { position: relative; min-height: 580px; }
.service-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}
.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 17, .96) 0%, rgba(3, 8, 17, .72) 48%, rgba(3, 8, 17, .22) 100%), linear-gradient(180deg, rgba(0,0,0,.08), rgba(4,10,20,.66));
}
.service-panel.is-active { opacity: 1; visibility: visible; transform: none; }
.service-panel-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 28px;
  border-left: 3px solid var(--yellow);
  border-radius: 0 15px 15px 0;
  background: rgba(4, 10, 20, .78);
  backdrop-filter: blur(10px);
}
.service-panel-content h3 { margin-bottom: 12px; font-size: 2rem; }
.service-panel-content p { margin-bottom: 0; color: #cbd3df; }
.service-highlights {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  transform: translateY(calc(100% + 18px));
}
.service-highlight {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(6, 14, 27, .92);
  backdrop-filter: blur(10px);
}
.service-highlight .icon { color: var(--yellow); }
.service-highlight strong { display: block; margin: 10px 0 5px; font-size: .82rem; }
.service-highlight span { color: var(--muted-2); font-size: .72rem; line-height: 1.35; }
.service-explorer + .service-highlights { position: static; transform: none; margin: 24px 0 0 348px; }

/* Advantages */
.advantages-section { padding-top: 40px; }
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.advantage-card {
  position: relative;
  min-height: 235px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(16, 31, 51, .86), rgba(7, 15, 28, .88));
  transition: transform .28s var(--ease), border-color .28s ease, box-shadow .28s ease;
}
.advantage-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 208, 0, .06);
  filter: blur(4px);
}
.advantage-card:hover { transform: translateY(-8px); border-color: var(--border-strong); box-shadow: var(--shadow-soft); }
.advantage-card .icon-shell { margin-bottom: 24px; }
.advantage-card h3 { margin-bottom: 12px; }
.advantage-card p { margin-bottom: 0; }

/* CTA */
.cta-wrap { padding: 40px 0 112px; }
.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 40px;
  align-items: center;
  min-height: 300px;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(255, 208, 0, .30);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(4, 10, 20, .98), rgba(4, 10, 20, .82) 55%, rgba(4, 10, 20, .35)),
    url("../img/bannerhome-scaled.webp") 62% 52% / cover no-repeat;
  box-shadow: var(--shadow);
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 208, 0, .08), transparent 28%);
}
.cta-content, .cta-points { position: relative; z-index: 1; }
.cta-content h2 { max-width: 700px; margin-bottom: 14px; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.cta-points { display: grid; gap: 16px; }
.cta-point { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.cta-point .icon { color: var(--yellow); }
.cta-point strong { display: block; font-size: .9rem; }
.cta-point span { display: block; color: var(--muted); font-size: .78rem; }

/* Internal heroes */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 18, .96), rgba(3, 8, 18, .54) 60%, rgba(3, 8, 18, .34)), linear-gradient(180deg, transparent, rgba(4, 10, 20, .82));
}
.about-hero { background-image: url("../img/bannerhome-scaled.webp"); background-position: center 56%; }
.contact-hero { background-image: url("../img/servicio-al-cliente.webp"); background-position: center 32%; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-copy { max-width: 720px; }
.page-hero h1 { margin-bottom: 18px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; color: #c7d0dd; }
.breadcrumb a { color: var(--yellow); font-weight: 800; }
.hero-mini-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-mini-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 185px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(4, 10, 20, .68);
  backdrop-filter: blur(10px);
}
.hero-mini-stat .icon { color: var(--yellow); }
.hero-mini-stat strong { display: block; }
.hero-mini-stat span { display: block; color: var(--muted-2); font-size: .75rem; }

/* About page */
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.story-copy h2 { margin-bottom: 22px; }
.story-copy p { font-size: 1.02rem; }
.mv-grid-modern { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mv-card-modern {
  min-height: 355px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(17, 31, 51, .88), rgba(6, 15, 28, .92));
  box-shadow: var(--shadow-soft);
}
.mv-card-modern .icon-shell { margin-bottom: 25px; }
.mv-card-modern h3 { margin-bottom: 15px; font-size: 1.35rem; }
.mv-card-modern p, .mv-card-modern li { color: var(--muted); }
.mv-card-modern ul { margin: 0; padding-left: 20px; }
.mv-card-modern li::marker { color: var(--yellow); }
.strengths-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 54, 93, .16), transparent 42%),
    linear-gradient(180deg, rgba(8, 18, 33, .96), rgba(4, 9, 20, .96));
}
.strengths-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.strength-card {
  min-height: 210px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(10, 21, 37, .74);
}
.strength-card .icon-shell { margin: 0 auto 22px; }
.strength-card h3 { font-size: 1rem; }
.strength-card p { margin-bottom: 0; font-size: .82rem; }

/* Contact page */
.contact-section { background: linear-gradient(180deg, rgba(5, 12, 24, .72), rgba(4, 9, 20, .98)); }
.contact-layout { display: grid; grid-template-columns: 1.05fr .55fr .75fr; gap: 20px; align-items: stretch; }
.contact-card,
.contact-info-card,
.map-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(16, 30, 50, .88), rgba(6, 14, 27, .94));
  box-shadow: var(--shadow-soft);
}
.contact-card { padding: 30px; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label { display: block; margin-bottom: 8px; color: #e9eef6; font-size: .84rem; font-weight: 750; }
.required { color: var(--yellow); }
.form-status { min-height: 24px; margin: 0; font-size: .88rem; }
.form-status.success { color: #65e69a; }
.form-status.error { color: #ff7777; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy-note { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--muted-2); font-size: .74rem; }
.privacy-note .icon { width: 15px; height: 15px; }
.contact-info-card { padding: 30px; }
.contact-info-card h2 { margin-bottom: 28px; font-size: 2rem; }
.contact-info-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.contact-info-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.contact-info-list li:first-child { border-top: 0; padding-top: 0; }
.contact-info-list .icon { color: var(--yellow); margin-top: 3px; }
.contact-info-list strong { display: block; margin-bottom: 5px; font-size: .82rem; }
.contact-info-list span, .contact-info-list a { color: var(--muted); font-size: .84rem; }
.map-card { min-height: 100%; overflow: hidden; }
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: grayscale(.75) invert(.88) hue-rotate(175deg) saturate(.65) contrast(.95);
}
.map-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(5, 13, 25, .88);
  backdrop-filter: blur(10px);
}
.map-card { position: relative; }
.map-caption .icon { color: var(--yellow); }
.map-caption strong { display: block; font-size: .82rem; }
.map-caption span { display: block; color: var(--muted-2); font-size: .72rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #07101d;
}
.footer-main { padding: 70px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .85fr 1fr; gap: 48px; }
.footer-logo { width: 135px; margin-bottom: 22px; }
.footer-intro p { max-width: 270px; }
.social-row { display: flex; gap: 9px; margin-top: 22px; }
.social-row a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #dbe3ed;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, .02);
  font-size: .8rem;
  font-weight: 850;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.social-row a:hover { color: var(--yellow); border-color: var(--yellow); transform: translateY(-3px); }
.footer-title { margin: 0 0 20px; color: #fff; font-size: .95rem; letter-spacing: 0; }
.footer-links, .footer-contact { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.footer-links a, .footer-contact li, .footer-contact a { color: var(--muted); font-size: .86rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon { width: 18px; height: 18px; color: var(--yellow); margin-top: 3px; }
.super-logo { width: 150px; margin-top: 18px; border-radius: 7px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: .78rem;
}
.footer-bottom a { color: var(--yellow); font-weight: 800; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  background: linear-gradient(135deg, #20d978, #14b95f);
  box-shadow: 0 16px 35px rgba(0, 0, 0, .35);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(0, 0, 0, .42); }
.whatsapp-float .icon { width: 21px; height: 21px; }
.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 800;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  background: rgba(7, 16, 30, .88);
  backdrop-filter: blur(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* 404 */
.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
  background:
    linear-gradient(rgba(4, 10, 20, .82), rgba(4, 10, 20, .94)),
    url("../img/bannerhome-scaled.webp") center/cover no-repeat;
}
.not-found img { width: 160px; margin: 0 auto 20px; }
.not-found h1 { margin-bottom: 6px; font-size: clamp(4rem, 13vw, 9rem); color: var(--yellow); }

@media (max-width: 1180px) {
  .header-contact:last-child { display: none; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 40px; }
  .service-highlights { grid-template-columns: repeat(2, 1fr); }
  .service-explorer + .service-highlights { margin-left: 0; }
  .contact-layout { grid-template-columns: 1.1fr .75fr; }
  .map-card { grid-column: 1 / -1; min-height: 430px; }
  .map-card iframe { min-height: 430px; }
  .strengths-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .container { width: min(var(--container), calc(100% - 34px)); }
  .section { padding: 88px 0; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-contacts { margin-left: auto; }
  .header-contact { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 17px;
    right: 17px;
    display: grid;
    gap: 0;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    background: rgba(5, 12, 24, .98);
    box-shadow: var(--shadow);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links a::after { bottom: 8px; }
  .home-hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 78px 0 118px; }
  .hero-copy { max-width: 760px; }
  .tracking-card { max-width: 700px; }
  .stats-panel { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .stat-card:nth-child(4) { border-top: 1px solid var(--border); }
  .about-grid, .story-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: repeat(3, 1fr); }
  .service-explorer { grid-template-columns: 1fr; }
  .service-tabs { grid-template-columns: repeat(2, 1fr); }
  .service-panel { position: relative; min-height: 530px; display: none; }
  .service-panel.is-active { display: flex; }
  .service-explorer + .service-highlights { margin-top: 18px; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { grid-template-columns: 1fr; }
  .mv-grid-modern { grid-template-columns: 1fr; }
  .mv-card-modern { min-height: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 26px, var(--container)); }
  h1 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .brand img { width: 95px; }
  .home-hero { background-position: 60% center; }
  .hero-grid { padding-top: 62px; gap: 34px; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .tracking-card { padding: 22px; }
  .tracking-form { grid-template-columns: 1fr; }
  .tracking-form .btn { width: 100%; }
  .tracking-step { grid-template-columns: 38px 1fr; }
  .tracking-step time { display: none; }
  .stats-section { margin-top: -46px; }
  .stats-panel { grid-template-columns: 1fr; }
  .stat-card { min-height: 96px; padding: 20px; }
  .stat-card + .stat-card { border-left: 0; border-top: 1px solid var(--border); }
  .about-preview { padding-top: 98px; }
  .media-card { min-height: 360px; }
  .media-card-content { align-items: center; padding: 22px; }
  .principles-grid { grid-template-columns: 1fr; }
  .service-tabs { grid-template-columns: 1fr; }
  .service-tab { min-height: 74px; }
  .service-panel { min-height: 520px; padding: 20px; }
  .service-panel-content { padding: 22px; }
  .service-highlights, .service-explorer + .service-highlights { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .cta-wrap { padding-bottom: 88px; }
  .cta-banner { min-height: 420px; padding: 30px 24px; background-position: 72% center; }
  .cta-actions .btn { width: 100%; }
  .page-hero { min-height: 420px; }
  .hero-mini-stats { display: grid; }
  .strengths-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form > * { grid-column: 1 !important; }
  .contact-card, .contact-info-card { padding: 24px; }
  .map-card { min-height: 390px; }
  .map-card iframe { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 13px; bottom: 14px; padding: 12px 15px; }
  .whatsapp-float span:last-child { display: none; }
  .back-to-top { left: 13px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
