﻿/* ═══════════════════════════════════════
   TORFIX — Design System
   ═══════════════════════════════════════ */

:root {
  --font-heading:  'Sora', sans-serif;
  --font-body:     'Manrope', sans-serif;
  --accent:        #6C47FF;
  --accent-light:  #EDE9FF;
  --accent-dark:   #4A2FD4;
  --accent-glow:   rgba(108,71,255,0.45);
  --green:         #10B981;
  --green-light:   #ECFDF5;
  --blue:          #3B82F6;
  --blue-light:    #EFF6FF;
  --orange:        #F59E0B;
  --orange-light:  #FEF3C7;
  --red:           #EF4444;
  --text-primary:  #0F0E1A;
  --text-secondary:#6B7280;
  --text-tertiary: #9CA3AF;
  --bg:            #FAFAFA;
  --bg-card:       #FFFFFF;
  --bg-section:    #F5F4FC;
  --border:        rgba(108,71,255,0.12);
  --border-strong: rgba(108,71,255,0.25);
  --radius:        12px;
  --radius-lg:     16px;
  --shadow:        0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 12px rgba(108,71,255,0.15), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:     0 8px 40px rgba(108,71,255,0.22);
  --site-gradient:
    radial-gradient(ellipse 38% 52% at 8% 12%, rgba(108,71,255,0.12) 0%, transparent 72%),
    radial-gradient(ellipse 28% 42% at 82% 20%, rgba(108,71,255,0.08) 0%, transparent 74%),
    linear-gradient(108deg, #FCFBFF 0%, #F4F1FF 44%, #ECE6FF 66%, #17132C 100%);
  --site-gradient-mobile:
    radial-gradient(ellipse 52% 52% at 22% 12%, rgba(108,71,255,0.14) 0%, transparent 70%),
    linear-gradient(180deg, #FCFBFF 0%, #F3EFFF 52%, #E7E1FF 100%);
  /* Dark hero */
  --hero-bg:       #09080F;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--site-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.niche-card:focus-visible {
  outline: 3px solid rgba(108,71,255,0.28);
  outline-offset: 3px;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 76px 0;
  background: transparent;
}
.section-alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(108,71,255,0.03));
}
.section-soft {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(108,71,255,0.02));
}
#solution {
  padding-bottom: 42px;
}
#offre {
  padding-top: 46px;
}
#livrables {
  padding-bottom: 38px;
}
#probleme {
  padding-top: 38px;
}

/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: 36px;
}
.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}
.section-h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 540px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(108,71,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,71,255,0.55);
  background: var(--accent-dark);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border-strong);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 10px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  color: var(--text-secondary);
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-white {
  background: #fff;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 9px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.btn-full { width: 100%; justify-content: center; }
.btn-grow { flex: 1; justify-content: center; }
.btn-sm { font-size: 12px; padding: 10px 18px; }
.btn-lg { font-size: 14px; padding: 15px 28px; }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #A78BFA, var(--blue));
  z-index: 999;
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
}

/* ── PAGE TRANSITION OVERLAY ── */
.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--hero-bg);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.page-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── FLOATING ANIMATION ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.hero-float { animation: float 5s ease-in-out infinite; }

@keyframes auroraDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.92; }
  50% { transform: translate3d(-2%, 1.5%, 0) scale(1.04); opacity: 1; }
}

@keyframes sheenSweep {
  0% { transform: translateX(-135%) skewX(-18deg); opacity: 0; }
  20% { opacity: 0.1; }
  55% { opacity: 0.18; }
  100% { transform: translateX(155%) skewX(-18deg); opacity: 0; }
}

