/* ============================================================
   Soelem Home Content Redesign (v2)
   Scope: ONLY redesigned sections on / (home).
   DOES NOT touch: header, nav, footer, .pricing, .nav, .footer.
   Enhances: hero (v2), trust-strip (v2), how-it-works (v2),
             testimonials (v2 — static grid), feature-section (v2),
             stats-bar (v2), faq (v2), trust-badges (v2),
             team-strip (v2), final-cta (v2)
   ============================================================ */

/* ---- 0) Section rhythm + container ---- */
.hero--v2,
.how-it-works--v2,
.feature-section--v2,
.faq--v2,
.team-strip--v2 {
  padding-block: clamp(72px, 9vw, 120px);
}

.hero--v2 .container,
.how-it-works--v2 .container,
.feature-section--v2 .container,
.faq--v2 .container,
.team-strip--v2 .container,
.trust-strip--v2 .container,
.stats-bar--v2 .container,
.trust-badges-row--v2 .container,
.final-cta--v2 .container {
  max-width: 1280px;
}

/* Alternating bg per spec */
.how-it-works--v2 { background: var(--bg); }
.feature-section--v2 { background: var(--bg); }
.feature-section--v2-alt { background: var(--bg-alt); }
.faq--v2 { background: var(--bg); }
.team-strip--v2 { background: var(--bg-soft); }

html.dark .feature-section--v2-alt { background: #0b1428; }
html.dark .team-strip--v2 { background: #0b1428; }

/* ---- 1) HERO v2 (replaces cinematic) ---- */
.hero--v2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f0f4ff 0%, #ffffff 60%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}

html.dark .hero--v2 {
  background: linear-gradient(180deg, #0a1428 0%, #0f172a 60%, #0a1424 100%);
  border-bottom-color: rgba(148,163,184,0.12);
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(59,130,246,0.10), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(16,185,129,0.08), transparent 60%);
  z-index: -1;
}

html.dark .hero-v2-bg {
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(59,130,246,0.18), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(16,185,129,0.10), transparent 60%);
}

.hero-v2-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}
.hero-v2-glow--a { top: -120px; right: -120px; background: rgba(59,130,246,0.40); }
.hero-v2-glow--b { bottom: -160px; left: -140px; background: rgba(16,185,129,0.30); }

html.dark .hero-v2-glow--a { background: rgba(59,130,246,0.30); }
html.dark .hero-v2-glow--b { background: rgba(16,185,129,0.18); }

.hero-v2-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero-v2-content { min-width: 0; }

.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(30,64,175,0.08);
  border: 1px solid rgba(30,64,175,0.18);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero-v2-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  animation: heroV2Pulse 2.4s ease-in-out infinite;
}
@keyframes heroV2Pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.18); }
  50%     { box-shadow: 0 0 0 8px rgba(16,185,129,0.04); }
}

.hero--v2 h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-v2-subhead {
  font-size: clamp(1.05rem, 1vw + 0.7rem, 1.18rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-v2-form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--primary-lighter);
  border-radius: 14px;
  padding: 4px 4px 4px 16px;
  max-width: 520px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(30,64,175,0.08), 0 12px 40px rgba(30,64,175,0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hero-v2-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(30,64,175,0.16), 0 12px 40px rgba(30,64,175,0.10);
}
html.dark .hero-v2-form { background: #0f172a; border-color: rgba(148,163,184,0.20); }
.hero-v2-form-icon { display: inline-flex; color: var(--text-muted); margin-right: 10px; }
.hero-v2-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 6px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: transparent;
  color: var(--text);
  min-width: 0;
}
.hero-v2-form input::placeholder { color: var(--text-light); }
.hero-v2-form .btn-primary { padding: 12px 22px; border-radius: 10px; font-weight: 700; }

.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.hero-v2-link:hover { gap: 10px; }
.hero-v2-link svg { color: var(--primary); }

.hero-v2-secondary {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-v2-secondary:hover { color: var(--primary); }

.hero-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
html.dark .hero-v2-stats { border-top-color: rgba(148,163,184,0.18); }
.hero-v2-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-v2-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-v2-stat-label { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }

/* AI Provisioning Panel (glass) */
.hero-v2-panel {
  border-radius: 20px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(248,250,252,0.94) 100%);
  border: 1px solid rgba(30,64,175,0.18);
  box-shadow:
    0 14px 36px rgba(15,23,42,0.10),
    0 30px 80px rgba(30,64,175,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html.dark .hero-v2-panel {
  background: linear-gradient(180deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.92) 100%);
  border-color: rgba(148,163,184,0.18);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.hero-v2-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
html.dark .hero-v2-panel-head { border-bottom-color: rgba(148,163,184,0.14); }
.hero-v2-panel-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.hero-v2-panel-title { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.hero-v2-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16,185,129,0.12);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html.dark .hero-v2-panel-status { background: rgba(16,185,129,0.20); color: #6ee7b7; }
.hero-v2-panel-status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.22);
}

.hero-v2-panel-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hero-v2-panel-steps li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
html.dark .hero-v2-panel-steps li { background: rgba(15,23,42,0.62); border-color: rgba(148,163,184,0.12); color: rgba(226,232,240,0.78); }

.hero-v2-panel-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-light);
  border: 1px solid var(--border);
}
html.dark .hero-v2-panel-step-icon { background: rgba(15,23,42,0.85); border-color: rgba(148,163,184,0.16); color: rgba(226,232,240,0.6); }

