/* ============================================
   HOME — Styles spécifiques à la page d'accueil
   Hero, logos, stats, problème, piliers,
   how-it-works, témoignages, CTA
   ============================================ */

/* ---- HERO ---- */

.hero {
  min-height: calc(100vh - 106px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 64px 56px 80px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 64px;
}

.hero-left {
  animation: fade-up .65s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--manual-bg);
  color: var(--primary-light);
  border: 1px solid var(--manual-border);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 26px;
}

h1 {
  font-size: clamp(46px, 4.8vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--primary);
  margin-bottom: 24px;
}

h1 em {
  font-style: italic;
  color: var(--primary-light);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(244, 211, 94, .4);
  transition: background .15s, transform .15s, box-shadow .15s;
}

.btn-hero-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(244, 211, 94, .5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  background: transparent;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: var(--font-sans);
  text-decoration: none;
  border: 1.5px solid var(--grey-200);
  transition: border-color .15s, background .15s;
  cursor: pointer;
}

.btn-hero-secondary:hover {
  border-color: var(--primary);
  background: var(--bg-subtle);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sp-avatars {
  display: flex;
}

.sp-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-page);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  margin-left: -8px;
}

.sp-av:first-child {
  margin-left: 0;
}

.sp-text {
  font-size: 13px;
  color: var(--text-muted);
}

.sp-text strong {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ---- HERO VISUAL (floating cards) ---- */

.hero-right {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-up .65s ease .2s both;
}

.hero-bg-shape {
  position: absolute;
  width: 320px;
  height: 440px;
  border-radius: 32px;
  overflow: hidden;
  background: url('/img/hero_photo.jpg') center / cover no-repeat;
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--grey-100);
  box-shadow: 0 16px 48px var(--shadow-normal), 0 2px 8px var(--shadow-light);
  padding: 16px 18px;
  font-family: var(--font-sans);
}

.fc-a { top: 24px; left: -52px; width: 200px; animation: float-a 5.5s ease-in-out infinite; }
.fc-b { top: 8px; right: -32px; width: 228px; animation: float-b 6.5s ease-in-out infinite; }
.fc-c { bottom: 72px; left: -48px; width: 184px; animation: float-c 4.8s ease-in-out 1.2s infinite; }
.fc-d { bottom: 32px; right: -36px; width: 192px; animation: float-a 7.5s ease-in-out .5s infinite; }

.fc-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 7px;
}

.fc-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.fc-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 3px;
}

.fc-bar-wrap {
  height: 5px;
  background: var(--grey-100);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}

.fc-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--manual));
  width: 94%;
}

.fc-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--manual-bg);
  color: var(--primary-light);
  border: 1px solid var(--manual-border);
}

.crit-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid var(--grey-50);
}

.crit-mini:last-child {
  border-bottom: none;
}

.crit-check {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--manual-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--manual-border);
}

.crit-check svg {
  width: 8px;
  height: 8px;
  stroke: var(--primary-light);
  stroke-width: 3;
  fill: none;
}

.crit-txt {
  color: var(--text-secondary);
  flex: 1;
  font-size: 12px;
}

.crit-imp {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.notif-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}

.notif-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--accent-border);
}

.notif-ico svg {
  width: 13px;
  height: 13px;
  stroke: var(--primary);
}

.notif-t {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  flex: 1;
}

.notif-time {
  font-size: 10.5px;
  color: var(--text-muted);
}

.notif-body {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- LOGOS TICKER ---- */

.logos-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  overflow: hidden;
  background: white;
}

.logos-label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.logos-track-wrap {
  overflow: hidden;
  position: relative;
}

.logos-track-wrap::before,
.logos-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.logos-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, white, transparent);
}

.logos-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, white, transparent);
}

.logos-track {
  display: flex;
  gap: 0;
  animation: ticker 24s linear infinite;
  width: fit-content;
}

.logo-item {
  display: flex;
  align-items: center;
  padding: 0 40px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--grey-200);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* ---- STATS ---- */

.stats-strip {
  background: var(--primary);
  padding: 64px 56px;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  transition: background .2s;
}

.stat-item:hover {
  background: rgba(255, 255, 255, .07);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.8vw, 56px);
  font-weight: 400;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number em {
  font-style: italic;
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  font-weight: 300;
  line-height: 1.5;
}

/* ---- PROBLEM ---- */

.problem-band {
  background: white;
  padding: 96px 56px;
}

.problem-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.problem-title-block {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}

