@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root{
  --hsn-primary:#0f5bd8;
  --hsn-primary-strong:#0a47ac;
  --hsn-secondary:#0b1b3a;
  --hsn-accent:#14c2a3;
  --hsn-surface:#ffffff;
  --hsn-surface-soft:#eef4fb;
  --hsn-bg:#f4f7fb;
  --hsn-border:rgba(15,23,40,.09);
  --hsn-text:#0f1728;
  --hsn-muted:#5b667d;
  --hsn-white:#ffffff;
  --hsn-shadow:0 30px 70px rgba(9,24,51,.10);
  --hsn-radius-xl:34px;
  --hsn-radius-lg:24px;
  --hsn-heading:'Sora',system-ui,sans-serif;
  --hsn-body:'Manrope',system-ui,sans-serif;
}

body{
  background:
    radial-gradient(circle at top right, rgba(20,194,163,.10), transparent 22%),
    radial-gradient(circle at left top, rgba(15,91,216,.10), transparent 28%),
    var(--hsn-bg);
  color:var(--hsn-text);
  font-family:var(--hsn-body);
}

.hsn-topbar{
  background:linear-gradient(90deg,#071224,#123a84 58%,#14c2a3);
  color:#eaf1fb;
  font-size:.82rem;
  padding:.45rem 0;
}

.hsn-topbar .container{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
}

.hsn-navbar{
  position:sticky;
  top:0;
  z-index:90;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(15,23,40,.06);
}

.hsn-navbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
}

.hsn-logo{
  display:flex;
  align-items:center;
  gap:.9rem;
  color:var(--hsn-text);
  text-decoration:none;
}

.hsn-logo img{
  height:52px;
  width:auto;
}

.hsn-logo__name{
  font-family:var(--hsn-heading);
  font-size:1.08rem;
  font-weight:700;
  line-height:1.1;
}

.hsn-nav{
  display:flex;
  align-items:center;
  gap:1.35rem;
}

.hsn-nav a{
  color:var(--hsn-text);
  text-decoration:none;
  font-size:.94rem;
  font-weight:700;
  position:relative;
}

.hsn-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-.35rem;
  width:100%;
  height:2px;
  transform:scaleX(0);
  transform-origin:left;
  background:var(--hsn-primary);
  transition:transform .2s ease;
}

.hsn-nav a:hover::after,
.hsn-nav a.active::after{
  transform:scaleX(1);
}

.hsn-header-actions{
  display:flex;
  align-items:center;
  gap:.75rem;
}

.hsn-btn,
.hsn-btn:hover{
  text-decoration:none;
}

.hsn-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  border-radius:999px;
  padding:.92rem 1.35rem;
  font-weight:800;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.hsn-btn:hover{
  transform:translateY(-1px);
}

.hsn-btn-primary{
  background:linear-gradient(135deg,var(--hsn-primary),#1b7cf2);
  color:#fff;
  box-shadow:0 14px 32px rgba(15,91,216,.25);
}

.hsn-btn-outline{
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.08);
  color:#fff;
}

.hsn-btn-light{
  background:#fff;
  color:var(--hsn-secondary);
  box-shadow:0 18px 36px rgba(7,18,36,.15);
}

.hsn-lang{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  border:1px solid var(--hsn-border);
  border-radius:999px;
  background:#fff;
  color:var(--hsn-secondary);
  padding:.8rem 1rem;
  font-size:.88rem;
  font-weight:800;
}

.hsn-menu-toggle{
  display:none;
}

.hsn-mobile-nav{
  display:none;
  padding:0 0 1rem;
}

.hsn-mobile-nav a{
  display:block;
  padding:.65rem 0;
  color:var(--hsn-text);
  font-weight:700;
  text-decoration:none;
}

.hsn-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(20,194,163,.26), transparent 18%),
    radial-gradient(circle at 10% 0%, rgba(26,124,242,.20), transparent 22%),
    linear-gradient(135deg,#071224 0%,#0c2248 48%,#0f2f68 100%);
  color:#fff;
}

.hsn-hero::before{
  content:"";
  position:absolute;
  right:-8%;
  top:10%;
  width:42vw;
  height:42vw;
  min-width:320px;
  min-height:320px;
  border-radius:34% 66% 58% 42% / 45% 38% 62% 55%;
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
}

