/* ============================================================
   index.css — Hero, Dualité, How-it-works, Features, Trust, Pricing, FAQ
   ============================================================ */

/* ── Grille de fond ─────────────────────────────────────────── */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 100%);
}

/* ── Section header partagé ─────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
  line-height: 1.1;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.72;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(4rem, 6vw, 5rem);
  overflow: hidden;
}

/* Lueur très subtile en arrière-plan */
#hero::after {
  content: '';
  position: absolute;
  top: -5%;
  left: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at 35% 40%, rgba(0,217,184,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.8rem;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease) 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.5s ease-in-out infinite;
}

/* ── Line reveal titre ── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero-line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 870ms var(--ease), opacity 600ms ease;
}
body.hero-loaded .hero-line-inner           { transform: none; opacity: 1; }
body.hero-loaded .hero-line:nth-child(1) .hero-line-inner { transition-delay: 200ms; }
body.hero-loaded .hero-line:nth-child(2) .hero-line-inner { transition-delay: 350ms; }
body.hero-loaded .hero-line:nth-child(3) .hero-line-inner { transition-delay: 500ms; }

.hero-title em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 420px;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease) 0.8s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease) 0.95s both;
}
.hero-actions .btn-primary { font-size: 1rem; padding: 0.9rem 1.75rem; }

/* ── Mockup screenshot ── */
.hero-mockup {
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease) 0.5s both;
}

.mockup-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.02);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }

.mockup-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.25rem 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-screen {
  overflow: hidden;
  position: relative;
  background: #1A1E25;
}
.mockup-screen img {
  width: 100%;
  display: block;
  max-height: 400px;
  object-fit: cover;
  object-position: center top;
}

/* Dégradé en bas de l'image pour fondu premium */
.mockup-screen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--bg-surface));
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   DUALITÉ — Avant / Après
═══════════════════════════════════════════════════════════ */
#duality {
  padding: var(--section-pad) 0;
  position: relative;
}

.duality-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.duality-panel {
  padding: clamp(2rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* AVANT */
.duality-before {
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
}
.duality-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.24rem 0.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
}
.duality-before .duality-label {
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.duality-before .duality-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
}

.missed-deals { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.missed-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.missed-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(200,50,40,0.07);
  border: 1px solid rgba(200,50,40,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(200,70,60,0.7);
}
.missed-info { flex: 1; min-width: 0; }
.missed-name {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.missed-time {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(190,60,50,0.55);
  display: block;
  margin-top: 0.1rem;
}

.duality-verdict {
  font-size: 0.83rem;
  font-weight: 500;
  padding: 0.65rem 0.9rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.duality-before .duality-verdict {
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}

/* APRÈS */
.duality-after {
  background: linear-gradient(150deg, #0C1412, #0F1A17);
  position: relative;
  overflow: hidden;
}
.duality-after .duality-label {
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
}
.duality-after .duality-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.2s ease-in-out infinite;
}
.duality-after .duality-verdict {
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
}

/* Fade-in éléments APRÈS */
.fade-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.duality-after.revealed .fade-item { opacity: 1; transform: none; }
.duality-after.revealed .fade-item:nth-child(1) { transition-delay: 0ms; }
.duality-after.revealed .fade-item:nth-child(2) { transition-delay: 120ms; }
.duality-after.revealed .fade-item:nth-child(3) { transition-delay: 240ms; }
.duality-after.revealed .fade-item:nth-child(4) { transition-delay: 360ms; }

/* Alerte live */
.live-alert {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  background: rgba(0,217,184,0.04);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-md);
}
.live-alert-ping {
  position: relative;
  width: 8px; height: 8px;
  flex-shrink: 0;
}
.live-alert-ping::before,
.live-alert-ping::after { content: ''; position: absolute; inset: 0; border-radius: 50%; }
.live-alert-ping::before { background: var(--accent); }
.live-alert-ping::after {
  background: var(--accent);
  opacity: 0.4;
  animation: pulse-ring 1.8s ease-out infinite;
}
.live-alert-text { flex: 1; font-size: 0.85rem; color: var(--text-primary); font-weight: 500; }
.live-alert-now {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}

/* Mini DEAL Score */
.mini-deal-score {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
}
.mini-deal-header {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.mini-deal-body { display: flex; align-items: baseline; gap: 0.2rem; margin-bottom: 0.35rem; }
.mini-deal-number { font-family: var(--font-mono); font-size: 2.2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.mini-deal-denom { font-size: 0.9rem; color: var(--text-muted); }
.mini-deal-margin { font-size: 0.75rem; color: var(--text-secondary); display: block; margin-bottom: 0.6rem; }
.mini-deal-bar { height: 2px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.mini-deal-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0, 0, 1);
}
.duality-after.revealed .mini-deal-fill { width: 87%; transition-delay: 280ms; }

/* ═══════════════════════════════════════════════════════════
   COMMENT ÇA MARCHE
═══════════════════════════════════════════════════════════ */
#how {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.steps-wrapper {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 400ms var(--ease);
}
.step-card:hover { border-color: var(--border-hover); }

.step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 2.75rem;
  justify-content: center;
}
.step-connector::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--border-hover);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.step-icon {
  width: 38px; height: 38px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}
.step-icon svg { width: 18px; height: 18px; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.68;
}

/* Screenshot dans step (optionnel) */
.step-visual {
  margin-top: 0.5rem;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.step-visual img {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES — Bento
═══════════════════════════════════════════════════════════ */
#features {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

/* ── Carrousel features ── */
.features-carousel {
  position: relative;
}

.features-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.features-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}
.features-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}
.features-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

.features-arrow {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-hover);
  background: var(--bg-surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms var(--ease);
}
.features-arrow:hover:not(:disabled) {
  border-color: var(--border-accent);
  color: var(--accent);
  background: var(--accent-glow);
}
.features-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.features-track {
  display: flex;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.features-track::-webkit-scrollbar { display: none; }

.feature-card {
  flex: 0 0 100%;
  background: var(--bg-surface);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  scroll-snap-align: start;
  transition: background 400ms var(--ease);
}
.feature-card:hover { background: var(--bg-elevated); }

.feature-card-text { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.feature-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-top: 0.1rem;
}

/* Demo zone générique */
.feature-demo {
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: auto;
}

/* ── Screenshot alertes (photo3) ── */
.feature-screenshot {
  width: 100%;
  display: block;
  border-radius: var(--r-md);
}

/* ── Démo DEAL Score ── */
.score-demo {
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.score-circle-wrap { display: flex; align-items: baseline; gap: 0.2rem; }
.score-num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 3.5ch;
  text-align: right;
}
.score-denom { font-size: 1rem; color: var(--text-muted); }
.score-bar-wrap { width: 100%; height: 2px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.score-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0;
  transition: width 1.3s cubic-bezier(0.25, 0, 0, 1);
}
.feature-card--score.visible .score-bar-fill { width: 87%; transition-delay: 100ms; }
.score-label-row { font-size: 0.75rem; color: var(--text-secondary); text-align: center; }
.score-good { color: var(--accent); font-weight: 600; }

/* ── Démo Auto-message ── */
.message-demo { padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.65rem; }
.msg-bubble {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px 10px 10px 3px;
  padding: 0.75rem 1rem;
  font-size: 0.79rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.msg-sent {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  color: var(--accent);
  padding-left: 0.15rem;
}

/* ── Démo Données ── */
.data-demo { display: flex; flex-direction: column; }
.data-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.79rem;
  gap: 1rem;
}
.data-row:last-child { border-bottom: none; }
.data-key { color: var(--text-muted); white-space: nowrap; }
.data-val { color: var(--text-secondary); font-family: var(--font-mono); font-size: 0.75rem; text-align: right; }
.data-val.highlight { color: var(--text-primary); font-weight: 600; }
.data-val.good      { color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   CONFIANCE
═══════════════════════════════════════════════════════════ */
#trust {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trust-icon {
  width: 36px; height: 36px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; }

.trust-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.trust-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
#pricing { padding: var(--section-pad) 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr 1fr;
  gap: 1rem;
  align-items: start;
}

.plan-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 400ms var(--ease), transform 400ms var(--ease);
}
.plan-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

