/* =========================================================
   HUMIX VITORIA · style.css (basado en SAN TELMO)
   ========================================================= */

/* ---------- Variables ---------- */
:root{
  --hx-blue:#9dbbe5;
  --hx-red:#fa1f02;
  --hx-gold:#efce8c;
  --hx-ink:#0e0f12;

  --bg:#ffffff;
  --bg-2:#f6f7fb;
  --border: rgba(15, 23, 42, 0.10);

  --text:#0f172a;
  --muted: rgba(15, 23, 42, 0.70);

  --wa:#25D366;

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(15,23,42,.08);
  --shadow-md: 0 10px 30px rgba(15,23,42,.12);
  --shadow-lg: 0 18px 55px rgba(15,23,42,.16);

  --ease: cubic-bezier(.4,0,.2,1);

  --font: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Cormorant Garamond", serif;

  --container: 1180px;

  /* ✅ Imágenes VITORIA (rutas correctas desde /assets/style.css) */
  --hx-hero-img: url("../img/hero-vitoria.webp");
  --hx-problem-img: url("../img/hs221_equipo_humix.webp");
}

/* ---------- Reset ---------- */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color: inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; border:none; background:none; }
ul{ list-style:none; }

section{ scroll-margin-top: 90px; }

/* ---------- Utilidades ---------- */
.hx-container{
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.hx-muted{ color: var(--muted); }
.hx-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.78rem;
  color: rgba(15,23,42,.62);
}
.hx-tag::before{
  content:"";
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--hx-red), var(--hx-gold));
  box-shadow: 0 0 0 4px rgba(157,187,229,.18);
}

/* ---------- Header / Nav ---------- */
.hx-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 9999;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.hx-nav{ height: 76px; display:flex; align-items:center; }
.hx-nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.hx-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 170px;
}
.hx-brand-logo{
  height: 40px;
  width:auto;
}
.hx-brand-city{
  font-weight: 900;
  font-size: .95rem;
  color: var(--hx-ink);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(157,187,229,.22);
  border: 1px solid rgba(157,187,229,.35);
}

.hx-menu{
  display:flex;
  align-items:center;
  gap: 18px;
}
.hx-menu a{
  position:relative;
  font-weight: 750;
  font-size: .98rem;
  padding: 10px 6px;
  color: rgba(15,23,42,.90);
}
.hx-menu a:hover{ color: var(--hx-ink); }
.hx-menu a::after{
  content:"";
  position:absolute;
  left:6px;
  bottom:6px;
  width:0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--hx-red), var(--hx-gold));
  transition: width .25s var(--ease);
}
.hx-menu a:hover::after{ width: calc(100% - 12px); }

.hx-nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.28);
  color: #0b3b1f;
  white-space: nowrap;
}
.hx-nav-cta:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Burger */
.hx-burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  align-items:center;
  justify-content:center;
  gap: 6px;
  flex-direction: column;
}
.hx-burger span{
  width: 18px;
  height: 2px;
  background: rgba(15,23,42,.9);
  border-radius: 10px;
  transition: .25s var(--ease);
}

/* ---------- Botones ---------- */
.hx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: .22s var(--ease);
  border: 1px solid transparent;
}
.hx-btn:hover{ transform: translateY(-1px); }
.hx-btn:active{ transform: translateY(0); }

.hx-btn-primary{
  color: var(--hx-ink);
  background: linear-gradient(135deg, rgba(157,187,229,1), rgba(239,206,140,.85));
  box-shadow: var(--shadow-md);
}
.hx-btn-primary:hover{ box-shadow: var(--shadow-lg); }

.hx-btn-secondary{
  color: #0b3b1f;
  background: rgba(37,211,102,.12);
  border-color: rgba(37,211,102,.28);
}
.hx-btn-secondary:hover{ box-shadow: var(--shadow-sm); }

.hx-btn-ghost{
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.hx-btn-ghost:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.34);
}

/* ---------- Cards ---------- */
.hx-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.hx-card h3{
  font-family: var(--font);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hx-card p{ color: var(--muted); }
.hx-card ul{ margin-top: 12px; display:flex; flex-direction:column; gap: 8px; }
.hx-card ul li{
  padding-left: 18px;
  position: relative;
  color: rgba(15,23,42,.78);
}
.hx-card ul li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--hx-red);
  font-weight: 900;
}

