.home-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
}

.home-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,.11) 0%, rgba(15,118,110,0) 70%);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -250px;
  bottom: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,.07) 0%, rgba(15,118,110,0) 72%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 72px;
}

.home-hero-copy h1 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(3rem, 5.5vw, 5.15rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.home-hero-copy h1 span {
  color: var(--accent-dark);
}

.home-hero-copy .lead {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.home-hero-actions {
  margin-top: 26px;
}

.home-hero-actions .btn {
  min-height: 50px;
  padding-inline: 20px;
}

.home-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.home-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--muted);
  font-size: .81rem;
}

.home-trust-row strong {
  color: var(--ink);
}

.home-tool-showcase {
  position: relative;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(205,220,213,.95);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 28px 70px rgba(27,55,47,.12);
  backdrop-filter: blur(14px);
}

.home-tool-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.showcase-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.showcase-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.showcase-head h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.showcase-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid #cfe6df;
  border-radius: 999px;
  background: #f2fbf8;
  color: #35635b;
  font-size: .75rem;
  font-weight: 700;
}

.showcase-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15,118,110,.1);
}

.showcase-tools {
  display: grid;
  gap: 10px;
}

.showcase-tool {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid #e3ebe7;
  border-radius: 15px;
  background: #fbfcfb;
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.showcase-tool:hover {
  transform: translateX(3px);
  border-color: #b8d7cf;
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(31,60,52,.07);
}

.showcase-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 850;
}

.showcase-tool-copy {
  min-width: 0;
}

.showcase-tool-copy strong,
.showcase-tool-copy small {
  display: block;
}

.showcase-tool-copy strong {
  font-size: .94rem;
  line-height: 1.35;
}

.showcase-tool-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .76rem;
}

.showcase-arrow {
  color: #8a9993;
  font-size: 1.15rem;
  transition: transform .18s ease, color .18s ease;
}

.showcase-tool:hover .showcase-arrow {
  transform: translateX(2px);
  color: var(--accent);
}

.showcase-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}

.showcase-foot strong {
  color: var(--ink);
}

.showcase-foot a {
  flex: 0 0 auto;
  font-weight: 750;
  text-decoration: none;
}

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

  .home-hero-copy {
    max-width: 760px;
  }

  .home-tool-showcase {
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .home-hero {
    padding: 54px 0 42px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .home-hero-copy .lead {
    margin-top: 18px;
    font-size: 1rem;
  }

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

  .home-trust-row {
    gap: 7px;
    margin-top: 22px;
  }

  .home-trust-row span {
    font-size: .75rem;
  }

  .home-tool-showcase {
    padding: 18px;
    border-radius: 20px;
  }

  .showcase-status {
    display: none;
  }

  .showcase-tool {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
  }

  .showcase-icon {
    width: 42px;
    height: 42px;
  }

  .showcase-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
