/* ═══════════════════════════════════════════════
   PORTE-PAROLE V3 — Conversion-optimized
   Vanilla CSS, zero dependencies
═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Fonts (inline fallbacks, no external deps) ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg:          #111417;
  --bg-1:        #161a1f;
  --bg-2:        #1c2228;
  --bg-3:        #27313b;

  --c1: #b89a72;
  --c2: #6d8784;
  --c3: #d8c3a0;
  --c4: #8e7454;

  --fg:       #f3efe7;
  --fg-dim:   #b4aba0;
  --fg-ghost: #746b61;
  --border:   rgba(243,239,231,0.12);
  --border-d: rgba(243,239,231,0.06);
  --glass:    rgba(243,239,231,0.04);

  --r: 14px;
  --sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse 120% 85% at 50% -10%, rgba(184,154,114,0.12), transparent 58%),
    radial-gradient(ellipse 90% 90% at 100% 0%, rgba(109,135,132,0.11), transparent 52%),
    linear-gradient(180deg, #12161a 0%, var(--bg) 38%, #0d1013 100%);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Grain ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  mix-blend-mode: soft-light;
}

/* ── Studio light fields ── */
.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora .b { position: absolute; border-radius: 50%; filter: blur(155px); opacity: 0.16; mix-blend-mode: normal; will-change: transform; }
.aurora .b1 { width: 760px; height: 760px; background: radial-gradient(circle, rgba(216,195,160,0.52), transparent 72%); top: -16%; left: -10%; animation: f1 34s ease-in-out infinite; }
.aurora .b2 { width: 640px; height: 640px; background: radial-gradient(circle, rgba(109,135,132,0.42), transparent 72%); top: 18%; right: -10%; animation: f2 40s ease-in-out infinite; }
.aurora .b3 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(184,154,114,0.32), transparent 72%); bottom: -10%; left: 32%; animation: f3 46s ease-in-out infinite; }
@keyframes f1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(3vw,10vh) scale(1.05)} }
@keyframes f2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-6vw,4vh) scale(1.04)} }
@keyframes f3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(4vw,-5vh) scale(1.06)} }

/* ── Layout ── */
.z { position: relative; z-index: 10; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.sect { padding: 6rem 0; }
.sect + .sect { border-top: 0.5px solid var(--border-d); }

/* ── Type ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; width: 20px; height: 1.5px; background: linear-gradient(90deg, var(--c1), color-mix(in oklab, var(--c2) 55%, transparent), transparent); border-radius: 2px; }

h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
h2 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(120deg, var(--c3), var(--c1) 48%, var(--c2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro { font-size: 1.05rem; color: var(--fg-dim); max-width: 580px; margin-bottom: 3rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 500;
  padding: 0.95rem 1.8rem; border-radius: 100px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.btn svg { width: 15px; height: 15px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(4px); }

.btn-p {
  color: var(--bg); font-weight: 600;
  background: linear-gradient(120deg, var(--c3), var(--c1) 55%, var(--c2));
  background-size: 200% 100%;
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
}
.btn-p:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.3); }

.btn-g {
  color: var(--fg); background: var(--glass);
  border: 0.5px solid var(--border); backdrop-filter: blur(6px);
}
.btn-g:hover { background: rgba(243,239,231,0.08); border-color: rgba(243,239,231,0.2); transform: translateY(-2px); }

.arr { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(17,20,23,0.68);
  backdrop-filter: blur(20px) saturate(1.12);
  border-bottom: 0.5px solid var(--border-d);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(17,20,23,0.9); border-bottom-color: var(--border); }
.logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--fg); text-decoration: none; display: flex; align-items: center; gap: 0.4rem; }
.logo .dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--c3), var(--c1)); box-shadow: 0 0 0 3px rgba(184,154,114,0.12); }
.logo i { font-style: italic; font-weight: 400; }
nav .links { display: flex; gap: 2rem; list-style: none; align-items: center; }
nav .links a { font-size: 0.82rem; color: var(--fg-dim); text-decoration: none; transition: color 0.2s; letter-spacing: 0.01em; }
nav .links a:hover { color: var(--fg); }
nav .nav-cta { font-size: 0.82rem; color: var(--fg); background: rgba(243,239,231,0.05); border: 0.5px solid var(--border); padding: 0.5rem 1rem; border-radius: 100px; text-decoration: none; transition: all 0.3s; }
nav .nav-cta:hover { background: rgba(243,239,231,0.1); border-color: rgba(243,239,231,0.2); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 1.6rem; }

.hero-text .pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(243,239,231,0.035);
  border: 0.5px solid var(--border);
  border-radius: 100px; padding: 0.4rem 0.9rem;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim); width: fit-content;
}
.pill .blink { width: 6px; height: 6px; border-radius: 50%; background: var(--c1); box-shadow: 0 0 0 1px rgba(216,195,160,0.24); animation: pd 2s ease-in-out infinite; }
@keyframes pd { 0%,100%{box-shadow:0 0 0 0 rgba(184,154,114,0.35)} 50%{box-shadow:0 0 0 6px transparent} }

.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.03em;
}
.hero-text h1 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(120deg, var(--c3), var(--c1) 50%, var(--c2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text .sub { font-size: 1.1rem; color: var(--fg-dim); line-height: 1.6; max-width: 44ch; }
.hero-text .actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-text .micro { font-size: 0.82rem; color: var(--fg-ghost); }

/* ── Hero video card ── */
.hero-card {
  position: relative;
  width: min(100%, 420px);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  border: 0.5px solid rgba(243,239,231,0.12);
  box-shadow: 0 24px 72px rgba(0,0,0,0.48);
}
.hero-card::before {
  content: '';
  position: absolute; inset: -6px; z-index: -1;
  background:
    radial-gradient(circle at 20% 18%, rgba(216,195,160,0.26), transparent 34%),
    linear-gradient(135deg, rgba(184,154,114,0.18), rgba(109,135,132,0.12) 55%, transparent 78%);
  filter: blur(20px);
  opacity: 0.95;
}

.hero-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; transition: opacity 0.45s ease;
}
.hero-card video.active { opacity: 1; }