.hero-v2-panel-steps .is-done .hero-v2-panel-step-icon {
  background: rgba(16,185,129,0.14);
  color: var(--accent-dark);
  border-color: rgba(16,185,129,0.25);
}
.hero-v2-panel-steps .is-done .hero-v2-panel-step-text { color: var(--text); font-weight: 600; }

.hero-v2-panel-steps .is-active {
  background: rgba(30,64,175,0.06);
  border-color: rgba(30,64,175,0.20);
  color: var(--text);
}
html.dark .hero-v2-panel-steps .is-active { background: rgba(59,130,246,0.16); border-color: rgba(59,130,246,0.30); color: #f1f5f9; }
.hero-v2-panel-steps .is-active .hero-v2-panel-step-icon {
  background: rgba(30,64,175,0.10);
  color: var(--primary);
  border-color: rgba(30,64,175,0.30);
}
.hero-v2-panel-step-icon--spin svg { animation: heroV2Spin 1.6s linear infinite; transform-origin: 50% 50%; }
@keyframes heroV2Spin { to { transform: rotate(360deg); } }

.hero-v2-panel-step-text { font-weight: 500; }
.hero-v2-panel-step-time {
  font-family: 'SFMono-Regular','JetBrains Mono',Menlo,Consolas,monospace;
  font-size: 0.78rem;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}

.hero-v2-panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
html.dark .hero-v2-panel-meta { border-top-color: rgba(148,163,184,0.12); }
.hero-v2-panel-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
html.dark .hero-v2-panel-meta-item { background: rgba(15,23,42,0.62); border-color: rgba(148,163,184,0.14); color: rgba(226,232,240,0.78); }
.hero-v2-panel-meta-item span { display: inline-flex; color: var(--primary); }

/* ---- 2) TRUST STRIP v2 ---- */
.trust-strip--v2 {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
html.dark .trust-strip--v2 { background: #0d1729; border-color: rgba(148,163,184,0.14); }

.trust-strip-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
  align-items: center;
}
.trust-strip-v2-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-strip-v2-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,64,175,0.10);
  color: var(--primary);
  border: 1px solid rgba(30,64,175,0.18);
}
.trust-strip-v2-item div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-strip-v2-item strong { font-size: 0.92rem; color: var(--text); font-weight: 700; }
.trust-strip-v2-item span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- 3) HOW IT WORKS v2 ---- */
.how-it-works--v2 .section-header { margin-bottom: 64px; }
.steps-grid--v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  position: relative;
}
.steps-grid--v2::before { display: none; }
.step-card--v2 {
  position: relative;
  text-align: left;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
html.dark .step-card--v2 { background: var(--bg-alt); border-color: rgba(148,163,184,0.14); box-shadow: 0 8px 24px rgba(0,0,0,0.30); }
.step-card--v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15,23,42,0.12);
  border-color: rgba(30,64,175,0.30);
}
.step-card-v2-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-lighter);
  letter-spacing: 0.02em;
}
html.dark .step-card-v2-num { color: rgba(59,130,246,0.32); }
.step-card-v2-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30,64,175,0.10) 0%, rgba(16,185,129,0.10) 100%);
  color: var(--primary);
  margin-bottom: 20px;
}
.step-card--v2 h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.step-card--v2 p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.step-card--v2 .step-duration {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(16,185,129,0.10);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}
html.dark .step-card--v2 .step-duration { background: rgba(16,185,129,0.18); color: #6ee7b7; }
.step-card--v2-active { border-color: rgba(30,64,175,0.30); box-shadow: 0 14px 34px rgba(30,64,175,0.10); }

/* ---- 4) FEATURE SECTION v2 ---- */
.feature-section--v2 .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.feature-section--v2-alt .feature-grid > .feature-text { order: 2; }
.feature-section--v2-alt .feature-grid > .feature-image-wrap { order: 1; }
.feature-section--v2 .feature-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.feature-section--v2 .feature-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw + 0.6rem, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}
.feature-section--v2 .feature-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 540px;
}
.feature-section--v2 .feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.feature-section--v2 .feature-bullets li {
  position: relative;
  padding-left: 32px;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.6;
}
.feature-section--v2 .feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: rgba(16,185,129,0.14);
  border-radius: 50%;
}
.feature-section--v2 .feature-bullets li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--accent-dark);
  border-bottom: 2px solid var(--accent-dark);
  transform: rotate(-45deg);
}
.feature-section--v2 .feature-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(15,23,42,0.10), 0 30px 80px rgba(15,23,42,0.06);
  background: var(--bg-alt);
}
html.dark .feature-section--v2 .feature-image-wrap { background: #0d1729; box-shadow: 0 14px 36px rgba(0,0,0,0.40); }
.feature-section--v2 .feature-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.feature-section--v2 .feature-image-wrap:hover img { transform: translateY(-4px) scale(1.01); }
.feature-section--v2 .feature-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.96);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(30,64,175,0.16);
  box-shadow: 0 6px 18px rgba(15,23,42,0.10);
}
html.dark .feature-section--v2 .feature-image-badge { background: rgba(15,23,42,0.92); color: #93c5fd; border-color: rgba(148,163,184,0.16); }

/* ---- 5) TESTIMONIALS v2 — STATIC GRID (no scroll) ---- */
.testimonials--v2 { padding: clamp(72px, 9vw, 120px) 0; background: var(--bg-alt); }
html.dark .testimonials--v2 { background: #0a1424; }
.testimonials-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 32px;
}
.testimonials--v2 .testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
html.dark .testimonials--v2 .testimonial-card { background: #0f1d33; border-color: rgba(148,163,184,0.14); box-shadow: 0 8px 24px rgba(0,0,0,0.30); }
.testimonials--v2 .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15,23,42,0.12);
  border-color: rgba(30,64,175,0.20);
}
.testimonials--v2 .testimonial-stars { display: flex; gap: 2px; color: #f59e0b; }
.testimonials--v2 .testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  font-style: normal;
  font-weight: 500;
}
.testimonials--v2 .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
html.dark .testimonials--v2 .testimonial-author { border-top-color: rgba(148,163,184,0.14); }
.testimonials--v2 .testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials--v2 .testimonial-name { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.testimonials--v2 .testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

.testimonials--v2 .trust-external {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.testimonials--v2 .trust-external p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.testimonials--v2 .trustpilot-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00b67a;
  font-weight: 700;
  text-decoration: none;
}

/* ---- 6) STATS BAR v2 ---- */
.stats-bar--v2 { padding: 48px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
html.dark .stats-bar--v2 { background: var(--bg); border-color: rgba(148,163,184,0.12); }
.stats-grid--v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.stat-item--v2 { text-align: center; }
.stat-item--v2 .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.stat-item--v2 .stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ---- 7) FAQ v2 ---- */
.faq--v2 .section-header { margin-bottom: 48px; }
.faq-list--v2 { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item--v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
html.dark .faq-item--v2 { background: var(--bg-alt); border-color: rgba(148,163,184,0.14); }
.faq-item--v2:hover { border-color: rgba(30,64,175,0.20); box-shadow: 0 6px 20px rgba(15,23,42,0.06); }
.faq-item--v2 .faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
}
.faq-item--v2 .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30,64,175,0.08);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.faq-item--v2.open .faq-icon { transform: rotate(45deg); }
.faq-item--v2 .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-item--v2.open .faq-answer { max-height: 600px; }
.faq-item--v2 .faq-answer-inner { padding: 0 24px 22px; color: var(--text-muted); line-height: 1.7; font-size: 0.96rem; }

