/* =========================
   HERO SECTION — GoCover Green Theme
   ========================= */

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

.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, #ecfdf5, #f0fdfa 40%, #ffffff 80%);
  border-radius: 24px;
  padding: 38px 36px;
  box-shadow: 0 24px 60px rgba(7,181,168,0.12);
  position: relative;
  overflow: hidden;
}

/* Decorative gradient blob */
.hero-left::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(7,181,168,0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(34,197,94,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #dcfce7, #ccfbf1);
  color: #047857;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.trust-pill .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

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

.hero-left .blue { color: #07b5a8; }
.hero-left .green { color: #22c55e; }

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

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 14px;
  background: linear-gradient(135deg, #07b5a8, #22c55e);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(7,181,168,0.25);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(7,181,168,0.35);
}

/* Shimmer effect on CTA */
.cta-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.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.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card strong {
  display: block;
  font-size: 20px;
  background: linear-gradient(135deg, #07b5a8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* RIGHT */
.hero-right {
  background: radial-gradient(
    circle at top right,
    #134e4a,
    #042f2e 50%,
    #022c22 100%
  );
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(7,181,168,0.2);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Decorative glow inside dark card */
.hero-right::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 60%);
  pointer-events: none;
}

.instant-quotes-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.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: #a7f3d0;
}

.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: 12px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.instant-features span:hover {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.2);
}

.cta-dark {
  align-self: flex-start;
  margin-top: 10px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1.5px solid rgba(34,197,94,0.4);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.cta-dark:hover {
  background: rgba(34,197,94,0.12);
  border-color: #22c55e;
}

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

@media (max-width: 768px) {
  .hero-left {
    padding: 24px 20px;
  }
  .hero-left h1 {
    font-size: 30px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .stat-card strong {
    font-size: 18px;
  }
}