.hero-card .overlay {
  position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(0deg, rgba(16,18,20,0.92) 0%, transparent 100%);
  pointer-events: none; z-index: 2;
}
.hero-card .badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(17,20,23,0.66); backdrop-filter: blur(10px);
  border: 0.5px solid var(--border);
  border-radius: 100px; padding: 0.4rem 0.85rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg);
}
.badge .rd { width: 6px; height: 6px; border-radius: 50%; background: #ff3b3b; box-shadow: 0 0 8px #ff3b3b; animation: pd 1.5s ease-in-out infinite; }

.hero-card .info {
  position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1rem; z-index: 3;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.hero-card .info .nm { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--fg); }
.hero-card .info .st { font-size: 0.78rem; color: var(--fg-dim); margin-top: 0.2rem; display: flex; align-items: center; gap: 0.4rem; }
.hero-card .info .ld { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--c3), var(--c1)); box-shadow: 0 0 0 3px rgba(184,154,114,0.1); }

.abars { display: flex; align-items: flex-end; gap: 3px; height: 22px; }
.abars span { width: 3px; background: linear-gradient(180deg, var(--c3), var(--c2)); border-radius: 3px; animation: ab 1.1s ease-in-out infinite; }
.abars span:nth-child(1){height:10px;animation-delay:0s}
.abars span:nth-child(2){height:18px;animation-delay:.18s}
.abars span:nth-child(3){height:13px;animation-delay:.32s}
.abars span:nth-child(4){height:22px;animation-delay:.1s}
.abars span:nth-child(5){height:8px;animation-delay:.4s}
@keyframes ab { 0%,100%{transform:scaleY(.3);opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ── Lang pills under hero card ── */
.lang-pills {
  display: flex; gap: 0.45rem; margin-top: 0.8rem;
  flex-wrap: wrap;
}
.lang-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 0.85rem;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-dim);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2,0.8,0.2,1);
  position: relative; overflow: hidden;
}
.lang-pill::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c3), var(--c1));
  opacity: 0; transition: opacity 0.2s; z-index: -1;
}
.lang-pill:hover { border-color: rgba(243,239,231,0.24); color: var(--fg); }
.lang-pill.active { color: var(--bg); border-color: transparent; box-shadow: 0 10px 20px rgba(0,0,0,0.18); }
.lang-pill.active::before { opacity: 1; }
.lang-pill:disabled,
.lang-pill.muted {
  opacity: 0.45;
  cursor: not-allowed;
}
.lang-pill:disabled:hover,
.lang-pill.muted:hover {
  border-color: var(--border);
  color: var(--fg-dim);
  transform: none;
}
.lang-pill .fl { font-size: 0.9rem; line-height: 1; }

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Sound button ── */
.snd-btn {
  position: absolute; top: 1rem; right: 1rem; z-index: 6;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(17,20,23,0.7);
  backdrop-filter: blur(10px);
  border: 0.5px solid var(--border);
  color: var(--fg);
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  padding: 0;
}
.snd-btn:hover { background: rgba(17,20,23,0.88); border-color: rgba(243,239,231,0.22); transform: scale(1.08); }
.snd-btn.on { background: linear-gradient(135deg, var(--c3), var(--c1)); border-color: transparent; box-shadow: 0 8px 18px rgba(0,0,0,0.22); }
.hero-card .snd-btn { top: 1rem; right: 1rem; }
.gal .snd-btn { top: auto; bottom: 0.75rem; left: 0.75rem; }