/* ---- 8) TRUST BADGES v2 ---- */
.trust-badges-row--v2 { padding: 32px 0; background: var(--bg); border-top: 1px solid var(--border); }
html.dark .trust-badges-row--v2 { border-top-color: rgba(148,163,184,0.12); }
.trust-badges-row--v2 .trust-badges-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.trust-badges-row--v2 .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
html.dark .trust-badges-row--v2 .trust-badge { background: rgba(15,23,42,0.62); border-color: rgba(148,163,184,0.14); color: rgba(226,232,240,0.78); }
.trust-badges-row--v2 .tb-icon { color: var(--accent); display: inline-flex; }

/* ---- 9) TEAM STRIP v2 ---- */
.team-strip--v2 .team-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.team-strip--v2 .team-image-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 14px 36px rgba(15,23,42,0.10); }
.team-strip--v2 .team-image-wrap img { width: 100%; height: auto; display: block; }
.team-strip--v2 .team-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.team-strip--v2 .team-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw + 0.6rem, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.team-strip--v2 .team-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
  max-width: 580px;
}
.team-strip-v2-link { margin-top: 12px; display: inline-flex !important; }

/* ---- 10) FINAL CTA v2 ---- */
.final-cta--v2 {
  position: relative;
  isolation: isolate;
  padding: 0;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.final-cta-overlay--v2 {
  width: 100%;
  background: linear-gradient(135deg, rgba(15,23,42,0.86) 0%, rgba(15,23,42,0.74) 50%, rgba(30,64,175,0.62) 100%);
  padding: clamp(72px, 10vw, 140px) 0;
  text-align: center;
}
.final-cta-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.final-cta-v2-eyebrow-dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.30);
}
.final-cta--v2 h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 18px;
}
.final-cta--v2 p {
  font-size: clamp(1.05rem, 1.2vw + 0.6rem, 1.2rem);
  color: rgba(241,245,249,0.92);
  max-width: 640px;
  margin: 0 auto 32px;
}
.final-cta-v2-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.final-cta-v2-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.30);
  transition: background 0.2s ease, transform 0.2s ease;
}
.final-cta-v2-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.final-cta--v2 .final-cta-note { font-size: 0.85rem; color: rgba(241,245,249,0.72); margin-top: 8px; }