.hx-card-soft{
  background: radial-gradient(900px 560px at 10% -20%, rgba(157,187,229,.20), transparent 60%),
              radial-gradient(700px 520px at 95% 20%, rgba(239,206,140,.14), transparent 55%),
              #fff;
}

.hx-card-border{
  border: 1px solid rgba(157,187,229,.35);
}

/* ---------- Secciones ---------- */
.hx-section{ padding: 86px 0; }
.hx-alt{
  background: radial-gradient(900px 560px at 10% -20%, rgba(157,187,229,.16), transparent 60%),
              radial-gradient(700px 520px at 95% 20%, rgba(239,206,140,.10), transparent 55%),
              var(--bg-2);
}
.hx-head{
  text-align:left;
  margin-bottom: 26px;
  max-width: 880px;
}
.hx-head h2{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.hx-head p{ margin-top: 10px; font-size: 1.06rem; }

.hx-grid-2{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}
.hx-cards-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ---------- HERO ---------- */
.hx-hero{
  position: relative;
  min-height: 92vh;
  padding-top: 76px;
  display:flex;
  align-items: stretch;
}
.hx-hero-bg{
  position:absolute;
  inset:0;
  z-index:-1;
  /* ✅ Ajuste para que NO se vea tenue */
  background:
    linear-gradient(180deg, rgba(14,15,18,.55) 0%, rgba(14,15,18,.18) 55%, rgba(255,255,255,.06) 100%),
    radial-gradient(1200px 700px at 20% -10%, rgba(157,187,229,.28), transparent 60%),
    radial-gradient(900px 520px at 88% 10%, rgba(239,206,140,.16), transparent 55%),
    var(--hx-hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hx-hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
  padding: 56px 0;
}

.hx-hero-content{ color:#fff; }
.hx-hero-badge{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--hx-ink);
  background: linear-gradient(135deg, rgba(157,187,229,.95), rgba(239,206,140,.75));
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}
.hx-hero-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.2vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hx-hero-title span{
  background: linear-gradient(90deg, var(--hx-gold), #fff);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.hx-hero-sub{
  color: rgba(255,255,255,.82);
  font-weight: 700;
  margin-bottom: 12px;
}
.hx-hero-kicker{
  font-weight: 850;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  margin-bottom: 14px;
}

.hx-hero-points{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}
.hx-point{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: .92rem;
}

.hx-hero-cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.hx-hero-trust{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: .95rem;
}

.hx-hero-card .hx-card{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,255,255,.18);
  background:
    radial-gradient(900px 560px at 10% -20%, rgba(157,187,229,.18), transparent 60%),
    radial-gradient(700px 520px at 95% 20%, rgba(239,206,140,.12), transparent 55%),
    rgba(255,255,255,.92);
}

/* ---------- Problem media ---------- */
.hx-media{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-height: 320px;
  background: #fff;
}
.hx-media-img{
  width:100%;
  height: 460px;
  background:
    radial-gradient(700px 420px at 20% 0%, rgba(157,187,229,.22), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02)),
    var(--hx-problem-img);
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
}

/* ---------- Copy / Bullets ---------- */
.hx-copy h2{
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 46px);
  margin: 10px 0 10px;
}
.hx-bullets{
  display:grid;
  gap: 10px;
  margin: 18px 0 18px;
}
.hx-bullet{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(157,187,229,.14);
  border: 1px solid rgba(157,187,229,.22);
  font-weight: 800;
}
.hx-inline-cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* =========================================================
   SERVICIOS · Cards con REVEAL de imagen (sin 3D flip)
   ========================================================= */

.hx-flipdeck{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.hx-flip{
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
  min-height: 330px;
}

.hx-flip__inner{
  position: relative;
  height: 100%;
  min-height: 330px;
}

.hx-flip__inner::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(120deg, rgba(14,15,18,.38), rgba(14,15,18,.12)),
    var(--hx-card-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.03);
  transition: opacity .35s var(--ease), transform .55s var(--ease);
  z-index: 0;
}

