/* =========================================================
   HERO (ENGLISH SITE – 2026)
========================================================= */

.hero{
  position: relative;
  padding: 120px 20px 100px;
  background: radial-gradient(circle at top, #eef2ff, #ffffff);
  overflow: hidden;
}

/* background glow */
.hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.18), transparent 42%),
    radial-gradient(circle at 80% 30%, rgba(79,110,247,.18), transparent 42%);
  z-index: 0;
}

/* =========================================================
   CONTENT
========================================================= */
.hero-content{
  position: relative;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  z-index: 1;
}

.hero-title{
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #0f172a;
}

.hero-title span{
  display: block;
  margin-top: 12px;
  font-size: 28px;
  font-weight: 700;
  color: #2563eb;
}

/* subtitle */
.hero-sub{
  margin-top: 26px;
  font-size: 20px;
  line-height: 1.6;
  color: #475569;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   STATS
========================================================= */
.hero-stats{
  margin: 56px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 700px;
}

.hero-stats div{
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.hero-stats strong{
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: #2563eb;
}

.hero-stats span{
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

/* =========================================================
   ACTIONS
========================================================= */
.hero-actions{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* =========================================================
   FEATURES
========================================================= */
.hero-features{
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.hero-card{
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  text-align: left;
}

.hero-card span{
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}

.hero-card h4{
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 800;
  color: #0f172a;
}

.hero-card p{
  color: #475569;
  line-height: 1.6;
  font-size: 15px;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 640px){
  .hero{
    padding: 90px 16px 70px;
  }

  .hero-sub{
    font-size: 18px;
  }

  .hero-features{
    margin-top: 70px;
  }
}