/* ── PARALLAX DOT GRID (hero) ── */
.hero-parallax {
  position: absolute;
  inset: -20% 0 0;
  background-image: radial-gradient(rgba(108,71,255,0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 68px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: auto auto 2% -8%;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(108,71,255,0.18) 0%, rgba(108,71,255,0.03) 45%, transparent 74%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 68px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,71,255,0.4), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-soft {
  background: transparent;
}
.page-hero-soft::before {
  inset: 78px -6% 0 auto;
  width: 46%;
  height: calc(100% - 78px);
  background: radial-gradient(circle at 48% 36%, rgba(108,71,255,0.22) 0%, rgba(108,71,255,0.08) 30%, rgba(9,8,15,0.03) 56%, transparent 78%);
  filter: blur(18px);
  animation: auroraDrift 12s ease-in-out infinite;
}
.page-hero-soft .page-hero-badge {
  background: rgba(255,255,255,0.54);
  border-color: rgba(108,71,255,0.18);
  color: rgba(15,14,26,0.76);
}
.page-hero-soft .page-hero-h1 {
  color: var(--text-primary);
}
.page-hero-soft .page-hero-h1 span {
  color: var(--accent);
  text-shadow: none;
}
.page-hero-soft .page-hero-sub {
  color: rgba(15,14,26,0.72);
}
.page-hero-soft .btn-ghost-dark {
  border-color: rgba(108,71,255,0.18);
  color: rgba(15,14,26,0.7);
  background: rgba(255,255,255,0.46);
}
.page-hero-soft .btn-ghost-dark:hover {
  border-color: rgba(108,71,255,0.38);
  color: var(--text-primary);
}
.page-hero-inner {
  padding: 60px 0 66px;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(108,71,255,0.14);
  border: 1px solid rgba(108,71,255,0.35);
  color: rgba(255,255,255,0.8);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.page-hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-hero-h1 span { color: var(--accent); text-shadow: 0 0 40px rgba(108,71,255,0.5); }
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.64);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 10px;
  transition: border-color 0.2s, color 0.2s;
  background: rgba(255,255,255,0.04);
}
.btn-ghost-dark:hover { border-color: var(--accent); color: #fff; }

/* Nav active link */
.nav-active { color: var(--accent) !important; font-weight: 500; }
.navbar.nav-light .nav-active { color: var(--accent) !important; }

/* Solution link */
.solution-link { margin-top: 28px; display: flex; }

/* Outil details */
.outil-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}
.outil-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}
.odd-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Roadmap card */
.roadmap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
}
.rm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.rm-head-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.rm-head-badge {
  font-size: 10px;
  font-weight: 600;
  background: var(--accent-light);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.rm-steps { display: flex; flex-direction: column; gap: 16px; }
.rm-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.rm-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.rm-step-num.done { background: var(--green); color: #fff; }
.rm-step-num.next { background: var(--accent); color: #fff; }
.rm-step-num.later { background: var(--border); color: var(--text-tertiary); }
.rm-step-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 3px; }
.rm-muted { color: var(--text-tertiary); }
.rm-step-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* Sector grid (niches page) */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sector-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.sector-top {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sector-emoji { font-size: 32px; }
.sector-body { padding: 18px 18px 20px; }
.sector-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.sector-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.sector-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.s-tag {
  font-size: 10px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--bg-section);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* Niche count */
.niche-count { font-size: 11px; color: var(--text-tertiary); margin-top: 2px; }

/* FAQ smooth animation */
.faq-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 0;
}
.faq-item.faq-open .faq-a {
  padding: 0 0 16px;
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background:
    linear-gradient(180deg, rgba(10,8,18,0.88), rgba(17,13,31,0.82));
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid rgba(108,71,255,0.16);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow:
    0 12px 36px rgba(8,6,16,0.16),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
/* Navbar over light sections */
.navbar.nav-light {
  background: rgba(250,250,250,0.92);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.navbar.nav-light .nav-logo { color: var(--accent); }
.navbar.nav-light .nav-links a { color: var(--text-secondary); }
.navbar.nav-light .nav-links a:hover { color: var(--accent); }
.navbar.nav-light .nav-burger span { background: var(--text-primary); }
.navbar.nav-light .nav-logo-image { display: none; }
.navbar.nav-light .nav-logo-text {
  display: inline-flex;
  align-items: center;
  color: var(--text-primary);
}
/* Navbar over dark hero */
.nav-logo { color: rgba(255,255,255,0.95); transition: color 0.3s; }
.nav-links a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
.nav-links a:hover { color: #fff; }
.nav-burger span { background: rgba(255,255,255,0.85); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  color: var(--accent);
  letter-spacing: 1.5px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.nav-logo:hover {
  color: var(--accent-2);
}
.nav-logo img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
}
.nav-logo-text {
  display: none;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.navbar.nav-light .lang-switch {
  background: rgba(255,255,255,0.7);
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--text-secondary);
}
.lang-pill.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(108,71,255,0.22);
}
.nav-links a {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 9px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.nav-whatsapp {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.nav-whatsapp:hover {
  transform: translateY(-1px);
  background: #25D366;
  border-color: #25D366;
}

.nav-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 32px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 13px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mobile a:hover { color: var(--accent); }
.lang-switch-mobile {
  margin-top: 16px;
  width: fit-content;
  background: var(--bg);
}
.nav-mobile .nav-cta {
  margin-top: 16px;
  text-align: center;
  width: 100%;
}

.nav-mobile .nav-whatsapp {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  height: 42px;
}

/* ══════════════════════════════════
   HERO — DARK HIGH-TECH
══════════════════════════════════ */
.hero {
  padding-top: 68px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 82px -8% 0 auto;
  width: 48%;
  height: calc(100% - 82px);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 38%, rgba(108,71,255,0.26) 0%, rgba(108,71,255,0.08) 30%, rgba(9,8,15,0.04) 54%, transparent 76%);
  filter: blur(18px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
  animation: auroraDrift 12s ease-in-out infinite;
}
/* Dot grid handled by .hero-parallax div for JS parallax */
/* Top glow line */
.hero::after {
  content: '';
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,71,255,0.4), transparent);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* Announce bar — dark glass */
.announce-bar {
  background: rgba(255,255,255,0.42);
  border-bottom: 1px solid rgba(108,71,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  position: relative;
  z-index: 1;
}
.announce-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.apill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(108,71,255,0.18);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(15,14,26,0.74);
}
.apill-featured {
  background: linear-gradient(180deg, rgba(108,71,255,0.24), rgba(108,71,255,0.14));
  border-color: rgba(108,71,255,0.42);
  color: var(--accent-dark);
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 10px 26px rgba(108,71,255,0.16);
}
.apill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
  flex-shrink: 0;
}
.apill-featured::before {
  background: #C4B5FD;
  box-shadow: 0 0 12px rgba(196,181,253,0.88);
}

/* Hero content */
.hero .container {
  padding-top: 56px;
  padding-bottom: 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 42px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(108,71,255,0.18);
  color: rgba(15,14,26,0.76);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--accent-glow); }
  50%       { box-shadow: 0 0 14px rgba(108,71,255,0.9); }
}
.hero-h1 {
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1.4px;
}
.hero-h1 span {
  color: var(--accent);
  text-shadow: none;
}
.hero-sub {
  font-size: 15px;
  color: rgba(15,14,26,0.72);
  line-height: 1.68;
  margin-bottom: 24px;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 14px;
  max-width: 500px;
  font-size: 13px;
  line-height: 1.58;
  color: rgba(15,14,26,0.54);
}
.trust-bar {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.trust-pill {
  font-size: 11px;
  color: rgba(15,14,26,0.52);
  padding: 4px 0;
  margin-right: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Hero mockup — glassmorphism */
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.hero-mockup {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(236,230,255,0.32));
  border: 1px solid rgba(108,71,255,0.18);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 24px 48px rgba(108,71,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero-mockup::before {
  content: 'TORFIX';
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(108,71,255,0.16);
  background: rgba(20,16,38,0.88);
  color: rgba(255,255,255,0.9);
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  z-index: 2;
}
.hero-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255,255,255,0.08) 46%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0.08) 54%, transparent 68%);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: sheenSweep 7.5s ease-in-out infinite;
}
.mockup-bar {
  background: rgba(255,255,255,0.26);
  border-bottom: 1px solid rgba(108,71,255,0.12);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-bar span { width: 9px; height: 9px; border-radius: 50%; }
.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(15,14,26,0.34);
  background: rgba(255,255,255,0.26);
  border: 1px solid rgba(108,71,255,0.08);
  border-radius: 5px;
  padding: 3px 10px;
}
.mockup-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.mk-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(108,71,255,0.12);
  border: 1px solid rgba(108,71,255,0.18);
  color: rgba(108,71,255,0.92);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.mk-line { height: 7px; border-radius: 4px; background: rgba(108,71,255,0.08); }
.mk-title { background: rgba(108,71,255,0.42); width: 70%; }
.mk-sub { background: rgba(15,14,26,0.08); width: 55%; }
.mk-short { background: rgba(15,14,26,0.06); width: 40%; }
.mk-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.mk-cta {
  background: var(--accent);
  box-shadow: 0 0 18px rgba(108,71,255,0.65);
  width: 38%; height: 11px; border-radius: 6px;
}
.mk-chip {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-dark);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(108,71,255,0.12);
}
.mk-panel {
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(108,71,255,0.12);
}
.mk-panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(15,14,26,0.72);
}
.mk-panel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(16,185,129,0.55);
}
.mk-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mk-step {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.34);
  text-align: center;
}
.mk-step strong {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  color: var(--text-primary);
}
.mk-step span {
  font-size: 10px;
  color: rgba(15,14,26,0.5);
}
.mk-cards { display: flex; gap: 8px; }
.mk-card {
  flex: 1;
  min-height: 52px;
  border-radius: 7px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(108,71,255,0.1);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mk-card-label {
  font-size: 10px;
  color: rgba(15,14,26,0.42);
}
.mk-card-value {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  color: var(--text-primary);
}

/* Hero schema */
.hero-schema {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(108,71,255,0.16);
  border-radius: 10px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}
.schema-node {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}
.schema-node.accent {
  background: rgba(108,71,255,0.18);
  color: var(--accent-dark);
  border: 1px solid rgba(108,71,255,0.24);
}
.schema-node.blue {
  background: rgba(59,130,246,0.12);
  color: #3456A8;
  border: 1px solid rgba(59,130,246,0.18);
}
.schema-node.green {
  background: rgba(16,185,129,0.12);
  color: #10B981;
  border: 1px solid rgba(16,185,129,0.18);
}
.schema-arr {
  color: rgba(15,14,26,0.2);
  font-size: 16px;
  flex: 0 0 auto;
}

/* Hero stats */
.hero-stat-row {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(108,71,255,0.16);
  border-radius: 10px;
  padding: 18px 0;
  backdrop-filter: blur(10px);
}
.hero-stat {
  flex: 1;
  text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: none;
}
.stat-label { font-size: 12px; color: rgba(15,14,26,0.42); }
.stat-sep { width: 1px; height: 34px; background: rgba(108,71,255,0.1); }

/* ══════════════════════════════════
   PROBLÈME
══════════════════════════════════ */
.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.deliverable-card {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(108,71,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(246,243,255,0.92));
  box-shadow: 0 18px 40px rgba(108,71,255,0.08);
}
.deliverable-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(108,71,255,0.14);
  border: 1px solid rgba(108,71,255,0.24);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}
