/* ============================================================
   Acuenergi — Premium Industrial Website
   Archetype: Editorial Dark Industrial (02-variant)
   Version: 20260605
   ============================================================ */

/* ── Tokens ── */
:root {
  --bg:       #0B0E14;
  --bg2:      #0F1420;
  --bg3:      #131925;
  --card:     #141B26;
  --card2:    #1A2235;
  --orange:   #E87722;
  --orange2:  #C4621A;
  --orange3:  rgba(232,119,34,0.12);
  --blue:     #1B4FA8;
  --blue2:    #1441A0;
  --blue-hl:  rgba(27,79,168,0.15);
  --text:     #F0F4FA;
  --text2:    #B8C4D4;
  --muted:    #6B7A90;
  --line:     rgba(255,255,255,0.07);
  --line2:    rgba(255,255,255,0.12);
  --nav-h:    72px;
  --radius:   12px;
  --radius-lg: 20px;
  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
strong { font-weight: 700; color: var(--orange); }

/* ── Container ── */
.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety: elements with data-split must be visible regardless */
.reveal[data-split] { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--line);
}
.nav-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* Remove white background on dark site */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.logo-img-footer {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.25s var(--ease);
}
@media (hover: hover) {
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { width: 100%; }
}
.nav-links a.is-active { color: var(--text); }
.nav-links a.is-active::after { width: 100%; }