/* ---- 11) Mobile-sticky CTA tweaks (kept) ---- */
.mobile-sticky-cta { display: none; }
@media (max-width: 768px) {
  .mobile-sticky-cta {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 90;
    padding: 12px 16px;
    background: rgba(255,255,255,0.94);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(15,23,42,0.10);
  }
  html.dark .mobile-sticky-cta { background: rgba(15,23,42,0.94); border-top-color: rgba(148,163,184,0.16); }
  .mobile-sticky-cta .btn-primary { width: 100%; justify-content: center; }
  .footer { padding-bottom: 84px; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1100px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-v2-panel { max-width: 560px; margin-inline: auto; width: 100%; }
  .hero-v2-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-section--v2 .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-section--v2-alt .feature-grid > .feature-text { order: 1; }
  .feature-section--v2-alt .feature-grid > .feature-image-wrap { order: 2; }
  .testimonials-grid-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-strip--v2 .team-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .hero--v2,
  .how-it-works--v2,
  .feature-section--v2,
  .faq--v2,
  .team-strip--v2 { padding-block: 56px; }
  .hero--v2 { padding-top: 64px; }
  .hero-v2-grid { gap: 40px; }
  .hero-v2-content { text-align: left; }
  .hero-v2-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 24px; }
  .hero-v2-form { padding: 4px; flex-wrap: wrap; }
  .hero-v2-form-icon { padding-left: 12px; }
  .hero-v2-form input { padding: 12px 8px; flex: 1 1 60%; }
  .hero-v2-form .btn-primary { flex: 1 1 100%; padding: 14px; justify-content: center; margin-top: 4px; }
  .hero-v2-actions { gap: 16px; }
  .hero-v2-panel { padding: 20px; }

  .trust-strip-v2-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .trust-strip-v2-item { gap: 12px; }
  .trust-strip-v2-icon { width: 38px; height: 38px; }

  .steps-grid--v2 { grid-template-columns: 1fr; gap: 16px; }
  .step-card--v2 { padding: 24px; }

  .testimonials-grid-v2 { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }

  .stats-grid--v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .stat-item--v2 { text-align: center; }

  .faq-item--v2 .faq-question { padding: 16px 18px; font-size: 0.96rem; }
  .faq-item--v2 .faq-answer-inner { padding: 0 18px 18px; }

  .trust-badges-row--v2 { padding: 24px 0; }
  .trust-badges-row--v2 .trust-badge { font-size: 0.8rem; padding: 8px 12px; }

  .final-cta--v2 { min-height: 0; }
  .final-cta-overlay--v2 { padding: 80px 0; }
  .final-cta-v2-actions { flex-direction: column; gap: 12px; }
  .final-cta-v2-actions a { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .hero-v2-stats { grid-template-columns: 1fr 1fr; }
  .trust-strip-v2-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO v2 — Background Photo (light + dark variants)
   ============================================================ */
.hero-v2-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url('/assets/images/hero-cinematic-light-1280.webp') center right / cover no-repeat;
  background-position: 65% center;
  pointer-events: none;
}

@media (min-width: 1280px) {
  .hero-v2-photo {
    background-image: url('/assets/images/hero-cinematic-light.webp');
  }
}

@media (max-width: 600px) {
  .hero-v2-photo {
    background-image: url('/assets/images/hero-cinematic-light-800.webp');
  }
}

html.dark .hero-v2-photo {
  background-image: url('/assets/images/hero-cinematic-1280.webp');
}

@media (max-width: 600px) {
  html.dark .hero-v2-photo {
    background-image: url('/assets/images/hero-cinematic-800.webp');
  }
}

@media (min-width: 1280px) {
  html.dark .hero-v2-photo {
    background-image: url('/assets/images/hero-cinematic.webp');
  }
}

.hero-v2-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(248,250,252,0.96) 0%,
    rgba(248,250,252,0.88) 28%,
    rgba(248,250,252,0.55) 55%,
    rgba(248,250,252,0.18) 78%,
    rgba(248,250,252,0.00) 100%
  );
}

