:root{
  --hx-blue:#9dbbe5;
  --hx-red:#fa1f02;
  --hx-gold:#efce8c;
  --hx-ink:#0e0f12;
  --bg:#ffffff;
  --bg-2:#f7f9fc;
  --border:rgba(15,23,42,.10);
  --text:#0f172a;
  --muted:rgba(15,23,42,.70);
  --white:#fff;
  --wa:#25D366;
  --radius-sm:14px;
  --radius-md:18px;
  --radius-lg:28px;
  --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;
}

*{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.58;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font-family:inherit;border:none;background:none;cursor:pointer}
ul{list-style:none}
section{scroll-margin-top:90px}

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

.hx-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  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);
}

.hx-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:9999;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .25s var(--ease);
}
.hx-header.is-scrolled{box-shadow:0 10px 30px rgba(15,23,42,.10)}

.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::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,
.hx-menu a.is-active::after{width:calc(100% - 12px)}

.hx-top-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.hx-lang-switch{
  display:flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
}
.hx-lang-btn{
  min-width:42px;
  padding:8px 10px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  color:rgba(15,23,42,.64);
}
.hx-lang-btn.active{
  background:linear-gradient(135deg, rgba(157,187,229,.95), rgba(239,206,140,.75));
  color:var(--hx-ink);
}

.hx-nav-cta,
.hx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:900;
  transition:.22s var(--ease);
  border:1px solid transparent;
}
.hx-nav-cta{
  background:rgba(37,211,102,.12);
  border-color:rgba(37,211,102,.28);
  color:#0b3b1f;
  white-space:nowrap;
}
.hx-btn:hover,.hx-nav-cta:hover{transform:translateY(-1px)}
.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-secondary{
  color:#0b3b1f;
  background:rgba(37,211,102,.12);
  border-color:rgba(37,211,102,.28);
}
.hx-btn-ghost{
  color:#fff;
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.22);
}
.hx-btn-outline{
  background:#fff;
  border-color:var(--border);
  color:var(--text);
}

.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;
}

.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:900px;
}
.hx-head h2{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(34px,4.2vw,54px);
  letter-spacing:-.02em;
  margin-top:10px;
}
.hx-muted{color:var(--muted)}

.hx-grid-2{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:center;
}
.hx-cards-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.hx-cards-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.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;
  background:
    linear-gradient(180deg, rgba(14,15,18,.68) 0%, rgba(14,15,18,.30) 58%, rgba(255,255,255,.06) 100%),
    radial-gradient(1200px 700px at 20% -10%, rgba(157,187,229,.30), transparent 60%),
    radial-gradient(900px 520px at 88% 10%, rgba(239,206,140,.18), transparent 55%),
    #0f172a;
}
.hx-hero-inner{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  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:-.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,.hx-hero-kicker{
  color:rgba(255,255,255,.88);
  font-weight:700;
  margin-bottom:12px;
}
.hx-hero-points,.hx-hero-trust,.hx-hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hx-hero-points{margin:14px 0 18px}
.hx-hero-trust{margin-top:18px;color:rgba(255,255,255,.78)}
.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-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:22px;
  box-shadow:var(--shadow-sm);
}
.hx-card h3{
  font-weight:950;
  letter-spacing:-.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)}

.hx-hero-visual{
  background:none;
  border:none;
  box-shadow:none;
  padding:0;
}
.hx-hero-slider{
  position:relative;
  min-height:590px;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(15,23,42,.24);
  border:1px solid rgba(255,255,255,.18);
}
.hx-hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.03);
}
.hx-hero-slide-1{animation:hxHeroFade1 12s infinite}
.hx-hero-slide-2{animation:hxHeroFade2 12s infinite}

@keyframes hxHeroFade1{
  0%{opacity:1;transform:scale(1.03)}
  45%{opacity:1}
  50%{opacity:0}
  100%{opacity:0;transform:scale(1.08)}
}
@keyframes hxHeroFade2{
  0%{opacity:0;transform:scale(1.03)}
  45%{opacity:0}
  50%{opacity:1}
  95%{opacity:1}
  100%{opacity:0;transform:scale(1.08)}
}

.hx-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(14,15,18,.10) 0%, rgba(14,15,18,.28) 100%),
    linear-gradient(90deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 30%),
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 28%);
}

.hx-hero-mini-card{
  position:absolute;
  top:22px;
  right:22px;
  left:auto;
  bottom:auto;
  z-index:2;
  width:240px;
  max-width:calc(100% - 44px);
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.42);
  border-radius:20px;
  padding:16px;
  box-shadow:0 12px 32px rgba(15,23,42,.14);
}

.hx-mini-badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(157,187,229,.18);
  border:1px solid rgba(157,187,229,.28);
  font-size:.72rem;
  font-weight:900;
  margin-bottom:10px;
}

.hx-hero-mini-card h3{
  font-size:1rem;
  line-height:1.2;
  margin-bottom:12px;
}

.hx-hero-mini-card .hx-btn{
  width:auto;
  min-width:0;
  padding:10px 15px;
  font-size:.88rem;
}

.hx-media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  background:#fff;
}
.hx-media-real{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
}

.hx-copy h2{
  font-family:var(--font-display);
  font-size:clamp(30px,3.8vw,46px);
  margin:10px 0;
}
.hx-bullets{
  display:grid;
  gap:10px;
  margin:18px 0;
}
.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}

.hx-svc,.hx-eq{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
  transition:.22s var(--ease);
}
.hx-svc:hover,.hx-eq:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}

.hx-svc-media,
.hx-eq-media{
  overflow:hidden;
  padding:0;
}

.hx-svc-img{
  width:100%;
  height:220px;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.hx-svc-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s var(--ease);
}
.hx-svc-media:hover .hx-svc-img img{transform:scale(1.06)}
.hx-svc-body{padding:22px}

.hx-eq-img{
  width:100%;
  height:280px;
  overflow:hidden;
  border-bottom:1px solid var(--border);
  background:#fff;
}
.hx-eq-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  padding:0;
  transition:transform .35s var(--ease);
}
.hx-eq-media:hover .hx-eq-img img{transform:scale(1.04)}
.hx-eq-body{padding:22px}

.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-eq-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}
.hx-svc h3,.hx-eq h3{
  font-weight:950;
  letter-spacing:-.02em;
  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;
}

.hx-diagnosis,.hx-contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.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;
  font-size:1rem;
  outline:none;
  background:#fff;
}
.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);
}
.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-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);
}
.hx-faq-body{
  padding:0 18px 18px;
  color:rgba(15,23,42,.75);
}
.hx-faq-body p{margin-top:10px}

.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;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}
.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-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:16px;
  color:rgba(255,255,255,.65);
  font-weight:700;
}

.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;
}

@media (max-width:1080px){
  .hx-cards-3,
  .hx-cards-2,
  .hx-grid-2,
  .hx-hero-inner,
  .hx-diagnosis,
  .hx-contact,
  .hx-footer-top{
    grid-template-columns:1fr;
  }

  .hx-hero-inner{
    gap:24px;
  }

  .hx-hero-slider{
    min-height:480px;
  }

  .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;
  }
}

@media (max-width:640px){
  .hx-top-actions{gap:6px}
  .hx-lang-switch{padding:3px}
  .hx-lang-btn{min-width:38px;padding:7px 8px}

  .hx-hero-slider{
    min-height:400px;
    border-radius:24px;
  }

  .hx-hero-mini-card{
    top:auto;
    right:14px;
    left:14px;
    bottom:14px;
    width:auto;
    max-width:none;
    background:rgba(255,255,255,.88);
  }
}

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