/* home.css — hero, trust strip, split about, CTA */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--bg-soft) 60%, var(--bg) 100%);
  padding-block: 84px 96px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--primary), var(--tertiary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead { margin-bottom: 30px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
}
.hero-chip .chip-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary);
}
.hero-chip svg { width: 17px; height: 17px; }
.hero-chip .chip-label { font-size: 0.74rem; color: var(--text-muted); line-height: 1.2; }
.hero-chip .chip-value { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.hero-chip .chip-delta { color: var(--success); font-size: 0.78rem; font-weight: 600; }

.hero-chip--tl { top: 24px; left: -26px; }
.hero-chip--br { bottom: 26px; right: -22px; }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--primary-100);
  color: var(--text-muted);
  font-size: 0.88rem;
}
.trust-strip li { display: flex; align-items: center; gap: 8px; }
.trust-strip svg { width: 16px; height: 16px; color: var(--primary); flex: none; }

/* Split about block */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
}
.split-badge strong { font-family: var(--font-head); font-size: 1.3rem; }
.split-badge span { font-size: 0.82rem; line-height: 1.25; max-width: 9ch; }

/* Process steps */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding-left: 62px;
  padding-bottom: 32px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
}
.step::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50px;
  bottom: 6px;
  width: 2px;
  background: var(--primary-100);
}
.step:last-child::after { display: none; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* Testimonials */
.quote-card { display: flex; flex-direction: column; gap: 18px; height: 100%; }
.quote-card blockquote { margin: 0; font-size: 1rem; color: var(--neutral-700); }
.quote-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}
.quote-name { font-weight: 600; font-size: 0.92rem; }
.quote-role { font-size: 0.82rem; color: var(--text-muted); }
.stars { color: var(--tertiary-600); display: flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .hero { padding-block: 56px 68px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-chip--tl { left: 8px; }
  .hero-chip--br { right: 8px; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 280px; }
}
@media (max-width: 640px) {
  .hero-chip { display: none; }
}
