/* =========================================================
   Verto — site vitrine
   Sombre, minimaliste, façon Apple
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --bg: #060607;
  --bg-2: #0c0c0f;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f5f7;
  --text-dim: #a1a1a6;
  --text-dimmer: #6e6e73;

  /* Marque Verto : vert → teal */
  --verto-1: #2be08b;
  --verto-2: #19c7c7;
  --grad-verto: linear-gradient(115deg, #3de08b 0%, #19c7c7 55%, #4ea3ff 110%);

  --accent1: var(--verto-1);
  --accent2: var(--verto-2);

  --radius: 24px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 17px;
  font-feature-settings: "cv02", "cv03", "cv04", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
fieldset { border: 0; min-inline-size: 0; }
img { max-width: 100%; display: block; }
::selection { background: rgba(43, 224, 139, 0.3); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
}

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verto-1);
  margin-bottom: 1.1rem;
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.section__lead {
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  text-wrap: balance;
}

/* ---------- Background decor ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(25, 199, 199, 0.12), transparent 60%),
    var(--bg);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}

.orb--green {
  width: 540px; height: 540px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(43, 224, 139, 0.55), transparent 70%);
  animation: drift1 22s var(--ease) infinite alternate;
}
.orb--violet {
  width: 460px; height: 460px;
  top: 38%; right: -160px;
  background: radial-gradient(circle, rgba(124, 108, 255, 0.45), transparent 70%);
  animation: drift2 26s var(--ease) infinite alternate;
}
.orb--coral {
  width: 420px; height: 420px;
  bottom: -160px; left: 30%;
  background: radial-gradient(circle, rgba(255, 120, 73, 0.35), transparent 70%);
  animation: drift3 30s var(--ease) infinite alternate;
}

@keyframes drift1 { to { transform: translate(120px, 80px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-100px, -60px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(60px, -90px) scale(1.2); } }

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 0.62em 1.1em; font-size: 0.9rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: #fff;
  color: #0a0a0a;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.18);
}

.btn--ghost {
  background: var(--surface-2);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn--accent {
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
  color: #0a0a0a;
  font-weight: 700;
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--accent2);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brand__mark { width: 26px; height: 26px; }
.brand__word { background: none; }

.nav__links {
  display: flex;
  gap: 2.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1.5px;
  background: var(--grad-verto);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__link-cs { overflow: visible; white-space: nowrap; }
.nav__badge {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 4px;
  padding: 0.15em 0.5em;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
  color: #0a0a0a;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
  pointer-events: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px 44px;
}
.hero__inner { max-width: 880px; }

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.3rem;
}
.hero__line { display: block; }

.rotator {
  display: block;
  height: 1.12em;
  overflow: hidden;
  margin: 0.04em 0;
}
.rotator__word {
  display: inline-block;
  background: var(--grad-verto);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease infinite;
  transition: opacity 0.6s ease;
}
.rotator__word.is-exiting {
  opacity: 0;
}
.rotator__word.is-entering {
  opacity: 0;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-dim);
  text-wrap: balance;
}
.hero__cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}
.hero__scroll {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  transition: color 0.25s;
}
.hero__scroll:hover { color: var(--text-dim); }
.hero__scroll svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- Solutions light band ---------- */
.solutions {
  --surface: rgba(16, 20, 24, 0.04);
  --surface-2: rgba(16, 20, 24, 0.07);
  --border: rgba(16, 20, 24, 0.1);
  --border-strong: rgba(16, 20, 24, 0.18);
  --text: #101418;
  --text-dim: #5c646d;
  --text-dimmer: #858d96;

  background:
    radial-gradient(900px 520px at 14% 10%, rgba(43, 224, 139, 0.13), transparent 62%),
    radial-gradient(720px 420px at 92% 30%, rgba(25, 199, 199, 0.12), transparent 60%),
    #f8faf7;
  color: var(--text);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px rgba(16, 20, 24, 0.08);
}

.solutions .section__lead,
.solutions .feature__desc,
.solutions .feature__points li,
.solutions .card__desc,
.solutions .price__period {
  color: var(--text-dim);
}

.solutions .tag,
.solutions .card,
.solutions .card__icon {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 20, 24, 0.08);
  box-shadow: 0 28px 80px -55px rgba(16, 20, 24, 0.55);
}

.solutions .card:hover {
  background: #fff;
  border-color: rgba(16, 20, 24, 0.14);
}

.solutions .feature__media {
  background: none;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}


.solutions .status--soon {
  color: #5a3ee8;
  background: rgba(124, 108, 255, 0.12);
  border-color: rgba(124, 108, 255, 0.22);
}

.solutions .status--later {
  color: #52606b;
  background: rgba(16, 20, 24, 0.05);
  border-color: rgba(16, 20, 24, 0.08);
}

.solutions .inline-form input {
  background: #fff;
  border-color: rgba(16, 20, 24, 0.1);
  color: var(--text);
}

.solutions .inline-form input::placeholder { color: var(--text-dimmer); }
.solutions .link-arrow { color: var(--text); }

/* ---------- Feature (Flint) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.feature__media {
  position: relative;
}

/* Screenshot dans feature__media */
.screenshot-stack {
  position: relative;
  display: block;
}
.feature__screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.screenshot-phone {
  position: absolute;
  bottom: -4%;
  left: -4%;
  width: 30%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.35));
}

