.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 5%,
      rgba(217, 106, 56, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(59, 178, 115, 0.09),
      transparent 30%
    ),
    var(--obsidian);
  color: var(--bone);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 72px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 72px 0 84px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--sand);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(59, 178, 115, 0.13);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(46px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--steel-light);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.slogan {
  margin-bottom: 34px;
  color: var(--bone);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slogan strong {
  color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.trust-inline-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--steel-light);
  font-size: 13px;
}

.trust-inline-item svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.hero-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border-bone-10);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.015)
    );
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--obsidian);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 12px;
  font-size: 26px;
  letter-spacing: -0.025em;
}

.hero-card > p {
  margin-bottom: 25px;
  color: var(--steel-light);
  font-size: 14px;
  line-height: 1.65;
}

.criterion-list {
  list-style: none;
}

.criterion-list li {
  display: flex;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--border-bone-08);
  color: var(--sand);
  font-size: 14px;
}

.criterion-check {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(59, 178, 115, 0.14);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.hero-card-footer {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(217, 106, 56, 0.09);
  color: var(--sand);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .hero-grid {
    padding: 54px 0 64px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 65px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 25px;
  }
}
