:root {
  --radius: 14px;
  --radius-lg: 20px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 8px 32px rgba(26, 36, 51, 0.08);
  --mini-scale: 0.36;
  --mini-w: 1280px;
  --mini-h: 820px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-backdrop::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 6% 12%, rgba(244, 114, 182, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 42% at 94% 28%, rgba(167, 139, 250, 0.13), transparent 52%),
    radial-gradient(ellipse 48% 38% at 22% 78%, rgba(103, 232, 249, 0.11), transparent 48%),
    radial-gradient(ellipse 45% 36% at 88% 88%, rgba(139, 92, 246, 0.1), transparent 46%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(26, 31, 53, 0.04), transparent 50%);
}

.site-bubbles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.92;
}

main,
.footer {
  position: relative;
  z-index: 1;
  background: transparent;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background:
    linear-gradient(180deg, rgba(237, 233, 254, 0.65) 0%, rgba(255, 255, 255, 0.94) 45%),
    rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s, box-shadow 0.35s;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(26, 36, 51, 0.06);
}

.header__inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}

.logo__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
  letter-spacing: -0.01em;
}

.logo__bulle {
  font-style: normal;
  background: var(--grad-em);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__rest {
  color: var(--white);
}

.logo__by {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  transition: width 0.3s var(--ease-out);
}

.nav a:hover,
.nav a.is-active { color: var(--white); }

.nav a:hover::after,
.nav a.is-active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.header__cta { margin-left: 0.5rem; }

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: var(--grad-accent);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn:hover {
  background: var(--grad-accent-hover);
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.38);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-deep);
  border: 1px solid var(--border-strong);
  box-shadow: none;
  border-radius: 8px;
}

.btn--ghost:hover {
  background: var(--bg-mid);
  border-color: var(--accent);
  box-shadow: none;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

/* ── Typo ── */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section__title em {
  font-style: normal;
  background: var(--grad-em);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__sub {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: min(90vh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle at 30% 22%,
    rgba(255, 255, 255, 0.95),
    rgba(var(--pink-rgb), 0.42) 38%,
    rgba(var(--purple-rgb), 0.38) 62%,
    rgba(var(--cyan-rgb), 0.28) 100%
  );
  border: 1px solid rgba(var(--purple-rgb), 0.35);
  box-shadow:
    inset -8px -12px 24px rgba(var(--purple-rgb), 0.08),
    0 8px 32px rgba(var(--purple-rgb), 0.12);
  animation: hero-orb-float 9s ease-in-out infinite;
}

.hero__orb--1 {
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: clamp(48px, 7vw, 72px);
  height: clamp(48px, 7vw, 72px);
  top: 22%;
  right: 12%;
  animation-delay: -3s;
  opacity: 0.85;
}

.hero__orb--3 {
  width: clamp(100px, 14vw, 160px);
  height: clamp(100px, 14vw, 160px);
  bottom: 8%;
  left: 38%;
  animation-delay: -5.5s;
  opacity: 0.7;
}

@keyframes hero-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, -14px) scale(1.03); }
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 8% 20%, rgba(var(--pink-rgb), 0.18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 92% 65%, rgba(var(--cyan-rgb), 0.14), transparent 52%),
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(var(--purple-rgb), 0.12), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.35) 0%, color-mix(in srgb, var(--black) 30%, transparent) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: 0.05s;
}

body.is-loaded .hero__eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: 0.08s;
}

body.is-loaded .hero__title {
  opacity: 1;
  transform: translateY(0);
}

.hero__title em {
  display: block;
  font-style: normal;
  background: var(--grad-em);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 0.12em;
}

.hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: 0.2s;
}

body.is-loaded .hero__chips {
  opacity: 1;
  transform: translateY(0);
}

.hero__chips li {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(var(--pink-rgb), 0.14);
  border: 1px solid rgba(var(--pink-rgb), 0.28);
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: 0.14s;
}

body.is-loaded .hero__lead {
  opacity: 1;
  transform: translateY(0);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: 0.24s;
}

body.is-loaded .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

.hero__stats {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: 0.28s;
}

.hero__stage-label {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
}