@keyframes floatChip { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4em 0.85em;
  border-radius: 999px;
  color: var(--accent1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  margin-bottom: 1.2rem;
}
.feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 1rem;
  display: block;
}
.feature__name {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.feature__tagline {
  margin-top: 0.7rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}
.feature__desc {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 1.05rem;
}
.feature__points {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}
.feature__points li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text-dim);
}
.feature__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}
.price__main { display: flex; align-items: baseline; gap: 0.3rem; }
.price__amount {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.price__period { color: var(--text-dim); font-weight: 500; }
.price__free {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35em 0.8em;
  border-radius: 999px;
  color: var(--accent1);
  background: rgba(255, 120, 73, 0.12);
  border: 1px solid rgba(255, 120, 73, 0.3);
}
.feature__cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.feature__cta--compact { margin-top: 1rem; }

/* Alternance gauche/droite des blocs feature */
.feature--reverse .feature__media { order: 2; }

/* ---------- Écosystème : bibliothèque d'apps (style JetBrains) ---------- */
.ecosystem { padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.creator-callout {
  margin-top: 2rem;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  min-height: 220px;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 27, 34, 0.98), rgba(35, 68, 90, 0.82) 56%, rgba(70, 155, 145, 0.72));
  border: 1px solid rgba(105, 205, 194, 0.25);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 24px 70px -40px rgba(0, 0, 0, 0.7);
}
.creator-callout::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 38%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
  opacity: 0.6;
}
.creator-callout__copy,
.creator-callout__visual {
  position: relative;
  z-index: 1;
}
.creator-callout__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.65rem;
  padding: 0.3em 0.7em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(220, 255, 248, 0.85);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-new {
  display: inline-block;
  padding: 0.25em 0.7em;
  border-radius: 999px;
  background: #22d3a5;
  color: #0a1a14;
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  box-shadow: 0 0 8px rgba(34, 211, 165, 0.55);
}
.creator-callout h3 {
  max-width: 620px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
}
.creator-callout p {
  max-width: 600px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
}
.creator-callout .btn {
  box-shadow: 0 18px 38px -22px rgba(0, 0, 0, 0.8);
}
.creator-callout__visual {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 160px;
}
.site-preview {
  width: min(100%, 320px);
  aspect-ratio: 1.36 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #06070a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 28px 70px -35px rgba(0, 0, 0, 0.95),
    0 0 0 9px rgba(255, 255, 255, 0.045);
}
.site-preview__bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
}
.site-preview__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}
.site-preview__hero {
  display: grid;
  gap: 12px;
  padding: 28px;
  min-height: 56%;
  background:
    linear-gradient(120deg, rgba(43, 224, 139, 0.18), transparent 42%),
    linear-gradient(150deg, #111722, #0a0b0f);
}
.site-preview__eyebrow,
.site-preview__title,
.site-preview__button,
.site-preview__grid span {
  display: block;
  border-radius: 999px;
}
.site-preview__eyebrow {
  width: 30%;
  height: 10px;
  background: linear-gradient(120deg, #2be08b, #19c7c7);
}
.site-preview__title {
  width: 76%;
  height: 22px;
  background: rgba(255, 255, 255, 0.9);
}
.site-preview__title--short { width: 54%; }
.site-preview__button {
  width: 34%;
  height: 34px;
  margin-top: 8px;
  background: #fff;
}
.site-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
}
.site-preview__grid span {
  height: 70px;
  border-radius: 14px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
}

@keyframes sp-glow {
  0%, 100% { box-shadow: 0 0 6px 1px rgba(43, 224, 139, 0.35); }
  50%       { box-shadow: 0 0 14px 3px rgba(43, 224, 139, 0.7); }
}
.site-preview__eyebrow {
  animation: sp-glow 3s ease-in-out infinite;
}

.site-preview__title,
.site-preview__button {
  transition: opacity 0.6s ease;
}
.site-preview__title:hover,
.site-preview__button:hover {
  opacity: 0.3;
}

@media (prefers-reduced-motion: reduce) {
  .site-preview__eyebrow { animation: none; }
}

.app-library {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  box-shadow: 0 50px 120px -50px rgba(0, 0, 0, 0.85);
}
.app-library__tab {
  position: absolute;
  top: 36px;
  left: 0;
  transform: translateX(-100%);
  writing-mode: vertical-rl;
  padding: 0.9rem 0.45rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verto-1);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 12px 0 0 12px;
}
.app-library__inner { padding: clamp(1.6rem, 4vw, 2.6rem); }
.app-library__intro {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1rem;
}
.app-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.3rem;
  padding-right: 5.5rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.app-card::after {
  content: "";
  position: absolute;
  top: -45%;
  right: -20%;
  width: 60%;
  height: 85%;
  background: radial-gradient(circle, var(--accent2), transparent 70%);
  opacity: 0.13;
  filter: blur(28px);
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.app-card:hover { transform: translateY(-5px); border-color: var(--border-strong); background: var(--surface-2); }
.app-card:hover::after { opacity: 0.28; }
.app-card__icon {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  object-fit: cover;
}
.app-card__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.app-card__text { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.app-card__text strong { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
.app-card__text small { font-size: 0.85rem; color: var(--text-dim); line-height: 1.45; }
.app-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.32em 0.62em;
  border-radius: 999px;
  color: #0a0a0a;
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
}
.app-library__more { margin-top: 1.6rem; }

/* ---------- Cards (coming soon) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.card {
  position: relative;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, var(--accent2), transparent 70%);
  opacity: 0.12;
  filter: blur(30px);
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.card:hover::after { opacity: 0.22; }
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.card__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  color: var(--accent1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}
.status {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4em 0.8em;
  border-radius: 999px;
}
.status--soon {
  color: #c4b5ff;
  background: rgba(124, 108, 255, 0.14);
  border: 1px solid rgba(124, 108, 255, 0.3);
}
.status--later {
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}
.card__name {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.card__cats {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--accent1);
  font-weight: 500;
}
.card__desc {
  margin-top: 1rem;
  color: var(--text-dim);
}
.inline-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.inline-form input {
  flex: 1;
  min-width: 0;
  padding: 0.7em 1em;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color 0.25s;
}
.inline-form input:focus {
  outline: none;
  border-color: var(--accent1);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.6rem;
  font-weight: 600;
  color: var(--text);
  transition: gap 0.25s var(--ease), color 0.25s;
}
.link-arrow:hover { gap: 0.7rem; color: var(--accent1); }

/* ---------- Champs (réutilisés) ---------- */
.field { display: grid; gap: 0.45rem; }
.field--step { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.85em 1em;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid transparent;
  color: var(--text);
  font-size: 0.98rem;
  font-family: inherit;
  resize: none;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dimmer); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--verto-1);
  box-shadow: 0 0 0 3px rgba(43, 224, 139, 0.15);
}
.field input.invalid,
.field textarea.invalid { border-color: #ff5a5a; }
.hidden { display: none !important; }

/* ---------- Configurateur (wizard sur mesure) ---------- */
.wizard {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: 28px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(25, 199, 199, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid transparent;
  box-shadow: 0 50px 120px -50px rgba(0, 0, 0, 0.85);
}

.wizard__head { margin-bottom: 1.8rem; }
.wizard__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}
.wizard__count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verto-1);
}
.wizard__label { font-size: 0.92rem; color: var(--text-dim); font-weight: 500; }
.wizard__track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.wizard__fill {
  display: block;
  height: 100%;
  width: 17%;
  border-radius: 999px;
  background: var(--grad-verto);
  transition: width 0.5s var(--ease);
}

.wizard__stage { position: relative; }

.step { display: none; }
.step.is-active {
  display: block;
  animation: stepIn 0.45s var(--ease) both;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
}
.step__title {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.step__hint {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dim);
  font-size: 0.98rem;
}

/* Select stylé */
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  padding: 1em 2.8em 1em 1.1em;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid transparent;
  color: var(--text);
  font-size: 1.02rem;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.select-wrap select:focus {
  outline: none;
  border-color: var(--verto-1);
  box-shadow: 0 0 0 3px rgba(43, 224, 139, 0.15);
}
.select-wrap select option { background: #14141a; color: var(--text); }
.select-wrap__chev {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}
#secteurAutreWrap { margin-top: 1rem; }

/* Cartes d'option (radio large) */
.opt-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.opt-card { cursor: pointer; position: relative; }
.opt-card input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.opt-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
  padding: 1.4rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.opt-card:hover .opt-card__inner { transform: translateY(-3px); background: rgba(255, 255, 255, 0.06); }
.opt-card__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  margin-bottom: 0.4rem;
  color: var(--verto-1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}
.opt-card__inner strong { font-size: 1.15rem; }
.opt-card__inner small { color: var(--text-dim); font-size: 0.9rem; line-height: 1.45; }
.opt-card input:checked + .opt-card__inner {
  border-color: var(--verto-1);
  background: rgba(43, 224, 139, 0.08);
  box-shadow: 0 0 0 1px var(--verto-1) inset;
}
.opt-card input:checked + .opt-card__inner .opt-card__icon {
  color: #0a0a0a;
  background: linear-gradient(120deg, var(--verto-1), var(--verto-2));
  border-color: transparent;
}

/* Chips (radio / checkbox compacts) */
.q-block { margin-bottom: 1.6rem; }
.q-block:last-child { margin-bottom: 0; }
.q-label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.q-label em { color: var(--text-dimmer); font-weight: 400; font-style: normal; font-size: 0.85rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { cursor: pointer; position: relative; }
.chip input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.chip span {
  display: inline-block;
  padding: 0.6em 1.05em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.chip:hover span { background: rgba(255, 255, 255, 0.08); color: var(--text); }
.chip input:checked + span {
  color: #0a0a0a;
  font-weight: 600;
  background: linear-gradient(120deg, var(--verto-1), var(--verto-2));
  border-color: transparent;
}

/* Fonctionnalités (checkbox cards) */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.feature-opt { cursor: pointer; position: relative; }
.feature-opt input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.feature-opt__inner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85em 1em;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.feature-opt:hover .feature-opt__inner { background: rgba(255, 255, 255, 0.06); }
.feature-opt__check {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--border-strong);
  position: relative;
  transition: all 0.2s var(--ease);
}
.feature-opt__text { flex: 1; min-width: 0; }
.feature-opt__text strong { font-weight: 600; font-size: 0.95rem; }
.feature-opt__price {
  flex: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}
.feature-opt input:checked + .feature-opt__inner {
  border-color: var(--verto-1);
  background: rgba(43, 224, 139, 0.08);
}
.feature-opt input:checked + .feature-opt__inner .feature-opt__check {
  background: linear-gradient(120deg, var(--verto-1), var(--verto-2));
  border-color: transparent;
}
.feature-opt input:checked + .feature-opt__inner .feature-opt__check::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.feature-opt input:checked + .feature-opt__inner .feature-opt__price { color: var(--verto-1); }

.live-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding: 1em 1.2em;
  border-radius: var(--radius-sm);
  background: rgba(43, 224, 139, 0.06);
  border: 1px solid rgba(43, 224, 139, 0.22);
}
.live-estimate span { color: var(--text-dim); font-size: 0.9rem; }
.live-estimate strong {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-verto);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Récapitulatif */
.recap {
  display: grid;
  gap: 0.1rem;
  margin-bottom: 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  overflow: hidden;
}
.recap__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8em 1.1em;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.95rem;
}
.recap__row span { color: var(--text-dim); }
.recap__row strong { font-weight: 600; text-align: right; }
.recap__row--head { background: rgba(255, 255, 255, 0.04); }
.recap__feats {
  display: grid;
  gap: 0.4rem;
  padding: 0.6em 1.1em 0.9em;
  background: rgba(255, 255, 255, 0.02);
}
.recap__feats li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.recap__feats em { font-style: normal; color: var(--verto-1); font-weight: 600; }
.recap__note strong { font-weight: 400; color: var(--text-dim); font-size: 0.88rem; }

