/* ============================================================
   HUMIX PFORZHEIM — styles.css
   Todo light · Secciones con variaciones de blanco/suave/frío
   Efectos premium nivel 4
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --blue:    #9dbbe5;
  --blue2:   #6f98d3;
  --blue3:   #3d6faa;
  --gold:    #efce8c;
  --gold2:   #d4a84b;
  --gold3:   #c49332;
  --dark:    #0b1422;
  --dark2:   #131f33;
  --text:    #1f2937;
  --muted:   #64748b;
  --soft:    #f4f8fc;
  --soft2:   #eaf1fb;
  --soft3:   #f0f5eb;
  --warm:    #fdf8f0;
  --white:   #ffffff;
  --radius:  28px;
  --shadow:  0 24px 70px rgba(15,23,42,.11);
  --shadow2: 0 40px 100px rgba(15,23,42,.14);
  --ease:    cubic-bezier(0.19,1,0.22,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────────────────────── */
.inner {
  width: min(92vw, 1440px);
  margin-inline: auto;
}

/* ── Progress bar ───────────────────────────────────────────── */
.hx-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--blue2), var(--gold2));
  z-index: 10000;
}

/* ── Cursor glow ────────────────────────────────────────────── */
.hx-cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(157,187,229,.2), transparent 66%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%,-50%);
  mix-blend-mode: multiply;
}

/* ── Header ─────────────────────────────────────────────────── */
.hx-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 1000;
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 24px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(15,23,42,.1), 0 1px 0 rgba(255,255,255,.9) inset;
  transition: box-shadow .3s;
}
.hx-header.is-scrolled .nav {
  box-shadow: 0 18px 56px rgba(15,23,42,.15), 0 1px 0 rgba(255,255,255,.9) inset;
}
.logo img { height: 38px; object-fit: contain; }
.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 750;
  color: #243042;
}
.menu a { position: relative; }
.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold2), var(--blue2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.menu a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.mobile-toggle {
  display: none;
  border: 0;
  background: var(--dark);
  color: #fff;
  border-radius: 999px;
  width: 42px; height: 42px;
  font-size: 22px;
  cursor: pointer;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 850;
  border: 1px solid transparent;
  box-shadow: 0 14px 32px rgba(15,23,42,.11);
  transition: transform .3s var(--ease), box-shadow .3s, filter .25s;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.3) 55%, transparent 70%);
  background-size: 200%;
  background-position: -100%;
  transition: background-position .5s ease;
  pointer-events: none;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(15,23,42,.18); }
.btn:hover::after { background-position: 200%; }

.btn-gold {
  background: linear-gradient(135deg, #f7e4b2, var(--gold), var(--gold2));
  color: #1a1200;
  border-color: rgba(239,206,140,.55);
}
.btn-blue {
  background: linear-gradient(135deg, #c4d9f5, var(--blue), var(--blue2));
  color: #0a1828;
  border-color: rgba(157,187,229,.55);
}
.btn-outline {
  background: rgba(255,255,255,.7);
  color: var(--dark);
  border-color: rgba(15,23,42,.15);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: #fff;
  border-color: rgba(15,23,42,.25);
}

/* ── Tags / kickers ─────────────────────────────────────────── */
.kicker, .sec-tag, .contact-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.kicker, .sec-tag {
  background: rgba(157,187,229,.15);
  border: 1px solid rgba(157,187,229,.35);
  color: #2d5080;
}
.sec-tag--gold {
  background: rgba(239,206,140,.18);
  border: 1px solid rgba(239,206,140,.42);
  color: var(--gold3);
}
.sec-tag--warm {
  background: rgba(239,206,140,.12);
  border: 1px solid rgba(212,168,75,.3);
  color: #8a6020;
}
.contact-kicker {
  background: rgba(239,206,140,.2);
  border-color: rgba(239,206,140,.45);
  color: #7a5a17;
  margin: auto;
}

/* ── Reveal ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .09s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .27s; }
.d4 { transition-delay: .36s; }

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 1 — HERO (blanco con gradientes cálidos)
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: auto;
  padding: 130px 0 80px;
  background:
    radial-gradient(ellipse 55% 50% at 90% 8%,  rgba(239,206,140,.3), transparent),
    radial-gradient(ellipse 40% 45% at 8%  25%,  rgba(157,187,229,.28), transparent),
    radial-gradient(ellipse 35% 40% at 50% 90%,  rgba(157,187,229,.12), transparent),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  overflow: hidden;
}

/* Blobs flotantes */
.hero-blob, .orb { position: absolute; border-radius: 999px; pointer-events: none; }
.blob-a {
  width: 460px; height: 460px;
  background: rgba(157,187,229,.18);
  filter: blur(75px);
  left: -140px; top: 120px;
  animation: blobFloat 20s ease-in-out infinite alternate;
}
.blob-b {
  width: 400px; height: 400px;
  background: rgba(239,206,140,.2);
  filter: blur(65px);
  right: -100px; top: 80px;
  animation: blobFloat 24s ease-in-out infinite alternate-reverse;
}
.blob-c {
  width: 240px; height: 240px;
  background: rgba(111,152,211,.12);
  filter: blur(55px);
  left: 42%; bottom: -40px;
  animation: blobFloat 17s ease-in-out infinite alternate;
}
.orb-one {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 56px rgba(157,187,229,.38);
  left: 6%; bottom: 22%;
  filter: blur(1px);
  animation: orbPulse 9s ease-in-out infinite;
}
.orb-two {
  width: 56px; height: 56px;
  background: rgba(239,206,140,.55);
  right: 9%; bottom: 16%;
  filter: blur(1px);
  animation: orbPulse 12s ease-in-out infinite reverse;
}
.orb-three {
  width: 40px; height: 40px;
  background: rgba(157,187,229,.5);
  right: 28%; top: 20%;
  filter: blur(1px);
  animation: orbPulse 10s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(24px,18px) scale(1.06); }
}
@keyframes orbPulse {
  0%,100% { transform: translateY(0) scale(1); opacity: .75; }
  50%      { transform: translateY(-16px) scale(1.06); opacity: 1; }
}

/* Grid hero */
.hero-grid-wide {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 5vw, 80px);
  align-items: center;
  width: min(92vw, 1500px);
  margin-inline: auto;
}
.hero-copy { min-width: 0; }