body.is-loaded .hero__stats {
  opacity: 1;
  transform: translateY(0);
}

.stat__value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 0.05em;
  color: var(--white);
}

.stat__num { color: var(--accent-deep); }

.stat__suffix {
  font-size: 0.55em;
  color: var(--accent);
  font-weight: 600;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.hero__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: 0.2s;
}

body.is-loaded .hero__stage {
  opacity: 1;
  transform: translateY(0);
}

.hero__stack {
  position: relative;
  width: min(400px, 100%);
  height: min(300px, 42vh);
}

.hero-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  background: #0c0e14;
  box-shadow: 0 12px 40px rgba(26, 36, 51, 0.12);
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}

.hero-card--back {
  transform: translateX(8%) translateY(6%) scale(0.92);
  opacity: 0.5;
  z-index: 1;
}

.hero-card--mid {
  transform: translateX(4%) translateY(3%) scale(0.96);
  opacity: 0.75;
  z-index: 2;
}

.hero-card--front {
  z-index: 3;
}

.hero-card__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  background: #141820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.65rem;
  color: var(--muted);
}

.hero-card__chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-style: normal;
}

.hero-card__chrome i:nth-child(1) { background: #e07060; }
.hero-card__chrome i:nth-child(2) { background: #d8b050; }
.hero-card__chrome i:nth-child(3) { background: #60b870; }

.hero-card__url {
  flex: 1;
  margin-left: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-card__viewport {
  height: calc(100% - 34px);
  overflow: hidden;
  background: #e8ecf1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-card__viewport iframe,
.hero-card__viewport img {
  width: 1280px;
  height: 720px;
  border: 0;
  flex-shrink: 0;
  pointer-events: none;
}

.hero-card--front .hero-card__viewport iframe {
  pointer-events: auto;
}

.hero-card.is-switching {
  opacity: 0;
  transform: scale(0.98);
}

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

/* ── Marquee ── */
.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(244, 114, 182, 0.08), transparent 20%, transparent 80%, rgba(244, 114, 182, 0.08)),
    var(--surface-alt);
  margin-bottom: 0;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee__track span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.25s;
}

.marquee__track span:hover {
  color: var(--accent-light);
}

.marquee__track span::before {
  content: '·';
  margin-right: 1rem;
  color: #f472b6;
  font-size: 1rem;
  vertical-align: middle;
}

.marquee__track .marquee__accent {
  color: var(--accent-light);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Bandeau confiance ── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
}

.trust-bar__item::before {
  content: '✓';
  color: #a78bfa;
  font-weight: 700;
}

/* ── Sections ── */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  overflow: hidden;
}

.section::after {
  content: '';
  position: absolute;
  width: min(320px, 50vw);
  height: min(320px, 50vw);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.14), transparent 68%);
  z-index: 0;
}

.section:nth-of-type(odd)::after {
  top: 8%;
  right: -12%;
}

.section:nth-of-type(even)::after {
  bottom: 10%;
  left: -14%;
}

.section .container,
.section > .showcase {
  position: relative;
  z-index: 1;
}

.section--alt {
  background: var(--surface-alt);
  border-block: 1px solid var(--border);
}

.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(244, 114, 182, 0.1), transparent 60%);
  z-index: 0;
}

.section--pricing {
  background: var(--surface-muted);
}

.section__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

/* ── Services ── */
.grid--services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(var(--pink-rgb), 0.14), transparent 42%),
    radial-gradient(500px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(var(--accent-rgb), 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 36px rgba(26, 36, 51, 0.1);
}

.service-card__icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  background: #eef4fb;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Showcase ── */
.section--showcase {
  padding-bottom: 4rem;
  overflow: hidden;
}

.section--showcase .section__head {
  margin-bottom: 1.25rem;
}

.showcase__hint {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  padding-inline: clamp(0.5rem, 3vw, 2rem);
  min-height: min(520px, 70vh);
}

.showcase__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding-block: 1rem 1.5rem;
  align-items: stretch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.showcase__track::-webkit-scrollbar { display: none; }

.showcase__panel {
  flex: 0 0 min(1000px, calc(100vw - 7rem));
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  opacity: 0.92;
  transition: opacity 0.35s, border-color 0.35s, box-shadow 0.35s;
  min-height: 28rem;
}

.showcase__panel.is-active {
  opacity: 1;
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(26, 36, 51, 0.1);
}

.showcase__preview {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.showcase__preview > .mini-browser {
  width: 100%;
  max-width: 100%;
  flex: none;
  align-self: center;
  height: auto;
}

.showcase__info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.25rem 0.5rem;
  align-self: center;
  min-width: 0;
}

.showcase__sector {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.showcase__info h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--white);
  line-height: 1.15;
}