.deliverable-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.25;
}
.deliverable-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.nav-logo,
.hero-h1,
.page-hero-h1,
.section-tag,
.btn-primary,
.btn-secondary,
.btn-white,
.btn-ghost-dark,
.lang-pill,
.hero-badge,
.page-hero-badge,
.pricing-name,
.price-num,
.pricing-badge,
.pricing-cta,
.pilier-name,
.deliverable-title,
.prob-title,
.ps-name,
.ps-num,
.diff-pill,
.faq-q,
.cf-tag,
.cf-title,
.ft-logo,
.ft-col-title,
.modal-title,
.prog-label,
.radio-name,
.success-title {
  font-family: var(--font-heading);
}
.deliverables-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.deliverables-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(108,71,255,0.14);
  font-size: 12px;
  color: var(--text-secondary);
}
.prob-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
}
.prob-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.prob-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.prob-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════
   SOLUTION / PILIERS
══════════════════════════════════ */
.piliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pilier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pilier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pilier-featured {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.pilier-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.pilier-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pilier-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 9px;
}
.pilier-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-popular {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 0 50px rgba(108,71,255,0.18), var(--shadow-md);
  transform: translateY(-6px);
}
.pricing-popular:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 70px rgba(108,71,255,0.28), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.pricing-header { margin-bottom: 24px; }
.pricing-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-num {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.price-unit {
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-conception {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
}
.pricing-for {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 13px;
  padding-left: 20px;
  position: relative;
  color: var(--text-secondary);
}
.feat-yes { color: var(--text-primary) !important; }
.feat-yes::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.feat-no::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
}
.pricing-cta { width: 100%; padding: 13px; border-radius: 10px; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
.pricing-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pricing-cta-main { background: var(--accent); color: #fff; }
.pricing-cta-main:hover { background: var(--accent-dark); }
.pricing-cta-sec { background: transparent; border: 1.5px solid var(--border-strong); color: var(--text-secondary); }
.pricing-cta-sec:hover { border-color: var(--accent); color: var(--accent); }

/* ── ADDONS ── */
.addons-wrap {
  margin-top: 36px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  flex-wrap: wrap;
}
.addons-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding-top: 2px;
}
.addons-label svg {
  color: var(--accent);
  flex-shrink: 0;
}
.addons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.addon-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 4px 12px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  cursor: default;
}
.addon-chip:last-child {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(108,71,255,0.05);
  font-style: italic;
}
.addon-chip:hover:not(:last-child) {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.pricing-note {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pnote-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   PROCESS
══════════════════════════════════ */
.process-steps {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
}
.ps {
  flex: 1;
  text-align: center;
  padding: 18px 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  position: relative;
}
.ps:first-child { border-radius: 12px 0 0 12px; }
.ps:last-child  { border-radius: 0 12px 12px 0; border-right: 1px solid var(--border); }
.ps-hl {
  background: var(--accent-light);
  border-color: var(--accent);
  border-width: 1px;
  border-top: 3px solid var(--accent);
  z-index: 1;
}
.ps-num {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-tertiary);
  line-height: 1;
  margin-bottom: 9px;
}
.ps-hl .ps-num { color: var(--accent); }
.ps-name {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.ps-desc { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }
.diff-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  margin-top: 9px;
  letter-spacing: 0.3px;
}

.risk-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--green-light);
  border: 1px solid rgba(16,185,129,0.2);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
}
.risk-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.risk-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #065F46;
  margin-bottom: 4px;
}
.risk-desc { font-size: 12px; color: #047857; line-height: 1.6; }

/* ══════════════════════════════════
   CTA BANNER
══════════════════════════════════ */
.cta-banner {
  background: var(--accent);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}
.cta-banner-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}
.cta-banner-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}
.cta-banner-sub { font-size: 12px; color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════
   OUTILS
══════════════════════════════════ */
.outils-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.outil-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.outil-card-wide {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(108,71,255,0.08), rgba(108,71,255,0.02)),
    var(--bg-card);
  border-color: rgba(108,71,255,0.22);
}
.outil-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.outil-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.outil-ico {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.outil-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.outil-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 10px; }
.outil-tag {
  font-size: 10px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 500;
}
.bonus-strip {
  background: var(--accent);
  border-radius: 12px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bs-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.bs-sub { font-size: 12px; color: rgba(255,255,255,0.72); }

/* ══════════════════════════════════
   CHATBOT
══════════════════════════════════ */
.chatbot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.chatbot-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cb-feat {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  background: var(--bg-card);
}
.cb-feat.soon {
  border-color: var(--border-strong);
  background: var(--accent-light);
}
.cb-feat-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 7px;
  font-family: 'Syne', sans-serif;
}
.cb-feat-tag.available { background: var(--green-light); color: #065F46; }
.cb-feat-tag.soon { background: var(--accent); color: #fff; }
.cb-feat-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.cb-feat.soon .cb-feat-title { color: var(--accent); }
.cb-feat-desc { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }

/* Chat preview */
.chat-preview {
  background: var(--bg-card);
  border: 1.5px solid var(--accent);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.chat-top {
  background: var(--accent-light);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-ava {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-top-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.chat-online {
  font-size: 10px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.online-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.chat-messages {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.msg-bot {
  align-self: flex-start;
  max-width: 78%;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 9px 13px;
  border-radius: 3px 10px 10px 10px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-primary);
}
.msg-user {
  align-self: flex-end;
  max-width: 70%;
  background: var(--accent);
  color: #fff;
  padding: 9px 13px;
  border-radius: 10px 3px 10px 10px;
  font-size: 12px;
  line-height: 1.55;
}
.chat-input {
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg);
}
.chat-inp-fake {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-tertiary);
}
.chat-send {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   NICHES
══════════════════════════════════ */
.niches-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 16px 18px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
}
.niche-card:hover { border-color: var(--border-strong); }
.niche-open { border-color: var(--accent); background: var(--accent-light); }
.niche-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.niche-circ {
  width: 38px; height: 38px;
  border-radius: 50%;
  margin: 8px auto 12px;
}
.niche-name {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.niche-open .niche-name { color: var(--accent); }
.niche-arrow {
  font-size: 15px;
  color: var(--text-tertiary);
  display: block;
  transition: transform 0.2s, color 0.2s;
}
.niche-open .niche-arrow { transform: rotate(180deg); color: var(--accent); }

.niche-dropdown {
  display: none;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  background: var(--bg-card);
  overflow: hidden;
  margin-bottom: 12px;
}
.niche-dropdown.niche-open { display: block; }
.nd-header {
  padding: 13px 18px;
  background: var(--accent-light);
  border-bottom: 1px solid var(--border);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nd-count { font-size: 10px; font-weight: 400; opacity: 0.7; }
.nd-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.nd-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none;
}
.nd-item:hover { background: var(--bg); }
.nd-item:nth-child(3n) { border-right: none; }
.nd-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.nd-label { font-size: 12px; color: var(--text-primary); }
.nd-arr { font-size: 12px; color: var(--text-tertiary); margin-left: auto; }

.niches-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.ncr-text { font-size: 13px; color: var(--text-secondary); }
.ncr-text span { color: var(--accent); font-weight: 500; }

/* ══════════════════════════════════
   ÉQUIPE
══════════════════════════════════ */
.team-story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 32px;
}
.story-quote {
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 22px 24px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.75;
}
.story-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.sa-ava {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sa-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent); }
.sa-role { font-size: 11px; color: var(--text-secondary); }

.timeline {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid var(--accent-light);
}
.tl-item { padding: 0 0 22px 22px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--accent-light);
  position: absolute;
  left: -22px; top: 2px;
}
.tl-year {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}
.tl-text { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
.tl-text strong { color: var(--text-primary); font-weight: 500; }

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 18px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tc-ava {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.tc-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.tc-role { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 10px; }
.tc-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 12px; }
.tc-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.tc-tag {
  font-size: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 3px 9px;
  border-radius: 20px;
}
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.val-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.val-line { width: 26px; height: 3px; border-radius: 2px; margin-bottom: 12px; }
.val-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.val-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════
   PROOF
══════════════════════════════════ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.proof-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.proof-line { width: 30px; height: 3px; border-radius: 2px; margin-bottom: 13px; }
.proof-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 7px; }
.proof-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  width: 100%;
  text-align: left;
  gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--accent); }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}