.btn-nav {
  flex-shrink: 0;
  padding: 9px 20px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
@media (hover: hover) {
  .btn-nav:hover { background: var(--orange2); transform: translateY(-1px); }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(11,14,20,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 320px; }
.mobile-menu a {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text2);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
@media (hover: hover) { .mobile-menu a:hover { color: var(--text); } }
.btn-mobile-cta {
  display: block;
  margin-top: 16px;
  padding: 14px 28px;
  background: var(--orange);
  color: #fff !important;
  border-radius: 10px;
  text-align: center;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) brightness(0.55);
}
.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,14,20,0.3) 0%, rgba(11,14,20,0.5) 50%, rgba(11,14,20,0.92) 100%),
    linear-gradient(90deg, rgba(11,14,20,0.6) 0%, transparent 60%);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 60% at 15% 25%, rgba(232,119,34,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 55% at 85% 75%, rgba(27,79,168,0.22) 0%, transparent 65%);
  animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { opacity: 0.7; transform: scale(1) rotate(0deg); }
  100% { opacity: 1;   transform: scale(1.08) rotate(3deg); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 16ch;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  max-width: 52ch;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text2);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* ── Shared buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 9px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
}
@media (hover: hover) {
  .btn-primary:hover {
    background: var(--orange2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,119,34,0.35);
  }
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--text);
  border-radius: 9px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.18s;
}
@media (hover: hover) {
  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: clamp(20px, 5vw, 60px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-text { writing-mode: vertical-rl; }
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%       { transform: scaleY(0.4); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip {
  background: var(--card);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.strip-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.strip-inner::-webkit-scrollbar { display: none; }
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
@media (hover: hover) { .strip-item:hover { color: var(--text); } }
.strip-icon { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.strip-sep { width: 1px; background: var(--line2); align-self: stretch; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════ */
.section { padding-block: clamp(80px, 10vw, 130px); }
.section-mant  { background: var(--bg); }
.section-alq   { background: var(--bg2); }
.section-prod  { background: var(--bg); }
.section-nosotros { background: var(--bg2); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding: 5px 14px;
  background: var(--orange3);
  border-radius: 100px;
  border: 1px solid rgba(232,119,34,0.2);
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-sub {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 60ch;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════
   MANTENIMIENTO
═══════════════════════════════════════════ */
.mant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 70px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
@media (hover: hover) {
  .service-card:hover {
    border-color: rgba(232,119,34,0.4);
    box-shadow: 0 0 40px rgba(232,119,34,0.08), 0 4px 24px rgba(0,0,0,0.3);
    transform: translateY(-4px);
  }
}
.sc-featured {
  border-color: rgba(232,119,34,0.3);
  background: linear-gradient(145deg, var(--card), var(--card2));
}
.sc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-hl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sc-icon-orange { background: var(--orange3); }
.sc-icon { width: 24px; height: 24px; color: var(--blue); }
.sc-icon-orange .sc-icon { color: var(--orange); }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service-card p { font-size: 0.9rem; color: var(--text2); line-height: 1.65; }
.sc-metrics {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.metric { display: flex; flex-direction: column; gap: 3px; }
.metric-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-label { font-size: 0.7rem; color: var(--muted); font-weight: 500; }

/* Mant Feature block */
.mant-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mant-feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.mant-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
@media (hover: hover) { .mant-feature-img:hover img { transform: scale(1.04); } }
.mant-feature-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(11,14,20,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text2);
}
.mant-feature-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mant-feature-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
}
.mant-feature-text p { font-size: 0.95rem; color: var(--text2); line-height: 1.7; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 0.875rem;
  color: var(--text2);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   ALQUILER
═══════════════════════════════════════════ */
.alq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
  .plan-card:hover {
    border-color: rgba(232,119,34,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }
}
.plan-featured {
  background: linear-gradient(145deg, var(--blue), var(--blue2));
  border-color: rgba(27,79,168,0.6);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27,79,168,0.25);
}
@media (hover: hover) {
  .plan-featured:hover {
    border-color: rgba(27,79,168,0.9);
    transform: translateY(-12px);
    box-shadow: 0 32px 70px rgba(27,79,168,0.35);
  }
}
.plan-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-top { display: flex; flex-direction: column; gap: 6px; }
.plan-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange3);
  border: 1px solid rgba(232,119,34,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  width: fit-content;
}
.plan-badge-featured { color: #fff; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.plan-duration { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.plan-featured .plan-duration { color: rgba(255,255,255,0.6); }
.plan-title { font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.plan-desc { font-size: 0.875rem; color: var(--text2); line-height: 1.65; }
.plan-featured .plan-title,
.plan-featured .plan-desc { color: rgba(255,255,255,0.95); }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text2);
}
.plan-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.plan-featured .plan-features li { color: rgba(255,255,255,0.85); }
.btn-plan {
  display: block;
  padding: 12px 22px;
  border: 1.5px solid rgba(232,119,34,0.4);
  color: var(--orange);
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  margin-top: auto;
}
@media (hover: hover) {
  .btn-plan:hover {
    background: var(--orange3);
    border-color: var(--orange);
    transform: translateY(-1px);
  }
}
.btn-plan-featured {
  display: block;
  padding: 12px 22px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  margin-top: auto;
}
@media (hover: hover) {
  .btn-plan-featured:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
  }
}

/* ═══════════════════════════════════════════
   PRODUCTOS
═══════════════════════════════════════════ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.prod-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
  .prod-card:hover {
    border-color: rgba(232,119,34,0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  }
}
.prod-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.8);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
@media (hover: hover) {
  .prod-card:hover .prod-img {
    transform: scale(1.06);
    filter: saturate(1.05) brightness(0.9);
  }
}
.prod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,14,20,0.85) 100%);
}
.prod-num {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
}
.prod-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.prod-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.015em;
}
.prod-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.prod-list li {
  font-size: 0.8125rem;
  color: var(--text2);
  padding-left: 14px;
  position: relative;
}
.prod-list li::before {
  content: "·";
  position: absolute;
  left: 3px;
  color: var(--orange);
  font-weight: 900;
}
.btn-prod {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.01em;
  margin-top: 4px;
  transition: letter-spacing 0.2s;
}
@media (hover: hover) { .btn-prod:hover { letter-spacing: 0.04em; } }

/* ═══════════════════════════════════════════
   CLIENTES MARQUEE
═══════════════════════════════════════════ */
.section-clients {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--bg3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg3), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg3), transparent); }

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-set {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-right: 0;
}
.client-item {
  display: flex;
  align-items: center;
  padding: 0 32px;
}
.client-logo {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  /* Remove white bg on dark site */
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.05);
  opacity: 0.85;
  transition: opacity 0.25s, filter 0.25s;
}
@media (hover: hover) {
  .client-logo:hover {
    opacity: 1;
    filter: brightness(1.3) contrast(1.1);
  }
}
.client-name {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text2);
  transition: color 0.2s;
}
@media (hover: hover) { .client-name:hover { color: var(--text); } }
.client-sep {
  color: var(--orange);
  font-size: 0.5rem;
  opacity: 0.6;
  flex-shrink: 0;
  align-self: center;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   NOSOTROS
═══════════════════════════════════════════ */
.nosotros-intro {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(60px, 8vw, 90px);
}
.nos-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding: 5px 16px;
  background: var(--orange3);
  border: 1px solid rgba(232,119,34,0.2);
  border-radius: 100px;
}
.nosotros-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 22px;
  text-wrap: balance;
}
.nosotros-lead {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text2);
  line-height: 1.7;
}