/* ═══════════════════════════════════════════
   PROBLÈME
═══════════════════════════════════════════ */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-d);
  border: 0.5px solid var(--border-d);
  border-radius: var(--r); overflow: hidden;
  margin-top: 0;
}
.pain-card {
  background: var(--bg-1);
  padding: 2.4rem 2rem;
  transition: background 0.3s;
  position: relative;
}
.pain-card:hover { background: var(--bg-2); }
.pain-card .ic {
  font-size: 1.6rem; margin-bottom: 1rem;
  line-height: 1;
}
.pain-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.6rem; letter-spacing: -0.005em; }
.pain-card p { font-size: 0.95rem; color: var(--fg-dim); line-height: 1.6; }
.pain-card .line {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--c1), var(--c2), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.pain-card:hover .line { transform: scaleX(1); }

/* ═══════════════════════════════════════════
   SOLUTION — what you get
═══════════════════════════════════════════ */
.sol-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.sol-card {
  padding: 2.2rem;
  border: 0.5px solid var(--border-d);
  border-radius: var(--r);
  background: var(--bg-1);
  transition: all 0.3s;
}
.sol-card:hover { border-color: var(--border); transform: translateY(-4px); }
.sol-card .num {
  font-family: var(--serif);
  font-size: 0.9rem; color: var(--fg-ghost);
  letter-spacing: 0.1em; margin-bottom: 0.8rem;
}
.sol-card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  margin-bottom: 0.6rem; letter-spacing: -0.005em;
}
.sol-card h3 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--c1), var(--c2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sol-card p { font-size: 0.95rem; color: var(--fg-dim); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CAS D'USAGE / AVANT-APRES
═══════════════════════════════════════════ */
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.use-card {
  min-height: 210px;
  padding: 2rem;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(243,239,231,0.04), rgba(243,239,231,0.015));
  border: 0.5px solid var(--border-d);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.use-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  background: var(--bg-2);
}
.use-card .uc {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--fg-ghost);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.use-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}
.use-card p { font-size: 0.94rem; color: var(--fg-dim); line-height: 1.55; }

.document-to-video-section {
  background:
    radial-gradient(ellipse 120% 90% at 50% 0%, rgba(216,195,160,0.08), transparent 58%),
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(109,135,132,0.08), transparent 55%),
    linear-gradient(180deg, rgba(28,34,40,0.96), rgba(18,22,26,0.98));
  border: 0.5px solid var(--border-d);
  border-radius: 24px;
  padding: 3.2rem 3rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);
}

.document-to-video-section .section-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.document-to-video-section .section-header .eyebrow {
  justify-content: center;
  margin-bottom: 1rem;
}

.document-to-video-section .section-header h2 {
  margin-bottom: 1rem;
}

.document-to-video-section .section-header p {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--fg-dim);
  line-height: 1.65;
}

.workflow-row {
  --workflow-media-height: clamp(238px, 20vw, 312px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) auto minmax(0, 1.48fr);
  align-items: center;
  gap: 1.8rem;
}

.workflow-row + .workflow-row {
  margin-top: 2.3rem;
  padding-top: 2.3rem;
  border-top: 0.5px solid var(--border-d);
}

.workflow-row-group + .workflow-row-group {
  margin-top: 2.3rem;
  padding-top: 2.3rem;
  border-top: 0.5px solid var(--border-d);
}

