/* Home-only SEO+UX enhancements (keeps your theme intact)
   - Scroll reveal
   - Team spotlight, trust section polish
   - Proof + FAQ sections
*/

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
  transition:
    opacity .6s cubic-bezier(.21,.61,.35,1),
    transform .6s cubic-bezier(.21,.61,.35,1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Team spotlight */
.team {
  position: relative;
  background: radial-gradient(circle at top right, rgba(249,115,22,0.08), transparent 55%);
  padding: 20px 0 10px;
}
.team-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 30px 70px rgba(15,23,42,0.08);
}
.team-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 22px 60px rgba(2,6,23,0.28);
}
.team-portrait {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.02);
}
.team-media-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  color: #f8fafc;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.team-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 8px;
}
.team-name {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.2;
}
.team-bio {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}
.team-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.team-highlights span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(249,115,22,0.1);
  color: #9a3412;
  font-size: 0.85rem;
  font-weight: 600;
}
.team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.team-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.14);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-profile-link:hover {
  transform: translateY(-1px);
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 12px 28px rgba(15,23,42,0.12);
}
.team-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.team-social a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
}
.team-social a i {
  color: var(--accent);
}

@media (max-width: 980px) {
  .team-spotlight {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px;
  }
  .team-name {
    font-size: 1.7rem;
  }
  .team-media {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Trust center */
.trust-home {
  background: linear-gradient(to bottom, rgba(255,255,255,0.96), rgba(245,247,251,0.96));
}
.trust-home .trust-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 0.9rem;
}
.trust-home .trust-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.7);
}
.trust-home .trust-meta i {
  color: var(--accent);
}
.trust-home .trust-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}
.trust-callout {
  margin-top: 24px;
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.8);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-callout h3 { margin: 0 0 6px; }
.trust-callout p { margin: 0; color: var(--muted); }
.trust-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hero showcase (keeps existing hero layout) */
.hero-showcase {
  padding: 22px 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);
  border: 1px solid rgba(15,23,42,0.08);
  color: var(--text, #0f172a);
  max-width: 420px;
  position: relative;
  z-index: 2;
}
.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.showcase-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted, #64748b);
}
.showcase-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249,115,22,0.12);
  color: #9a3412;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-showcase h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text, #0f172a);
}
.showcase-list {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
.showcase-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.08);
}
.showcase-row i {
  color: var(--accent, #f97316);
  font-size: 1.05rem;
}
.showcase-title { display:block; font-weight:700; color: var(--text, #0f172a); margin-bottom: 2px; }
.showcase-sub { display:block; font-size: 0.85rem; color: var(--muted, #64748b); }
.showcase-strip {
  padding: 10px 14px;
  border-radius: 999px;
  background: #0f172a;
  color: #f8fafc;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.hero-assurance {
  margin-top: 12px;
  color: var(--muted, #64748b);
  font-size: 0.92rem;
}
.hero-trust {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted, #64748b);
  font-size: 0.88rem;
}
.hero-trust .google-button { padding: 8px 12px; font-size: 0.82rem; }

@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-title { line-height: 1.12; }
}

/* Proof section */
.proof {
  padding: 12px 0 4px;
}
.proof .proof-grid {
  margin-top: 14px;
}
.proof .proof-card p {
  color: var(--muted);
  line-height: 1.7;
}
.proof .proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.proof .proof-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.7);
  color: var(--muted);
  font-size: 0.86rem;
}

/* FAQ */
.faq {
  padding: 18px 0 6px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
}
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* Modal */
.cl-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}
.cl-modal.is-open { display: flex; }
.cl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
}
.cl-modal-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 22px 50px rgba(15,23,42,0.2);
  z-index: 1;
}
.cl-modal-card h3 { margin: 0 0 8px; }
.cl-modal-card p { margin: 0 0 16px; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