html.dark .hero-v2-photo-overlay {
  background: linear-gradient(
    90deg,
    rgba(10,14,26,0.96) 0%,
    rgba(10,14,26,0.86) 28%,
    rgba(10,14,26,0.50) 55%,
    rgba(10,14,26,0.16) 78%,
    rgba(10,14,26,0.00) 100%
  );
}

@media (max-width: 1100px) {
  .hero-v2-photo-overlay {
    background: linear-gradient(
      180deg,
      rgba(248,250,252,0.92) 0%,
      rgba(248,250,252,0.85) 35%,
      rgba(248,250,252,0.65) 65%,
      rgba(248,250,252,0.85) 100%
    );
  }
  html.dark .hero-v2-photo-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,14,26,0.92) 0%,
      rgba(10,14,26,0.82) 35%,
      rgba(10,14,26,0.55) 65%,
      rgba(10,14,26,0.85) 100%
    );
  }
}

.hero-v2-bg { z-index: -1; }
.hero-v2-glow { z-index: -1; }

/* ============================================================
   Disable scroll-in animation jitter for testimonials carousel
   ============================================================ */
.testimonials .testimonial-card,
.testimonials .testimonials-grid {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ============================================================
   Feature image — remove rounded square, blend with background
   ============================================================ */
.feature-section--v2 .feature-image-wrap {
  position: relative;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
}
.feature-section--v2 .feature-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent;
  /* Light mode: multiply lets the white image bg blend into white/bg-alt sections */
  mix-blend-mode: multiply;
}
html.dark .feature-section--v2 .feature-image-wrap img {
  /* Dark mode: don't multiply (would crush the image). Use luminosity to invert tone. */
  mix-blend-mode: normal;
  filter: brightness(0.95) saturate(0.95);
  border-radius: 12px !important;
}

/* ============================================================
   Feature image — soft edge fade to fully blend with section
   ============================================================ */
.feature-section--v2 .feature-image-wrap img {
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-composite: intersect;
}
html.dark .feature-section--v2 .feature-image-wrap img {
  -webkit-mask-image: none;
  mask-image: none;
}

/* ============================================================
   Feature image — fixed (no hover zoom) and 30% larger
   ============================================================ */
/* Disable hover scale */
.feature-section--v2 .feature-image-wrap:hover img,
.feature-section--v2 .feature-image-wrap img:hover {
  transform: none !important;
  scale: 1 !important;
}

/* Make image column 30% larger (from 50/50 to 35/65) */
.feature-section--v2 .feature-grid {
  grid-template-columns: 35fr 65fr;
}
.feature-section--v2-alt .feature-grid {
  grid-template-columns: 65fr 35fr;
}