.recap-total {
  padding: 1.4rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(43, 224, 139, 0.1), rgba(25, 199, 199, 0.06));
  border: 1px solid rgba(43, 224, 139, 0.25);
  margin-bottom: 1.6rem;
}
.recap-total__main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.recap-total__label { font-weight: 600; color: var(--text); }
.recap-total__value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.recap-total__value small { font-size: 0.9rem; font-weight: 500; color: var(--text-dim); }
.recap-total__note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-dimmer);
  line-height: 1.45;
}
.recap-contact__title { margin-bottom: 0.9rem; font-weight: 600; }
.recap-contact { display: grid; gap: 1rem; }

/* Actions */
.wizard__actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}
.wizard__actions #nextBtn,
.wizard__actions #submitBtn { margin-left: auto; }
.wizard__actions #prevBtn + #nextBtn { margin-left: auto; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__brand p {
  margin-top: 1rem;
  max-width: 320px;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col { display: grid; gap: 0.7rem; align-content: start; }
.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 0.3rem;
}
.footer__col a {
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-dimmer);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a:hover { color: var(--text); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 140%);
  z-index: 200;
  max-width: min(90vw, 420px);
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  background: rgba(20, 20, 24, 0.92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(16px);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Per-product accents ---------- */
[data-accent="flint"] { --accent1: #ff7849; --accent2: #ff477e; }
[data-accent="rdv"] { --accent1: #9d7bff; --accent2: #5b9cff; }
[data-accent="commerce"] { --accent1: #22d3ee; --accent2: #14b8a6; }

/* ---------- Modale QSM ---------- */
.qsm-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.qsm-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.qsm-modal {
  background: #0f1117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.2rem 2.5rem 2.5rem;
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.85);
}
.qsm-overlay.is-open .qsm-modal {
  transform: translateY(0) scale(1);
}
.qsm-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-dim);
  transition: background 0.2s, color 0.2s;
}
.qsm-close:hover { background: rgba(255, 255, 255, 0.13); color: #fff; }
.qsm__title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  margin: 0.4rem 0 1.5rem;
}
.qsm-hint {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.qsm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.qsm-pill {
  padding: 0.45em 1.05em;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.qsm-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.qsm-pill.is-selected {
  background: rgba(43, 224, 139, 0.12);
  border-color: var(--verto-1);
  color: var(--verto-1);
}
.qsm-step--hidden { display: none; }
#qsmStep2 {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  animation: qsm-fadein 0.35s ease forwards;
}
@keyframes qsm-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.qsm-slider-wrap { margin-bottom: 1.5rem; }
.qsm-slider {
  width: 100%;
  accent-color: var(--verto-1);
  cursor: pointer;
  margin-bottom: 0.6rem;
  height: 4px;
}
.qsm-slider-val {
  text-align: center;
  font-size: 1rem;
  color: var(--text-dim);
}
.qsm-slider-val span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--verto-1);
}
.qsm-cta { width: 100%; justify-content: center; }
.qsm-app-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.2rem;
}
.qsm-app-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.qsm-app-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}
.qsm-app-card__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 0.2rem;
}
.qsm-app-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.qsm-app-card__tagline {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.55rem;
}
.qsm-app-card__desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.qsm-app-card__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.qsm-app-card__points li::before {
  content: "✓ ";
  color: var(--accent1);
  font-weight: 700;
}
.qsm-app-card__price {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent1);
}
.qsm-step3-actions {
  display: flex;
  gap: 0.75rem;
}

/* ---------- Section contact : fond clair (même DA que Solutions) ---------- */
.contact-section {
  --surface: rgba(16, 20, 24, 0.04);
  --surface-2: rgba(16, 20, 24, 0.07);
  --border: rgba(16, 20, 24, 0.1);
  --border-strong: rgba(16, 20, 24, 0.18);
  --text: #101418;
  --text-dim: #5c646d;
  --text-dimmer: #858d96;
  background:
    radial-gradient(900px 520px at 86% 10%, rgba(43, 224, 139, 0.1), transparent 62%),
    radial-gradient(720px 420px at 10% 80%, rgba(25, 199, 199, 0.09), transparent 60%),
    #f8faf7;
  color: var(--text);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px rgba(16, 20, 24, 0.08);
}
.contact-section .section__lead,
.contact-section .field label,
.contact-section .contact-form__pref-label { color: var(--text-dim); }
.contact-section .contact-form {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 20, 24, 0.08);
  box-shadow: 0 28px 80px -55px rgba(16, 20, 24, 0.3);
}
.contact-section .field input,
.contact-section .field textarea {
  background: #fff;
  border-color: rgba(16, 20, 24, 0.12);
  color: var(--text);
}
.contact-section .field input::placeholder,
.contact-section .field textarea::placeholder { color: var(--text-dimmer); }
.contact-section .pref-choice__inner {
  background: rgba(16, 20, 24, 0.04);
  border-color: rgba(16, 20, 24, 0.14);
  color: var(--text-dim);
}
.contact-section .pref-choice input:checked + .pref-choice__inner {
  background: rgba(43, 224, 139, 0.12);
  border-color: var(--verto-1);
  color: var(--verto-1);
}
.contact-section .btn--primary {
  background: #101418;
  color: #fff;
}
.contact-section .btn--primary:hover {
  box-shadow: 0 14px 40px -10px rgba(16, 20, 24, 0.35);
}

/* ---------- Formulaire de contact ---------- */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-form__full { grid-column: 1 / -1; }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
}
.field__optional { font-weight: 400; color: var(--text-dimmer); }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.75em 1em;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s;
  resize: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dimmer); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent1);
}
.field input.invalid,
.field textarea.invalid { border-color: #f87171; }

.contact-form__pref { margin-bottom: 1.8rem; }
.contact-form__pref-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}
.contact-form__pref-choices { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.pref-choice { cursor: pointer; position: relative; }
.pref-choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.pref-choice__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 1.2em;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.pref-choice:hover .pref-choice__inner {
  border-color: var(--accent1);
  color: var(--text);
}
.pref-choice input:checked + .pref-choice__inner {
  border-color: var(--accent1);
  background: rgba(43, 224, 139, 0.1);
  color: var(--accent1);
}
.contact-form__submit { width: 100%; justify-content: center; }
.cf-steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.8rem;
}
.cf-step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.cf-step-dot.is-active {
  background: var(--accent1);
  transform: scale(1.3);
}
.cf-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 0.5rem;
}
.cf-step-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cf-step { animation: qsm-fadein 0.3s ease forwards; }
.cf-step2-actions { display: flex; gap: 0.75rem; }
.cf-step2-actions .contact-form__submit { flex: 1; }