.hero h1 {
  font-size: clamp(50px, 5.4vw, 96px);
  line-height: .91;
  letter-spacing: -.065em;
  margin: 22px 0 20px;
  color: #0b1422;
}
.hero h1 em, .sec-h2 em, .contact-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold3), var(--gold), #f5e0aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead, .sec-text {
  font-size: 18px;
  line-height: 1.76;
  color: #4a5d72;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.08);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 800;
  color: #475569;
  box-shadow: 0 4px 14px rgba(15,23,42,.06);
  transition: box-shadow .25s, transform .25s;
}
.trust-chip:hover { box-shadow: 0 8px 26px rgba(15,23,42,.1); transform: translateY(-2px); }

/* Foto hero */
.hero-side { width: 100%; max-width: 700px; justify-self: end; min-width: 0; }
.hero-photo-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,23,42,.16), 0 0 0 1px rgba(255,255,255,.75);
  background: #dce8f6;
  transform: perspective(1000px) rotateY(-2deg) rotateX(.8deg);
  transition: transform .65s var(--ease);
}
.hero-photo-card:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.005); }
/* Reflejo luminoso */
.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, rgba(255,255,255,.38) 0%, transparent 38%, rgba(239,206,140,.2) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Borde gradiente animado */
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(239,206,140,.9), rgba(157,187,229,.6), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
}
.hero-photo-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.metric {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 4;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 14px 20px;
  box-shadow: 0 18px 48px rgba(15,23,42,.18);
  border: 1px solid rgba(255,255,255,.95);
}
.metric strong { display: block; font-size: 38px; line-height: 1; color: #0b1422; }
.metric span { font-size: 13px; color: #475569; font-weight: 800; }

/* Formulario hero */
.hero-whatsapp-form, .contact-whatsapp-form {
  margin-top: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(157,187,229,.28);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(15,23,42,.09);
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 700px;
}
.mini-form-head { display: grid; gap: 3px; margin-bottom: 14px; }
.mini-form-head span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue2);
  font-weight: 900;
}
.mini-form-head strong { font-size: 19px; color: var(--dark); }
.mini-form-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(100,116,139,.2);
  border-radius: 16px;
  padding: 13px 15px;
  font: inherit;
  font-size: 15px;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
textarea { resize: vertical; margin-top: 11px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue2);
  box-shadow: 0 0 0 4px rgba(157,187,229,.18);
}
.hero-whatsapp-form select { margin-top: 11px; }
.wa-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 13px 0;
  font-size: 13px;
  color: #64748b;
}
.wa-privacy input { width: auto; margin-top: 3px; }
.hero-whatsapp-form button, .contact-whatsapp-form button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 15px 18px;
  background: linear-gradient(135deg, #f7e4b2, var(--gold), var(--gold2));
  font-weight: 900;
  font-size: 15px;
  color: #15202f;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(239,206,140,.38);
  transition: transform .25s, box-shadow .25s, filter .25s;
}
.hero-whatsapp-form button:hover, .contact-whatsapp-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(239,206,140,.48);
  filter: brightness(1.04);
}
small, .form-priv {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #94a3b8;
  font-size: 12px;
}

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 2 — PROBLEMA LOCAL (soft cálido)
   ───────────────────────────────────────────────────────────── */