/* Mobile: stay single-column */
@media (max-width: 1100px) {
  .feature-section--v2 .feature-grid,
  .feature-section--v2-alt .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Feature grid — fixed image width, expanded text column
   ============================================================ */
@media (min-width: 1100px) {
  .feature-section--v2 .container {
    max-width: 1400px;
  }
  .feature-section--v2 .feature-grid,
  .feature-section--v2-alt .feature-grid {
    grid-template-columns: minmax(0, 1fr) min(50vw, 713px);
    gap: clamp(40px, 4vw, 64px);
    align-items: center;
  }
  .feature-section--v2-alt .feature-grid {
    grid-template-columns: min(50vw, 713px) minmax(0, 1fr);
  }
  .feature-section--v2 .feature-text p {
    max-width: 540px;
  }
}

/* ============================================================
   Team strip — kill 2px baseline gap at bottom of image
   ============================================================ */
.team-strip--v2 .team-image-wrap {
  display: flex;
  font-size: 0;
  line-height: 0;
}
.team-strip--v2 .team-image-wrap img {
  vertical-align: bottom;
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   Hero Provisioning Steps — list in glass box, sequential animation
   Pattern: 5 step rows, each cycles idle → spinning → done (green check)
   12s loop, staggered so steps build sequentially
   ============================================================ */
.hero-v2-panel-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.prov-step {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
html.dark .prov-step {
  background: rgba(15,23,42,0.62);
  border-color: rgba(148,163,184,0.12);
  color: rgba(226,232,240,0.78);
}
.prov-step-text { font-weight: 500; min-width: 0; }
.prov-step-time {
  font-family: 'SFMono-Regular','JetBrains Mono',Menlo,Consolas,monospace;
  font-size: 0.78rem;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}

.prov-step-icons {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.prov-step-icon {
  position: absolute;
  inset: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text-light);
  border: 1px solid var(--border);
  opacity: 0;
}
html.dark .prov-step-icon {
  background: rgba(15,23,42,0.85);
  border-color: rgba(148,163,184,0.16);
  color: rgba(226,232,240,0.6);
}
.prov-step-icon--idle { opacity: 1; }
.prov-step-icon--spin {
  background: rgba(30,64,175,0.10);
  color: var(--primary);
  border-color: rgba(30,64,175,0.30);
}
html.dark .prov-step-icon--spin {
  background: rgba(59,130,246,0.18);
  color: #93c5fd;
  border-color: rgba(59,130,246,0.40);
}
.prov-step-icon--check {
  background: rgba(16,185,129,0.14);
  color: var(--accent-dark);
  border-color: rgba(16,185,129,0.30);
}
html.dark .prov-step-icon--check {
  background: rgba(16,185,129,0.20);
  color: #6ee7b7;
  border-color: rgba(16,185,129,0.40);
}

/* Per-row keyframes — synchronized 12s cycle, sequential progression */
@keyframes provStep1 {
  0%, 8%    { background: var(--bg-alt); border-color: var(--border); color: var(--text-muted); }
  10%, 16%  { background: rgba(30,64,175,0.06); border-color: rgba(30,64,175,0.20); color: var(--text); }
  18%, 100% { background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.20); color: var(--text); }
}
@keyframes provStep2 {
  0%, 25%   { background: var(--bg-alt); border-color: var(--border); color: var(--text-muted); }
  27%, 33%  { background: rgba(30,64,175,0.06); border-color: rgba(30,64,175,0.20); color: var(--text); }
  35%, 100% { background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.20); color: var(--text); }
}
@keyframes provStep3 {
  0%, 42%   { background: var(--bg-alt); border-color: var(--border); color: var(--text-muted); }
  44%, 50%  { background: rgba(30,64,175,0.06); border-color: rgba(30,64,175,0.20); color: var(--text); }
  52%, 100% { background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.20); color: var(--text); }
}
@keyframes provStep4 {
  0%, 59%   { background: var(--bg-alt); border-color: var(--border); color: var(--text-muted); }
  61%, 67%  { background: rgba(30,64,175,0.06); border-color: rgba(30,64,175,0.20); color: var(--text); }
  69%, 100% { background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.20); color: var(--text); }
}
@keyframes provStep5 {
  0%, 76%   { background: var(--bg-alt); border-color: var(--border); color: var(--text-muted); }
  78%, 84%  { background: rgba(30,64,175,0.06); border-color: rgba(30,64,175,0.20); color: var(--text); }
  86%, 100% { background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.20); color: var(--text); }
}

/* Icon visibility per row */
@keyframes provIcon1Idle  { 0%, 8%   { opacity: 1; } 9%, 100% { opacity: 0; } }
@keyframes provIcon1Spin  { 0%, 8%   { opacity: 0; transform: rotate(0); } 10% { opacity: 1; } 16% { opacity: 1; transform: rotate(720deg); } 17%, 100% { opacity: 0; } }
@keyframes provIcon1Check { 0%, 16%  { opacity: 0; transform: scale(0.6); } 18% { opacity: 1; transform: scale(1.15); } 22%, 100% { opacity: 1; transform: scale(1); } }

@keyframes provIcon2Idle  { 0%, 25%  { opacity: 1; } 26%, 100% { opacity: 0; } }
@keyframes provIcon2Spin  { 0%, 25%  { opacity: 0; transform: rotate(0); } 27% { opacity: 1; } 33% { opacity: 1; transform: rotate(720deg); } 34%, 100% { opacity: 0; } }
@keyframes provIcon2Check { 0%, 33%  { opacity: 0; transform: scale(0.6); } 35% { opacity: 1; transform: scale(1.15); } 39%, 100% { opacity: 1; transform: scale(1); } }

