/* Hero v2 — two-column layout + Requests + Steps overrides */
/* Version 1.2.0 */

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero-v2 {
  background: #f9f7ff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-v2__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-v2__blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(147,51,234,0.11) 0%, transparent 68%);
  top: -160px;
  right: -80px;
}

.hero-v2__blob--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245,210,100,0.09) 0%, transparent 68%);
  bottom: -60px;
  left: 60px;
}

.hero-v2__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-v2__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand, #9333ea);
  margin: 0 0 16px;
}

.valknut-icon {
  width: 20px;
  height: 18px;
  color: var(--color-brand, #9333ea);
  opacity: 0.75;
  flex-shrink: 0;
}

.hero-v2__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a0f3c;
  margin: 0 0 20px;
}

.hero-v2__desc {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0 0 20px;
}

.hero-v2__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 0 0 32px;
  padding: 0;
}

.hero-v2__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.hero-v2__trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand, #9333ea);
  opacity: 0.6;
  flex-shrink: 0;
}

.hero-v2__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-v2__img-wrap {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-v2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 8%;
  display: block;
}

@media (hover: hover) {
  .hero-v2__img-wrap {
    transition: transform 80ms linear;
    will-change: transform;
  }
}

@media (max-width: 900px) {
  .hero-v2 { padding: 52px 20px 44px; }

  .hero-v2__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-v2__text     { order: 1; }

  .hero-v2__img-wrap {
    order: 2;
    aspect-ratio: unset;
    height: 290px;
    border-radius: 14px;
  }

  .hero-v2__img       { object-position: 82% 12%; }
  .hero-v2__title     { font-size: 26px; }
  .hero-v2__desc      { font-size: 16px; }
  .hero-v2__trust span { font-size: 13px; }

  .hero-v2__blob--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
  }

  .hero-v2__blob--2 { display: none; }
}

/* ── Requests section — two-column ──────────────────────────────────────── */

.requests-section {
  background: #fffcf8;
  padding: 80px 20px;
}

.requests-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 64px;
  align-items: start;
}

.requests-content .section__label,
.requests-content .section__title {
  text-align: left;
}

.requests-desc {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0 0 28px;
}

.requests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.request-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #ede9fe;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 14px;
  color: #1a0f3c;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

/* 5th card full-width */
.request-card:last-child {
  grid-column: 1 / -1;
}

/* Icon slot — text chars and inline SVG */
.request-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--color-brand, #9333ea);
  opacity: 0.65;
  flex-shrink: 0;
  line-height: 0;
}

.request-card__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.request-card__text { flex: 1; }

.requests-photo-wrap {
  position: sticky;
  top: 80px;
}

.requests-photo__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 60% 55%;
  border-radius: 18px;
  display: block;
}

@media (max-width: 960px) {
  .requests-section { padding: 64px 20px; }

  .requests-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .requests-content .section__label,
  .requests-content .section__title {
    text-align: center;
  }

  .requests-photo-wrap {
    position: static;
    overflow: hidden;
    border-radius: 14px;
  }

  .requests-photo__img {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    object-position: 60% 40%;
  }
}

@media (max-width: 560px) {
  .requests-grid {
    grid-template-columns: 1fr;
  }

  .request-card:last-child {
    grid-column: 1;
  }
}

/* ── Steps section — lavender background ────────────────────────────────── */

.section--steps {
  background: #ede9fe;
  padding: 80px 20px;
}

.section--steps .steps {
  margin-top: 48px;
}

.section--steps .step {
  max-width: 240px;
}

.section--steps .step__num {
  width: 52px;
  height: 52px;
  font-size: 20px;
  font-weight: 800;
  background: #9333ea;
  color: #fff;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.22);
}

.section--steps .step__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a0f3c;
}

.section--steps .step__desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.section--steps .step__arrow {
  color: rgba(147, 51, 234, 0.28);
  font-size: 30px;
}

/* Connecting line — re-centered for 52px circles (center = 26px) */
.section--steps .steps::before {
  top: 26px;
}

/* ── About section avatar (valknut SVG) ──────────────────────────────────── */

.about-block__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.valknut-icon--avatar {
  width: 48px;
  height: 44px;
  color: var(--color-brand, #9333ea);
  opacity: 0.8;
}