.showcase__outcome {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-deep);
  line-height: 1.45;
  padding: 0.65rem 0.85rem;
  background: #eef4fb;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.showcase__type {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-accent);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  width: fit-content;
}

.showcase__type--empty {
  visibility: hidden;
  background: transparent;
  pointer-events: none;
}

.showcase__results {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  min-height: 3.75rem;
}

.showcase__results li {
  font-size: 0.88rem;
  color: var(--cream);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}

.showcase__results li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.showcase__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.showcase__tags span {
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--cream);
}

.showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.showcase__actions .btn--ghost {
  font-size: 0.85rem;
  padding: 0.65rem 1.1rem;
}

.showcase__note {
  font-size: 0.78rem;
  color: var(--muted);
}

.mini-browser {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #f0f3f7;
  box-shadow: 0 4px 16px rgba(26, 36, 51, 0.08);
  display: flex;
  flex-direction: column;
}

.mini-browser--16x9 {
  display: flex;
  flex-direction: column;
  height: auto;
  flex: none;
  align-self: center;
}

.showcase .mini-browser--16x9 {
  width: 100%;
  max-width: 100%;
}

.mini-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.75rem;
  background: #141820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.mini-browser__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mini-browser__bar span:nth-child(1) { background: #e07060; }
.mini-browser__bar span:nth-child(2) { background: #d8b050; }
.mini-browser__bar span:nth-child(3) { background: #60b870; }

.mini-browser__url {
  flex: 1;
  margin-left: 0.5rem;
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.25rem 0.55rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
}

.mini-browser__viewport {
  flex: 1;
  overflow: auto;
  overscroll-behavior: auto;
  background: #fff;
  cursor: grab;
  padding: 0;
}

.showcase .mini-browser__viewport {
  aspect-ratio: 16 / 9;
  flex: none;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8ecf2;
  line-height: 0;
  scrollbar-width: none;
}

.showcase .mini-browser__viewport::-webkit-scrollbar {
  display: none;
}

.mini-browser--16x9 .mini-browser__scale {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.mini-browser--16x9 .mini-browser__iframe {
  border: 0;
  display: block;
  background: #fff;
}

.mini-browser--16x9 .mini-browser__fallback-img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.showcase .mini-browser__viewport iframe {
  pointer-events: none;
}

.showcase__panel.is-active .mini-browser__viewport iframe {
  pointer-events: auto;
}

.mini-browser__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.mini-browser__scale {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  margin: 0;
  background: #fff;
}

.mini-browser__frame {
  overflow: hidden;
  transform-origin: top left;
}

.mini-browser__scale iframe,
.mini-browser__scale .mini-browser__fallback-img {
  border: 0;
  display: block;
  pointer-events: auto;
  background: #fff;
}

.mini-browser.is-blocked .mini-browser__iframe { display: none; }

.mini-browser.is-blocked .mini-browser__fallback-img {
  display: block !important;
}

.mini-browser__fallback {
  display: none;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-browser.is-blocked .mini-browser__scale { display: none; }
.mini-browser.is-blocked .mini-browser__fallback { display: block; }

.showcase__btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}

.showcase__btn span {
  display: block;
  margin-top: -2px;
}

.showcase__btn:hover {
  background: var(--bg-mid);
  border-color: var(--accent);
  transform: scale(1.05);
}

.showcase__btn:active {
  transform: scale(0.98);
}

/* ── Timeline ── */
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.timeline__item {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
  overflow: hidden;
}

.timeline__item::after {
  content: '';
  position: absolute;
  top: -25%;
  right: -10%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.16), transparent 70%);
  pointer-events: none;
}

.timeline__item:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  transform: translateY(-4px);
}

