/* ===================================================
   SECTIONS.CSS — Homepage Premium Editorial
   Trust · Problème · Solution · Cas · Compare ·
   About · Proof · FAQ · CTA Final · Footer
   =================================================== */

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 800px; }

/* ============================================
   GRAIN + SCROLL REVEAL
   ============================================ */
.has-grain { position: relative; }
.has-grain::before {
  content: ''; position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}
.reveal       { opacity:0; transform:translateY(28px); transition: opacity 0.85s cubic-bezier(.16,1,.3,1), transform 0.85s cubic-bezier(.16,1,.3,1); }
.reveal.visible        { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.12s; }
.reveal-delay-2 { transition-delay:.26s; }
.reveal-delay-3 { transition-delay:.42s; }
.reveal-delay-4 { transition-delay:.58s; }
.reveal-delay-5 { transition-delay:.74s; }
.reveal-left  { opacity:0; transform:translateX(-72px); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible   { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(72px);  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible  { opacity:1; transform:translateX(0); }

/* ── Scroll-driven (Chrome/Edge 115+) ──
   L'animation suit la position du scroll : entrée lente = animation lente.
   Fallback IntersectionObserver + transition reste actif pour Firefox/Safari. */
@keyframes sdLeft  { from { opacity:0; transform:translateX(-72px); } to { opacity:1; transform:translateX(0); } }
@keyframes sdRight { from { opacity:0; transform:translateX(72px);  } to { opacity:1; transform:translateX(0); } }

@supports (animation-timeline: scroll()) {
  .reveal-left  { transition:none; animation:sdLeft  linear both; animation-timeline:view(); animation-range:entry 0% entry 100%; }
  .reveal-right { transition:none; animation:sdRight linear both; animation-timeline:view(); animation-range:entry 0% entry 100%; }
}
.reveal-scale { opacity:0; transform:scale(.93); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-scale.visible  { opacity:1; transform:scale(1); }
/* Blur reveal — moderne, Framer-style */
.reveal-blur  { opacity:0; filter:blur(8px); transform:translateY(16px); transition: opacity 0.9s cubic-bezier(.16,1,.3,1), filter 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1); }
.reveal-blur.visible   { opacity:1; filter:blur(0); transform:translateY(0); }

/* ============================================
   WORD-SPLIT REVEAL — kinetic text (Nova-style)
   Each word slides up from behind its clip mask.
   JS splits text into .sw-outer/.sw-inner pairs.
   ============================================ */
.sw-outer {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* Prevent descenders being clipped */
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  line-height: inherit;
}
.sw-inner {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.78s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: inherit;
}
.anim-in .sw-inner {
  transform: translateY(0);
}

/* ============================================
   EDITORIAL TYPOGRAPHY
   ============================================ */
.section-label {
  font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em;
  color: var(--muted); margin-bottom: 20px; display: block;
}
.section-label::before { content:''; display:inline-block; width:20px; height:1px; background:var(--primary); margin-right:10px; vertical-align:middle; }
.section-label--light { color: rgba(255,255,255,.4); }
.section-label--light::before { background: #b8acf6; }
.section-label--center { text-align: center; }
.section-label--center::before { display: none; }

.section-heading {
  font-family: var(--font-display); font-size: clamp(2rem,3.8vw,3rem);
  font-weight: 500; line-height: 1.12; color: var(--text); letter-spacing: -.035em;
}
.section-heading em { font-style: italic; color: var(--primary); }
.section-heading--light { color: #fff; }
.section-heading--light em { color: #b8acf6; }


.link-arrow { display:inline-flex; align-items:center; gap:10px; font-size:.88rem; font-weight:600; color:var(--primary); transition:var(--transition); }
.link-arrow:hover { gap:16px; }
.link-arrow svg { width:16px; height:16px; }
.link-arrow--green { color: var(--accent); }

.btn-outline {
  display:inline-flex; align-items:center; gap:8px; padding:14px 28px;
  font-size:.9rem; font-weight:600; color:var(--text); background:transparent;
  border:1.5px solid var(--border); border-radius:50px; transition:var(--transition);
}
.btn-outline:hover { border-color:var(--primary); color:var(--primary); }

/* ============================================
   TRUST STRIP — Marquee Alan.com style
   ============================================ */
.trust-strip { padding: 48px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-label {
  text-align:center; font-size:.72rem; font-weight:600; text-transform:uppercase;
  letter-spacing:.14em; color:var(--muted); margin-bottom:32px; opacity:.85;
}

/* Wrapper with fade masks on both sides */
.trust-logos-wrapper {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

/* Track — runs continuously */
.trust-track {
  display: flex; align-items: center; width: max-content;
  animation: trustScroll 32s linear infinite;
  padding: 4px 0;
}
.trust-track:hover { animation-play-state: paused; }

@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.trust-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 32px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); opacity: .72; transition: opacity .3s, color .3s; white-space: nowrap;
  cursor: default;
}
.trust-item:hover { opacity: .9; color: var(--text); }
.trust-item svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }
.trust-item--niche { font-style: italic; opacity: .35; letter-spacing: .06em; }
.trust-item--niche svg { opacity: .7; }
.trust-sep { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; opacity: .6; }

/* ============================================
   1. PROBLÈME & CONTEXTE
   ============================================ */
.section-problem { padding: 140px 0 120px; background: var(--bg); }

.problem-heading-wrap { max-width: 760px; margin-bottom: 72px; }
.problem-heading-wrap .section-heading { margin-bottom: 20px; }
.problem-intro-text { font-size: 1rem; line-height: 1.8; color: var(--muted); max-width: 560px; }

/* ── 3 grandes stats ── */
.constat-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 88px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.constat-stat {
  padding: 48px 44px;
  border-right: 1px solid var(--border);
  position: relative;
}
.constat-stat:last-child { border-right: none; }
.constat-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 44px;
  width: 32px; height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
}
.constat-stat--red::before  { background: #E24B4A; }
.constat-stat--gold::before { background: #C9A96E; }

.constat-stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
}
.constat-stat--red  .constat-stat-num { color: #C93F3E; }
.constat-stat--gold .constat-stat-num { color: #A8844A; }

.constat-stat-label { font-size: .95rem; line-height: 1.55; color: var(--text); font-weight: 500; margin-bottom: 10px; }
.constat-stat-source { font-size: .75rem; color: var(--muted); opacity: .7; }

/* Bridge */
.problem-bridge {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -.02em;
  margin-bottom: 0;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

/* Problem visual */
.problem-visual { border-radius: 20px; overflow: hidden; margin-bottom: 80px; }
.problem-visual-placeholder {
  width: 100%; height: 260px; position: relative;
  background: linear-gradient(115deg, #e8d5bb 0%, #d4b896 35%, #b89870 65%, #9a7c5a 100%);
}
.problem-visual-infographic {
  width: 100%; background: #faf9f7;
  border: 1px solid var(--border); border-radius: 20px;
  padding: 32px 40px; box-sizing: border-box;
}

/* Pain points */
.problem-pain-list { border-top: 1px solid var(--border); }
.pain-item {
  display: grid;
  grid-template-columns: 48px 1fr 1.05fr;
  column-gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.pain-item:hover .pain-heading { color: var(--primary); }
.pain-index {
  font-family: var(--font-display);
  font-size: .7rem; font-style: italic;
  color: var(--muted); opacity: .5;
  text-align: right; align-self: start; padding-top: 8px;
}
.pain-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 400; letter-spacing: -.045em; line-height: 1.08;
  color: var(--text); transition: color .25s ease;
}
.pain-desc { font-size: .96rem; line-height: 1.78; color: var(--muted); }

/* ============================================
   2. SOLUTION — CAROUSEL flèches
   ============================================ */
.section-solution { background: var(--surface); padding: 120px 0; }

.sol-header { margin-bottom: 56px; }
.sol-header .section-heading { margin-top: 8px; font-size: clamp(1.7rem, 2.6vw, 2.4rem); }

/* Layout : image | flèches | texte */
.sol-carousel {
  display: grid;
  grid-template-columns: 1.3fr 56px 1fr;
  gap: 0 40px;
  align-items: center;
}

/* ── Image gauche — peek carousel vertical ── */
.sol-img-wrap {
  /* container height = slide(420) + 2*(peek(48)+gap(20)) = 556px */
  height: 556px;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

/* Gradient peek top/bottom pour l'effet de profondeur */
.sol-img-wrap::before,
.sol-img-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.sol-img-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, var(--surface) 0%, transparent 100%);
}
.sol-img-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, var(--surface) 0%, transparent 100%);
}

/* Track : colonne verticale qui glisse */
.sol-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
  transition: transform .65s cubic-bezier(.16,1,.3,1);
}

/* Chaque slide */
.sol-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  opacity: 0.3;
  transform: scale(.97);
  transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1), box-shadow .55s;
}
.sol-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sol-img.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 24px 64px rgba(0,0,0,.1);
}

/* Placeholder */
.sol-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
}
.sol-placeholder svg { width: 36px; height: 36px; opacity: .35; }
.sol-placeholder span { font-size: .78rem; font-style: italic; opacity: .5; }

