/* =========================
   HERO SECTION
   ========================= */

.hero-section {
  margin: 26px auto 0;
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 0 20px;
}

/* LEFT */
.hero-left {
  background: linear-gradient(135deg, #e0f2fe, #ffffff 55%);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.18);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #166534;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 18px;
}

.trust-pill .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #0f172a;
}

.hero-left .blue { color: #2563eb; }
.hero-left .green { color: #22c55e; }

.hero-sub {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 520px;
}

.cta-primary {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 26px;
}

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

.stat-card {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.12);
}

.stat-card strong {
  display: block;
  font-size: 20px;
  color: #2563eb;
}

.stat-card span {
  font-size: 13px;
  color: #64748b;
}

/* RIGHT */
.hero-right {
  background: radial-gradient(
    circle at top right,
    #475569,
    #020617 70%
  );
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.4);
  color: #ffffff;
}

.instant-quotes-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.instant-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.instant-header img {
  height: 34px;
  background: #ffffff;
  padding: 6px;
  border-radius: 8px;
}

.instant-header h3 {
  margin: 0;
  font-size: 18px;
}

.instant-header p {
  margin: 0;
  font-size: 13px;
  color: #cbd5f5;
}

.instant-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.instant-features span {
  background: rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.cta-dark {
  align-self: flex-start;
  margin-top: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}