.verbatims-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.verbatim-card {
  background: var(--bg-page);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}

.verbatim-card:hover {
  box-shadow: 0 12px 40px var(--shadow-light);
  transform: translateY(-2px);
}

.verbatim-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--grey-100);
  position: absolute;
  top: 12px;
  left: 18px;
  line-height: 1;
}

.verbatim-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--primary);
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.verbatim-wide {
  grid-column: span 2;
}

.verbatim-wide .verbatim-text {
  font-size: 17px;
}

/* ---- PIVOT ---- */

.pivot-block {
  background: var(--primary);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pivot-left h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 38px);
  color: white;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 16px;
}

.pivot-left h3 em {
  font-style: italic;
  color: var(--accent);
}

.pivot-left p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
}

.funnel-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.funnel-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 8px;
  transition: background .15s;
}

.funnel-step:hover {
  background: rgba(255, 255, 255, .1);
}

.funnel-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.funnel-info {
  flex: 1;
}

.funnel-label {
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin-bottom: 2px;
}

.funnel-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
}

.funnel-bar-wrap {
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.funnel-bar {
  height: 100%;
  border-radius: 3px;
  background: var(--accent);
}

.funnel-highlight {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(244, 211, 94, .3);
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 8px;
}

.funnel-highlight p {
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.6;
}

.funnel-highlight strong {
  color: var(--accent);
}

.stat-70 {
  background: rgba(244, 211, 94, .1);
  border: 1px solid rgba(244, 211, 94, .3);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-70-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.stat-70-text {
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
}

.stat-70-text strong {
  color: white;
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

/* ---- TRANSITION ---- */

.transition-block {
  text-align: center;
  padding: 80px 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.transition-line {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 auto 32px;
}

.transition-block h2 {
  margin-bottom: 0;
}

/* ---- PILLARS ---- */

.pillars-section {
  background: white;
  padding: 100px 56px;
}

.pillars-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--bg-page);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.pillar-card:hover {
  box-shadow: 0 20px 56px var(--shadow-normal);
  transform: translateY(-4px);
}

.pillar-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity .25s;
}

.pillar-card:hover .pillar-top-bar {
  opacity: 1;
}

.pb-1 { background: linear-gradient(90deg, var(--manual), var(--primary)); }
.pb-2 { background: linear-gradient(90deg, var(--accent), var(--primary)); }
.pb-3 { background: linear-gradient(90deg, #7dd3fc, var(--primary)); }
.pb-4 { background: linear-gradient(90deg, var(--manual), var(--accent)); }

.pillar-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  color: var(--grey-100);
  line-height: 1;
  margin-bottom: 8px;
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pi-1 { background: var(--manual-bg); border: 1px solid var(--manual-border); }
.pi-2 { background: var(--accent-pastel); border: 1px solid var(--accent-border); }
.pi-3 { background: #eef4ff; border: 1px solid #c7d9ff; }
.pi-4 { background: var(--manual-bg); border: 1px solid var(--manual-border); }

.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.pillar-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.72;
}

.pillar-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 14px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.pillar-benefit svg {
  width: 14px;
  height: 14px;
  stroke: var(--success);
  flex-shrink: 0;
}

.pillar-benefit span {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  font-style: italic;
}

/* ---- HOW IT WORKS ---- */

.how-section {
  padding: 100px 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.how-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.how-tab {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -1px;
}

.how-tab:hover {
  color: var(--primary);
}

.how-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.how-tab-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  transition: background .2s, color .2s;
  flex-shrink: 0;
}

.how-tab.active .how-tab-num {
  background: var(--primary);
  color: white;
}

.how-panels {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.how-panel {
  display: none;
}

.how-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: fade-in .3s ease;
}

.how-panel-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 400;
}

.how-panel-text h3 em {
  font-style: italic;
}

.how-panel-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.how-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--manual-bg);
  border-radius: 10px;
  border: 1px solid var(--manual-border);
}

.how-benefit svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.how-benefit span {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--primary-light);
  line-height: 1.5;
}

.how-visual-box {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px var(--shadow-light);
  overflow: hidden;
  min-height: 340px;
}

.how-vis-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--grey-50);
  display: flex;
  align-items: center;
  gap: 8px;
}

.how-vis-dots {
  display: flex;
  gap: 5px;
}