/* ── Flèches centre ── */
.sol-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 556px;
}
.sol-step-counter {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .08em;
  text-align: center;
  line-height: 1;
  user-select: none;
}
.sol-step-counter span { color: var(--text); }
.sol-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.sol-arrow svg { width: 18px; height: 18px; }
.sol-arrow:hover {
  border-color: var(--primary);
  background: rgba(94,74,208,.08);
  color: var(--text);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(94,74,208,.15);
}
.sol-arrow:active { transform: scale(.95); }

/* ── Textes droite ── */
.sol-texts { position: relative; min-height: 240px; }
.sol-text {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.sol-text.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.sol-text-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: 18px;
  line-height: 1.15;
}
.sol-text-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.sol-tag {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 16px;
  background: transparent;
  transition: border-color .2s, color .2s, background .2s;
}
.sol-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(94,74,208,.06);
}
.sol-text-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 400px;
}

/* Dots de navigation */
.sol-dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.sol-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.sol-dot.active {
  background: var(--primary);
  transform: scale(1.4);
}

/* Mobile */
@media (max-width: 820px) {
  .sol-carousel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  /* container = slide(300) + 2*(peek(40)+gap(20)) = 420px */
  .sol-img-wrap { height: 420px; }
  .sol-img { height: 300px; }
  .sol-arrows {
    height: auto;
    flex-direction: row;
    justify-content: center;
    padding: 16px 0 8px;
  }
  .sol-texts { min-height: unset; }
  .sol-dots { display: none; }
}

