/* ═══════════════════════════════════════════
   HOME PAGE STYLES — index.html
═══════════════════════════════════════════ */

/* ── HERO ───────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}

/* Signature element: glowing radial gold orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 540px; height: 540px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 60%);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.07;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-flags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
  align-items: center;
}
.hero-flags span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.flag-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-shield {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-shield img {
  width: 200px;
  height: 200px;
  margin: 0 auto 12px;
}
.hero-shield-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── WHY SECTION ────────────────────────── */
.why { padding: 80px 0; background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid #e2e8f2;
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.55; }

/* ── PROOF / STATS ──────────────────────── */
.proof { background: var(--navy); padding: 72px 0; }

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-weight: 500;
}

.proof-quote {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 20px 48px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
.proof-quote p {
  color: rgba(255,255,255,0.82);
  font-style: italic;
  font-size: 1rem;
}
.proof-quote strong { color: var(--gold); font-style: normal; }

/* ── CTA BANNER ─────────────────────────── */
.cta-banner {
  background: var(--bg);
  padding: 72px 0;
  text-align: center;
}
.cta-banner p { color: var(--mid); margin-bottom: 28px; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-shield { display: none; }
  .proof-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .proof-inner { grid-template-columns: 1fr 1fr; }
  .trust-inner { gap: 16px; }
}