/* =========================================================
   Page Verto Créator Studio
   ========================================================= */
.cs-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(7rem, 13vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
}
.cs-hero__copy { max-width: 600px; }
.cs-hero__title {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0.5rem 0 1.2rem;
}
.cs-hero__title .grad {
  background: var(--grad-verto);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease infinite;
}
.cs-hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--text-dim);
  margin-bottom: 1.8rem;
  text-wrap: balance;
}
.cs-hero__cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.cs-hero__note {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--text-dimmer);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.cs-hero__visual { display: grid; place-items: center; }
.cs-hero__visual .site-preview {
  width: min(100%, 460px);
  animation: floatChip 7s ease-in-out infinite;
}

/* Bandeau "connecté à vos apps Verto" : on réutilise .creator-callout */
.cs-apps {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.cs-app-chip {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cs-app-chip:hover { transform: translateX(5px); border-color: var(--border-strong); }
.cs-app-chip img { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; }
.cs-app-chip strong { display: block; font-size: 1rem; color: #fff; }
.cs-app-chip span { font-size: 0.85rem; color: var(--text-dim); }

/* Étapes "comment ça marche" */
.cs-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.cs-step {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.cs-step__num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0a0a0a;
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
  margin-bottom: 1.2rem;
}
.cs-step__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.cs-step__desc { color: var(--text-dim); font-size: 0.98rem; }

/* Tarif : paiement unique */
.cs-price { display: flex; justify-content: center; }
.cs-price-card {
  position: relative;
  max-width: 460px;
  width: 100%;
  padding: 2.6rem 2.4rem;
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(160deg, rgba(43, 224, 139, 0.08), rgba(25, 199, 199, 0.04));
  border: 1px solid rgba(105, 205, 194, 0.25);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 24px 70px -40px rgba(0, 0, 0, 0.7);
}
.cs-price-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verto-1);
}
.cs-price-card__amount {
  font-size: clamp(3rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0.6rem 0 0.2rem;
}
.cs-price-card__amount small { font-size: 1rem; font-weight: 500; color: var(--text-dim); }
.cs-price-card__sub { color: var(--text-dim); margin-bottom: 1.8rem; }
.cs-price-card__list {
  display: grid;
  gap: 0.7rem;
  text-align: left;
  margin: 0 0 2rem;
}
.cs-price-card__list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text-dim);
}
.cs-price-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Bandeau CTA final */
.cs-final { text-align: center; }
.cs-final__box {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(20, 27, 34, 0.98), rgba(35, 68, 90, 0.82) 56%, rgba(70, 155, 145, 0.72));
  border: 1px solid rgba(105, 205, 194, 0.25);
}
.cs-final__box .btn { margin-top: 1.6rem; }
.cs-brand .brand__word { font-size: 1.05rem; }
.cs-brand__by {
  font-size: 0.7em;
  font-weight: 500;
  color: var(--text-dimmer);
  margin-left: 0.3em;
  letter-spacing: 0;
}

/* ===== Thème Créator Studio : DA distincte (violet → magenta) ===== */
[data-theme="creator"] {
  --accent1: #a855f7;
  --accent2: #fb7185;
  --verto-1: #c084fc;
  --verto-2: #fda4af;
  --grad-verto: linear-gradient(115deg, #a855f7 0%, #ec4899 48%, #fb923c 108%);
}
[data-theme="creator"] .badge-new,
.badge-new[data-theme="creator"] {
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
  color: #fff;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}
[data-theme="creator"] .site-preview__eyebrow {
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
}
[data-theme="creator"] .site-preview__hero {
  background:
    linear-gradient(120deg, rgba(168, 85, 247, 0.2), transparent 42%),
    linear-gradient(150deg, #18121f, #0a0b0f);
}
[data-theme="creator"] .creator-callout,
.creator-callout[data-theme="creator"] {
  border-color: rgba(192, 132, 252, 0.28);
  background: linear-gradient(135deg, rgba(24, 18, 31, 0.98), rgba(60, 33, 84, 0.82) 56%, rgba(150, 65, 150, 0.72));
}
[data-theme="creator"] .cs-price-card {
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.05));
  border-color: rgba(192, 132, 252, 0.28);
}
[data-theme="creator"] .cs-final__box {
  background: linear-gradient(135deg, rgba(24, 18, 31, 0.98), rgba(60, 33, 84, 0.82) 56%, rgba(150, 65, 150, 0.72));
}
[data-theme="creator"] .bg {
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(168, 85, 247, 0.12), transparent 60%),
    var(--bg);
}
[data-theme="creator"] .orb--green {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent 70%);
}

/* ===== Page Créator Studio : version claire & lumineuse (Figma/Canva) ===== */
body.cs-light {
  --bg: #fbf9ff;
  --surface: rgba(16, 20, 24, 0.04);
  --surface-2: rgba(16, 20, 24, 0.07);
  --border: rgba(16, 20, 24, 0.1);
  --border-strong: rgba(16, 20, 24, 0.18);
  --text: #14121c;
  --text-dim: #5c5566;
  --text-dimmer: #8b8597;
  --verto-1: #7c3aed;
  --verto-2: #db2777;
  background: #fbf9ff;
  color: var(--text);
}
.cs-light .bg {
  background:
    radial-gradient(900px 540px at 12% 6%, rgba(168, 85, 247, 0.16), transparent 60%),
    radial-gradient(760px 460px at 88% 12%, rgba(251, 113, 133, 0.14), transparent 60%),
    radial-gradient(680px 520px at 70% 92%, rgba(251, 146, 60, 0.12), transparent 62%),
    #fbf9ff;
}
.cs-light .orb { display: none; }
.cs-light .grain { opacity: 0.025; }
.cs-light .nav.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  border-bottom-color: rgba(16, 20, 24, 0.1);
}
.cs-light .btn--primary { background: #17131f; color: #fff; }
.cs-light .btn--primary:hover { box-shadow: 0 14px 40px -10px rgba(124, 58, 237, 0.45); }
.cs-light .card,
.cs-light .card__icon,
.cs-light .cs-step,
.cs-light .cs-app-chip {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(16, 20, 24, 0.08);
  box-shadow: 0 28px 80px -55px rgba(16, 20, 24, 0.5);
}
.cs-light .card:hover { background: #fff; border-color: rgba(16, 20, 24, 0.14); }
.cs-light .cs-app-chip:hover { border-color: rgba(124, 58, 237, 0.3); }
.cs-light .cs-app-chip strong { color: var(--text); }
.cs-light .creator-callout {
  background: linear-gradient(135deg, #ffffff, rgba(168, 85, 247, 0.07) 58%, rgba(251, 113, 133, 0.08));
  border-color: rgba(168, 85, 247, 0.2);
}
.cs-light .creator-callout::before { opacity: 0; }
.cs-light .creator-callout h3 { color: var(--text); }
.cs-light .creator-callout p { color: var(--text-dim); }
.cs-light .creator-callout__label {
  background: rgba(16, 20, 24, 0.05);
  border-color: rgba(16, 20, 24, 0.1);
  color: var(--text-dim);
}
.cs-light .cs-price-card {
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.06), rgba(251, 113, 133, 0.05)), #fff;
  border-color: rgba(168, 85, 247, 0.22);
  box-shadow: 0 30px 80px -50px rgba(124, 58, 237, 0.4);
}
.cs-light .cs-final__box {
  background: linear-gradient(135deg, #ffffff, rgba(168, 85, 247, 0.1) 55%, rgba(251, 146, 60, 0.12));
  border-color: rgba(168, 85, 247, 0.22);
}
.cs-light .footer { background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05)); }