.problem-section {
  background: var(--warm);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 95% 50%, rgba(239,206,140,.14), transparent);
  pointer-events: none;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: stretch;
  width: min(92vw, 1440px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.sec-h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin: 16px 0;
  color: #111827;
}
.problem-box {
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.problem-list { display: grid; gap: 12px; margin: 24px 0; }
.problem-list div {
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid rgba(15,23,42,.05);
  border-left: 3px solid var(--gold2);
  color: #475569;
  transition: background .25s, border-color .25s, transform .25s;
}
.problem-list div:hover {
  background: rgba(239,206,140,.08);
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.problem-list strong { color: #1f2937; }
.problem-photo { border-radius: 24px; overflow: hidden; margin-top: 20px; box-shadow: var(--shadow); }
.problem-photo img { width: 100%; height: 240px; object-fit: cover; }

/* Local card */
.local-card {
  background: linear-gradient(145deg, var(--dark), var(--dark2));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 30px 80px rgba(11,20,34,.35);
  position: relative;
  overflow: hidden;
}
.local-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(239,206,140,.12), transparent);
  pointer-events: none;
}
.local-card .sec-h2, .local-card p { color: #fff; position: relative; z-index: 1; }
.local-card p { color: rgba(255,255,255,.72); line-height: 1.7; margin: 0; }
.local-card .sec-tag {
  background: rgba(239,206,140,.15);
  border-color: rgba(239,206,140,.35);
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.local-card .btn { position: relative; z-index: 1; width: max-content; }

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 3 — LEISTUNGEN (soft2 frío)
   ───────────────────────────────────────────────────────────── */
.leistungen-section {
  background: linear-gradient(180deg, var(--soft2) 0%, #fff 100%);
  padding: 100px 0;
}
.sec-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 52px;
}
.sec-head .sec-tag { margin: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 32px;
  padding: 16px 16px 26px;
  box-shadow: 0 16px 46px rgba(15,23,42,.07);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  isolation: isolate;
  min-height: 460px;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 32px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold), var(--blue2), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover { transform: translateY(-12px) scale(1.01); box-shadow: 0 40px 90px rgba(15,23,42,.15); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

/* Lens */
.lens-spotlight {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.5), rgba(239,206,140,.18), transparent 66%);
  top: 20px; left: -80px;
  z-index: 3;
  mix-blend-mode: screen;
  opacity: .28;
  transition: transform .5s var(--ease), opacity .5s;
  pointer-events: none;
}
.service-card:hover .lens-spotlight { transform: translate(185px, 28px); opacity: .9; }

/* Shimmer */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  background-size: 200%;
  background-position: -100%;
  transition: background-position .55s ease;
  z-index: 4;
  pointer-events: none;
}
.service-card:hover::after { background-position: 200%; }

.service-media {
  height: 230px;
  border-radius: 22px;
  overflow: hidden;
  background: #dbeafe;
  position: relative;
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s;
}
.service-card:hover .service-media img { transform: scale(1.1); filter: saturate(1.1) contrast(1.04); }
.service-icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  margin: -25px 0 12px 18px;
  position: relative;
  z-index: 5;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, var(--gold));
  box-shadow: 0 10px 30px rgba(15,23,42,.14);
  font-size: 22px;
}
.service-card h3 { font-size: 21px; margin: 8px 8px 6px; color: #111827; }
.service-card p  { margin: 0 8px; color: #64748b; line-height: 1.65; font-size: 15px; }

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 4 — HUMIX SYSTEM (blanco con acento dorado)
   ───────────────────────────────────────────────────────────── */
.system-section {
  background: linear-gradient(160deg, #fff 0%, var(--warm) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 50% at 5% 50%, rgba(239,206,140,.16), transparent);
  pointer-events: none;
}
.product-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
  width: min(92vw, 1440px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.product-grid--reverse { grid-template-columns: 1.1fr .9fr; }

.product-image-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255,255,255,.8);
}
.product-image-card img { width: 100%; height: 360px; object-fit: cover; }
/* Overlay sutil dorado en imagen */
.product-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(239,206,140,.12), transparent 50%);
  pointer-events: none;
}
.product-image-label { display: none !important; }