@keyframes provIcon3Idle  { 0%, 42%  { opacity: 1; } 43%, 100% { opacity: 0; } }
@keyframes provIcon3Spin  { 0%, 42%  { opacity: 0; transform: rotate(0); } 44% { opacity: 1; } 50% { opacity: 1; transform: rotate(720deg); } 51%, 100% { opacity: 0; } }
@keyframes provIcon3Check { 0%, 50%  { opacity: 0; transform: scale(0.6); } 52% { opacity: 1; transform: scale(1.15); } 56%, 100% { opacity: 1; transform: scale(1); } }

@keyframes provIcon4Idle  { 0%, 59%  { opacity: 1; } 60%, 100% { opacity: 0; } }
@keyframes provIcon4Spin  { 0%, 59%  { opacity: 0; transform: rotate(0); } 61% { opacity: 1; } 67% { opacity: 1; transform: rotate(720deg); } 68%, 100% { opacity: 0; } }
@keyframes provIcon4Check { 0%, 67%  { opacity: 0; transform: scale(0.6); } 69% { opacity: 1; transform: scale(1.15); } 73%, 100% { opacity: 1; transform: scale(1); } }

@keyframes provIcon5Idle  { 0%, 76%  { opacity: 1; } 77%, 100% { opacity: 0; } }
@keyframes provIcon5Spin  { 0%, 76%  { opacity: 0; transform: rotate(0); } 78% { opacity: 1; } 84% { opacity: 1; transform: rotate(720deg); } 85%, 100% { opacity: 0; } }
@keyframes provIcon5Check { 0%, 84%  { opacity: 0; transform: scale(0.6); } 86% { opacity: 1; transform: scale(1.15); } 90%, 100% { opacity: 1; transform: scale(1); } }

@keyframes provTime1 { 0%, 8%   { color: var(--text-light); } 10%, 16% { color: var(--primary); } 18%, 100% { color: var(--accent-dark); } }
@keyframes provTime2 { 0%, 25%  { color: var(--text-light); } 27%, 33% { color: var(--primary); } 35%, 100% { color: var(--accent-dark); } }
@keyframes provTime3 { 0%, 42%  { color: var(--text-light); } 44%, 50% { color: var(--primary); } 52%, 100% { color: var(--accent-dark); } }
@keyframes provTime4 { 0%, 59%  { color: var(--text-light); } 61%, 67% { color: var(--primary); } 69%, 100% { color: var(--accent-dark); } }
@keyframes provTime5 { 0%, 76%  { color: var(--text-light); } 78%, 84% { color: var(--primary); } 86%, 100% { color: var(--accent-dark); } }

.prov-step--1                          { animation: provStep1 12s linear infinite; }
.prov-step--1 .prov-step-icon--idle    { animation: provIcon1Idle 12s linear infinite; }
.prov-step--1 .prov-step-icon--spin    { animation: provIcon1Spin 12s linear infinite; }
.prov-step--1 .prov-step-icon--check   { animation: provIcon1Check 12s linear infinite; }
.prov-step--1 .prov-step-time          { animation: provTime1 12s linear infinite; }

.prov-step--2                          { animation: provStep2 12s linear infinite; }
.prov-step--2 .prov-step-icon--idle    { animation: provIcon2Idle 12s linear infinite; }
.prov-step--2 .prov-step-icon--spin    { animation: provIcon2Spin 12s linear infinite; }
.prov-step--2 .prov-step-icon--check   { animation: provIcon2Check 12s linear infinite; }
.prov-step--2 .prov-step-time          { animation: provTime2 12s linear infinite; }

.prov-step--3                          { animation: provStep3 12s linear infinite; }
.prov-step--3 .prov-step-icon--idle    { animation: provIcon3Idle 12s linear infinite; }
.prov-step--3 .prov-step-icon--spin    { animation: provIcon3Spin 12s linear infinite; }
.prov-step--3 .prov-step-icon--check   { animation: provIcon3Check 12s linear infinite; }
.prov-step--3 .prov-step-time          { animation: provTime3 12s linear infinite; }

.prov-step--4                          { animation: provStep4 12s linear infinite; }
.prov-step--4 .prov-step-icon--idle    { animation: provIcon4Idle 12s linear infinite; }
.prov-step--4 .prov-step-icon--spin    { animation: provIcon4Spin 12s linear infinite; }
.prov-step--4 .prov-step-icon--check   { animation: provIcon4Check 12s linear infinite; }
.prov-step--4 .prov-step-time          { animation: provTime4 12s linear infinite; }