.hsn-hero::after{
  content:"";
  position:absolute;
  left:-6%;
  bottom:-18%;
  width:30vw;
  height:30vw;
  min-width:280px;
  min-height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(20,194,163,.22), transparent 62%);
}

.hsn-hero__inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:2rem;
  align-items:center;
  padding:6.2rem 0 5rem;
}

.hsn-kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:.84rem;
  font-weight:800;
  color:#9fd8ff;
  margin-bottom:1.2rem;
}

.hsn-kicker::before{
  content:"";
  width:42px;
  height:2px;
  background:#14c2a3;
}

.hsn-hero h1,
.hsn-section-title{
  font-family:var(--hsn-heading);
}

.hsn-hero h1{
  font-size:clamp(2.7rem,6vw,5.4rem);
  line-height:.95;
  margin:0 0 1.25rem;
  font-weight:800;
}

.hsn-hero p{
  max-width:700px;
  font-size:1.12rem;
  color:rgba(255,255,255,.86);
  margin:0 0 1.6rem;
}

.hsn-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  margin-bottom:1.8rem;
}

.hsn-hero__support{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  color:rgba(255,255,255,.78);
  font-size:.92rem;
  font-weight:700;
}

.hsn-hero__support span::before{
  content:"•";
  color:#14c2a3;
  margin-right:.45rem;
}

.hsn-hero__visual{
  position:relative;
  min-height:520px;
}

.hsn-hero__frame{
  position:absolute;
  inset:0;
  border-radius:42px;
  background:linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 80px rgba(0,0,0,.24);
  overflow:hidden;
}

.hsn-hero__frame--no-image{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:2rem;
  background:
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.02)),
    radial-gradient(circle at top right, rgba(20,194,163,.22), transparent 26%),
    radial-gradient(circle at left center, rgba(159,216,255,.16), transparent 24%);
}

.hsn-hero__frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hsn-hero__badge{
  position:absolute;
  left:-1.25rem;
  bottom:2rem;
  max-width:220px;
  background:#fff;
  color:var(--hsn-secondary);
  border-radius:22px;
  padding:1rem 1.1rem;
  box-shadow:var(--hsn-shadow);
}

.hsn-hero__badge strong{
  display:block;
  font-family:var(--hsn-heading);
  font-size:1.05rem;
  margin-bottom:.3rem;
}

.hsn-hero__stat{
  position:absolute;
  right:-1rem;
  top:2rem;
  background:#14c2a3;
  color:#05263a;
  border-radius:24px;
  padding:1rem 1.15rem;
  min-width:180px;
  box-shadow:0 20px 50px rgba(20,194,163,.28);
}

.hsn-hero__stat strong{
  display:block;
  font-family:var(--hsn-heading);
  font-size:2rem;
  line-height:1;
}

.hsn-section{
  padding:5.5rem 0;
}

.hsn-section-head{
  max-width:820px;
  margin:0 auto 2.4rem;
  text-align:center;
}

.hsn-section-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.82rem;
  font-weight:800;
  color:var(--hsn-primary);
  margin-bottom:.85rem;
}

.hsn-section-title{
  font-size:clamp(2rem,4vw,3.45rem);
  line-height:1;
  margin:0 0 1rem;
  font-weight:800;
  color:var(--hsn-text);
}

.hsn-section-copy,
.hsn-card p,
.hsn-story p,
.hsn-footer p{
  color:var(--hsn-muted);
}

.hsn-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.15rem;
}

.hsn-card{
  background:var(--hsn-surface);
  border:1px solid var(--hsn-border);
  border-radius:var(--hsn-radius-lg);
  padding:1.65rem;
  box-shadow:var(--hsn-shadow);
  height:100%;
}

.hsn-card__icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(15,91,216,.12),rgba(20,194,163,.12));
  color:var(--hsn-primary);
  font-size:1.4rem;
  margin-bottom:1rem;
}

.hsn-card h3{
  font-family:var(--hsn-heading);
  font-size:1.16rem;
  margin-bottom:.7rem;
}

.hsn-story{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.9fr);
  gap:1.5rem;
  align-items:stretch;
}

.hsn-story__content,
.hsn-story__panel{
  background:var(--hsn-surface);
  border:1px solid var(--hsn-border);
  border-radius:var(--hsn-radius-xl);
  box-shadow:var(--hsn-shadow);
}