.product-steps { display: grid; gap: 14px; margin-top: 18px; }
.data-block {
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 8px 26px rgba(15,23,42,.07);
  border-left: 3px solid var(--gold2);
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.data-block:hover {
  box-shadow: 0 16px 44px rgba(15,23,42,.1);
  transform: translateX(4px);
  border-left-color: var(--gold);
}
.data-block h3 { margin: 0 0 6px; color: var(--gold3); font-size: 14px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.data-block p  { margin: 0; color: #64748b; line-height: 1.65; font-size: 15px; }

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 5 — ECOPAIR (soft frío)
   ───────────────────────────────────────────────────────────── */
.ecopair-section {
  background: linear-gradient(170deg, var(--soft2) 0%, #f8fbff 60%, #fff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ecopair-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 45% at 95% 50%, rgba(157,187,229,.16), transparent);
  pointer-events: none;
}
.ecopair-section .product-grid { position: relative; z-index: 2; }

.ecopair-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.ecopair-benefits > div {
  background: #fff;
  border: 1px solid rgba(157,187,229,.2);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 8px 28px rgba(15,23,42,.06);
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.ecopair-benefits > div:hover {
  box-shadow: 0 16px 44px rgba(15,23,42,.1);
  transform: translateY(-3px);
  border-color: rgba(157,187,229,.45);
}
.ecopair-benefits > div span {
  display: block;
  color: var(--blue2);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ecopair-benefits > div strong { color: #111827; font-size: 15px; }

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 6 — VIDEO (soft con imagen oscura prominente)
   ───────────────────────────────────────────────────────────── */
.video-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--soft) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 50% at 100% 50%, rgba(157,187,229,.14), transparent);
  pointer-events: none;
}
.video-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: center;
  width: min(92vw, 1440px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.video-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/9;
  min-height: 280px;
  background: #000;
  box-shadow: 0 36px 100px rgba(15,23,42,.25), 0 0 0 1px rgba(15,23,42,.1);
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 7 — GEBIETE (blanco con chips premium)
   ───────────────────────────────────────────────────────────── */
.gebiete-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
}
.gebiete-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 40% at 10% 50%, rgba(239,206,140,.1), transparent),
    radial-gradient(ellipse 30% 40% at 90% 50%, rgba(157,187,229,.1), transparent);
  pointer-events: none;
}
.zones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.zones span {
  padding: 13px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 6px 20px rgba(15,23,42,.05);
  font-weight: 850;
  font-size: 14px;
  transition: all .3s var(--ease);
  cursor: default;
}
.zones span:hover {
  background: linear-gradient(135deg, rgba(239,206,140,.14), rgba(157,187,229,.08));
  border-color: rgba(239,206,140,.55);
  box-shadow: 0 12px 34px rgba(239,206,140,.2);
  transform: translateY(-3px) scale(1.02);
}

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 8 — ABLAUF (soft2 con cards blancas)
   ───────────────────────────────────────────────────────────── */
.steps-section {
  background: var(--soft2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.steps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(157,187,229,.14), transparent);
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
/* Línea conectora light */
.steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold2), var(--blue2), var(--gold2));
  opacity: .25;
  z-index: 0;
}
.step-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 14px 40px rgba(15,23,42,.07);
  position: relative;
  z-index: 1;
  transition: box-shadow .35s, transform .35s var(--ease), border-color .35s;
}
.step-card:hover {
  box-shadow: 0 28px 70px rgba(15,23,42,.12);
  transform: translateY(-8px);
  border-color: rgba(239,206,140,.4);
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue3), var(--gold2));
  font-weight: 950;
  font-size: 18px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(61,111,170,.3);
}
.step-card h3 { margin: 0 0 8px; color: #111827; font-size: 17px; }
.step-card p  { margin: 0; color: #64748b; line-height: 1.65; font-size: 15px; }

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 9 — FAQ (blanco)
   ───────────────────────────────────────────────────────────── */
.faq-section {
  background: #fff;
  padding: 100px 0;
}
.faq-list { max-width: 900px; margin: auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(15,23,42,.06);
  transition: box-shadow .25s, border-color .25s;
}
.faq-item:hover { box-shadow: 0 18px 48px rgba(15,23,42,.1); }
.faq-item.open { border-color: rgba(239,206,140,.4); }
.faq-q {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 20px 24px;
  text-align: left;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: #111827;
  transition: background .2s;
}
.faq-q:hover { background: #fafcff; }
.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(157,187,229,.14);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--blue2);
  flex-shrink: 0;
  transition: background .25s, transform .3s, color .25s;
}
.faq-item.open .faq-toggle {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: #64748b;
  line-height: 1.75;
  font-size: 15px;
}
.faq-item.open .faq-a { display: block; }

/* ─────────────────────────────────────────────────────────────
   SECCIÓN 10 — KONTAKT (soft cálido claro)
   ───────────────────────────────────────────────────────────── */
.contact-section {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 10%, rgba(239,206,140,.2), transparent),
    radial-gradient(ellipse 40% 40% at 80% 90%, rgba(157,187,229,.16), transparent),
    linear-gradient(180deg, #fff, var(--soft));
  position: relative;
  overflow: hidden;
}
.contact-wrap {
  width: min(92vw, 1100px);
  margin: auto;
  position: relative;
  z-index: 2;
}
.contact-head { text-align: center; margin-bottom: 30px; }
.contact-title {
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin: 18px 0;
  color: #111827;
}
.contact-subtitle { font-size: 18px; line-height: 1.7; color: #64748b; }

.contact-whatsapp-form {
  max-width: 100%;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(157,187,229,.25);
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow2);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 70px 0 28px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 36px;
}
.footer h3 { color: rgba(255,255,255,.9); margin-top: 0; font-size: 15px; }
.footer a { color: #94a3b8; transition: color .2s; }
.footer a:hover { color: var(--gold); }
.footer-logo { height: 52px; object-fit: contain; margin-bottom: 16px; }
.footer p { font-size: 15px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────
   FLOAT WHATSAPP
   ───────────────────────────────────────────────────────────── */
.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1000;
  width: 64px; height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f7e4b2, var(--gold), var(--gold2));
  color: #111827;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 14px 42px rgba(239,206,140,.42);
  animation: waPulse 3s ease-in-out infinite;
  transition: transform .3s, box-shadow .3s;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 56px rgba(239,206,140,.58);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 14px 42px rgba(239,206,140,.42), 0 0 0 0 rgba(239,206,140,.3); }
  50%      { box-shadow: 0 14px 42px rgba(239,206,140,.42), 0 0 0 14px rgba(239,206,140,0); }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .hero-grid-wide, .split, .product-grid, .product-grid--reverse, .video-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid-wide { gap: 44px; width: min(92vw, 860px); }
  .hero-side { max-width: 100%; justify-self: stretch; }
  .hero-photo-card { transform: none; }
  .hero-photo-card img { height: 420px; min-height: 420px; }
  .hero-whatsapp-form { max-width: 100%; }
  .product-image-card img { height: 320px; }
}