.faq-open .faq-icon { background: var(--accent); border-color: var(--accent); color: #fff; }
.faq-a {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-bottom: 16px;
}

/* ══════════════════════════════════
   CTA FINAL
══════════════════════════════════ */
.cta-final-section { background: transparent; }
.cta-final {
  background: var(--accent-light);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.cf-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cf-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.cf-title span { color: var(--accent); }
.cf-sub { font-size: 14px; color: var(--text-secondary); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }
.cf-btns { display: flex; gap: 14px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.cf-checks { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cf-chk {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cf-chk::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.ft-logo { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; color: var(--accent); letter-spacing: 1px; margin-bottom: 7px; }
.ft-tag { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
.ft-email { font-size: 12px; color: var(--accent); transition: opacity 0.15s; display: block; margin-bottom: 8px; }
.ft-email:hover { opacity: 0.75; }
.ft-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37,211,102,0.1);
  color: #25D366;
  transition: background 0.18s, transform 0.18s;
  margin-top: 4px;
}
.ft-whatsapp:hover { background: rgba(37,211,102,0.2); transform: scale(1.08); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.ft-col-title { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px; }
.ft-link { font-size: 12px; color: var(--text-secondary); display: block; margin-bottom: 7px; transition: color 0.15s; }
.ft-link:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-tertiary);
}
.fb-right { color: var(--accent); font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; }

/* ══════════════════════════════════
   MODAL
══════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,14,26,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 36px 36px 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 22px;
  color: var(--text-tertiary);
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.modal-close:hover { background: var(--bg); color: var(--text-primary); }

/* Progress */
.modal-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.prog-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-tertiary);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.progress-step.active .prog-num { background: var(--accent); color: #fff; }
.progress-step.done .prog-num { background: var(--green); color: #fff; }
.prog-label {
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  transition: color 0.2s;
}
.progress-step.active .prog-label { color: var(--text-primary); }
.progress-line {
  height: 2px;
  background: var(--border);
  flex: 1;
  margin: 0 12px;
}

/* Modal content */
.modal-header { margin-bottom: 24px; }
.modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}
.modal-sub { font-size: 13px; color: var(--text-secondary); }

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108,71,255,0.1);
}
.form-input::placeholder { color: var(--text-tertiary); }
.form-input.error { border-color: var(--red); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%236B7280'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }
.form-textarea { min-height: 100px; resize: vertical; }

/* Radio group */
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.radio-option { cursor: pointer; }
.radio-option input { display: none; }
.radio-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
  text-align: center;
}
.radio-option input:checked + .radio-box {
  border-color: var(--accent);
  background: var(--accent-light);
}
.radio-popular {
  border-color: var(--border-strong);
}
.radio-pop-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.radio-name {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.radio-price { font-size: 11px; color: var(--text-secondary); }
.radio-option input:checked + .radio-box .radio-name { color: var(--accent); }

/* Checkbox group */
.check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 6px;
}
.check-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 13px;
  color: var(--text-secondary);
}
.check-option:hover { border-color: var(--border-strong); }
.check-option input:checked + span { color: var(--accent); font-weight: 500; }
.check-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-light);
}
.check-option input { accent-color: var(--accent); }