.hsn-story__content{
  padding:2rem;
}

.hsn-story__panel{
  padding:2rem;
  background:
    linear-gradient(180deg,rgba(15,91,216,.05),rgba(20,194,163,.08)),
    #fff;
}

.hsn-story__list{
  display:grid;
  gap:1rem;
  margin:1.5rem 0 0;
}

.hsn-story__list li{
  list-style:none;
  margin:0;
  padding-left:1.7rem;
  position:relative;
  color:var(--hsn-text);
  font-weight:700;
}

.hsn-story__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55rem;
  width:.65rem;
  height:.65rem;
  border-radius:50%;
  background:var(--hsn-accent);
}

.hsn-metrics{
  background:linear-gradient(135deg,#09172d,#0f2f68 65%,#14489b);
  color:#fff;
}

.hsn-metrics__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.hsn-metric{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:1.5rem;
  backdrop-filter:blur(6px);
}

.hsn-metric strong{
  display:block;
  font-family:var(--hsn-heading);
  font-size:2.3rem;
  line-height:1;
  margin-bottom:.45rem;
}

.hsn-proof{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:1.25rem;
}

.hsn-proof__box,
.hsn-proof__logos{
  background:#fff;
  border:1px solid var(--hsn-border);
  border-radius:var(--hsn-radius-xl);
  box-shadow:var(--hsn-shadow);
  padding:2rem;
}

.hsn-logos{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}

.hsn-logo-chip{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:92px;
  border-radius:20px;
  background:var(--hsn-surface-soft);
  color:var(--hsn-secondary);
  font-weight:800;
  text-align:center;
  padding:1rem;
}

.hsn-redees{
  background:
    linear-gradient(135deg,rgba(11,27,58,.98),rgba(13,61,118,.96)),
    #071224;
  color:#fff;
  overflow:hidden;
  position:relative;
}

.hsn-redees::after{
  content:"";
  position:absolute;
  right:-6rem;
  top:-5rem;
  width:22rem;
  height:22rem;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.10);
  background:radial-gradient(circle, rgba(20,194,163,.20), transparent 58%);
}

.hsn-redees__inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,.78fr);
  gap:1.5rem;
  align-items:center;
}

.hsn-redees__card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  padding:1.8rem;
  backdrop-filter:blur(8px);
}

.hsn-businesses__head{
  max-width:760px;
  margin-bottom:1.6rem;
}

.hsn-business-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.hsn-business-card{
  display:flex;
  flex-direction:column;
  width:100%;
  padding:0;
  border:1px solid var(--hsn-border);
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  text-align:left;
  box-shadow:var(--hsn-shadow);
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}

.hsn-business-card:hover{
  transform:translateY(-3px);
  box-shadow:0 28px 60px rgba(9,24,51,.16);
}

.hsn-business-card__media{
  display:block;
  min-height:180px;
  background:linear-gradient(135deg,#dbe8fb,#8ab5ef);
  background-size:cover;
  background-position:center;
}

.hsn-business-card__body{
  display:grid;
  gap:.45rem;
  padding:1.15rem 1.15rem 1.25rem;
}

.hsn-business-card__body strong{
  font-size:1rem;
  color:var(--hsn-secondary);
}

.hsn-business-card__body span:last-child{
  color:var(--hsn-muted);
  line-height:1.55;
}

.hsn-business-card__status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  border-radius:999px;
  background:rgba(15,91,216,.10);
  color:var(--hsn-primary);
  padding:.32rem .7rem;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.02em;
}

.hsn-modal-open{
  overflow:hidden;
}

.hsn-business-modal[hidden]{
  display:none;
}

.hsn-business-modal{
  position:fixed;
  inset:0;
  z-index:9999;
}

.hsn-business-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,15,30,.68);
  backdrop-filter:blur(6px);
}

.hsn-business-modal__dialog{
  position:relative;
  z-index:1;
  width:min(980px, calc(100vw - 2rem));
  max-height:calc(100vh - 2rem);
  overflow:auto;
  margin:1rem auto;
  display:grid;
  grid-template-columns:minmax(280px,.95fr) minmax(0,1.05fr);
  background:#fff;
  border-radius:32px;
  box-shadow:0 40px 120px rgba(0,0,0,.30);
}