@media (max-width: 980px) {
  .menu {
    position: absolute;
    left: 18px; right: 18px; top: 84px;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15,23,42,.12);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu.open { display: flex; }
  .mobile-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hx-cursor-glow { display: none; }
}

@media (max-width: 767px) {
  .services-grid, .steps { grid-template-columns: 1fr !important; }
  .mini-form-grid, .contact-grid { grid-template-columns: 1fr; }
  .ecopair-benefits { grid-template-columns: 1fr; }

  .hero { padding: 104px 0 54px; }
  .hero-grid-wide { width: calc(100% - 24px); gap: 34px; }
  .hero h1 { font-size: clamp(42px, 13vw, 60px); line-height: .94; letter-spacing: -.055em; margin: 18px 0 16px; }
  .kicker { font-size: 11px; line-height: 1.3; white-space: normal; width: fit-content; max-width: 100%; }
  .lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .trust-row { gap: 8px; }
  .trust-chip { font-size: 12px; padding: 8px 11px; }
  .hero-photo-card img { height: 310px; min-height: 310px; }
  .metric { left: 14px; bottom: 14px; padding: 10px 14px; border-radius: 18px; }
  .metric strong { font-size: 30px; }
  .hero-whatsapp-form { padding: 16px; border-radius: 24px; }
  .mini-form-head strong { font-size: 17px; }
  input, select, textarea { font-size: 16px; padding: 12px 13px; }

  .problem-section, .leistungen-section, .system-section, .ecopair-section,
  .video-section, .gebiete-section, .steps-section, .faq-section, .contact-section {
    padding: 70px 0;
  }
  .problem-box, .local-card { padding: 24px; }
  .contact-whatsapp-form { padding: 24px; }
  .nav { height: 66px; padding-left: 16px; }
  .nav .btn { display: none; }
  .sec-h2 { font-size: clamp(28px, 8vw, 40px); }
  .video-card { min-height: 210px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .hero h1 { font-size: clamp(38px, 13.5vw, 52px); }
  .hero-photo-card img { height: 270px; min-height: 270px; }
  .hero-whatsapp-form small { display: none; }
  .video-card { min-height: 180px; }
}