/* ============================================
   3. CAS MARQUE | CRÉATEUR — Side by side
   ============================================ */
.section-cases { padding: 120px 0 160px; background: var(--bg); }
.cases-header { text-align: center; margin-bottom: 64px; }
.cases-header .section-label { text-align: center; }
.cases-header .section-label::before { display: none; }

/* Deux cartes indépendantes, décalées verticalement */
.cases-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; align-items: start;
}
.cases-col {
  padding: 0; display: flex; flex-direction: column;
  background: var(--surface); border-radius: 24px;
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.cases-col--brand  { /* première carte — alignée en haut */ }
.cases-col--creator { margin-top: 48px; }

/* Image zone */
.cases-col-image { width: 100%; aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; position: relative; }
.cases-col-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cases-col-image-placeholder { position: absolute; inset: 0; }
.cases-col--brand .cases-col-image-placeholder {
  background: linear-gradient(145deg, #eddcc6 0%, #d4b896 45%, #b89870 100%);
}
.cases-col--brand .cases-col-image-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cases-col--brand .cases-col-image-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 28% 65%, rgba(255,255,255,.1) 0%, transparent 55%),
              linear-gradient(180deg, transparent 55%, rgba(0,0,0,.22) 100%);
}
.cases-col--creator .cases-col-image-placeholder {
  background: linear-gradient(145deg, #b8d8d0 0%, #7fb7a1 45%, #5a9885 100%);
}
.cases-col--creator .cases-col-image-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cases-col--creator .cases-col-image-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 35%, rgba(255,255,255,.12) 0%, transparent 55%),
              linear-gradient(180deg, transparent 55%, rgba(0,0,0,.22) 100%);
}
.cases-col-image-hint {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.5); white-space: nowrap; z-index: 1;
  background: rgba(0,0,0,.25); padding: 5px 14px; border-radius: 50px;
}

/* Badge glassmorphism flottant sur la photo */
.cases-image-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 4;
  background: rgba(255,255,255,.82); backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255,255,255,.55); border-radius: 14px;
  padding: 10px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.cases-image-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
.cases-col--brand  .cases-image-badge-dot { background: var(--primary); box-shadow: 0 0 0 3px rgba(94,74,208,.18); }
.cases-col--creator .cases-image-badge-dot { background: var(--accent);  box-shadow: 0 0 0 3px rgba(127,183,161,.25); }
.cases-image-badge-num { font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1; }
.cases-image-badge-lbl { font-size: .68rem; color: var(--muted); line-height: 1.35; margin-top: 1px; max-width: 130px; }

/* Content body */
.cases-col-body { padding: 40px 56px 64px; display: flex; flex-direction: column; flex: 1; }

.cases-col-eyebrow {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--primary); margin-bottom: 20px; display: block;
}
.cases-col--creator .cases-col-eyebrow { color: var(--accent); }

.cases-col-heading {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 400; letter-spacing: -.035em; line-height: 1.18;
  color: var(--text); margin-bottom: 16px;
}
.cases-col-heading em { font-style: italic; color: var(--primary); }
.cases-col--creator .cases-col-heading em { color: var(--accent); }

.cases-col-intro {
  font-size: .96rem; line-height: 1.72; color: var(--muted); margin-bottom: 40px;
}

.cases-benefits {
  list-style: none; padding: 0; margin: 0 0 44px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border); flex: 1;
}
.cases-benefit {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s cubic-bezier(.16,1,.3,1);
  cursor: default;
}
.cases-benefit:hover { padding-left: 8px; }
.cases-col--brand .cases-benefit:hover .cases-benefit-label { color: var(--primary); }
.cases-col--creator .cases-benefit:hover .cases-benefit-label { color: var(--accent); }
.cases-benefit-label {
  font-size: .92rem; font-weight: 600; color: var(--text);
  transition: color 0.2s ease;
}
.cases-benefit-desc { font-size: .88rem; line-height: 1.55; color: var(--muted); }

.cases-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; font-size: .9rem; font-weight: 600; color: #fff;
  border-radius: 50px; transition: var(--transition); align-self: flex-start;
}
.cases-cta:hover { opacity: .88; gap: 16px; }
.cases-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.cases-cta--brand { background: var(--primary); }
.cases-cta--creator { background: var(--accent); }