/* =========================================================
   Page Flint : thème orange → rose (sombre)
   ========================================================= */
[data-theme="flint"] {
  --accent1: #ff7849;
  --accent2: #ff477e;
  --verto-1: #ff8a5c;
  --verto-2: #ff6b94;
  --grad-verto: linear-gradient(115deg, #ffa23c 0%, #ff7849 48%, #ff477e 108%);
}
[data-theme="flint"] .bg {
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(255, 120, 73, 0.13), transparent 60%),
    var(--bg);
}
[data-theme="flint"] .orb--green {
  background: radial-gradient(circle, rgba(255, 120, 73, 0.5), transparent 70%);
}
[data-theme="flint"] .orb--coral {
  background: radial-gradient(circle, rgba(255, 71, 126, 0.42), transparent 70%);
}
[data-theme="flint"] .cs-price-card {
  background: linear-gradient(160deg, rgba(255, 120, 73, 0.1), rgba(255, 71, 126, 0.05));
  border-color: rgba(255, 120, 73, 0.28);
}
[data-theme="flint"] .cs-final__box,
[data-theme="flint"] .creator-callout {
  background: linear-gradient(135deg, rgba(31, 22, 18, 0.98), rgba(90, 45, 35, 0.82) 56%, rgba(160, 70, 95, 0.72));
  border-color: rgba(255, 120, 73, 0.25);
}
.cs-hero__visual .screenshot-stack { animation: floatChip 7s ease-in-out infinite; }

/* Captures d'écran */
.flint-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.flint-shot { margin: 0; }
.flint-shot--wide { grid-column: 1 / -1; }
.flint-shot__frame {
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.9);
}
.flint-shot__frame img { width: 100%; display: block; }
.flint-shot--phone .flint-shot__frame {
  display: grid;
  place-items: center;
  padding: 1.6rem;
  background: linear-gradient(160deg, rgba(255, 120, 73, 0.1), transparent 70%);
}
.flint-shot--phone img { width: auto; max-height: 360px; border-radius: 20px; }
.flint-shot figcaption {
  margin-top: 0.9rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.flint-shot figcaption strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}

/* Maquette écran cuisine (KDS) */
.flint-kds {
  height: 100%;
  min-height: 250px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-content: start;
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: #0b0c0f;
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.9);
}
.flint-kds__ticket {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border-left: 3px solid var(--accent1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
}
.flint-kds__ticket--late { border-left-color: var(--accent2); }
.flint-kds__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.flint-kds__table { font-weight: 700; color: #fff; font-size: 0.88rem; }
.flint-kds__time { font-size: 0.7rem; font-weight: 700; color: var(--accent1); }
.flint-kds__ticket--late .flint-kds__time { color: var(--accent2); }
.flint-kds__line { color: var(--text-dim); line-height: 1.55; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 0.8rem; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  color: var(--accent1);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a { padding: 0 1.4rem 1.2rem; color: var(--text-dim); }

/* Packs Flint */
.flint-packs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-width: 940px;
  margin: 0 auto;
}
.flint-pack {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 1.6rem 2.6rem;
  padding: 2.2rem 2.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-strong);
}
.flint-pack__main { display: flex; flex-direction: column; }
.flint-pack__features { border-left: 1px solid var(--border); padding-left: 2.6rem; }
.flint-pack--featured {
  background: linear-gradient(160deg, rgba(255, 120, 73, 0.1), rgba(255, 71, 126, 0.05));
  border-color: rgba(255, 120, 73, 0.4);
  box-shadow: 0 30px 80px -45px rgba(255, 120, 73, 0.5);
}
.flint-pack__badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  padding: 0.32em 0.95em;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 18px -6px var(--accent2);
}
.flint-pack__name { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.02em; }
.flint-pack__tagline { margin-top: 0.3rem; color: var(--text-dim); font-size: 0.95rem; }
.flint-pack__price { display: flex; align-items: baseline; gap: 0.35rem; margin: 1.3rem 0 0.3rem; }
.flint-pack__amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; }
.flint-pack__period { color: var(--text-dim); font-weight: 500; }
.flint-pack__note { font-size: 0.85rem; color: var(--text-dimmer); margin-bottom: 1.5rem; }
.flint-pack__incl {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent1);
  margin-bottom: 0.8rem;
}
.flint-pack__list { display: grid; gap: 0.65rem; }
.flint-pack__list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.flint-pack__list li strong { color: var(--text); font-weight: 600; }
.flint-pack__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.flint-pack__main .btn { margin-top: 1.5rem; align-self: flex-start; }

/* Visuel QR (Flint 360) — carte exportée depuis Figma */
.flint-qr-img {
  display: block;
  width: min(100%, 250px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.55));
}

/* Section tarif Flint en fond clair */
.flint-tarif {
  --surface: rgba(16, 20, 24, 0.04);
  --surface-2: rgba(16, 20, 24, 0.07);
  --border: rgba(16, 20, 24, 0.1);
  --border-strong: rgba(16, 20, 24, 0.18);
  --text: #181216;
  --text-dim: #5c545a;
  --text-dimmer: #8b838a;
  --verto-1: #e8500f;
  background:
    radial-gradient(900px 520px at 86% 8%, rgba(255, 120, 73, 0.13), transparent 62%),
    radial-gradient(720px 420px at 8% 85%, rgba(255, 71, 126, 0.1), transparent 60%),
    #fbf8f6;
  color: var(--text);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px rgba(16, 20, 24, 0.08);
}
.flint-tarif .section__lead { color: var(--text-dim); }
.flint-tarif .flint-pack {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(16, 20, 24, 0.08);
  box-shadow: 0 28px 80px -55px rgba(16, 20, 24, 0.4);
}
.flint-tarif .flint-pack--featured {
  background: linear-gradient(160deg, rgba(255, 120, 73, 0.1), rgba(255, 71, 126, 0.06)), #fff;
  border-color: rgba(255, 120, 73, 0.4);
  box-shadow: 0 30px 80px -45px rgba(255, 120, 73, 0.32);
}

/* =========================================================
   Page LOOM : thème violet → bleu ciel (sombre)
   ========================================================= */
[data-theme="loom"] {
  --accent1: #a78bfa;
  --accent2: #38bdf8;
  --verto-1: #c4b5fd;
  --verto-2: #7dd3fc;
  --grad-verto: linear-gradient(115deg, #c4b5fd 0%, #a78bfa 48%, #38bdf8 108%);
}
[data-theme="loom"] .bg {
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(167, 139, 250, 0.12), transparent 60%),
    var(--bg);
}
[data-theme="loom"] .orb--green {
  background: radial-gradient(circle, rgba(167, 139, 250, 0.5), transparent 70%);
}
[data-theme="loom"] .orb--violet {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.38), transparent 70%);
}
[data-theme="loom"] .orb--coral {
  background: radial-gradient(circle, rgba(167, 139, 250, 0.3), transparent 70%);
}
[data-theme="loom"] .cs-final__box,
[data-theme="loom"] .creator-callout {
  background: linear-gradient(135deg, rgba(15, 12, 30, 0.98), rgba(35, 25, 70, 0.82) 56%, rgba(18, 62, 108, 0.72));
  border-color: rgba(167, 139, 250, 0.25);
}

/* Hero LOOM */
.loom-hero-wrap { position: relative; display: block; }
.loom-hero-shot {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 40px 100px -40px rgba(167, 139, 250, 0.35);
}

