/* ── Hero — Figma pixel-perfect ─────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: #030410;
}

/* Teal radial glow left side */
.hero--glow::before {
  content: "";
  position: absolute;
  width: 661px;
  height: 361px;
  background: #278fb999;

  border-radius: 50%;
  bottom: -10%;
  left: -220px;
  transform: translateY(-50%);
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
}
.hero--glow::after {
  content: "";
  position: absolute;
  width: 661px;
  height: 361px;
  background: #278fb999;
  border-radius: 50%;
  top: 20%;
  right: -220px;
  transform: translateY(-50%);
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1050px;
  margin: 0 auto;
}

/* Iubenda badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 40px;
}
.hero__badge-icon {
  width: 16px;
  height: 26px;
}
.hero__badge-text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* Main title: 82px Inter Medium */
.hero__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}
/* Second line — cyan gradient */
.hero__title-accent {
  display: block;
  background: linear-gradient(180deg, #ffffff 20.17%, #278fb9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Button group */
.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Outline button — dark bg, white border (Image 1: "Book a Consultation") */
.hero__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.hero__btn-outline:hover {
  border-color: rgba(0, 195, 208, 0.6);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

/* Cyan primary button */
.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  background: linear-gradient(135deg, #00c3d0, #00a0b5);
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 195, 208, 0.5);
  color: #000;
}

/* Pill button — dark pill, optional badge (Image 1: "Tools & templates") */
.hero__btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.2s;
}
.hero__btn-pill:hover {
  border-color: rgba(0, 195, 208, 0.4);
  color: #fff;
}

/* NEW badge inside pill */
.hero__btn-badge {
  background: #00c3d0;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
    min-height: auto;
  }
  .hero__title {
    font-size: clamp(36px, 9vw, 56px);
  }
  .hero__subtitle {
    font-size: 17px;
  }
  .hero__buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .hero__btn-outline,
  .hero__btn-primary,
  .hero__btn-pill {
    width: 280px;
    justify-content: center;
  }
}
