/* ==========================================================================
   HOMEPAGE STYLES — Light Theme Hero with Crystal Clear Text Readability
   ========================================================================== */

/* Light Theme Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #FDFBF7 0%, #FFF8E7 40%, #FEF3C7 100%);
  color: var(--secondary);
  overflow: hidden;
  border-bottom: 3px solid var(--border-gold);
}

@media (max-width: 1024px) {
  .hero {
    min-height: calc(100vh - 72px);
    padding: 40px 0;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.8) 0%, rgba(254, 243, 199, 0.7) 50%, rgba(253, 251, 247, 0.88) 100%);
  z-index: 1;
}

.hero-centered-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border-radius: 32px;
  backdrop-filter: none !important;
}

.hero-centered-content h1 {
  color: #0F0C29 !important;
  font-size: clamp(2.35rem, 5.2vw, 3.85rem);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.95), 0 0 24px rgba(255, 255, 255, 0.85);
}

.hero-tagline-line {
  font-size: 1.1875rem;
  color: #1F2937 !important;
  line-height: 1.7;
  max-width: 740px;
  margin: 0 auto 28px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95);
}

/* Light Theme Badge */
.hero-centered-content .tag {
  background: #FEF3C7 !important;
  color: #78350F !important;
  border: 1px solid #F59E0B !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2) !important;
  margin-bottom: 16px;
  font-weight: 700;
}

/* Calculator Card in Dedicated Section Below Hero */
.hero-calc-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-gold);
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text);
  text-align: left;
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.calc-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* Trust row bullets */
.trust-row-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0F0C29 !important;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95);
}

.trust-row-bullets span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-row-bullets span::before {
  content: '✓';
  color: #D97706 !important;
  font-weight: 800;
}

/* --- MOBILE SPECIFIC RESPONSIVE OVERRIDES --- */
@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
    padding: 32px 0 24px !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .hero-centered-content {
    padding: 20px 14px !important;
    border-radius: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-centered-content h1 {
    font-size: 1.625rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .hero-tagline-line {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  .trust-row-bullets {
    gap: 8px 14px !important;
    font-size: 0.8125rem !important;
  }

  .hero-calc-card {
    padding: 20px 16px !important;
    border-radius: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}