.timeline__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.timeline__item h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.timeline__item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Tarifs ── */
.price-from {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.price-from strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-top: 0.25rem;
}

/* ── Comparaison ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.compare {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare th,
.compare td {
  padding: 1rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.compare thead th {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border-strong);
}

.compare thead th span {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.25rem;
}

.compare tbody th[scope='row'] {
  font-weight: 600;
  color: var(--white);
  width: 22%;
  background: rgba(var(--accent-rgb), 0.04);
}

.compare tbody td {
  color: var(--muted);
  width: 39%;
  line-height: 1.55;
}

.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: none;
}

.compare__us {
  background: color-mix(in srgb, var(--bg-card) 88%, rgba(var(--purple-rgb), 0.1));
  border-left: 2px solid rgba(var(--accent-rgb), 0.35);
  border-right: 1px solid rgba(var(--accent-rgb), 0.2);
}

.compare thead .compare__us {
  background: color-mix(in srgb, var(--bg-mid) 80%, rgba(var(--purple-rgb), 0.12));
  border-left: 2px solid var(--accent);
  color: var(--white);
}

.compare tbody .compare__us {
  color: var(--cream);
  font-weight: 500;
}

.compare__disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.grid--pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
  max-width: 52rem;
  margin-inline: auto;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.2), transparent 70%);
  pointer-events: none;
}

.price-card__top {
  min-height: 2rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-end;
}

.price-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-accent);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.price-card--highlight {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--bg-card) 92%, rgba(var(--purple-rgb), 0.08));
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.12);
}

.price-card:hover { transform: translateY(-4px); }

.price-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.price-card__range {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.price-card__devis {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.price-card li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}

.price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

.footnotes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.footnotes li {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Équipe ── */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.team-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-card__avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: rgba(var(--pink-rgb), 0.12);
  border: 1px solid rgba(var(--pink-rgb), 0.28);
}

.team-card__avatar--photo {
  padding: 3px;
  background: var(--grad-ring);
  overflow: hidden;
}

.team-card__avatar--photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 28% 45%;
  display: block;
  background: var(--bg-mid);
}

.team-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.team-card__role {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

/* ── About (legacy helpers, contact photo elsewhere) ── */
/* ── Bandeau promo ── */
.section--promo {
  padding: 3.5rem 0;
}

.promo-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(var(--cyan-rgb), 0.28), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(var(--pink-rgb), 0.2), transparent 50%),
    linear-gradient(135deg, #1a1f35 0%, #3b2d6e 45%, #1e4a6e 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: 0 12px 40px rgba(26, 31, 53, 0.35);
  position: relative;
  overflow: hidden;
}

.promo-band__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.promo-band__lead {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
}

