/* ============================================================
   HOME PAGE SPECIFIC STYLES
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 74px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(214,40,40,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,40,40,.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob.b1 {
  width: 600px; height: 600px;
  background: rgba(214,40,40,.07);
  top: -200px; right: -100px;
}
.hero-blob.b2 {
  width: 400px; height: 400px;
  background: rgba(214,40,40,.05);
  bottom: -100px; left: -100px;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); background: var(--red-soft);
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(214,40,40,.2);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -.03em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: .82rem; font-weight: 600;
  color: var(--charcoal);
}
.trust-item i { color: var(--red); font-size: .85rem; }

/* ── Hero Visual ─────────────────────────────────────── */
.hero-visual {
  position: relative;
  height: 460px;
}
.hv-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.hv-card:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 24px 60px rgba(0,0,0,.14); }
.hv-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.hv-icon.sm { width: 40px; height: 40px; font-size: 1rem; }
.hv-info strong { display: block; font-family: var(--font-h); font-weight: 700; font-size: .92rem; }
.hv-info span { font-size: .78rem; color: var(--grey); }
.main-card { top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; }
.main-card:hover { transform: translate(-50%, calc(-50% - 6px)) scale(1.03); }
.sc1 { top: 20px; right: 30px; }
.sc2 { bottom: 20px; right: 20px; }
.sc3 { bottom: 80px; left: 10px; }
.hv-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px dashed rgba(214,40,40,.18);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: spin 25s linear infinite;
  pointer-events: none;
}
.hv-ring.r1 { width: 340px; height: 340px; }
.hv-ring.r2 { width: 480px; height: 480px; animation-direction: reverse; animation-duration: 40s; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--grey); font-size: 1rem;
  animation: bobble 2.2s infinite ease-in-out;
}
@keyframes bobble { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }

/* ── Responsive Hero ─────────────────────────────────── */
@media(max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 50px 28px 60px; }
  .hero-visual { height: 280px; }
  .hv-ring.r2 { display: none; }
}
@media(max-width: 600px) {
  .hero-visual { display: none; }
  .hero-cta { flex-direction: column; }
}

/* ── Hero call strip ─────────────────────────────────── */
.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-h);
  font-size: .88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.hero-call i { color: var(--red); }
.hero-call a {
  color: var(--red);
  font-weight: 700;
  transition: color var(--tr);
}
.hero-call a:hover { color: var(--red-dark); }