.form-actions { display: flex; gap: 12px; margin-top: 4px; }

/* Success screen */
.success-screen { text-align: center; padding: 16px 0; }
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-title { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.success-sub { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; max-width: 340px; margin-left: auto; margin-right: auto; }
.success-checks { display: flex; gap: 14px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.success-chk {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.success-chk::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }

  /* Navbar */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-meta { margin-left: auto; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero {
    background: transparent;
  }
  .hero::before {
    inset: auto 0 -12% auto;
    width: 72%;
    height: 46%;
  }
  .page-hero-soft {
    background: transparent;
  }
  .page-hero-soft::before {
    inset: auto 0 -12% auto;
    width: 72%;
    height: 46%;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { order: -1; }
  .hero-h1 { font-size: clamp(30px, 6vw, 42px); }
  .hero-sub { max-width: 100%; }
  .hero-stat-row .stat-num { font-size: 18px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-popular { transform: none; }
  .deliverables-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { flex-direction: column; }
  .ps { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 4px; }
  .ps:first-child, .ps:last-child { border-radius: 10px; }
  .ps-hl { border-top: 1px solid var(--accent) !important; border-top-width: 3px !important; }

  /* Chatbot */
  .chatbot-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-story { grid-template-columns: 1fr; }
  .team-cards { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }

  /* Addons */
  .addons-wrap { flex-direction: column; gap: 12px; }
  .addons-label { white-space: normal; }

  /* Hero */
  .announce-inner { gap: 6px; }
  .hero .container { padding-top: 36px; padding-bottom: 28px; }
  .hero::before { width: 100%; height: 34%; right: -18%; }
  .page-hero-soft::before { width: 100%; height: 34%; right: -18%; }

  /* Problem */
  .grid-2x2 { grid-template-columns: 1fr; }
  .mk-steps { grid-template-columns: 1fr; }
  .mk-cards { flex-direction: column; }
  .hero-schema {
    flex-direction: column;
    align-items: stretch;
  }
  .schema-arr {
    align-self: center;
    transform: rotate(90deg);
  }

  /* Solution */
  .piliers-grid { grid-template-columns: 1fr; }

  /* Outils */
  .outils-grid { grid-template-columns: 1fr; }
  .outil-card-wide { grid-column: auto; }
  .bonus-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }

  /* Chatbot features */
  .chatbot-features { grid-template-columns: 1fr; }

  /* Niches */
  .niches-top { grid-template-columns: 1fr 1fr; }
  .nd-grid { grid-template-columns: 1fr 1fr; }
  .nd-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .nd-item:nth-child(2n) { border-right: none; }
  .niches-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Team */
  .team-cards { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }

  /* CTA Final */
  .cta-final { padding: 36px 24px; }
  .cf-btns { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* Modal */
  .modal-box { padding: 28px 22px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }
  .check-group { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column-reverse; }
.btn-ghost, .btn-grow { width: 100%; justify-content: center; text-align: center; }
}

.legal-shell {
  min-height: 100vh;
  padding-top: 112px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 42% 58% at 10% 18%, rgba(108,71,255,0.18) 0%, transparent 72%),
    radial-gradient(ellipse 30% 38% at 88% 8%, rgba(108,71,255,0.1) 0%, transparent 68%),
    var(--hero-bg);
}
.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.56);
  font-size: 12px;
}
.legal-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(108,71,255,0.6);
}
.legal-card {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(108,71,255,0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(9,8,15,0.64);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 28px 60px rgba(0,0,0,0.28);
}
.legal-grid {
  display: grid;
  gap: 16px;
}
.legal-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.legal-note {
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-float,
  .fade-up,
  .fade-up.visible {
    animation: none !important;
    transform: none !important;
  }
}
@media (max-width: 980px) {
  .legal-topbar,
  .legal-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .nav-logo {
    padding: 0;
  }
  .nav-logo img {
    height: 40px;
    max-width: 170px;
  }
  .nav-logo-text {
    font-size: 16px;
    letter-spacing: 0.12em;
  }
  .legal-shell {
    padding-top: 96px;
    padding-bottom: 56px;
  }
  .legal-card {
    padding: 24px 18px;
    border-radius: 18px;
  }
}
