/* Hero Spot */
.hero-spot{
  padding: 48px 20px 36px;
  background: radial-gradient(1200px 600px at 50% -200px, rgba(255,255,255,.12), transparent),
              linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}
.hero-card{
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 20px;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: 20px;
  box-sizing: border-box;
}
.hero-media{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.hero-media img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.hero-badge{
  position: absolute;
  left: 14px;
  top: 14px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 8px 10px;
  background: #22c55e;
  color: #0a0f14;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
}
.hero-body h1{
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 10px 0;
  color: #1f2937;
  letter-spacing: .2px;
}
.hero-body h2{
  font-size: clamp(20px, 2.2vw, 28px);
  margin: 0 0 14px 0;
  color: #374151;
  font-weight: 700;
}
.hero-points{
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
  color: #4b5563;
}
.hero-points li{
  margin: 6px 0;
}
.hero-buttons{
  display: flex;
  gap: 10px;
  justify-content: center;
}
.btn-hero{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
  text-align: center;
  word-break: keep-all;
  white-space: nowrap;
  box-sizing: border-box;
  flex: 0 1 auto;
  min-width: 120px;
}
.btn-hero:hover{ transform: translateY(-1px); }
.btn-hero.btn-primary{
  background: #3b82f6;
  box-shadow: 0 8px 24px rgba(59,130,246,.35);
}
.btn-hero.btn-secondary{
  background: #22c55e;
  box-shadow: 0 8px 24px rgba(34,197,94,.35);
}

@media (max-width: 900px){
  .hero-card{ grid-template-columns: 1fr; padding: 16px; gap: 18px; }
  .hero-body h1{ font-size: clamp(24px, 6vw, 36px); }
  .hero-buttons{
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .btn-hero{
    min-width: 140px;
    width: 100%;
    max-width: 280px;
  }
}