.hsn-business-modal__close{
  position:absolute;
  top:1rem;
  right:1rem;
  width:44px;
  height:44px;
  border:0;
  border-radius:14px;
  background:rgba(11,27,58,.08);
  color:var(--hsn-secondary);
  font-size:1.7rem;
  line-height:1;
}

.hsn-business-modal__media{
  min-height:340px;
  background:linear-gradient(135deg,#dbe8fb,#8ab5ef);
  background-size:cover;
  background-position:center;
}

.hsn-business-modal__content{
  padding:2rem;
  display:grid;
  align-content:start;
  gap:1rem;
}

.hsn-business-modal__meta .hsn-section-title{
  margin-bottom:0;
}

.hsn-business-modal__services{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}

.hsn-business-modal__chip{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:var(--hsn-surface-soft);
  color:var(--hsn-secondary);
  padding:.55rem .9rem;
  font-weight:700;
  font-size:.88rem;
}

.hsn-business-modal__footer{
  padding-top:.25rem;
}

.hsn-cases{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.15rem;
}

.hsn-case{
  background:#fff;
  border:1px solid var(--hsn-border);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--hsn-shadow);
}

.hsn-case__image{
  min-height:220px;
  background:linear-gradient(135deg,#c7d8f4,#8cb6ef);
  background-size:cover;
  background-position:center;
}

.hsn-case__body{
  padding:1.5rem;
}

.hsn-contact{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:1.25rem;
}

.hsn-contact__panel,
.hsn-contact__info{
  background:#fff;
  border:1px solid var(--hsn-border);
  border-radius:30px;
  box-shadow:var(--hsn-shadow);
  padding:2rem;
}

.hsn-contact__info ul{
  padding-left:0;
  margin:1.2rem 0 0;
}

.hsn-contact__info li{
  list-style:none;
  margin-bottom:.95rem;
  color:var(--hsn-text);
}

.hsn-contact__meta{
  display:grid;
  gap:1rem;
  margin-top:1.25rem;
}

.hsn-contact__meta strong{
  display:block;
  margin-bottom:.25rem;
}

.hsn-footer{
  background:#061326;
  color:#d5def0;
  padding:3.4rem 0 2rem;
}

.hsn-footer__grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) repeat(3,minmax(0,.7fr));
  gap:1.25rem;
}

.hsn-footer__logo{
  height:54px;
  width:auto;
  margin-bottom:1rem;
}

.hsn-footer a{
  color:#d5def0;
  text-decoration:none;
}

.hsn-footer a:hover{
  color:#fff;
}

.hsn-footer__links{
  display:grid;
  gap:.6rem;
}

.hsn-footer__copy{
  margin-top:2rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.10);
  font-size:.92rem;
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

@media (max-width: 991px){
  .hsn-nav,
  .hsn-lang--desktop{
    display:none;
  }

  .hsn-menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border-radius:14px;
    border:1px solid var(--hsn-border);
    background:#fff;
    color:var(--hsn-secondary);
    font-size:1.3rem;
  }

  .hsn-mobile-nav.open{
    display:block;
  }

  .hsn-hero__inner,
  .hsn-story,
  .hsn-proof,
  .hsn-redees__inner,
  .hsn-contact,
  .hsn-footer__grid{
    grid-template-columns:1fr;
  }

  .hsn-grid,
  .hsn-cases,
  .hsn-metrics__grid,
  .hsn-logos,
  .hsn-business-grid{
    grid-template-columns:1fr 1fr;
  }

  .hsn-business-modal__dialog{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .hsn-topbar .container{
    flex-direction:column;
    align-items:flex-start;
  }

  .hsn-navbar__inner{
    align-items:flex-start;
  }

  .hsn-header-actions{
    flex-wrap:wrap;
    justify-content:flex-end;
  }

  .hsn-hero__inner{
    padding:5rem 0 4rem;
  }

  .hsn-hero__visual{
    min-height:360px;
  }

  .hsn-grid,
  .hsn-cases,
  .hsn-metrics__grid,
  .hsn-logos,
  .hsn-business-grid{
    grid-template-columns:1fr;
  }

  .hsn-hero__badge,
  .hsn-hero__stat{
    position:static;
    margin-top:1rem;
  }
}