.how-vis-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.how-vis-dot:nth-child(1) { background: #ff5f57; }
.how-vis-dot:nth-child(2) { background: #febc2e; }
.how-vis-dot:nth-child(3) { background: #28c840; }

.how-vis-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
}

.how-vis-body {
  padding: 20px;
}

/* How visual content — criteria */

.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-page);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.crit-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.crit-icon-box svg {
  width: 13px;
  height: 13px;
  stroke: var(--primary);
}

.crit-name {
  font-size: 12.5px;
  color: var(--text-secondary);
  flex: 1;
}

.crit-val {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
}

.crit-badge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--manual-bg);
  color: var(--primary-light);
  border: 1px solid var(--manual-border);
}

/* How visual content — matches */

.match-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.match-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-page);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.match-score {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.ms-a { background: var(--manual-bg); color: var(--primary); border: 2px solid var(--manual); }
.ms-b { background: var(--accent-pastel); color: var(--accent-text); border: 2px solid var(--accent); }
.ms-c { background: var(--grey-50); color: var(--text-muted); border: 2px solid var(--grey-200); }

.match-details .addr {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 2px;
}

.match-details .meta {
  font-size: 11.5px;
  color: var(--text-muted);
}

.ai-pill {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--primary);
  color: white;
  margin-left: auto;
  flex-shrink: 0;
}

/* How visual content — buyer space */

.buyer-space {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.buyer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-page);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.buyer-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.buyer-info {
  flex: 1;
}

.buyer-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 2px;
}

.buyer-action {
  font-size: 11.5px;
  color: var(--text-muted);
}

.buyer-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.bt-visit  { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.bt-viewed { background: var(--accent-pastel); color: var(--accent-text); border: 1px solid var(--accent-border); }
.bt-waiting { background: var(--grey-50); color: var(--text-muted); border: 1px solid var(--border); }

/* ---- TESTIMONIALS ---- */

.testimonials-section {
  background: var(--primary);
  padding: 100px 56px;
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-section .section-eyebrow {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .15);
}

.testimonials-section h2 {
  color: white;
}

.testimonials-section h2 em {
  color: var(--accent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background .2s, transform .2s;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-3px);
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.t-star svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  stroke: none;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.av-1 { background: var(--accent); }
.av-2 { background: var(--manual); }
.av-3 { background: #7dd3fc; }

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.author-role {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
}

/* ---- CTA SECTION ---- */

.cta-section {
  padding: 100px 56px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner {
  background: var(--primary);
  border-radius: 28px;
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 211, 94, .15), transparent 70%);
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(103, 207, 189, .1), transparent 70%);
  pointer-events: none;
}

.cta-inner .section-eyebrow {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .15);
}

.cta-inner h2 {
  color: white;
}

.cta-inner h2 em {
  color: var(--accent);
}

.cta-inner .section-sub {
  color: rgba(255, 255, 255, .6);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  margin-top: 20px;
}

/* ---- RESPONSIVE (home-specific) ---- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 20px 32px;
    gap: 32px;
  }

  .hero-right {
    height: 280px;
    margin: 0 -10px;
    overflow: hidden;
  }

  .hero-bg-shape {
    width: 220px;
    height: 300px;
  }

  .float-card {
    transform: scale(0.78);
  }

  .fc-a { top: 0; left: -30px; }
  .fc-b { top: -10px; right: -20px; }
  .fc-c { bottom: 40px; left: -30px; }
  .fc-d { bottom: 10px; right: -24px; }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip {
    padding: 64px 20px;
  }

  .verbatims-grid {
    grid-template-columns: 1fr;
  }

  .verbatim-wide {
    grid-column: auto;
  }

  .problem-band {
    padding: 64px 20px;
  }

  .pivot-block {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillars-section {
    padding: 64px 20px;
  }

  .how-section {
    padding: 64px 20px;
  }

  .how-panel.active {
    grid-template-columns: 1fr;
  }

  .how-tabs {
    overflow-x: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 64px 20px;
  }

  .cta-section {
    padding: 64px 20px;
  }

  .cta-inner {
    padding: 48px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .hero-right {
    display: none;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .how-tab {
    padding: 12px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .stat-70 {
    flex-direction: column;
    text-align: center;
  }

  .transition-block {
    padding: 48px 20px;
  }

  .pillar-card {
    padding: 28px;
  }

  .cta-inner {
    border-radius: 20px;
    padding: 40px 20px;
  }

  .faq-section {
    padding: 48px 20px;
  }
}

/* ---- FAQ ---- */

.faq-section {
  padding: 80px 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::marker { display: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform .2s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
}
