.hero-home .hero-card {
  border-color: rgba(96, 165, 250, 0.34);
}

.hero-home .hero-card h2 {
  margin-bottom: 14px;
}

.hero-home .hero-card li + li {
  margin-top: 8px;
}

.hero-subtext {
  margin: 16px 0 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
}

.hero-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-mini-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.48);
  color: rgba(226, 232, 240, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.hero-card-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(52, 211, 153, 0.22);
  background: rgba(6, 78, 59, 0.20);
  color: rgba(209, 250, 229, 0.94);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.card-primary {
  border-color: rgba(96, 165, 250, 0.48) !important;
  background: linear-gradient(180deg, rgba(16, 39, 68, 0.98) 0%, rgba(16, 28, 47, 0.96) 100%) !important;
  box-shadow: 0 22px 52px rgba(37, 99, 235, 0.18), 0 16px 34px rgba(0, 0, 0, 0.26) !important;
}

.card-primary h2,
.card-primary h3 {
  color: var(--text);
}

.card-secondary {
  background: rgba(16, 28, 47, 0.78) !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18) !important;
}

.card-question {
  position: relative;
  overflow: hidden;
  background: rgba(16, 28, 47, 0.82) !important;
}

.card-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--primary);
  opacity: 0.82;
}

.card-question h3,
.card-question p {
  position: relative;
  z-index: 1;
}

.card-link-primary {
  border-color: rgba(52, 211, 153, 0.42) !important;
  background: linear-gradient(180deg, rgba(15, 46, 36, 0.82) 0%, rgba(16, 28, 47, 0.94) 100%) !important;
}

.card-link-primary h3 {
  color: #bbf7d0;
}

.cta-box-primary,
.cta-primary {
  border-color: rgba(96, 165, 250, 0.46) !important;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(16, 39, 68, 0.98), rgba(20, 35, 58, 0.96)) !important;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.20), 0 18px 42px rgba(0, 0, 0, 0.28) !important;
}

.trust-bar-section {
  padding: 0 0 18px;
  margin-top: -28px;
  position: relative;
  z-index: 3;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 18px;
  background: rgba(16, 28, 47, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.trust-bar span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(7, 17, 31, 0.62);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
}

.proof-section {
  padding-top: 42px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.proof-card {
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  background: rgba(16, 28, 47, 0.72);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.proof-card h2,
.proof-card h3 {
  margin-top: 0;
}

.proof-card p {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: #bfdbfe;
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.mid-cta {
  padding-top: 36px;
}

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

@media (max-width: 900px) {
  .trust-bar-section {
    margin-top: -20px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .trust-bar-section {
    padding-bottom: 6px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .trust-bar span {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-mini-proof {
    gap: 8px;
  }

  .hero-mini-proof span {
    width: 100%;
    border-radius: 14px;
  }

  .proof-card {
    padding: 20px;
  }
}