.hx-flip__front{
  position: relative;
  z-index: 1;
  padding: 22px;
  background: #fff;
  transition: background .35s var(--ease), color .35s var(--ease);
}

.hx-flip__front::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height: 4px;
  background: linear-gradient(90deg, var(--hx-blue), var(--hx-gold), var(--hx-red));
}

.hx-flip__front h3{
  font-weight: 950;
  letter-spacing:-0.02em;
  margin-bottom: 8px;
}
.hx-flip__front p{ color: rgba(15,23,42,.74); }
.hx-flip__front a{
  display:inline-flex;
  margin-top: 12px;
  font-weight: 900;
  color: rgba(15,23,42,.92);
}
.hx-flip__front a:hover{ color: var(--hx-red); }

.hx-mini{
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15,23,42,.55);
  margin: 12px 0 6px;
}

.hx-flip__hint{
  position:absolute;
  right: 14px;
  top: 14px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(15,23,42,.55);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(157,187,229,.18);
  border: 1px solid rgba(157,187,229,.28);
}

@media (hover:hover) and (pointer:fine){
  .hx-flip:hover .hx-flip__inner::before{
    opacity: 1;
    transform: scale(1.00);
  }
  .hx-flip:hover .hx-flip__front{
    background: rgba(255,255,255,.18);
    color: #fff;
  }
  .hx-flip:hover .hx-flip__front p,
  .hx-flip:hover .hx-mini{
    color: rgba(255,255,255,.86);
  }
  .hx-flip:hover .hx-flip__front a{
    color: #fff;
  }
}

.hx-flip.is-revealed .hx-flip__inner::before{
  opacity: 1;
  transform: scale(1.00);
}
.hx-flip.is-revealed .hx-flip__front{
  background: rgba(255,255,255,.18);
  color: #fff;
}
.hx-flip.is-revealed .hx-flip__front p,
.hx-flip.is-revealed .hx-mini{
  color: rgba(255,255,255,.86);
}
.hx-flip.is-revealed .hx-flip__front a{
  color: #fff;
}

.hx-flip__back{ display:none !important; }

@media (max-width: 980px){
  .hx-flipdeck{ grid-template-columns: 1fr; }
  .hx-flip{ min-height: 300px; }
  .hx-flip__inner{ min-height: 300px; }
  .hx-flip__hint{ display:none; }
}

/* ---------- Equipos ---------- */
.hx-eq{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition:.22s var(--ease);
}
.hx-eq:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hx-eq-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.hx-pill{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  color: rgba(15,23,42,.92);
  background: rgba(239,206,140,.36);
  border: 1px solid rgba(239,206,140,.55);
}
.hx-checklist{
  margin-top: 12px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.hx-checklist li{
  position:relative;
  padding-left: 18px;
  color: rgba(15,23,42,.74);
}
.hx-checklist li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color: var(--hx-red);
  font-weight: 950;
}

/* ---------- Diagnóstico ---------- */
.hx-diagnosis{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.hx-field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-top: 14px;
}
.hx-field label{ font-weight: 900; color: rgba(15,23,42,.88); }
.hx-field select,
.hx-field input,
.hx-field textarea{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 1rem;
  outline:none;
  background: #fff;
  transition: .18s var(--ease);
}
.hx-field select:focus,
.hx-field input:focus,
.hx-field textarea:focus{
  border-color: rgba(157,187,229,.65);
  box-shadow: 0 0 0 4px rgba(157,187,229,.18);
}

/* ===== Botón DIAGNÓSTICO IA ===== */
.hx-ai-cta{ margin-top: 12px; }

.hx-btn-ai{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(157,187,229,.30), transparent 60%),
    linear-gradient(135deg, rgba(15,23,42,.92), rgba(15,23,42,.78));
  color:#fff;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow:hidden;
  transition: .22s var(--ease);
}
.hx-btn-ai:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hx-ai-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hx-red), var(--hx-gold));
  box-shadow: 0 0 0 6px rgba(157,187,229,.18);
  flex: 0 0 auto;
}

.hx-ai-arrow{
  opacity:.9;
  font-weight: 950;
  transform: translateX(0);
  transition: transform .22s var(--ease);
}
.hx-btn-ai:hover .hx-ai-arrow{ transform: translateX(4px); }