.nosotros-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 90px);
}
.nosotros-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nosotros-text h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.2;
}
.nosotros-text p { font-size: 0.95rem; color: var(--text2); line-height: 1.75; }

.nosotros-stats {
  display: flex;
  gap: 40px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.nstat { display: flex; flex-direction: column; gap: 4px; }
.nstat-val {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}
.nstat-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }

.nosotros-img-col { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.nosotros-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
@media (hover: hover) { .nosotros-img-col:hover .nosotros-img { transform: scale(1.04); filter: saturate(0.9) brightness(0.9); } }

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}
.mv-alt { border-color: rgba(27,79,168,0.25); background: linear-gradient(145deg, var(--card), rgba(27,79,168,0.06)); }
@media (hover: hover) { .mv-card:hover { border-color: rgba(232,119,34,0.3); } }
.mv-icon {
  width: 44px;
  height: 44px;
  background: var(--orange3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mv-icon svg { width: 22px; height: 22px; color: var(--orange); }
.mv-alt .mv-icon { background: var(--blue-hl); }
.mv-alt .mv-icon svg { color: #3A78D4; }
.mv-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); letter-spacing: -0.015em; }
.mv-card p { font-size: 0.9rem; color: var(--text2); line-height: 1.72; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.section-cta {
  position: relative;
  padding-block: clamp(80px, 10vw, 120px);
  overflow: hidden;
  background: var(--bg);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(232,119,34,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(27,79,168,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.cta-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.cta-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}
.cta-text p { font-size: 1rem; color: var(--text2); line-height: 1.7; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text2);
  padding: 12px 16px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
@media (hover: hover) {
  .cta-contact-row:hover { border-color: var(--line2); color: var(--text); transform: translateX(4px); }
}
.cta-contact-icon {
  width: 36px;
  height: 36px;
  background: var(--orange3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-contact-icon svg { width: 16px; height: 16px; color: var(--orange); }
.btn-cta-main {
  display: block;
  padding: 15px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 9px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
@media (hover: hover) {
  .btn-cta-main:hover {
    background: var(--orange2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232,119,34,0.35);
  }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-link { display: inline-flex; align-items: center; width: fit-content; }
.footer-brand p { font-size: 0.8125rem; color: var(--muted); line-height: 1.65; max-width: 28ch; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.825rem;
  color: var(--muted);
  transition: color 0.2s;
}
@media (hover: hover) { .footer-col a:hover { color: var(--text2); } }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  animation: waBounceIn 0.6s 1.5s var(--ease) both;
}
@keyframes waBounceIn {
  from { transform: scale(0) rotate(-15deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
@media (hover: hover) {
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.55);
  }
}
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .alq-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .plan-featured { transform: none; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .nosotros-body { grid-template-columns: 1fr; gap: 40px; }
  .nosotros-img-col { order: -1; max-height: 360px; aspect-ratio: 16/8; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .mant-feature { grid-template-columns: 1fr; gap: 32px; }
  .prod-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .nosotros-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-scroll { display: none; }
  .strip-inner { gap: 0; }
  .strip-item { padding: 16px 16px; font-size: 0.75rem; gap: 7px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .mant-grid { grid-template-columns: 1fr; }
  .sc-metrics { flex-direction: column; gap: 12px; }
  .prod-img-wrap { aspect-ratio: 16/10; }
}

/* ── Reduced-motion: only gate truly intrusive effects ── */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .badge-pulse { animation: none; }
  .scroll-line { animation: none; }
  .marquee-track { animation-duration: 50s; }
  .waBounceIn { animation: none; }
}