.prov-step--5                          { animation: provStep5 12s linear infinite; }
.prov-step--5 .prov-step-icon--idle    { animation: provIcon5Idle 12s linear infinite; }
.prov-step--5 .prov-step-icon--spin    { animation: provIcon5Spin 12s linear infinite; }
.prov-step--5 .prov-step-icon--check   { animation: provIcon5Check 12s linear infinite; }
.prov-step--5 .prov-step-time          { animation: provTime5 12s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .prov-step,
  .prov-step .prov-step-icon,
  .prov-step .prov-step-time { animation: none !important; }
  .prov-step-icon--idle, .prov-step-icon--spin { opacity: 0; }
  .prov-step-icon--check { opacity: 1; }
  .prov-step { background: rgba(16,185,129,0.06); border-color: rgba(16,185,129,0.20); color: var(--text); }
  html.dark .prov-step { background: rgba(16,185,129,0.18); }
}

/* ============================================================
   Force announcement bar always visible (override JS dismiss)
   ============================================================ */
#announcement-bar { display: block !important; }

/* ============================================================
   Hero — restore WHITE background for domain search form
   (override main.css dark-glass !important rule in light mode)
   ============================================================ */
html:not(.dark) .hero.hero--cinematic .domain-search-form {
  background: #ffffff !important;
  border: 2px solid var(--primary-lighter) !important;
  box-shadow: 0 6px 20px rgba(30,64,175,0.10) !important;
}
html:not(.dark) .hero.hero--cinematic .domain-search-form input {
  color: var(--text) !important;
  background: transparent !important;
}
html:not(.dark) .hero.hero--cinematic .domain-search-form input::placeholder {
  color: var(--text-muted) !important;
}

/* ============================================================
   Hero — make active chip icon clean & vivid (solid blue + white spinner)
   ============================================================ */
.hero--cinematic .chip.is-active .chip-icon {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
  border-color: rgba(30,64,175,0.6) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(30,64,175,0.35), 0 0 0 4px rgba(59,130,246,0.18) !important;
}
.hero--cinematic .chip.is-active .chip-icon svg { color: #ffffff !important; }

/* Done state icon: solid green gradient */
.hero--cinematic .chip.is-done .chip-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  border-color: rgba(16,185,129,0.55) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(16,185,129,0.30), 0 0 0 4px rgba(16,185,129,0.18) !important;
}
.hero--cinematic .chip.is-done .chip-icon svg { color: #ffffff !important; }

/* Pending state: keep neutral gray */
.hero--cinematic .chip.is-pending .chip-icon {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #94a3b8;
}
html.dark .hero--cinematic .chip.is-pending .chip-icon {
  background: rgba(15,23,42,0.85);
  border-color: rgba(148,163,184,0.30);
  color: rgba(148,163,184,0.7);
}

/* ============================================================
   Hero chip wheel — chip width 80% of panel (20% narrower)
   ============================================================ */
.hero--cinematic .chip {
  left: 10% !important;
  right: 10% !important;
}
@media (max-width: 600px) {
  .hero--cinematic .chip {
    left: 4% !important;
    right: 4% !important;
  }
}

/* ============================================================
   Announcement bar — fix star alignment + spacing
   ============================================================ */
#announcement-bar {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 48px 8px 16px !important;
  line-height: 1.3;
}
#announcement-bar > svg {
  flex-shrink: 0;
  vertical-align: middle;
}
#announcement-bar a { margin-left: 4px; }
@media (max-width: 600px) {
  #announcement-bar { font-size: 0.78rem; padding: 8px 40px 8px 12px !important; }
}

/* ============================================================
   Hero chip — keep active chip text crisp (avoid 3D subpixel blur)
   ============================================================ */
.hero--cinematic .chip.is-active {
  transform-style: flat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
}

/* ============================================================
   Hero active chip — bigger via real dimensions (not scale)
   so text stays crisp at native pixel resolution
   ============================================================ */
.hero--cinematic .chip.is-center {
  left: 5% !important;
  right: 5% !important;
  height: 72px !important;
  margin-top: -36px !important;
  padding: 16px 22px !important;
  font-size: 1.02rem !important;
}
.hero--cinematic .chip.is-center .chip-icon {
  width: 36px !important;
  height: 36px !important;
}
.hero--cinematic .chip.is-center .chip-icon svg {
  width: 18px !important;
  height: 18px !important;
}
.hero--cinematic .chip.is-center .chip-text {
  font-weight: 700;
}

/* ============================================================
   Hero "Build My Site" button — no hover lift (static)
   ============================================================ */
.hero--cinematic .domain-search-form .btn-primary,
.hero--cinematic .domain-search-form .btn-primary:hover,
.hero--cinematic .domain-search-form .btn-primary:active,
.hero--cinematic .domain-search-form .btn-primary:focus {
  transform: none !important;
}