/* ── Persona mini-UI cards (replaces image zone) ── */
.cases-persona-card {
  padding: 24px 32px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cases-persona-card--brand   { background: linear-gradient(155deg, #fcf8f4 0%, #f4ead9 100%); }
.cases-persona-card--creator { background: linear-gradient(155deg, #f0f6f4 0%, #ddf0e9 100%); }

.cpc-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cpc-label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .67rem; font-weight: 600; text-transform: uppercase; letter-spacing: .11em; color: var(--muted);
}
.cpc-label svg { width: 13px; height: 13px; flex-shrink: 0; opacity: .65; }
.cpc-pill {
  font-size: .61rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0;
}
.cpc-pill--violet { background: rgba(94,74,208,.1); color: var(--primary); }
.cpc-pill--green  { background: rgba(127,183,161,.18); color: #3a8268; }

/* Creator rows (brand column) */
.cpc-rows { display: flex; flex-direction: column; }
.cpc-creator-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cpc-creator-row:last-child { border-bottom: none; }
.cpc-creator-row--dim { opacity: .42; }
.cpc-av {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #fff; letter-spacing: 0;
}
.cpc-av--violet { background: linear-gradient(135deg, #7460e0, #5044c4); }
.cpc-ri { flex: 1; min-width: 0; }
.cpc-rn { display: block; font-size: .83rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.cpc-rm { display: block; font-size: .68rem; color: var(--muted); margin-top: 1px; }
.cpc-score {
  font-size: .78rem; font-weight: 800; color: var(--primary);
  background: rgba(94,74,208,.08); padding: 2px 8px; border-radius: 50px; flex-shrink: 0;
}
.cpc-score--dim { color: var(--muted); background: transparent; opacity: .6; }
.cpc-foot {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-size: .7rem; font-weight: 600; color: var(--primary); cursor: pointer; transition: gap .2s;
}
.cpc-foot:hover { gap: 9px; }
.cpc-foot svg { width: 10px; height: 10px; flex-shrink: 0; }

/* Offer card (creator column) */
.cpc-offer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cpc-offer-grid { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.cpc-offer-kv {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.65);
}
.cpc-offer-kv:last-child { border-bottom: none; }
.cpc-ok { font-size: .69rem; color: var(--muted); font-weight: 500; }
.cpc-ov { font-size: .76rem; font-weight: 700; color: var(--text); }
.cpc-offer-btns { display: flex; gap: 8px; }
.cpc-btn-accept {
  flex: 1; padding: 9px 0; border-radius: 8px; border: none; cursor: default;
  font-size: .75rem; font-weight: 700; color: #fff; background: var(--accent);
}
.cpc-btn-discuss {
  flex: 1; padding: 9px 0; border-radius: 8px; cursor: default;
  font-size: .75rem; font-weight: 600; color: var(--muted); background: transparent; border: 1px solid var(--border);
}

/* Benefit icon */
.cases-benefit-header { display: flex; align-items: center; gap: 7px; }
.cases-benefit-icon { width: 14px; height: 14px; flex-shrink: 0; transition: color .2s, opacity .2s; }
.cases-col--brand  .cases-benefit-icon { color: var(--primary); opacity: .7; }
.cases-col--creator .cases-benefit-icon { color: var(--accent); opacity: .7; }
.cases-col--brand  .cases-benefit:hover .cases-benefit-icon,
.cases-col--creator .cases-benefit:hover .cases-benefit-icon { opacity: 1; }

/* ============================================
   4. AVANT / APRÈS — Floating staggered cards
   ============================================ */
.section-compare {
  padding: 140px 0 160px;
  background: var(--surface);
  overflow: hidden;
}

/* ── Two-col layout: text left / cards right ── */
.cmp-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 80px;
  align-items: center;
}

/* ── Left text block ── */
.cmp-text-block { padding-right: 16px; }
.cmp-text-block .section-heading { margin-bottom: 20px; }
.cmp-intro {
  font-size: .95rem; line-height: 1.8; color: var(--muted);
  max-width: 360px; margin-bottom: 32px;
}
.cmp-deco-arrow {
  width: 90px; height: 64px;
  color: var(--primary);
  display: block;
  opacity: 0;
  transform: scale(0.75) rotate(-8deg);
  transform-origin: 0% 100%;
  transition: opacity 0.6s ease 1s, transform 0.7s cubic-bezier(.16,1,.3,1) 1s;
}
.reveal-left.visible .cmp-deco-arrow {
  opacity: 0.35;
  transform: scale(1) rotate(0deg);
}
/* Dashes "flow" continuously once visible — one dasharray period (5+4=9px) per loop */
.reveal-left.visible .cmp-deco-arrow path:first-child {
  animation: dashFlow 2.4s linear 1.8s infinite;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -9; }
}

/* ── Right cards block ── */
.cmp-cards-block {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 80px 0;
}

/* Decorative sparkles */
.cmp-sparkle {
  position: absolute;
  font-size: 1.1rem;
  color: var(--primary);
  opacity: 0;
  animation: sparklePulse 3s ease-in-out infinite;
  pointer-events: none;
}
.cmp-sparkle--1 { top: 0px; right: 40px; animation-delay: 0s; }
.cmp-sparkle--2 { bottom: 60px; right: 10px; animation-delay: 1.4s; font-size: .8rem; color: var(--secondary); }
@keyframes sparklePulse {
  0%, 100% { opacity: 0; transform: scale(.7) rotate(-15deg); }
  50%       { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ================================================================
   DOODLES — Decorative animated SVG elements (site-wide)
   ================================================================ */

.doodle {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

/* ── Cursor (hero) ── */
.doodle-cursor {
  width: 28px;
  color: var(--secondary);
  opacity: 0;
  animation: doodleCursorIn .6s cubic-bezier(.16,1,.3,1) forwards, doodleFloat 4s ease-in-out infinite;
}
.doodle-cursor--tr {
  top: 10%;
  right: 5%;
  animation-delay: 0.4s, 0.9s;
}
.doodle-cursor--bl {
  bottom: 12%;
  left: 4%;
  animation-delay: 0.7s, 1.2s;
  animation-name: doodleCursorInFlip, doodleFloat;
}
@keyframes doodleCursorIn {
  from { opacity: 0; transform: scale(.6) translateY(10px) rotate(0deg); }
  to   { opacity: .42; transform: scale(1) translateY(0) rotate(0deg); }
}
@keyframes doodleCursorInFlip {
  from { opacity: 0; transform: scale(.6) translateY(10px) rotate(180deg); }
  to   { opacity: .42; transform: scale(1) translateY(0) rotate(180deg); }
}
@keyframes doodleFloat {
  0%, 100% { translate: 0 0px; }
  50%       { translate: 0 -8px; }
}

/* ── Sparkles (generic) ── */
.doodle-spark {
  font-size: 1rem;
  color: var(--primary);
  animation: sparklePulse 3.2s ease-in-out infinite;
}
.doodle-spark--hero1  { top: 18%;  right: 14%; font-size: 1.1rem; animation-delay: 0s; }
.doodle-spark--hero2  { bottom: 22%; left: 10%; font-size: .75rem; color: var(--secondary); animation-delay: 1.6s; }
.doodle-spark--about1 { top: -10px; right: 16px; font-size: .9rem; animation-delay: 0.3s; }
.doodle-spark--about2 { bottom: 10px; left: 8px; font-size: .7rem; color: var(--secondary); animation-delay: 2s; }
.doodle-spark--cta1   { top: 16px;  left: 8%;  font-size: 1.1rem; animation-delay: 0s; }
.doodle-spark--cta2   { top: 24px;  right: 10%; font-size: .8rem;  color: var(--secondary); animation-delay: 1s; }
.doodle-spark--cta3   { bottom: 20px; left: 50%; font-size: .65rem; animation-delay: 2s; }


/* ── Wavy underline (use cases) ── */
.doodle-wave-underline {
  position: absolute;
  width: 220px;
  height: 14px;
  color: var(--primary);
  opacity: 0;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  overflow: visible;
  transition: opacity .4s ease .8s;
}
.doodle-wave-underline path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1s ease .8s;
}
.reveal.visible .doodle-wave-underline,
.reveal-left.visible .doodle-wave-underline {
  opacity: .35;
}
.reveal.visible .doodle-wave-underline path,
.reveal-left.visible .doodle-wave-underline path {
  stroke-dashoffset: 0;
}

/* ── Brackets (about portraits) ── */
.doodle-bracket {
  width: 16px;
  height: 80px;
  color: var(--primary);
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity .5s ease 1s, transform .6s cubic-bezier(.16,1,.3,1) 1s;
}
.doodle-bracket--left  { left: -20px; }
.doodle-bracket--right { right: -20px; }
.reveal-scale.visible .doodle-bracket {
  opacity: .30;
}
.doodle-bracket path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .8s ease 1.2s;
}
.reveal-scale.visible .doodle-bracket path {
  stroke-dashoffset: 0;
}

/* ── Circle sketch (final CTA) ── */
.doodle-circle-sketch {
  width: 140px;
  height: 80px;
  color: var(--primary);
  opacity: .12;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: doodleRotateSlow 18s linear infinite;
}
@keyframes doodleRotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Mobile: hide most doodles ── */
@media (max-width: 640px) {
  .doodle-cursor,
  .doodle-bracket,
  .doodle-circle-sketch,
  .doodle-arc { display: none; }
}

/* ── Base card ── */
.cmp-card {
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  position: relative;
}

/* AVANT — beige on white bg for contrast */
.cmp-card--before {
  background: var(--bg);
  border: 1px solid var(--border);
  z-index: 1;
  margin-right: 40px;
}

/* APRÈS — violet gradient, shifted right and overlapping down */
.cmp-card--after {
  background: linear-gradient(135deg, #5044c4 0%, var(--primary) 50%, #7460e0 100%);
  border: 1px solid rgba(255,255,255,.12);
  margin-top: -20px;
  margin-left: 40px;
  z-index: 2;
  box-shadow: 0 16px 56px rgba(94,74,208,.38);
  /* Annule le translateY du .reveal → entrée en opacity pure, transform libre pour le float */
  transform: none;
  will-change: transform;
  animation: cardFloat 5s ease-in-out 1.6s infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

/* ── Card header ── */
.cmp-card-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.cmp-card-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.cmp-card-dot--bad  { background: var(--secondary); }
.cmp-card-dot--good { background: rgba(255,255,255,.8); }

.cmp-card-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
}
.cmp-card--before .cmp-card-label { color: var(--secondary); }
.cmp-card--after  .cmp-card-label { color: rgba(255,255,255,.75); }

/* ── Card list ── */
.cmp-card-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }

.cmp-li { display: flex; align-items: flex-start; gap: 12px; }

.cmp-li-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.cmp-li-icon svg { width: 10px; height: 10px; }
.cmp-li-icon--bad  { background: rgba(201,106,123,.12); }
.cmp-li-icon--bad  svg { stroke: var(--secondary); }
.cmp-li-icon--good { background: rgba(255,255,255,.18); }
.cmp-li-icon--good svg { stroke: rgba(255,255,255,.95); }

.cmp-li-title { font-size: .9rem; font-weight: 600; line-height: 1.35; }
.cmp-li-sub   { font-size: .75rem; line-height: 1.5; margin-top: 2px; }
.cmp-card--before .cmp-li-title { color: var(--text); }
.cmp-card--before .cmp-li-sub   { color: var(--muted); }
.cmp-card--after  .cmp-li-title { color: #fff; }
.cmp-card--after  .cmp-li-sub   { color: rgba(255,255,255,.6); }

/* ── Floating stat badge ── */
.cmp-stat-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  min-width: 160px;
}
/* transform:none annule le translateY du .reveal — le badge suit naturellement le float de la carte */
.cmp-stat-badge {
  transform: none;
}
.cmp-stat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(94,74,208,.2);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(94,74,208,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(94,74,208,.08); }
}
.cmp-stat-num { font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.cmp-stat-lbl { font-size: .68rem; color: var(--muted); margin-top: 1px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .cmp-layout { grid-template-columns: 1fr; gap: 48px; }
  .cmp-cards-block { padding: 0 0 60px 0; }
  .cmp-card--before { margin-right: 24px; }
  .cmp-card--after  { margin-left: 24px; }
}
@media (max-width: 560px) {
  .cmp-card--before { margin-right: 0; }
  .cmp-card--after  { margin-left: 0; margin-top: 12px; }
  .cmp-stat-badge   { right: 0; bottom: -54px; }
}

/* ============================================
   5. ABOUT US
   ============================================ */
.section-about {
  padding:140px 0; overflow:hidden;
  background: var(--surface);
}
.about-layout { display:grid; grid-template-columns:1fr 1.2fr; gap:80px; align-items:center; }

/* Two-portrait grid */
.about-portraits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-portrait { display: flex; flex-direction: column; }
.about-portrait-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 18px;
  overflow: hidden; position: relative; margin-bottom: 14px; flex-shrink: 0;
}
.about-portrait-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-portrait-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, #e8ddd5 0%, #d8c9bc 45%, #c4b3a4 100%);
}
.about-portrait-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 38% 65%, rgba(201,106,123,.08) 0%, transparent 58%),
              radial-gradient(ellipse at 75% 20%, rgba(245,242,237,.25) 0%, transparent 48%);
}
.about-portrait-placeholder--alt {
  background: linear-gradient(165deg, #dde5e8 0%, #ccd4d9 45%, #b8c4cb 100%);
}
.about-portrait-placeholder--alt::after {
  background: radial-gradient(ellipse at 62% 70%, rgba(94,74,208,.05) 0%, transparent 55%),
              radial-gradient(ellipse at 28% 18%, rgba(245,242,237,.25) 0%, transparent 48%);
}
.about-portrait-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.about-portrait-role { font-size: .72rem; color: var(--muted); margin-top: 2px; }

.about-content .section-heading { font-size:clamp(1.6rem,2.8vw,2.4rem); margin-bottom:28px; }
.about-story { display:flex; flex-direction:column; gap:16px; margin-bottom:32px; }
.about-story p { font-size:.93rem; line-height:1.8; color: var(--muted); }
.about-story strong { color: var(--text); }

/* ============================================
   6. SOCIAL PROOF — Marquee horizontal
   ============================================ */
.section-proof { padding: 120px 0 100px; background: var(--bg); }
.proof-header { margin-bottom: 64px; text-align: center; }
.proof-header .section-label::before { display: none; }

/* Double marquee — rangée 1 gauche, rangée 2 droite
   3 sets identiques par rangée : l'animation joue le set du milieu → set 3,
   le reset saute au set du milieu = toujours en plein flux, jamais de couture visible. */
.proof-marquee-wrap {
  overflow: hidden; position: relative; margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.proof-marquee-track {
  display: flex; width: max-content; padding: 8px 0;
  animation: proofLeft 42s linear infinite;
}
.proof-marquee-track--reverse { animation: proofRight 42s linear infinite; }
.proof-marquee-wrap:hover .proof-marquee-track { animation-play-state: paused; }

/* 3 sets × 3 cartes = 9 cartes par rangée
   chaque carte prend 400px (380 + margin 20) → 1 set = 1200px = 33.333% de 3600px
   on anime du set 2 (-33.333%) au set 3 (-66.666%) : le loop revient au set 2 = seamless */
@keyframes proofLeft  { from { transform: translateX(-33.333%); } to { transform: translateX(-66.666%); } }
@keyframes proofRight { from { transform: translateX(-66.666%); } to { transform: translateX(-33.333%); } }

/* Card — margin-right au lieu de flex gap pour que le calcul % soit exact */
.proof-card {
  width: 380px; flex-shrink: 0; margin-right: 20px;
  background: var(--surface); border-radius: 20px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: box-shadow .3s, transform .3s; cursor: default;
}
.proof-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Top: avatar + meta + tag */
.proof-card-top {
  display: flex; align-items: center; gap: 12px;
}
.proof-card-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: #fff;
}
.proof-card-meta { flex: 1; min-width: 0; }
.proof-card-name { font-size: .88rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.proof-card-role { font-size: .7rem; color: var(--muted); margin-top: 2px; }

.proof-card-tag {
  font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 3px 10px; border-radius: 50px; flex-shrink: 0;
}
.proof-card-tag--brand   { background: rgba(94,74,208,.09); color: var(--primary); }
.proof-card-tag--creator { background: rgba(127,183,161,.16); color: #3a8268; }

/* Quote */
.proof-card-quote {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: .97rem; line-height: 1.72; color: var(--text);
  border-top: 1px solid var(--border); padding-top: 18px;
  margin: 0;
}

/* ============================================
   7. FAQ — Accordion
   ============================================ */
.section-faq { padding: 120px 0; background: var(--surface); }
.faq-header { text-align:center; margin-bottom:56px; }
.faq-header .section-label { text-align:center; }
.faq-header .section-label::before { display:none; }

.faq-list { display:flex; flex-direction:column; }
.faq-item { border-bottom:1px solid var(--border); cursor:pointer; }
.faq-question {
  display:flex; justify-content:space-between; align-items:center; padding:32px 0; gap:24px;
}
.faq-question span { font-size:1rem; font-weight:600; color:var(--text); line-height:1.4; }
.faq-icon {
  width:28px; height:28px; border-radius:50%; border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--transition);
}
.faq-icon svg { width:12px; height:12px; stroke:var(--muted); transition: transform .3s ease; }

.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s cubic-bezier(.16,1,.3,1), padding .3s ease; }
.faq-answer p { font-size:.96rem; line-height:1.75; color:var(--muted); }

.faq-item.open .faq-answer { max-height:300px; padding:0 0 28px; }
.faq-item.open .faq-icon { background:var(--primary); border-color:var(--primary); }
.faq-item.open .faq-icon svg { stroke:#fff; transform:rotate(45deg); }
.faq-item:hover .faq-question span { color:var(--primary); }

/* ============================================
   8. CTA FINAL — Éditorial centré
   ============================================ */
.section-cta-final {
  padding: 160px 0; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #4a3bb8 0%, #5E4AD0 50%, #6b58d8 100%);
}
.section-cta-final::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  top: -160px; left: -200px; pointer-events: none;
}
.section-cta-final::after {
  content: ''; position: absolute; width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,106,123,.12) 0%, transparent 70%);
  bottom: -100px; right: -120px; pointer-events: none;
}
.cta-final-inner {
  max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.cta-final-rule {
  width: 40px; height: 1px; background: rgba(255,255,255,.2); margin: 0 auto 32px;
}
.cta-final-quote {
  font-family: var(--font-display); font-size: clamp(1.45rem,2.8vw,2.2rem);
  font-weight: 400; font-style: italic; line-height: 1.45;
  color: rgba(255,255,255,.95); margin-bottom: 24px;
}
.cta-final-authors {
  font-size: .85rem; color: rgba(255,255,255,.62); margin-bottom: 52px;
}
.cta-final-authors span { color: #b8acf6; font-weight: 600; }
.cta-final-actions { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.cta-final-actions .btn-outline { color:rgba(255,255,255,.65); border-color:rgba(255,255,255,.2); }
.cta-final-actions .btn-outline:hover { color:#fff; border-color:rgba(255,255,255,.5); }

/* ============================================
   5. PLATFORM TOOL — Espace client (2-col layout)
   ============================================ */
.section-platform { padding: 120px 0; background: var(--bg); }

/* Two-column layout */
.platform-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

/* Left: text + feature list */
.platform-intro {
  font-size: .95rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 36px; margin-top: 20px;
}
.platform-feat-list { display: flex; flex-direction: column; margin-bottom: 36px; }
.platform-feat {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.platform-feat:first-child { border-top: 1px solid var(--border); }
.platform-feat h4 { font-size: .93rem; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.platform-feat p  { font-size: .87rem; line-height: 1.6; color: var(--muted); margin: 0; }

.pf-icon-wrap {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(94,74,208,.07); border: 1px solid rgba(94,74,208,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.pf-icon-wrap svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* Right: browser mockup */
.platform-mockup-wrap { position: relative; }
.platform-mockup {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 56px rgba(0,0,0,.09);
}

/* Browser chrome */
.pv-chrome {
  height: 36px; background: var(--section);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 14px; gap: 10px; flex-shrink: 0;
}
.pv-chrome-dots { display: flex; align-items: center; gap: 5px; }
.pv-chrome-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pv-chrome-dot:nth-child(1) { background: #ff5f57; }
.pv-chrome-dot:nth-child(2) { background: #febc2e; }
.pv-chrome-dot:nth-child(3) { background: #28c840; }
.pv-chrome-url {
  flex: 1; height: 20px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; padding: 0 8px; gap: 5px;
  font-size: .65rem; color: var(--muted); letter-spacing: .01em;
  max-width: 240px; margin: 0 auto;
}
.pv-chrome-url svg { width: 9px; height: 9px; stroke: var(--muted); flex-shrink: 0; }

/* Dashboard UI */
.pm-ui { display: flex; height: 400px; overflow: hidden; }

.pm-sidebar {
  width: 128px; flex-shrink: 0;
  background: var(--section); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 14px 8px; gap: 2px;
}
.pm-sb-logo {
  width: 28px; height: 28px; border-radius: 7px; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: #fff; margin-bottom: 14px;
}
.pm-sb-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px; cursor: default;
  font-size: .72rem; font-weight: 500; color: var(--muted);
}
.pm-sb-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.pm-sb-item--active { background: rgba(94,74,208,.09); color: var(--primary); font-weight: 700; }

.pm-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; background: var(--surface); }

.pm-topbar {
  height: 44px; padding: 0 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.pm-tb-title { font-size: .8rem; font-weight: 700; color: var(--text); }
.pm-spacer { flex: 1; }
.pm-tb-btn {
  font-size: .68rem; font-weight: 700; color: #fff;
  background: var(--primary); border-radius: 6px; padding: 5px 10px; white-space: nowrap;
}

/* KPI stats */
.pm-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--border); flex-shrink: 0; }
.pm-stat { padding: 14px 16px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 3px; }
.pm-stat:last-child { border-right: none; }
.pm-stat-label { font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.pm-stat-val   { font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1.1; }

/* Campaign list */
.pm-list { flex: 1; overflow: hidden; }
.pm-list-head {
  display: grid; grid-template-columns: 1fr 90px 64px 56px;
  padding: 8px 16px; background: var(--section); border-bottom: 1px solid var(--border);
  font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.pm-row {
  display: grid; grid-template-columns: 1fr 90px 64px 56px;
  padding: 11px 16px; border-bottom: 1px solid var(--border); align-items: center;
}
.pm-row--dim { opacity: .6; }
.pm-row-creator {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 500; color: var(--text);
}
.pm-av {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800; color: #fff;
}
.pm-status { font-size: .62rem; font-weight: 700; padding: 3px 8px; border-radius: 50px; text-align: center; white-space: nowrap; }
.pm-status--green  { background: rgba(127,183,161,.18); color: #3a8268; }
.pm-status--violet { background: rgba(94,74,208,.1); color: var(--primary); }
.pm-status--rose   { background: rgba(201,106,123,.12); color: var(--secondary); }
.pm-val  { font-size: .78rem; font-weight: 600; color: var(--text); }
.pm-date { font-size: .68rem; color: var(--muted); }

/* Floating annotation badges */
.pv-annotation {
  position: absolute; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.09); white-space: nowrap;
}
.pv-annotation--1 { bottom: -16px; right: -32px; }
.pv-annotation--2 { top: 80px; right: -36px; }
.pv-ann-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
.pv-ann-dot--green  { background: #28c840; box-shadow: 0 0 0 3px rgba(40,200,64,.15); }
.pv-ann-dot--violet { background: var(--primary); box-shadow: 0 0 0 3px rgba(94,74,208,.18); }
.pv-ann-val { font-size: .88rem; font-weight: 800; color: var(--text); line-height: 1; }
.pv-ann-lbl { font-size: .65rem; color: var(--muted); line-height: 1.35; margin-top: 1px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding:80px 0 40px; border-top:1px solid var(--border); background: var(--bg); }
.footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px; margin-bottom:64px; }
.footer-brand-text { font-size:.92rem; line-height:1.7; color:var(--muted); max-width:280px; margin-top:16px; }
.footer-logo { height:28px; }
.footer-col h4 { font-size:.66rem; font-weight:600; text-transform:uppercase; letter-spacing:.14em; color:var(--text); margin-bottom:20px; }
.footer-col a { display:block; font-size:.88rem; color:var(--muted); padding:5px 0; transition:var(--transition); }
.footer-col a:hover { color:var(--text); }
.footer-bottom { padding-top:32px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.footer-bottom p { font-size:.78rem; color:var(--muted); }
.footer-legal-links { display:flex; align-items:center; gap:8px; font-size:.78rem; color:var(--muted); }
.footer-legal-links a { color:var(--muted); text-decoration:none; transition:color .15s; }
.footer-legal-links a:hover { color:var(--text); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .problem-editorial { gap: 48px; }
  .solution-layout { gap: 48px; }
  .about-layout { gap: 48px; }
  .case-layout { gap: 40px; }
  .platform-layout { grid-template-columns: 1fr; gap: 48px; }
  .pv-annotation--1, .pv-annotation--2 { display: none; }
}
@media (max-width: 900px) {
  .constat-stats { grid-template-columns: 1fr; border-radius: 16px; }
  .constat-stat  { border-right: none; border-bottom: 1px solid var(--border); }
  .constat-stat:last-child { border-bottom: none; }
  .pain-item { grid-template-columns: 32px 1fr; column-gap: 24px; padding: 44px 0; flex-wrap: wrap; }
  .pain-heading { font-size: clamp(1.6rem, 5vw, 2rem); }
  .pain-desc { grid-column: 2 / 3; margin-top: 12px; }
  .solution-layout { grid-template-columns: 1fr; gap: 48px; }
  .solution-visual { position: static; }
  .solution-visual-placeholder { aspect-ratio: 16/9; max-height: 280px; }
  .cases-split { grid-template-columns: 1fr; }
  .cases-col--brand { border-right: none; border-bottom: 1px solid var(--border); }
  .cases-col-body { padding: 32px 36px 44px; }
  .cmp-worlds { grid-template-columns: 1fr; gap: 10px; }
  .cmp-world { padding: 32px 28px 36px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait-photo { aspect-ratio: 4/5; }
  .proof-card { width: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-item { padding: 8px 14px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section-problem { padding: 80px 0; }
  .section-solution, .section-cases, .section-compare, .section-proof, .section-faq, .section-platform { padding: 80px 0; }
  .section-about, .section-cta-final { padding: 80px 0; }
  .problem-editorial { margin-bottom: 48px; }
  .pain-item { gap: 24px; padding: 32px 0; }
  .pain-item:hover { padding-left: 0; }
  .solution-item { padding: 28px 0; }
  .cmp-world { padding: 28px 20px 32px; }
  .pm-sidebar { width: 96px; }
  .pm-sb-item span { display: none; }
  .pm-ui { height: 340px; }
  .pm-list-head, .pm-row { grid-template-columns: 1fr 70px 52px; }
  .pm-date { display: none; }
  .proof-card { width: 260px; padding: 20px 22px; }
  .cta-final-inner { max-width: 100%; }
  .cta-final-actions { flex-direction: column; align-items: stretch; }
  .cta-final-actions .btn-primary, .cta-final-actions .btn-outline { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cases-col-body { padding: 28px 24px 36px; }
}