.workflow-row-title {
  margin: 0 auto 1.85rem;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c3);
  text-align: center;
}

.workflow-card {
  min-width: 0;
}

.input-card,
.video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflow-label {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c3);
  text-align: center;
}

.workflow-label.green {
  color: color-mix(in oklab, var(--c2) 82%, white 18%);
}

.media-shell {
  height: var(--workflow-media-height);
  border: 0.5px solid rgba(243,239,231,0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(243,239,231,0.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-shell {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  align-self: center;
  padding: 0.72rem;
  background: linear-gradient(135deg, rgba(243,239,231,0.06), rgba(243,239,231,0.018));
  opacity: 0.82;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.video-shell {
  width: 100%;
  max-width: 540px;
  padding: 0.72rem;
  background: linear-gradient(135deg, rgba(109,135,132,0.22), rgba(17,20,23,0.94));
  box-shadow:
    0 26px 56px rgba(0,0,0,0.34),
    0 0 0 1px rgba(243,239,231,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transform: none;
}

.workflow-media {
  display: block;
  width: 100%;
  border-radius: 12px;
  background: rgba(10,12,14,0.35);
}

.workflow-media-a4 {
  width: auto;
  max-width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.92) contrast(0.98);
}

.workflow-media-video {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(0,0,0,0.26);
}

.workflow-card p {
  margin-top: 1rem;
  color: var(--fg-dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

.workflow-arrow {
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  line-height: 1;
  color: var(--c1);
  justify-self: center;
}

/* ═══════════════════════════════════════════
   VIDEO METHODE
═══════════════════════════════════════════ */
.work-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: -1.4rem;
}
.benefit-list span {
  display: inline-flex;
  border: 0.5px solid var(--border);
  border-radius: 100px;
  background: rgba(243,239,231,0.04);
  color: var(--fg-dim);
  padding: 0.42rem 0.75rem;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}
.work-video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 16/9;
  background: var(--bg-2);
  border: 0.5px solid rgba(243,239,231,0.12);
  box-shadow: 0 22px 64px rgba(0,0,0,0.44);
}
.work-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.work-video-card video.active {
  opacity: 1;
  pointer-events: auto;
}
.work-video-card .overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(16,18,20,0.86), transparent);
  pointer-events: none;
}
.work-video-card .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(17,20,23,0.66);
  backdrop-filter: blur(10px);
  border: 0.5px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
}
.work-pills {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.work-pills button {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  cursor: pointer;
  transition: all 0.25s;
}
.work-pills button:hover { border-color: rgba(243,239,231,0.24); color: var(--fg); }
.work-pills button.active {
  color: var(--bg);
  border-color: transparent;
  background: linear-gradient(135deg, var(--c3), var(--c1));
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* ═══════════════════════════════════════════
   DIFFÉRENCIATION — vs DIY
═══════════════════════════════════════════ */
.diff {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.diff-card {
  border-radius: var(--r);
  padding: 2.4rem;
  position: relative; overflow: hidden;
}
.diff-card.them {
  background: var(--bg-1);
  border: 0.5px solid var(--border-d);
}
.diff-card.you {
  background: radial-gradient(ellipse 100% 100% at 50% 0%, color-mix(in oklab, var(--c3) 15%, transparent), transparent 70%), var(--bg-1);
  border: 0.5px solid transparent;
}
.diff-card.you::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r); padding: 1px;
  background: linear-gradient(135deg, var(--c3), var(--c1), var(--c2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.diff-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 100px;
  margin-bottom: 1.4rem;
}
.them .diff-tag { background: rgba(255,255,255,0.04); border: 0.5px solid var(--border); color: var(--fg-ghost); }
.you .diff-tag { background: linear-gradient(120deg, var(--c3), var(--c1)); color: var(--bg); }
.diff-card h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 1.2rem; }
.diff-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.diff-list li {
  display: grid; grid-template-columns: 20px 1fr;
  gap: 0.7rem; font-size: 0.95rem; color: var(--fg-dim); line-height: 1.5;
  padding-bottom: 0.7rem; border-bottom: 0.5px solid var(--border-d);
}
.diff-list li:last-child { border-bottom: none; padding-bottom: 0; }
.diff-list .ic {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem; margin-top: 3px; flex-shrink: 0;
}
.them .ic { background: rgba(255,255,255,0.04); color: var(--fg-ghost); }
.you .ic { background: linear-gradient(135deg, var(--c3), var(--c1)); color: var(--bg); }

/* ═══════════════════════════════════════════
   DEMO / GALLERY
═══════════════════════════════════════════ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gal {
  position: relative; aspect-ratio: 3/4;
  border-radius: var(--r); overflow: hidden;
  background: var(--bg-2); border: 0.5px solid var(--border-d);
  cursor: pointer; transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.3s;
}
.gal:hover { transform: translateY(-6px); border-color: var(--border); }
.gal video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  opacity: 0; transition: opacity 0.4s;
}
.gal video.active { opacity: 1; }
.gal::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(16,18,20,0.88) 0%, transparent 55%);
  pointer-events: none;
}
.gal .pills {
  position: absolute; top: 0.75rem; right: 0.75rem;
  display: flex; gap: 4px; z-index: 5;
}
.gal .pills button {
  background: rgba(17,20,23,0.7); backdrop-filter: blur(8px);
  border: 0.5px solid rgba(243,239,231,0.16);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); cursor: pointer;
  transition: all 0.2s;
}
.gal .pills button:hover { background: rgba(17,20,23,0.88); color: #fff; }
.gal .pills button.active {
  background: linear-gradient(135deg, var(--c3), var(--c1));
  border-color: transparent; color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}
.gal .ginfo {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.gal .ginfo .gn { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--fg); }
.gal .ginfo .gr { font-size: 0.78rem; color: var(--fg-dim); }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border-d); border: 0.5px solid var(--border-d); border-radius: var(--r); overflow: hidden; }
.pstep { background: var(--bg-1); padding: 2.2rem 1.4rem; position: relative; transition: background 0.3s; }
.pstep:hover { background: var(--bg-2); }
.pstep .num {
  font-family: var(--serif); font-size: clamp(3.2rem, 5vw, 4.6rem); font-weight: 300; line-height: 1;
  background: linear-gradient(120deg, color-mix(in oklab, var(--c3) 72%, transparent), color-mix(in oklab, var(--c2) 58%, transparent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
}
.pstep h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.6rem; }
.pstep p { font-size: 0.95rem; color: var(--fg-dim); line-height: 1.6; }
.pstep .line { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, var(--c1), var(--c2), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1); }
.pstep:hover .line { transform: scaleX(1); }

/* ═══════════════════════════════════════════
   OFFRES
═══════════════════════════════════════════ */
.offers { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 1rem; }
.offer {
  border-radius: var(--r); padding: 2.4rem 2rem;
  background: var(--bg-1); border: 0.5px solid var(--border-d);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.3s;
}
.offer:hover { transform: translateY(-4px); border-color: var(--border); }
.offer.feat {
  background: radial-gradient(ellipse 100% 60% at 50% 0%, color-mix(in oklab, var(--c3) 14%, transparent), transparent 60%), var(--bg-2);
  border: 0.5px solid transparent;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.offer.launch-offer {
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 84px rgba(0,0,0,0.42);
}
.offer.launch-offer::after {
  content: '';
  position: absolute;
  inset: auto -10% -28% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(216,195,160,0.18), transparent 68%);
  pointer-events: none;
}
.offer-main .oper {
  color: var(--fg-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}
.offer.promo {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.6rem 2.8rem;
  background:
    radial-gradient(ellipse 70% 90% at 0% 0%, color-mix(in oklab, var(--c3) 16%, transparent), transparent 62%),
    radial-gradient(ellipse 70% 80% at 100% 100%, color-mix(in oklab, var(--c2) 12%, transparent), transparent 62%),
    var(--bg-1);
  border-color: color-mix(in oklab, var(--c1) 32%, transparent);
  box-shadow: 0 26px 80px rgba(0,0,0,0.38);
}
.promo-main {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-list {
  min-width: 0;
  padding: 1.35rem 1.45rem;
  border-radius: 12px;
  background: rgba(243,239,231,0.035);
  border: 0.5px solid var(--border-d);
}
.offer.promo ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding-top: 0;
  margin-bottom: 0;
}
.offer.promo ul li {
  color: var(--fg);
  font-size: 0.94rem;
}
.offer.promo ul li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c3), var(--c1));
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: 700;
  margin-top: 2px;
}
.offer.promo .octa {
  grid-column: 1 / -1;
  width: min(100%, 520px);
  justify-content: center;
  justify-self: center;
  margin-top: 0.6rem;
}
.offer.promo .old-price,
.offer.promo .oprice {
  margin-top: 1rem;
}
.offer.promo .oname {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.02;
  max-width: 13ch;
}
.offer.promo .odesc {
  font-size: 1rem;
  max-width: 42ch;
  margin-top: 0.65rem;
}
.offer.promo .old-price {
  font-size: 2rem;
  opacity: 0.75;
}
.offer.promo .oprice {
  font-size: clamp(4rem, 8vw, 6.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}
.offer.promo .oper {
  color: var(--fg-dim);
  font-size: 0.9rem;
}
.offer.feat::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r); padding: 1px;
  background: linear-gradient(135deg, var(--c3), var(--c1), var(--c2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.offer .otag {
  display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: linear-gradient(120deg, var(--c3), var(--c1)); color: var(--bg);
  padding: 0.3rem 0.7rem; border-radius: 100px; margin-bottom: 0.8rem; width: fit-content;
}
.offer .oname { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.offer .odesc { font-size: 0.88rem; color: var(--fg-dim); margin-top: 0.2rem; }
.offer .oprice {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  background: linear-gradient(120deg, var(--c3), var(--c1), var(--c2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin: 1.2rem 0 0.3rem;
}
.offer .oprefix {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer .old-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--fg-ghost);
  text-decoration: line-through;
  line-height: 1;
  margin-top: 1.2rem;
}
.offer .oper { font-size: 0.78rem; color: var(--fg-ghost); margin-bottom: 1.4rem; }
.offer ul { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.6rem; }
.offer ul li { font-size: 0.92rem; color: var(--fg-dim); display: flex; gap: 0.6rem; align-items: baseline; line-height: 1.4; }
.offer ul li::before { content: '—'; color: var(--fg-ghost); flex-shrink: 0; }
.offer .octa { margin-top: auto; }
.lang-option {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 0.55fr 1fr;
  align-items: center;
  gap: 1.6rem;
  border-radius: var(--r);
  padding: 1.8rem 2rem;
  background: linear-gradient(120deg, rgba(243,239,231,0.04), rgba(243,239,231,0.015));
  border: 0.5px solid var(--border-d);
}
.lang-option h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}
.lang-option p,
.lang-option li {
  color: var(--fg-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}
.lang-option .oprice {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  background: linear-gradient(120deg, var(--c3), var(--c1), var(--c2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.lang-option .oper {
  font-size: 0.78rem;
  color: var(--fg-ghost);
  margin-top: 0.25rem;
}
.lang-option ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.lang-option li::before {
  content: '—';
  color: var(--fg-ghost);
  margin-right: 0.55rem;
}
.price-sim {
  grid-column: 1 / -1;
  border-radius: var(--r);
  padding: 2rem;
  background: radial-gradient(ellipse 90% 80% at 100% 0%, color-mix(in oklab, var(--c2) 11%, transparent), transparent 60%), var(--bg-1);
  border: 0.5px solid var(--border);
}
.sim-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}
.sim-head h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}
.sim-head p {
  color: var(--fg-dim);
  font-size: 0.95rem;
  max-width: 62ch;
}
.sim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sim-field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border: 0.5px solid var(--border-d);
  border-radius: 10px;
  padding: 1rem;
  background: rgba(243,239,231,0.025);
}
.sim-field span {
  color: var(--fg-dim);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sim-field strong {
  color: var(--fg);
  font-size: 0.95rem;
}
.sim-field select {
  width: 100%;
  min-height: 42px;
  border-radius: 8px;
  border: 0.5px solid var(--border);
  background: var(--bg-2);
  color: var(--fg);
  font: inherit;
  padding: 0 0.8rem;
}
.sim-field input[type="range"] {
  width: 100%;
  accent-color: var(--c1);
}
.sim-field input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.sim-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 0.5px solid var(--border-d);
}
.sim-result span {
  display: block;
  color: var(--fg-dim);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.sim-result strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(120deg, var(--c3), var(--c1), var(--c2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sim-old-price {
  display: none;
  font-family: var(--serif);
  color: var(--fg-ghost);
  font-size: 1.45rem;
  line-height: 1;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.sim-old-price.show {
  display: block;
}
.sim-result p {
  color: var(--fg-dim);
  font-size: 0.95rem;
  text-align: right;
}

/* ═══════════════════════════════════════════
   OBJECTIONS / FAQ
═══════════════════════════════════════════ */
.faq { border-top: 0.5px solid var(--border-d); }
.faq-i { border-bottom: 0.5px solid var(--border-d); transition: background 0.3s; }
.faq-i:hover { background: rgba(243,239,231,0.015); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.4rem 0; cursor: pointer; user-select: none;
}
.faq-q .qt { font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.45rem); font-weight: 400; letter-spacing: -0.005em; }
.faq-t {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(243,239,231,0.04); border: 0.5px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.3s; position: relative;
}
.faq-t::before, .faq-t::after { content: ''; position: absolute; width: 11px; height: 1px; background: var(--fg); transition: transform 0.3s; }
.faq-t::after { transform: rotate(90deg); }
.faq-i.open .faq-t { background: linear-gradient(135deg, var(--c3), var(--c1)); border-color: transparent; }
.faq-i.open .faq-t::before, .faq-i.open .faq-t::after { background: var(--bg); }
.faq-i.open .faq-t::after { transform: rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.2,0.8,0.2,1); }
.faq-i.open .faq-a { max-height: 400px; }
.faq-a-in { padding: 0 0 1.4rem 0; font-size: 1rem; color: var(--fg-dim); line-height: 1.6; max-width: 72ch; }

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-end {
  padding: 8rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-end::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, color-mix(in oklab, var(--c3) 12%, transparent), transparent 60%),
              radial-gradient(ellipse 40% 40% at 30% 50%, color-mix(in oklab, var(--c2) 10%, transparent), transparent 50%);
  filter: blur(46px); pointer-events: none;
}
.cta-end h2 { max-width: 14ch; margin: 1rem auto; }
.cta-end p { font-size: 1.05rem; color: var(--fg-dim); max-width: 480px; margin: 0 auto 2rem; }
.cta-end .actions { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cta-end .note { font-size: 0.88rem; color: var(--fg-dim); margin-top: 1.4rem; }
.cta-end .note span { margin: 0 0.4rem; opacity: 0.4; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  border-top: 0.5px solid var(--border-d);
  padding: 2rem 0; background: #13171b;
}
footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
footer .copy { font-size: 0.75rem; color: var(--fg-ghost); }

/* ═══════════════════════════════════════════
   REVEAL
═══════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.2,0.8,0.2,1), transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.rv.vis { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; gap: 2rem; }
  .use-grid, .offers { grid-template-columns: repeat(2, 1fr); }
  .workflow-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .document-shell,
  .video-shell { max-width: 100%; }
  .video-shell { transform: none; }
  .workflow-arrow { transform: rotate(90deg); justify-self: center; }
  .lang-option { grid-template-columns: 1fr; align-items: stretch; }
  .sim-grid { grid-template-columns: repeat(2, 1fr); }
  .offer.promo { grid-template-columns: 1fr; }
  .offer.promo { padding: 2.2rem; }
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav .links { display: none; }
  .wrap { padding: 0 1.2rem; }
  .sect { padding: 4rem 0; }
  .pain-grid, .process { grid-template-columns: 1fr; }
  .sol-grid, .diff, .offers, .use-grid { grid-template-columns: 1fr; }
  .document-to-video-section { padding: 2.2rem 1.25rem; border-radius: 20px; }
  .document-to-video-section .section-header { margin-bottom: 2rem; }
  .document-to-video-section .section-header p { font-size: 1rem; }
  .workflow-row-title { font-size: 1.02rem; margin-bottom: 1.35rem; }
  .workflow-label { font-size: 1.02rem; }
  .workflow-row-group + .workflow-row-group { margin-top: 1.7rem; padding-top: 1.7rem; }
  .offer.promo { grid-column: 1 / -1; }
  .lang-option { grid-column: 1 / -1; }
  .sim-head, .sim-result { flex-direction: column; align-items: stretch; }
  .sim-grid { grid-template-columns: 1fr; }
  .sim-result p { text-align: left; }
  .gallery { grid-template-columns: 1fr 1fr; }
  footer .wrap { flex-direction: column; text-align: center; }
}