/* Captures d'écran LOOM */
.loom-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.loom-shot { margin: 0; }
.loom-shot--wide { grid-column: 1 / -1; }
.loom-shot__frame {
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.9);
}
.loom-shot__frame img { width: 100%; display: block; }
.loom-shot figcaption {
  margin-top: 0.9rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.loom-shot figcaption strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}

/* Maquette agenda journalier (LOOM — équivalent KDS Flint) */
.loom-cal {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: #0b0c10;
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
.loom-cal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.loom-cal__date { font-weight: 700; font-size: 0.88rem; color: #fff; }
.loom-cal__count { font-size: 0.72rem; font-weight: 700; color: var(--accent1); }
.loom-cal__slot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.loom-cal__slot--free { opacity: 0.45; }
.loom-cal__time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
  width: 38px;
}
.loom-cal__info { flex: 1; min-width: 0; }
.loom-cal__name { display: block; font-size: 0.85rem; font-weight: 600; color: #fff; }
.loom-cal__type { font-size: 0.72rem; color: var(--text-dim); }
.loom-cal__badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.25em 0.65em;
  border-radius: 999px;
  white-space: nowrap;
}
.loom-cal__badge--ok {
  background: rgba(167, 139, 250, 0.14);
  color: var(--accent1);
  border: 1px solid rgba(167, 139, 250, 0.28);
}
.loom-cal__badge--pending {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.22);
}
.loom-cal__badge--rappel {
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent2);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

/* Fiche client (LOOM) */
.loom-client-card {
  height: 100%;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: #0b0c10;
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.loom-client-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.loom-client-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent1), var(--accent2));
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0a0a0a;
}
.loom-client-card__id { display: flex; flex-direction: column; gap: 0.2rem; }
.loom-client-card__name { font-size: 1rem; font-weight: 700; color: #fff; }
.loom-client-card__phone { font-size: 0.78rem; color: var(--text-dim); }
.loom-client-card__rows { display: flex; flex-direction: column; gap: 0.6rem; }
.loom-client-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.82rem;
}
.loom-client-card__row span { color: var(--text-dim); }
.loom-client-card__row strong { color: var(--text); font-weight: 600; text-align: right; }
.loom-client-card__next { color: var(--accent1) !important; }
.loom-client-card__note {
  margin-top: auto;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.loom-client-card__note-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 0.3rem;
}

/* Fiche véhicule LOOM Auto (callout visuel) */
.loom-auto-card {
  width: min(100%, 265px);
  margin: 0 auto;
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  background: rgba(10, 9, 20, 0.85);
  border: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.6),
    inset 0 1px rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.loom-auto-card__plate {
  display: inline-block;
  padding: 0.35em 0.9em;
  background: #f5f0e0;
  color: #14100a;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  border-radius: 6px;
  border: 2px solid #c8b470;
  align-self: flex-start;
}
.loom-auto-card__model {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-top: -0.3rem;
}
.loom-auto-card__rows { display: flex; flex-direction: column; gap: 0.55rem; }
.loom-auto-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.loom-auto-card__row:last-child { border-bottom: none; padding-bottom: 0; }
.loom-auto-card__row span { color: rgba(255, 255, 255, 0.45); }
.loom-auto-card__row strong { color: rgba(255, 255, 255, 0.85); font-weight: 600; text-align: right; }
.loom-auto-card__reminder {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--accent2);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Tarif LOOM (fond clair, analogue à .flint-tarif) */
.loom-tarif {
  --surface: rgba(16, 20, 24, 0.04);
  --surface-2: rgba(16, 20, 24, 0.07);
  --border: rgba(16, 20, 24, 0.1);
  --border-strong: rgba(16, 20, 24, 0.18);
  --text: #0e0c1e;
  --text-dim: #524f6a;
  --text-dimmer: #8480a0;
  --verto-1: #6c4fd6;
  background:
    radial-gradient(900px 520px at 86% 8%, rgba(167, 139, 250, 0.12), transparent 62%),
    radial-gradient(720px 420px at 8% 85%, rgba(56, 189, 248, 0.09), transparent 60%),
    #f7f6ff;
  color: var(--text);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px rgba(16, 20, 24, 0.08);
}
.loom-tarif .section__lead { color: var(--text-dim); }
.loom-tarif .flint-pack {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(16, 20, 24, 0.08);
  box-shadow: 0 28px 80px -55px rgba(16, 20, 24, 0.4);
}
.loom-tarif .flint-pack--featured {
  background: linear-gradient(160deg, rgba(167, 139, 250, 0.1), rgba(56, 189, 248, 0.06)), #fff;
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 30px 80px -45px rgba(167, 139, 250, 0.32);
}

/* ========================================
   CRAFT — thème teal/cyan
   ======================================== */
[data-theme="craft"] {
  --accent1: #22d3ee;
  --accent2: #14b8a6;
  --verto-1: #67e8f9;
  --verto-2: #2dd4bf;
  --grad-verto: linear-gradient(115deg, #67e8f9 0%, #22d3ee 48%, #14b8a6 108%);
}
[data-theme="craft"] .bg {
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(34, 211, 238, 0.11), transparent 60%),
    var(--bg);
}
[data-theme="craft"] .orb--green {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.45), transparent 70%);
}
[data-theme="craft"] .orb--violet {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35), transparent 70%);
}
[data-theme="craft"] .orb--coral {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 70%);
}
[data-theme="craft"] .cs-final__box,
[data-theme="craft"] .creator-callout {
  background: linear-gradient(135deg, rgba(6, 18, 20, 0.98), rgba(10, 52, 52, 0.82) 56%, rgba(8, 88, 80, 0.72));
  border-color: rgba(34, 211, 238, 0.22);
}

/* Hero Craft */
.craft-hero-wrap { position: relative; display: block; }
.craft-hero-shot {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 40px 100px -40px rgba(34, 211, 238, 0.28);
}

/* Captures d'écran Craft */
.craft-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.craft-shot { margin: 0; }
.craft-shot--wide { grid-column: 1 / -1; }
.craft-shot__frame {
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.9);
}
.craft-shot__frame img { width: 100%; display: block; }
.craft-shot figcaption {
  margin-top: 0.9rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.craft-shot figcaption strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}