.promo-band .btn {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.promo-band .btn:hover {
  background: #f0f6fc;
  color: var(--accent-deep);
}

/* ── CTA ── */
.section--cta {
  padding-bottom: 8rem;
  background: var(--surface-alt);
}

.cta-card {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 85% 8%, rgba(244, 114, 182, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(var(--cyan-rgb), 0.15), transparent 50%);
}

.cta-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-card__title em {
  font-style: normal;
  color: var(--accent);
  white-space: nowrap;
}

.cta-card__sub {
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.cta-card__response {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.cta-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cta-card__zone {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 80% at 15% 50%, rgba(244, 114, 182, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 70% at 88% 40%, rgba(255, 185, 215, 0.12), transparent 50%);
}

.footer__inner {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  color: var(--white);
}

.footer__brand strong {
  font-weight: 600;
}

.footer__tag { margin-top: 0.35rem; }

.footer__copy {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer__legal {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.footer__legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer__legal a:hover {
  color: var(--accent);
}

/* ── Témoignages ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 0;
  flex: 1;
}

.testimonial-card footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__author {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-card__role {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── Projets sur mesure ── */
.custom-projects {
  margin-top: 1.5rem;
}

.custom-projects__note {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cream);
  border-radius: var(--radius);
  background: rgba(var(--purple-rgb), 0.1);
  border: 1px solid rgba(var(--purple-rgb), 0.22);
}

.custom-projects__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.custom-projects__title em {
  font-style: normal;
  background: var(--grad-em);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.custom-projects__sub {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.custom-projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.custom-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.custom-card__sector {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.custom-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.custom-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.custom-card__outcome {
  font-weight: 600;
  color: var(--cream) !important;
  margin: 0.75rem 0 !important;
}

.custom-card .showcase__tags {
  margin: 1rem 0;
}

/* ── Tarif exemple ── */
.pricing-example {
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.pricing-example__inner {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(var(--purple-rgb), 0.45);
  background: rgba(var(--purple-rgb), 0.08);
  text-align: center;
}

.pricing-example__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.pricing-example__range {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  color: var(--white);
}

.pricing-example__detail {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.pricing-hosting {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  padding: 0.85rem 1.15rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  border-radius: var(--radius);
  background: var(--bg-mid);
  border: 1px solid var(--border);
}

.pricing-hosting strong {
  display: block;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.pricing-hosting span {
  display: block;
}

/* ── Équipe, encart ── */
.team-blurb {
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.98rem;
  color: var(--cream);
  border-radius: var(--radius);
  background: rgba(var(--purple-rgb), 0.1);
  border: 1px solid rgba(var(--purple-rgb), 0.22);
}

/* ── Timeline who ── */
.timeline__who {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ── FAQ ── */
.container--narrow {
  width: min(720px, 92vw);
  margin: 0 auto;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__q {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '+';
  float: right;
  color: var(--accent);
  font-weight: 400;
}

.faq__item[open] .faq__q::after {
  content: '−';
}

.faq__a {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Formulaire contact ── */
.contact-form {
  text-align: left;
  margin: 1.5rem 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--white);
  transition: border-color 0.2s;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form__privacy {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contact-form__submit {
  width: 100%;
}

.contact-form__status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--accent-deep);
  line-height: 1.5;
}

.contact-form__status--error {
  color: #c45d44;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* ── Aperçu screenshot ── */
.mini-browser__viewport--static {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: default;
  min-height: 280px;
  background: var(--bg-mid);
}

.mini-browser__preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.mini-browser__live-btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(26, 31, 53, 0.2);
}

/* ── CTA mobile fixe ── */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  padding: 0.85rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: var(--grad-accent);
  box-shadow: 0 8px 28px rgba(139, 92, 246, 0.4);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.sticky-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 10px 32px rgba(139, 92, 246, 0.5);
}

.sticky-cta[hidden] {
  display: none;
}

@media (min-width: 901px) {
  .sticky-cta {
    display: none !important;
  }
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    padding-top: calc(var(--header-h) + 2rem);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__stage { order: -1; height: min(300px, 42vh); margin-bottom: 0.5rem; }
  .hero__stack { width: min(360px, 92vw); height: min(260px, 38vh); }

  .showcase {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-inline: 4vw;
  }

  .showcase__btn--prev,
  .showcase__btn--next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
  }

  .showcase__btn--prev {
    left: 0.25rem;
  }

  .showcase__btn--next {
    right: 0.25rem;
  }

  .showcase__btn--prev:hover,
  .showcase__btn--next:hover {
    transform: translateY(-50%) scale(1.06);
  }

  .showcase__panel {
    grid-template-columns: 1fr;
    flex: 0 0 min(92vw, 400px);
    padding: 1.25rem;
  }

  .showcase__track {
    padding: 1rem 2.5rem 1.5rem;
  }

  .team {
    grid-template-columns: 1fr;
    max-width: 20rem;
    margin-inline: auto;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: block;
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: min(92vw, 20rem);
    text-align: center;
  }

  .section--cta {
    padding-bottom: 5.5rem;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
    box-shadow: 0 8px 24px rgba(26, 36, 51, 0.08);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle { display: flex; }
  .header__cta { display: none; }

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

  .grid--pricing {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }

  .compare tbody th[scope='row'] {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--bg-card);
    box-shadow: 4px 0 8px rgba(26, 36, 51, 0.04);
  }

  .compare thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    background: var(--bg-mid);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