.hx-ai-note{
  margin-top: 8px;
  font-size: .95rem;
  color: var(--muted);
}

/* ---------- FAQ (details/summary) ---------- */
.hx-faq{
  display:grid;
  gap: 12px;
  max-width: 920px;
}
.hx-faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:#fff;
  overflow:hidden;
  box-shadow: var(--shadow-sm);
}
.hx-faq-item summary{
  cursor:pointer;
  padding: 16px 18px;
  font-weight: 950;
  list-style:none;
  position: relative;
}
.hx-faq-item summary::-webkit-details-marker{ display:none; }
.hx-faq-item summary::after{
  content:"⌄";
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: rgba(15,23,42,.75);
  transition: .2s var(--ease);
}
.hx-faq-item[open] summary::after{
  transform: translateY(-50%) rotate(180deg);
}
.hx-faq-body{
  padding: 0 18px 18px;
  color: rgba(15,23,42,.75);
}
.hx-faq-body p{ margin-top: 10px; }

/* ---------- Contacto ---------- */
.hx-contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.hx-legal{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin-top: 10px;
  color: rgba(15,23,42,.72);
  font-size: .95rem;
}
.hx-legal input{ margin-top: 3px; }
.hx-legal a{ font-weight: 900; color: rgba(15,23,42,.90); }
.hx-legal a:hover{ color: var(--hx-red); }

/* ---------- Footer ---------- */
.hx-footer{
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(157,187,229,.18), transparent 60%),
    radial-gradient(700px 500px at 90% 20%, rgba(239,206,140,.14), transparent 55%),
    #0b0f16;
  color: rgba(255,255,255,.88);
  padding: 56px 0 22px;
}
.hx-footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 22px;
}
.hx-footer-brand-row{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}
.hx-footer-logo{ height: 44px; width:auto; }
.hx-footer-name{
  font-weight: 950;
  letter-spacing: .02em;
  color: #fff;
}
.hx-footer-city{ color: rgba(255,255,255,.68); font-weight: 800; }
.hx-footer-desc{
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 560px;
}

.hx-footer-col h4{
  color: #fff;
  font-weight: 950;
  margin-bottom: 12px;
}
.hx-footer-col a{
  display:block;
  padding: 7px 0;
  color: rgba(255,255,255,.72);
}
.hx-footer-col a:hover{ color:#fff; }

.hx-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 16px;
  color: rgba(255,255,255,.65);
  font-weight: 700;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- WhatsApp flotante ---------- */
.hx-wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--wa), #20ba5a);
  color: #fff;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(37, 211, 102, .35);
  z-index: 9999;
  transition: .22s var(--ease);
}
.hx-wa-float:hover{
  transform: scale(1.06);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(37, 211, 102, .55);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .hx-cards-2{ grid-template-columns: 1fr; }
  .hx-grid-2{ grid-template-columns: 1fr; }
  .hx-hero-inner{ grid-template-columns: 1fr; }
  .hx-diagnosis{ grid-template-columns: 1fr; }
  .hx-contact{ grid-template-columns: 1fr; }
  .hx-footer-top{ grid-template-columns: 1fr; }
  .hx-nav-cta{ display:none; }
}

@media (max-width: 880px){
  .hx-burger{ display:flex; }
  .hx-menu{
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display:none;
    flex-direction: column;
    padding: 10px 0 14px;
    gap: 0;
  }
  .hx-menu.is-open{ display:flex; }
  .hx-menu a{
    width: 100%;
    padding: 14px 18px;
  }
  .hx-menu a::after{ display:none; }
}

@media (max-width: 520px){
  .hx-hero{ min-height: auto; }
  .hx-hero-cta{ flex-direction: column; }
  .hx-btn{ width: 100%; }
  .hx-wa-float{ width: 54px; height: 54px; }
}

.hx-header.is-scrolled{
  box-shadow: 0 10px 30px rgba(15,23,42,.12);
}

.hx-menu a.is-active{
  color: var(--hx-ink);
}
.hx-menu a.is-active::after{
  width: calc(100% - 12px);
}