/* Maquette saisie rapide — Craft */
.craft-sale-grid {
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: #090b0d;
  overflow: hidden;
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.9);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.craft-sale-grid__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.craft-sale-grid__mode { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,.5); }
.craft-sale-grid__total {
  font-size: 0.72rem;
  font-weight: 700;
  color: #22d3ee;
}
.craft-sale-grid__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}
.craft-sale-item {
  padding: 0.7rem 0.9rem;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.craft-sale-item:nth-child(2n) { border-right: none; }
.craft-sale-item__name { font-size: 0.83rem; font-weight: 600; color: #fff; }
.craft-sale-item__price { font-size: 0.7rem; color: rgba(255,255,255,.35); }
.craft-sale-item__counter {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.craft-sale-item__btn {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(255,255,255,.07);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  line-height: 1;
}
.craft-sale-item__btn--add {
  background: rgba(34, 211, 238, 0.18);
  color: #22d3ee;
}
.craft-sale-item__qty { font-size: 0.86rem; font-weight: 700; color: #fff; min-width: 18px; text-align: center; }
.craft-sale-grid__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  background: rgba(34, 211, 238, 0.07);
  border-top: 1px solid rgba(34, 211, 238, 0.15);
  font-size: 0.8rem;
  font-weight: 700;
  color: #22d3ee;
  flex-shrink: 0;
}
.craft-sale-grid__validate {
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(115deg, #22d3ee, #14b8a6);
  color: #041010;
  padding: 0.35em 0.9em;
  border-radius: 999px;
}

/* Maquette graphique par jour — Craft */
.craft-chart {
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: #090b0d;
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.9);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
}
.craft-chart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.craft-chart__title { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,.7); }
.craft-chart__legend {
  display: flex;
  gap: 0.7rem;
}
.craft-chart__legend-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,.4);
}
.craft-chart__dot { width: 7px; height: 7px; border-radius: 50%; }
.craft-chart__dot--a { background: #22d3ee; }
.craft-chart__dot--b { background: #14b8a6; }
.craft-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  flex: 1;
  min-height: 100px;
}
.craft-chart__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
}
.craft-chart__bar-group {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  flex: 1;
  width: 100%;
}
.craft-chart__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 3px;
  transition: opacity 0.2s;
}
.craft-chart__bar--a { background: linear-gradient(180deg, #22d3ee 0%, rgba(34,211,238,.25) 100%); }
.craft-chart__bar--b { background: linear-gradient(180deg, #14b8a6 0%, rgba(20,184,166,.2) 100%); opacity: 0.75; }
.craft-chart__day { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,.28); text-transform: uppercase; }

/* Fiche scan Craft Scan (callout visuel) */
.craft-scan-card {
  width: min(100%, 265px);
  margin: 0 auto;
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  background: rgba(6, 12, 14, 0.88);
  border: 1px solid rgba(34, 211, 238, 0.28);
  box-shadow: 0 28px 55px rgba(0,0,0,.6), inset 0 1px rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.craft-scan-card__barcode {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 0.65rem 0.6rem 0.5rem;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  justify-content: center;
  overflow: hidden;
}
.craft-scan-card__bar { background: rgba(255,255,255,.7); border-radius: 1px; }
.craft-scan-card__scan-line {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 4%, #22d3ee 40%, #22d3ee 60%, transparent 96%);
  box-shadow: 0 0 10px 2px rgba(34,211,238,.55);
}
.craft-scan-card__id {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.craft-scan-card__product { font-size: 0.92rem; font-weight: 700; color: #fff; }
.craft-scan-card__code { font-size: 0.66rem; color: rgba(255,255,255,.28); font-family: 'Courier New', monospace; letter-spacing: 0.06em; }
.craft-scan-card__rows { display: flex; flex-direction: column; gap: 0.5rem; }
.craft-scan-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.craft-scan-card__row:last-child { border-bottom: none; padding-bottom: 0; }
.craft-scan-card__row span { color: rgba(255,255,255,.4); }
.craft-scan-card__row strong { color: rgba(255,255,255,.85); font-weight: 600; }
.craft-scan-card__alert {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.22);
  color: #22d3ee;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Tarif Craft (fond clair) */
.craft-tarif {
  --surface: rgba(16, 20, 24, 0.04);
  --surface-2: rgba(16, 20, 24, 0.07);
  --border: rgba(16, 20, 24, 0.1);
  --border-strong: rgba(16, 20, 24, 0.18);
  --text: #061210;
  --text-dim: #3d5856;
  --text-dimmer: #759492;
  --verto-1: #0e7872;
  background:
    radial-gradient(900px 520px at 86% 8%, rgba(34, 211, 238, 0.1), transparent 62%),
    radial-gradient(720px 420px at 8% 85%, rgba(20, 184, 166, 0.08), transparent 60%),
    #f0fdfc;
  color: var(--text);
  box-shadow: inset 0 1px rgba(255,255,255,.9), inset 0 -1px rgba(16,20,24,.08);
}
.craft-tarif .section__lead { color: var(--text-dim); }
.craft-tarif .flint-pack {
  background: rgba(255,255,255,.8);
  border-color: rgba(16,20,24,.08);
  box-shadow: 0 28px 80px -55px rgba(16,20,24,.4);
}
.craft-tarif .flint-pack--featured {
  background: linear-gradient(160deg, rgba(34,211,238,.08), rgba(20,184,166,.05)), #fff;
  border-color: rgba(34,211,238,.38);
  box-shadow: 0 30px 80px -45px rgba(34,211,238,.22);
}

/* ========================================
   Pages légales
   ======================================== */
.legal-hero {
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--border);
}
.legal-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.legal-hero__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.legal-hero__meta {
  font-size: 0.88rem;
  color: var(--text-dim);
}
.legal-body {
  max-width: 760px;
  padding: 3.5rem 0 6rem;
}
.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.legal-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}
.legal-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
}
.legal-body ul {
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
}
.legal-body li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body a { color: var(--accent1); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { opacity: 0.8; }
.legal-placeholder {
  display: inline-block;
  background: rgba(255, 200, 0, 0.12);
  border: 1px dashed rgba(255, 200, 0, 0.4);
  border-radius: 4px;
  padding: 0 0.4em;
  color: #f0c040;
  font-size: 0.88em;
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cs-hero { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .cs-hero__copy { max-width: none; }
  .cs-hero__cta, .cs-hero__note { justify-content: center; }
  .cs-hero__visual { order: -1; }
  .cs-steps { grid-template-columns: 1fr; }
  .flint-pack { grid-template-columns: 1fr; padding: 2rem 1.6rem; }
  .flint-pack__features {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 1.4rem;
  }
  .flint-pack__badge { top: 1.1rem; right: 1.1rem; }
  .nav__links { display: none; }
  .feature { grid-template-columns: 1fr; }
  .feature__media,
  .feature--reverse .feature__media { order: -1; }
  .creator-callout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .creator-callout__visual { min-height: 220px; }
  .cards { grid-template-columns: 1fr; }
  .quote__panel { grid-template-columns: 1fr; }
  .app-library__tab { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero { padding-top: 100px; }
  .price { flex-wrap: wrap; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .flint-shots { grid-template-columns: 1fr; }
  .loom-shots { grid-template-columns: 1fr; }
  .craft-shots { grid-template-columns: 1fr; }
  .opt-cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .wizard__actions { flex-wrap: wrap; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .inline-form { flex-direction: column; }
  .inline-form .btn { width: 100%; }
  .creator-callout { border-radius: 24px; padding: 1.35rem; }
  .creator-callout::before { border-radius: 23px; }
  .creator-callout .btn { width: 100%; white-space: normal; }
  .site-preview__hero { padding: 20px; }
  .site-preview__grid { grid-template-columns: 1fr; }
  .site-preview__grid span { height: 42px; }
}

/* ---------- Espace client (login page) ---------- */
.login-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.login-card {
  width: 100%;
  max-width: 400px;
  padding: 2.8rem 2.5rem;
  text-align: center;
  border-radius: 24px;
}
.login-card:hover { transform: none; background: var(--surface); border-color: var(--border); }
.login-card:hover::after { opacity: 0.12; }
.login-card__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
}
.login-card__brand-mark { width: 28px; height: 28px; }
.login-card__brand-name { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.login-card__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.35rem; }
.login-card__sub { font-size: 0.93rem; color: var(--text-dim); margin-bottom: 2rem; }
.login-card__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: left;
}
.login-card__label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.login-card__forgot {
  font-size: 0.82rem;
  color: var(--text-dimmer);
  font-weight: 400;
  transition: color 0.2s;
}
.login-card__forgot:hover { color: var(--text-dim); }
.login-card__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.4rem;
  padding: 0.85em 1em;
}
.login-card__error {
  margin: 0.9rem 0 0;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 84, 112, 0.12);
  border: 1px solid rgba(255, 84, 112, 0.4);
  color: #ff8095;
  font-size: 0.88rem;
  text-align: center;
}
.login-card__apps {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.login-card__app-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  opacity: 0.75;
  filter: brightness(1.08) saturate(0.85);
}
.login-card__footer {
  margin-top: 1.8rem;
  font-size: 0.87rem;
  color: var(--text-dim);
}
.login-card__footer a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.login-card__footer a:hover { text-decoration-color: var(--text); }

/* ---------- Espace client : tableau de bord ---------- */
.dash {
  padding: calc(72px + clamp(1.5rem, 4vw, 2.5rem)) 0 5rem;
}
.dash-container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.dash__greeting { margin-bottom: 2.2rem; }
.dash__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.dash__sub { color: var(--text-dim); font-size: 1.02rem; }

/* Bandeau essai */
.dash-trial {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(251, 191, 36, 0.1), rgba(251, 146, 60, 0.06));
  border: 1px solid rgba(251, 191, 36, 0.22);
  margin-bottom: 2.5rem;
}
.dash-trial__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.14);
  color: #fbbf24;
}
.dash-trial__text { flex: 1; min-width: 0; }
.dash-trial__title { font-weight: 600; font-size: 0.98rem; margin-bottom: 0.15rem; }
.dash-trial__title strong { color: #fbbf24; }
.dash-trial__sub { font-size: 0.88rem; color: var(--text-dim); }
.dash-trial .btn { flex-shrink: 0; }

/* Sections du dashboard */
.dash-section { margin-bottom: 2.8rem; }
.dash-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.dash-section__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.dash-section__link {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.2s;
}
.dash-section__link:hover { color: var(--text); }

/* Grille applications */
.dash-apps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 1rem;
}
.dash-app {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.dash-app::after {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 70%; height: 90%;
  background: radial-gradient(circle, var(--accent1), transparent 70%);
  opacity: 0.14;
  filter: blur(28px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.dash-app:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.dash-app:hover::after { opacity: 0.26; }
.dash-app__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}
.dash-app__icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
.dash-app__id { min-width: 0; }
.dash-app__name { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.dash-app__pack { font-size: 0.85rem; color: var(--text-dim); }
.dash-app__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.dash-app__price {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.dash-app__price span { color: var(--text-dimmer); font-weight: 400; font-size: 0.82rem; }
.dash-app__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: gap 0.2s;
}
.dash-app__link:hover { gap: 0.55rem; }
.dash-app__link svg { color: var(--accent1); }

/* Tuile « ajouter une app » */
.dash-app--add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  border-style: dashed;
  border-color: var(--border-strong);
  color: var(--text-dim);
  min-height: 170px;
}
.dash-app--add::after { display: none; }
.dash-app--add:hover { color: var(--text); transform: translateY(-4px); }
.dash-app--add svg { color: var(--text-dim); }
.dash-app--add strong { font-weight: 600; font-size: 0.95rem; }
.dash-app--add small { font-size: 0.8rem; color: var(--text-dimmer); }

/* Badges de statut */
.dash-status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28em 0.7em;
  border-radius: 999px;
  white-space: nowrap;
}
.dash-status--active { color: #34d399; background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.26); }
.dash-status--trial { color: #fbbf24; background: rgba(251, 191, 36, 0.12); border: 1px solid rgba(251, 191, 36, 0.26); }
.dash-status--done { color: #60a5fa; background: rgba(96, 165, 250, 0.12); border: 1px solid rgba(96, 165, 250, 0.26); }

/* Grille 2 colonnes (parrainage + facturation) */
.dash-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.8rem;
}
.dash-panel {
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.dash-panel__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.dash-panel__intro {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 1.3rem;
}

/* Parrainage */
.dash-referral__code {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.dash-referral__value {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0.7em 1em;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed var(--border-strong);
  font-family: "SF Mono", "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.dash-referral__copy {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.1em;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.dash-referral__copy:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--text-dimmer); }
.dash-referral__copy.is-copied { color: #34d399; border-color: rgba(52, 211, 153, 0.4); }
.dash-referral__reward {
  font-size: 0.86rem;
  color: var(--text-dim);
  margin-bottom: 1.3rem;
}
.dash-referral__reward strong { color: var(--verto-1); font-weight: 600; }
.dash-referral__stats {
  display: flex;
  gap: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.dash-stat__num { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.dash-stat__label { font-size: 0.78rem; color: var(--text-dimmer); }

/* Facturation / compte : lignes */
.dash-rows { display: grid; gap: 0; }
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
}
.dash-row:first-child { border-top: 0; }
.dash-row__label { font-size: 0.86rem; color: var(--text-dim); }
.dash-row__value { font-size: 0.92rem; font-weight: 500; text-align: right; }
.dash-row__value small { display: block; font-weight: 400; color: var(--text-dimmer); font-size: 0.78rem; }
.dash-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.dash-card-brand svg { opacity: 0.8; }
.dash-panel__action { margin-top: 1.4rem; }
.dash-panel__action .btn { width: 100%; justify-content: center; }

/* Bandeau découverte (Flint) */
.dash-discover {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.dash-discover__icon { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; }
.dash-discover__text { flex: 1; min-width: 0; }
.dash-discover__title { font-weight: 600; margin-bottom: 0.15rem; }
.dash-discover__sub { font-size: 0.88rem; color: var(--text-dim); }
.dash-discover .btn { flex-shrink: 0; }

/* Compte : chip dans la nav */
.nav__user {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.5rem 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.nav__user-name { font-size: 0.88rem; font-weight: 500; color: var(--text-dim); }
.nav__user-avatar {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-verto);
  color: #06281c;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 720px) {
  .dash-grid-2 { grid-template-columns: 1fr; }
  .dash-trial { flex-direction: column; align-items: flex-start; }
  .dash-trial .btn { width: 100%; justify-content: center; }
  .dash-discover { flex-direction: column; align-items: flex-start; text-align: left; }
  .dash-discover .btn { width: 100%; justify-content: center; }
  .nav__user-name { display: none; }
}

/* ---------- Modale Flint 360 ---------- */
.f360-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 6, 7, 0.88);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.f360-overlay.is-open { opacity: 1; pointer-events: auto; }

.f360-modal {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  background: #111114;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem 2rem;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.f360-overlay.is-open .f360-modal { transform: translateY(0) scale(1); }

.f360-modal__close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.f360-modal__close:hover { background: var(--surface-2); color: var(--text); }

.f360-modal__head {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  padding-right: 2rem;
}
.f360-modal__icon { width: 68px; height: 68px; border-radius: 16px; flex-shrink: 0; object-fit: contain; }
.f360-modal__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(115deg, #ff7849, #ff477e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.f360-modal__title { font-size: 1.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 0.3rem; }
.f360-modal__tagline { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.f360-modal__price { font-weight: 700; font-size: 1.05rem; }
.f360-modal__price small { font-size: 0.82rem; color: var(--text-dim); font-weight: 400; margin-left: 0.2rem; }

.f360-modal__classic {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}
.f360-modal__classic-label { font-size: 0.82rem; color: var(--text-dim); font-weight: 500; margin-bottom: 0.7rem; }
.f360-modal__classic-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.f360-modal__classic-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.f360-modal__classic-list li::before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='%23a1a1a6' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.f360-modal__section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 1rem;
}
.f360-modal__perks { display: flex; flex-direction: column; gap: 1rem; }
.f360-modal__perk { display: flex; align-items: flex-start; gap: 0.9rem; }
.f360-modal__perk-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,120,73,.12), rgba(255,71,126,.12));
  border: 1px solid rgba(255,120,73,.22);
  display: grid; place-items: center;
  color: #ff8860;
}
.f360-modal__perk-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.f360-modal__perk-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }

.f360-modal__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}
.f360-modal__footer .btn { width: 100%; justify-content: center; }
.f360-modal__note { font-size: 0.8rem; color: var(--text-dimmer); }

.f360-more {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text-dim);
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
  padding: 0;
  transition: color 0.2s;
  margin-top: 0.5rem;
  display: inline-block;
  font-family: inherit;
}
.f360-more:hover { color: var(--text); }

@media (max-width: 540px) {
  .f360-modal { padding: 1.8rem 1.4rem 1.5rem; border-radius: 20px; }
  .f360-modal__head { flex-direction: column; padding-right: 2rem; }
  .f360-modal__icon { width: 44px; height: 44px; }
  .f360-modal__title { font-size: 1.3rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