/* Hustler featured */
.plan-card.featured {
  background: var(--bg-elevated);
  border-color: var(--border-accent);
}
.plan-card.featured:hover { border-color: rgba(0,217,184,0.4); transform: translateY(-3px); }

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #090B0E;
  background: var(--accent);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  letter-spacing: -0.025em;
}
.plan-tagline { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.75rem; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 2rem;
}
.plan-amount {
  font-family: var(--font-mono);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.045em;
  line-height: 1;
}
.plan-card.featured .plan-amount { color: var(--accent); }
.plan-period { font-size: 0.8rem; color: var(--text-muted); }

.plan-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 1.75rem; }

.plan-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; flex: 1; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.plan-feature-icon { flex-shrink: 0; margin-top: 1px; }
.plan-feature-icon.ok  { color: var(--accent); }
.plan-feature-icon.off { color: var(--text-muted); }

.plan-cta {
  width: 100%;
  justify-content: center;
  padding: 0.82rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-md);
}
.plan-card:not(.featured) .plan-cta {
  background: var(--bg-raised);
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  transition: all 400ms var(--ease);
}
.plan-card:not(.featured) .plan-cta:hover {
  border-color: var(--border-accent);
  color: var(--accent);
}

.pricing-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.pricing-note svg { color: var(--accent); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
#faq { padding: var(--section-pad) 0; }

.faq-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-surface);
  transition: border-color 350ms var(--ease);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open  { border-color: var(--border-accent); }

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 300ms var(--ease);
}
.faq-question:hover { color: var(--text-primary); }
.faq-item.open .faq-question { color: var(--text-primary); }

.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 450ms var(--ease), color 300ms var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 500ms var(--ease); }
.faq-answer-inner {
  padding: 1rem 1.4rem 1.35rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.73;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-sub  { max-width: 100%; margin-inline: auto; }
  .hero-eyebrow { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-mockup { max-width: 520px; margin-inline: auto; }

  .duality-split { grid-template-columns: 1fr; }
  .duality-before { border-right: none; border-bottom: 1px solid var(--border); }

  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-connector { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}

@media (max-width: 640px) {
  #hero { padding: 3rem 0 3.5rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .feature-card { flex: 0 0 100%; }

  .trust-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 3rem; }
}
