.ha-page {
  background: #fff;
  color: #15151f;
  font-family: inherit;
}

.ha-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ha-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
  background: #050611;
}

.ha-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: .9;
}

.ha-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,4,12,.95) 0%, rgba(3,4,12,.78) 38%, rgba(3,4,12,.25) 100%),
    linear-gradient(180deg, rgba(3,4,12,.1), rgba(3,4,12,.85));
}

.ha-hero__content {
  position: relative;
  z-index: 2;
}

.ha-hero__text {
  max-width: 620px;
  color: #fff;
}

.ha-label {
  color: #ff2f8f;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ha-hero h1 {
  font-size: clamp(44px, 6vw, 86px);
  line-height: .95;
  margin: 0;
  font-weight: 950;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.ha-tagline {
  color: #ff4aa2;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  font-style: italic;
  margin: 10px 0 14px;
}

.ha-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
  max-width: 560px;
}

.ha-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 22px 0;
  color: #fff;
  font-weight: 700;
}

.ha-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ha-actions.center {
  justify-content: center;
}

.ha-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  transition: .25s ease;
}

.ha-btn--pink {
  color: #fff;
  background: linear-gradient(135deg, #ff2f8f, #ff4fac);
  box-shadow: 0 12px 35px rgba(255,47,143,.35);
}

.ha-btn--outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
}

.ha-btn:hover {
  transform: translateY(-2px);
}

.ha-section {
  padding: 72px 0;
}

.ha-section-soft {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,47,143,.08), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(114,67,255,.08), transparent 30%),
    #fafafa;
}

.ha-section-head {
  text-align: center;
  margin-bottom: 34px;
}

.ha-section-head.left {
  text-align: left;
  margin-bottom: 24px;
}

.ha-section-head span {
  color: #ff2f8f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ha-section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 950;
  text-transform: uppercase;
}

.ha-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ha-category-card {
  min-height: 235px;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.ha-category-card h3 {
  position: relative;
  z-index: 2;
  font-size: 32px;
  margin: 0;
  text-transform: uppercase;
}

.ha-category-card p {
  position: relative;
  z-index: 2;
  margin: 4px 0 0;
  font-weight: 800;
}

.ha-category-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 58%;
  max-height: 100%;
  object-fit: contain;
}

.ha-card-pink { background: linear-gradient(135deg, #ffe1ef, #fff); }
.ha-card-purple { background: linear-gradient(135deg, #f0e4ff, #fff); }
.ha-card-blue { background: linear-gradient(135deg, #e7efff, #fff); }

.ha-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.ha-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.ha-info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.ha-steps {
  display: grid;
  gap: 20px;
}

.ha-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: flex-start;
}

.ha-step b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2f8f, #7a35ff);
}

.ha-step h4 {
  margin: 0 0 4px;
  font-size: 17px;
}

.ha-step p {
  margin: 0;
  color: #646474;
}

.ha-score-list {
  display: grid;
  gap: 14px;
}

.ha-score-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafafa;
  border-radius: 12px;
  padding: 18px 20px;
  font-weight: 800;
}

.ha-score-list b {
  color: #ff2f8f;
  font-size: 24px;
}

.ha-note {
  color: #777;
  font-size: 13px;
  margin-top: 18px;
}

.ha-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.ha-list li::marker {
  color: #ff2f8f;
}

.ha-info-card p {
  color: #666;
  line-height: 1.7;
}

.ha-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ha-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
}

.ha-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.ha-faq-grid details {
  background: #fafafa;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 18px 20px;
}

.ha-faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.ha-faq-grid p {
  color: #666;
  line-height: 1.7;
}

.ha-final-cta {
  padding: 70px 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 15% 80%, rgba(255,47,143,.45), transparent 26%),
    radial-gradient(circle at 85% 80%, rgba(114,67,255,.45), transparent 26%),
    linear-gradient(135deg, #080814, #16051d);
}

.ha-final-cta h2 {
  font-size: clamp(30px, 4vw, 54px);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.ha-final-cta p {
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .ha-hero {
    min-height: 680px;
    padding: 110px 0 85px;
  }

  .ha-category-grid,
  .ha-three-col {
    grid-template-columns: 1fr 1fr;
  }

  .ha-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ha-container {
    width: min(100% - 28px, 1180px);
  }

  .ha-hero {
    min-height: 640px;
    padding: 100px 0 60px;
    align-items: flex-end;
  }

  .ha-hero__bg {
    background-position: center 10%;
    opacity: 0.85;
  }

  .ha-hero__overlay {
    background:
      linear-gradient(180deg, rgba(3,4,12,.35), rgba(3,4,12,.96) 68%),
      linear-gradient(90deg, rgba(3,4,12,.9), rgba(3,4,12,.35));
  }

  .ha-hero h1 {
    letter-spacing: -1.5px;
  }

  .ha-desc {
    font-size: 15px;
  }

  .ha-category-grid,
  .ha-two-col,
  .ha-three-col,
  .ha-faq-grid {
    grid-template-columns: 1fr;
  }

  .ha-section {
    padding: 52px 0;
  }

  .ha-category-card {
    min-height: 210px;
  }

  .ha-gallery {
    grid-template-columns: 1fr;
  }

  .ha-gallery img {
    height: 220px;
  }

  .ha-btn {
    width: 100%;
  }
}

.ha-category-card img {
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.25));
}