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

/* ============================================================
   DESIGN TOKENS, blanc "Apple argenté profond" pour TOUS les
   boutons à fond blanc du site. Utilisé par .site-header__cta,
   .intro-pitch__btn--primary, .about-story__cta, .works__cta,
   .formula__cta--primary, .convo__final, etc. — un seul endroit
   pour ajuster le rendu sur tout le site.
   ============================================================ */
:root {
  /* Dégradé vertical subtil : top quasi-blanc lumineux,
     bas argenté un peu profond. Donne du relief sans être pop. */
  --btn-white-bg: linear-gradient(180deg, #FAFAFC 0%, #E5E7EB 100%);
  --btn-white-bg-hover: linear-gradient(180deg, #F2F3F6 0%, #D2D5DB 100%);
  --btn-white-bg-active: linear-gradient(180deg, #E8EAEE 0%, #C4C7CD 100%);
  --btn-white-text: #0a0a0c;
  --btn-white-border: rgba(0, 0, 0, 0.08);
  --btn-white-border-hover: rgba(0, 0, 0, 0.14);
  /* Shadow stack : inset top blanc (highlight), micro-ombre,
     puis ombre portée discrète pour la profondeur. */
  --btn-white-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 4px 12px -4px rgba(0, 0, 0, 0.10);
  --btn-white-shadow-hover:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.10),
    0 10px 28px -6px rgba(0, 0, 0, 0.18);
}

html,
body {
  margin: 0;
  padding: 0;
  background: #080808;
  color: #fafafa;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1px;
  overflow-x: clip;
}

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

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 24px 0;
  background: transparent;
  transition: padding 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition:
    max-width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    gap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
  border-radius: 300px;
}

.site-header.is-scrolled {
  padding: 14px 0;
}

.site-header.is-scrolled .site-header__inner {
  max-width: max-content;
  padding: 6px 6px 6px 20px;
  gap: 18px;
  background-color: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.5);
}

.site-header.is-scrolled .site-header__nav {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
}

.site-header.is-scrolled .site-header__nav-list {
  gap: 18px;
}

.site-header.is-scrolled .site-header__cta {
  padding: 8px 16px;
  font-size: 13px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.site-header__logo-img {
  display: block;
  height: 72px;
  width: auto;
  /* Force le rendu blanc même si le SVG d'origine est en couleur sombre */
  filter: brightness(0) invert(1);
}

@media (max-width: 720px) {
  .site-header__logo-img { height: 56px; }
}

/* Conservé pour compatibilité (ancien rendu texte) */
.site-header__logo-text {
  font-size: 22px;
  line-height: 1;
}

.site-header__nav {
  background: rgba(13, 12, 15, 0.4);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 300px;
  padding: 12px 24px;
  transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav-list li {
  display: list-item;
}

.site-header__link {
  display: inline-block;
  color: rgba(231, 231, 231, 0.85);
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.site-header__link:hover {
  color: #ffffff;
}

.site-header__link.is-active {
  color: #ffffff;
  font-weight: 500;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 300px;
  background: var(--btn-white-bg);
  border: 1px solid var(--btn-white-border);
  box-shadow: var(--btn-white-shadow);
  color: var(--btn-white-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  overflow: hidden;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-header__cta-track {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  height: 20px;
  overflow: hidden;
  line-height: 20px;
}

.site-header__cta-text {
  display: inline-flex;
  align-items: center;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.site-header__cta-text--hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(24px);
  opacity: 0;
}

.site-header__cta:hover {
  transform: translateY(-3px);
  background: var(--btn-white-bg-hover);
  border-color: var(--btn-white-border-hover);
  box-shadow: var(--btn-white-shadow-hover);
}

.site-header__cta:hover .site-header__cta-text {
  transform: translateY(-24px);
  opacity: 0;
}

.site-header__cta:hover .site-header__cta-text--hover {
  transform: translateY(0);
  opacity: 1;
}

.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #ffffff;
  border: 0;
  border-radius: 300px;
  cursor: pointer;
}

.site-header__menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgb(0, 0, 2);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 20px 0;
  }
  .site-header__nav,
  .site-header__cta {
    display: none;
  }
  .site-header__menu-toggle {
    display: inline-flex;
  }
}

/* ---------- MOBILE: hide mockup sidebar/side, keep prompt only ---------- */
@media (max-width: 768px) {
  .oseoo-app {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    padding: 14px;
    border-radius: 14px;
  }
  .oseoo-app__sidebar,
  .oseoo-app__side {
    display: none;
  }
  .oseoo-app__main {
    padding: 0;
  }
  .hero__prompt-card {
    min-height: 280px;
  }
  .hero {
    padding: 110px 16px 28px;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 180px 24px 48px;
  background-color: rgb(0, 0, 0);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: rgb(0, 0, 0);
  background-image:
    linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 6, 30) 50%, rgb(0, 0, 0) 100%);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  background: radial-gradient(
    circle,
    rgba(0, 119, 255, 0.65) 0%,
    rgba(0, 111, 255, 0.35) 28%,
    rgba(35, 64, 255, 0.15) 50%,
    transparent 70%
  );
  filter: blur(70px);
  transform-origin: center;
  animation: heroGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.hero__bg::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(58, 167, 255, 0.55) 0%,
    rgba(0, 111, 255, 0.25) 35%,
    transparent 70%
  );
  filter: blur(60px);
  transform-origin: center;
  animation: heroGlowPulse 4.5s ease-in-out infinite;
  animation-delay: -2s;
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

@keyframes heroGlowPulse {
  0%, 100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.85);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg::before,
  .hero__bg::after {
    animation: none;
  }
}

@media (max-width: 768px) {
  .hero__bg {
    filter: blur(50px);
  }
}

.hero__bg-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 45%;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 2) 75%);
  z-index: 2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1316px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  will-change: transform;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
  color: #ffffff;
  background: rgb(12, 12, 15);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 300px;
  mix-blend-mode: screen;
}

.hero__pill-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.hero__title {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -1.08px;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafbfd 28%,
    #e9ebee 50%,
    #c5c9d1 75%,
    #9da3ad 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22))
          drop-shadow(0 0 28px rgba(180, 195, 220, 0.22));
  padding-bottom: 3px;
  position: relative;
  z-index: 0;
}

.hero__title-rotator {
  display: inline-grid;
  vertical-align: baseline;
  text-align: center;
}

.hero__title-rotator-word {
  grid-area: 1 / 1;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: rotateGradientWord 9s infinite ease-in-out;
  white-space: nowrap;
}

.hero__title-rotator-word--1,
.hero__title-rotator-word--2,
.hero__title-rotator-word--3 {
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafbfd 28%,
    #dadde4 62%,
    #aeb3bd 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22))
          drop-shadow(0 0 28px rgba(180, 195, 220, 0.22));
}

.hero__title-rotator-word--1 { animation-delay: 0s; }
.hero__title-rotator-word--2 { animation-delay: 3s; }
.hero__title-rotator-word--3 { animation-delay: 6s; }

@keyframes rotateGradientWord {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px) drop-shadow(0 0 30px rgba(255, 255, 255, 0));
  }
  6%, 28% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  33%, 100% {
    opacity: 0;
    transform: translateY(-14px);
    filter: blur(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-rotator-word {
    animation: none;
  }
  .hero__title-rotator-word--1 { opacity: 1; }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  position: relative;
  z-index: 5;
}

.hero__pill {
  position: relative;
  z-index: 5;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 980px;
  background: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 1px solid var(--btn-white-border);
  box-shadow: var(--btn-white-shadow);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero__cta-primary:hover {
  transform: translateY(-1px) scale(1.02);
  background: var(--btn-white-bg-hover);
  border-color: var(--btn-white-border-hover);
  box-shadow: var(--btn-white-shadow-hover);
}

.hero__price {
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.6);
  letter-spacing: -0.1px;
}

/* ---------- HERO MOCKUP ---------- */
.hero__mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 16px auto 0;
  perspective: 1000px;
}

.hero__mockup {
  display: none;
}

/* Recreated OSEOO app mockup */
.oseoo-app {
  position: relative;
  width: 100%;
  aspect-ratio: 1902 / 1014;
  display: grid;
  grid-template-columns: 16% 1fr 22%;
  gap: 0;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0a0c12 0%, #050608 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  color: #fafafa;
  overflow: hidden;
}

.oseoo-app__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 12px 8px 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.oseoo-app__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.oseoo-app__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(180deg, #5a78ff 0%, #2340ff 100%);
  color: #fff;
}

.oseoo-app__brand-logo {
  display: block;
  width: 90px;
  height: auto;
  /* Le SVG a un viewBox carré mais le wordmark est en bande horizontale
     au milieu, donc on contraint la largeur (et non la hauteur) pour
     laisser preserveAspectRatio="meet" rendre le mot à sa pleine taille. */
}

/* ---------- STEPS / HOW WE WORK ---------- */
.steps {
  background: #000000;
  padding: 24px 24px 32px;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  position: relative;
  z-index: 1;
}

.steps__inner {
  max-width: 1316px;
  margin: 0 auto;
}

/* Rounded container — dark center with blue glow on the side edges */
.steps__container {
  position: relative;
  border-radius: 28px;
  padding: 48px 40px 90px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 90% at 0% 50%, rgba(35, 64, 255, 0.55) 0%, rgba(35, 64, 255, 0) 60%),
    radial-gradient(ellipse 55% 90% at 100% 50%, rgba(35, 64, 255, 0.55) 0%, rgba(35, 64, 255, 0) 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(35, 64, 255, 0.35) 0%, rgba(35, 64, 255, 0) 65%),
    linear-gradient(180deg, #08090d 0%, #04060a 100%);
}

.steps__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.steps__title {
  margin: 14px auto 0;
  max-width: 780px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.96px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 30%, #d8dbe2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.steps__stack {
  margin-top: 72px;
  text-align: left;
}

@property --steps-card-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.steps__card {
  --steps-card-angle: 0deg;
  position: relative;
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 32px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(rgb(11, 14, 22), rgb(11, 14, 22)) padding-box,
    conic-gradient(
      from var(--steps-card-angle),
      rgba(16, 90, 201, 0) 0deg,
      rgba(16, 90, 201, 0) 40deg,
      rgba(16, 90, 201, 1) 78deg,
      rgba(140, 190, 255, 1) 96deg,
      rgba(16, 90, 201, 1) 114deg,
      rgba(16, 90, 201, 0) 152deg,
      rgba(16, 90, 201, 0) 360deg
    ) border-box;
  border: 1.5px solid transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  animation: stepsCardBorderSpin 6s linear infinite;
  will-change: transform;
}

@keyframes stepsCardBorderSpin {
  to { --steps-card-angle: 360deg; }
}

.steps__card:nth-child(1) { animation-delay: 0s; }
.steps__card:nth-child(2) { animation-delay: -1.5s; }
.steps__card:nth-child(3) { animation-delay: -3s; }
.steps__card:nth-child(4) { animation-delay: -4.5s; }

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

.steps__card:last-child {
  margin-bottom: 0;
}

.steps__card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.steps__mockup {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0c12;
}

/* Variante "video" : le mockup contient une vidéo MP4 qui remplit toute la card */
.steps__mockup--video {
  padding: 0 !important;
  background: #f6f6f7;
}
.steps__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Animated blue glow that travels around each card border (matches the
   ai-kw-generator-border-animation utility from the Nexsas template) */
.steps__meta {
  padding: 22px 26px 28px;
}

.steps__num {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 233, 197, 0.9);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.steps__name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: #ffffff;
  line-height: 1.25em;
}

.steps__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: -0.28px;
  color: rgba(245, 245, 248, 0.65);
}

/* Mockup 1 — Brief / Cahier des charges */
.steps__mockup--brief {
  background: linear-gradient(160deg, #1a2030 0%, #0c1018 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-b__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 6px 10px;
}
.mock-b__dots {
  display: flex;
  gap: 4px;
}
.mock-b__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.mock-b__url {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.mock-b__doc {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-b__doc-title {
  height: 10px;
  width: 38%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}
.mock-b__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-b__field--checks {
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.mock-b__label {
  height: 5px;
  width: 28%;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 2px;
}
.mock-b__label--mid { width: 42%; }
.mock-b__input {
  height: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}
.mock-b__input--filled {
  background: rgba(35, 64, 255, 0.18);
  border-color: rgba(35, 64, 255, 0.4);
}
.mock-b__check {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}
.mock-b__check--on {
  background: rgb(35, 64, 255);
  border-color: rgb(35, 64, 255);
}
.mock-b__cta {
  margin-top: auto;
  align-self: flex-start;
  height: 20px;
  width: 80px;
  background: rgb(35, 64, 255);
  border-radius: 999px;
}

/* ===================================================================
   Mockup 2 — Design / Maquette (éditeur visuel "vivant")
   Palette site : plum #1d1726, cream rgba(255,233,197), gold #c89866,
                  brand blue rgb(35, 64, 255)
   ================================================================ */
.steps__mockup--design {
  background: linear-gradient(160deg, #1d1726 0%, #100b16 100%);
  padding: 14px;
  display: flex;
  gap: 12px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  position: relative;
  overflow: hidden;
}

/* ----- Sidebar : panneau de calques + palette ----- */
.mock-d__sidebar {
  width: 22%;
  min-width: 90px;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 8px 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}
.mock-d__head-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 233, 197, 0.45);
  padding: 0 4px;
  margin-bottom: 2px;
}
.mock-d__head-lbl--mt { margin-top: 8px; }

.mock-d__layer {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 8px;
  border-radius: 5px;
  background: transparent;
  position: relative;
  transition: color 0.3s ease;
}
.mock-d__layer::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  margin-right: 7px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.mock-d__layer--active {
  background: linear-gradient(180deg, rgba(35, 64, 255, 0.22) 0%, rgba(35, 64, 255, 0.10) 100%);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(35, 64, 255, 0.45);
  animation: mockDLayerGlow 6s ease-in-out infinite;
}
.mock-d__layer--active::before {
  background: rgb(35, 64, 255);
  box-shadow: 0 0 8px rgba(35, 64, 255, 0.85);
}
@keyframes mockDLayerGlow {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(35, 64, 255, 0.45), 0 0 0 0 rgba(35, 64, 255, 0.45); }
  50%      { box-shadow: inset 0 0 0 1px rgba(35, 64, 255, 0.7), 0 0 0 4px rgba(35, 64, 255, 0); }
}

.mock-d__swatches {
  display: flex;
  gap: 5px;
  padding: 0 4px;
}
.mock-d__swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.mock-d__swatch--1 { background: #0a0a0c; }
.mock-d__swatch--2 { background: #ffffff; }
.mock-d__swatch--3 { background: rgba(255, 233, 197, 0.95); }
.mock-d__swatch--4 {
  background: rgb(35, 64, 255);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.7), 0 0 10px rgba(35, 64, 255, 0.7);
}

/* ----- Canvas : preview du site en construction ----- */
.mock-d__canvas {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px;
  display: flex;
}
.mock-d__frame {
  flex: 1;
  background: linear-gradient(160deg, #ffffff 0%, #f6f6f7 100%);
  border-radius: 6px;
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.mock-d__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(35, 64, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(255, 233, 197, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

/* Nav bar */
.mock-d__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.mock-d__logo {
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0c;
  letter-spacing: -0.2px;
  margin-right: auto;
}
.mock-d__logo::before {
  content: "★";
  margin-right: 4px;
  color: rgb(35, 64, 255);
}
.mock-d__nav-link {
  font-size: 9px;
  font-weight: 500;
  color: rgba(10, 10, 12, 0.55);
  letter-spacing: -0.1px;
}

/* Hero zone */
.mock-d__hero {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}
.mock-d__h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.7px;
  line-height: 1.05;
  color: #0a0a0c;
  display: flex;
  align-items: baseline;
  min-height: 1.05em;
}
.mock-d__sub {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: rgba(10, 10, 12, 0.6);
  min-height: 1.4em;
}
.mock-d__type {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
  clip-path: inset(0 100% 0 0);
}
.mock-d__type--h1 {
  animation: mockDTypeH1 6s steps(8, end) infinite;
}
.mock-d__type--sub {
  animation: mockDTypeSub 6s steps(42, end) infinite;
}
@keyframes mockDTypeH1 {
  0%, 3%   { clip-path: inset(0 100% 0 0); }
  16%      { clip-path: inset(0 0 0 0); }
  94%      { clip-path: inset(0 0 0 0); }
  100%     { clip-path: inset(0 100% 0 0); }
}
@keyframes mockDTypeSub {
  0%, 18%  { clip-path: inset(0 100% 0 0); }
  36%      { clip-path: inset(0 0 0 0); }
  94%      { clip-path: inset(0 0 0 0); }
  100%     { clip-path: inset(0 100% 0 0); }
}
.mock-d__caret {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: rgb(35, 64, 255);
  margin-left: 3px;
  transform: translateY(2px);
  animation: mockDCaret 0.9s steps(1, end) infinite;
}
@keyframes mockDCaret {
  0%, 50%  { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.mock-d__cta {
  align-self: flex-start;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: rgb(35, 64, 255);
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  animation: mockDCta 6s ease-out infinite;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(35, 64, 255, 0.3);
}
@keyframes mockDCta {
  0%, 30%  { opacity: 0; transform: translateY(8px) scale(0.92); }
  38%      { opacity: 1; transform: translateY(-2px) scale(1.08); }
  44%      { transform: translateY(0) scale(1); }
  94%      { opacity: 1; transform: translateY(0) scale(1); }
  100%     { opacity: 0; transform: translateY(8px) scale(0.92); }
}

/* Cards bottom */
.mock-d__cards {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  position: relative;
  z-index: 1;
}
.mock-d__c {
  background: rgba(10, 10, 12, 0.04);
  border: 1px solid rgba(10, 10, 12, 0.08);
  border-radius: 5px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  opacity: 0;
  transform: translateY(8px) scale(0.94);
  animation: mockDCard 6s ease-out infinite;
}
.mock-d__c--1 { animation-delay: 0s; }
.mock-d__c--2 { animation-delay: 0.18s; }
.mock-d__c--3 { animation-delay: 0.36s; }
.mock-d__c-num {
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0c;
  letter-spacing: -0.3px;
  line-height: 1;
}
.mock-d__c-lbl {
  font-size: 9px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: rgba(10, 10, 12, 0.5);
  line-height: 1;
}
@keyframes mockDCard {
  0%, 36%  { opacity: 0; transform: translateY(10px) scale(0.92); }
  46%      { opacity: 1; transform: translateY(-2px) scale(1.04); }
  52%      { transform: translateY(0) scale(1); }
  94%      { opacity: 1; transform: translateY(0) scale(1); }
  100%     { opacity: 0; transform: translateY(10px) scale(0.92); }
}

/* Handles : sélection bleue type Figma autour du hero */
.mock-d__handles {
  position: absolute;
  inset: 7px;
  border: 1.5px dashed rgba(35, 64, 255, 0.55);
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  animation: mockDHandles 6s ease-in-out infinite;
}
.mock-d__handles::before,
.mock-d__handles::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgb(35, 64, 255);
  border: 2px solid #1d1726;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(35, 64, 255, 0.5);
  animation: mockDHandleDot 2.4s ease-in-out infinite;
}
.mock-d__handles::before { top: -4px; left: -4px; }
.mock-d__handles::after  { bottom: -4px; right: -4px; animation-delay: 1.2s; }
@keyframes mockDHandles {
  0%, 12%  { opacity: 0; }
  22%      { opacity: 1; }
  92%      { opacity: 1; }
  100%     { opacity: 0; }
}
@keyframes mockDHandleDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(35, 64, 255, 0.55); }
  50%      { box-shadow: 0 0 0 5px rgba(35, 64, 255, 0); }
}

/* Curseur "Vous êtes là" */
.mock-d__cursor {
  position: absolute;
  top: 18%;
  left: 22%;
  pointer-events: none;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.45));
  z-index: 4;
  animation: mockDCursor 6s ease-in-out infinite;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.mock-d__cursor-tag {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgb(35, 64, 255);
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(35, 64, 255, 0.4);
}
@keyframes mockDCursor {
  0%   { transform: translate(-12%, -10%); }
  18%  { transform: translate(40%, 30%); }
  35%  { transform: translate(120%, 60%); }
  55%  { transform: translate(180%, 200%); }
  72%  { transform: translate(60%, 280%); }
  88%  { transform: translate(-10%, 200%); }
  100% { transform: translate(-12%, -10%); }
}

/* ===================================================================
   Mockup 3 — Live / Mise en ligne (site déployé, vivant)
   Palette site : sombre #0a0c12 / brand blue rgb(35, 64, 255) /
                  cream rgba(255, 233, 197, ...) / page #ffffff/#f6f6f7
   ================================================================ */
.steps__mockup--live {
  background: linear-gradient(160deg, #0e1a2e 0%, #060a14 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

/* ----- Browser bar ----- */
.mock-v__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 7px 12px;
}
.mock-v__dots { display: flex; gap: 5px; }
.mock-v__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mock-v__dots span:nth-child(1) { background: #ff5f57; }
.mock-v__dots span:nth-child(2) { background: #febc2e; }
.mock-v__dots span:nth-child(3) { background: #28c840; }

.mock-v__lock {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 8px;
  border-radius: 1.5px;
  background: rgba(255, 233, 197, 0.85);
  margin-top: 2px;
}
.mock-v__lock::before {
  content: "";
  position: absolute;
  top: -3.5px;
  left: 1.5px;
  width: 6px;
  height: 4px;
  border: 1.5px solid rgba(255, 233, 197, 0.85);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}

.mock-v__url {
  flex: 1;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.mock-v__url-type {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: mockVType 6s steps(9, end) infinite;
}
@keyframes mockVType {
  0%, 4%   { clip-path: inset(0 100% 0 0); }
  18%      { clip-path: inset(0 0 0 0); }
  94%      { clip-path: inset(0 0 0 0); }
  100%     { clip-path: inset(0 100% 0 0); }
}
.mock-v__caret {
  display: inline-block;
  width: 1.5px;
  height: 0.95em;
  background: rgb(35, 64, 255);
  margin-left: 2px;
  animation: mockVCaret 0.9s steps(1, end) infinite;
}
@keyframes mockVCaret {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.mock-v__live {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 233, 197, 0.95);
  background: rgba(255, 233, 197, 0.1);
  border: 1px solid rgba(255, 233, 197, 0.4);
  padding: 3px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  animation: mockVLiveBadge 6s ease-out infinite;
}
.mock-v__live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 233, 197, 0.95);
  box-shadow: 0 0 6px rgba(255, 233, 197, 0.85);
  animation: mockVLivePulse 1.6s ease-in-out infinite;
}
@keyframes mockVLiveBadge {
  0%, 18%  { opacity: 0; transform: scale(0.85); }
  28%      { opacity: 1; transform: scale(1.08); }
  35%      { transform: scale(1); }
  94%      { opacity: 1; transform: scale(1); }
  100%     { opacity: 0; transform: scale(0.85); }
}
@keyframes mockVLivePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.55; }
}

/* ----- Page rendue ----- */
.mock-v__page {
  flex: 1;
  background: linear-gradient(160deg, #ffffff 0%, #f6f6f7 100%);
  border-radius: 10px;
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.mock-v__page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(35, 64, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(255, 233, 197, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.mock-v__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.mock-v__logo {
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0c;
  letter-spacing: -0.2px;
  margin-right: auto;
}
.mock-v__logo::before {
  content: "★";
  margin-right: 4px;
  color: rgb(35, 64, 255);
}
.mock-v__nav-link {
  font-size: 9px;
  font-weight: 500;
  color: rgba(10, 10, 12, 0.55);
}

.mock-v__h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.05;
  color: #0a0a0c;
  position: relative;
  z-index: 1;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(8px);
  animation: mockVRise 6s ease-out infinite;
  animation-delay: 0.4s;
}
.mock-v__sub {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: rgba(10, 10, 12, 0.6);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  animation: mockVRise 6s ease-out infinite;
  animation-delay: 0.6s;
  max-width: 60%;
}
@keyframes mockVRise {
  0%, 18% { opacity: 0; transform: translateY(8px); }
  28%     { opacity: 1; transform: translateY(0); }
  94%     { opacity: 1; transform: translateY(0); }
  100%    { opacity: 0; transform: translateY(8px); }
}

.mock-v__cta {
  align-self: flex-start;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: rgb(35, 64, 255);
  padding: 8px 16px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(35, 64, 255, 0.32);
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  animation: mockVCta 6s ease-out infinite;
}
@keyframes mockVCta {
  0%, 28%  { opacity: 0; transform: translateY(8px) scale(0.92); }
  36%      { opacity: 1; transform: translateY(-2px) scale(1.08); }
  42%      { transform: translateY(0) scale(1); }
  94%      { opacity: 1; transform: translateY(0) scale(1); }
  100%     { opacity: 0; transform: translateY(8px) scale(0.92); }
}

/* ----- Lighthouse-style scores (Perf / Mobile / SEO) ----- */
.mock-v__perf {
  position: absolute;
  bottom: 14px;
  right: 16px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.mock-v__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  animation: mockVScoreFade 6s ease-out infinite;
}
.mock-v__score--perf { animation-delay: 0.85s; }
.mock-v__score--mob  { animation-delay: 1.0s; }
.mock-v__score--seo  { animation-delay: 1.15s; }
@keyframes mockVScoreFade {
  0%, 38%  { opacity: 0; transform: translateY(8px); }
  48%      { opacity: 1; transform: translateY(0); }
  94%      { opacity: 1; transform: translateY(0); }
  100%     { opacity: 0; transform: translateY(8px); }
}

.mock-v__score-disk {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-v__score-disk svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.mock-v__ring-bg {
  fill: rgba(10, 10, 12, 0.04);
  stroke: rgba(10, 10, 12, 0.1);
  stroke-width: 2.6;
}
.mock-v__ring-fg {
  fill: none;
  stroke: rgb(35, 64, 255);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: mockVRing 6s ease-out infinite;
}
.mock-v__score--perf .mock-v__ring-fg { animation-delay: 1.0s; --t: 1; }
.mock-v__score--mob  .mock-v__ring-fg { animation-delay: 1.15s; --t: 0; }
.mock-v__score--seo  .mock-v__ring-fg { animation-delay: 1.3s; --t: 2; }
@keyframes mockVRing {
  0%, 38%  { stroke-dashoffset: 100; }
  56%      { stroke-dashoffset: var(--t, 1); }
  94%      { stroke-dashoffset: var(--t, 1); }
  100%     { stroke-dashoffset: 100; }
}

.mock-v__score-num {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0c;
  line-height: 1;
  letter-spacing: -0.3px;
}
.mock-v__score-lbl {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 12, 0.55);
  line-height: 1;
}

/* Mockup 4 — V2: animated GIF (Mickey sawing — playful "iteration" cue) */
.steps__mockup--v2 {
  background: linear-gradient(160deg, #14112a 0%, #08081c 100%);
  position: relative;
  overflow: hidden;
}
.mock-v2__gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.05) brightness(0.95);
}
.steps__mockup--v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 90% at 50% 50%,
    transparent 50%,
    rgba(35, 64, 255, 0.25) 100%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

@media (max-width: 720px) {
  .steps {
    padding: 24px 20px 60px;
  }
  .steps__container {
    padding: 56px 20px 70px;
  }
  .steps::before {
    opacity: 1;
    filter: blur(20px);
    transform: scale(1.5);
  }
  .steps__title {
    font-size: 28px;
  }
  .steps__stack {
    margin-top: 40px;
  }
  .steps__card {
    max-width: 100%;
    margin-bottom: 22px;
  }
  .steps__name {
    font-size: 18px;
  }
  .steps__meta {
    padding: 18px 20px 22px;
  }
}

/* ---------- COMMITMENTS ---------- */
.commitments {
  background: #000000;
  padding: 120px 24px 64px;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Halo at the bottom of Commitments removed — the visual loop is now closed
   by the halo at the bottom of the Steps section (the new last dark block). */

/* Soft top fade so the section blends with the intro-pitch above */
.commitments::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 22%;
  background-image: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0));
  z-index: 2;
  pointer-events: none;
}

.commitments__inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.commitments__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.commitments__title {
  margin: 14px auto 0;
  max-width: 780px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.96px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 30%, #d8dbe2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.commitments__grid {
  margin-top: 90px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 110px;
  flex-wrap: wrap;
}

.commitments__card {
  position: relative;
  flex: 0 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.commitments__card--1 {
  transform: rotate(-8.6deg) translateY(-30px);
}

.commitments__card--2 {
  transform: rotate(3.7deg) translateY(40px);
}

.commitments__card--3 {
  transform: rotate(-6.4deg) translateY(-10px);
}

.commitments__icon-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.commitments__icon {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Recolor the multi-hued 3D PNG icons toward the site's royal blue
     (rgb(35, 64, 255)) while preserving 3D shading and highlights. */
  filter:
    brightness(0.55)
    grayscale(1)
    sepia(1)
    saturate(7)
    hue-rotate(200deg)
    brightness(1.2)
    contrast(1.05);
}

.commitments__icon-glow {
  display: none;
}

.commitments__card-title {
  margin: 28px 0 0;
  transform: rotate(0deg);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: -0.4px;
  color: #ffffff;
  line-height: 1.2;
}

.commitments__card-text {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: -0.32px;
  color: rgba(245, 245, 248, 0.7);
  max-width: 280px;
}

@media (max-width: 1024px) {
  .commitments__grid {
    gap: 60px;
  }
  .commitments__icon-wrap {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 768px) {
  .commitments {
    padding: 64px 20px 48px;
  }
  .commitments::after {
    height: 12%;
  }
  .commitments__title {
    font-size: 28px;
  }
  .commitments__grid {
    margin-top: 48px;
    gap: 56px;
  }
  .commitments__card {
    flex-basis: 100%;
  }
  .commitments__card--1,
  .commitments__card--2,
  .commitments__card--3 {
    transform: none;
  }
  .commitments__icon-wrap {
    width: 150px;
    height: 150px;
  }
  .commitments__icon-glow {
    filter: blur(40px);
    opacity: 0.7;
  }
  .commitments__card-title {
    font-size: 19px;
    margin-top: 18px;
  }
  .commitments__card-text {
    font-size: 14px;
  }
}

/* ---------- WORKS / NOS RÉALISATIONS ---------- */
.works {
  background: rgb(0, 0, 2);
  padding: 100px 24px 120px;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.32px;
  position: relative;
  z-index: 1;
}

.works__inner {
  max-width: 1316px;
  margin: 0 auto;
}

.works__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.works__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgb(12, 12, 15);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 300px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
  color: #ffffff;
}

.works__title {
  margin: 12px 0 0;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  line-height: 1.15em;
  color: #ffffff;
}

.works__lede {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.32px;
  color: #B6B6B7;
}

/* Carousel — controllable auto-scroll */
.works__marquee {
  position: relative;
  margin-top: 64px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.works__marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 24px;
  will-change: scroll-position;
}

.works__card {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.works__card:hover {
  transform: translateY(-6px) scale(1.02);
}

/* Control buttons */
.works__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.works__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(12, 12, 15);
  border: 1px solid #242427;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.works__btn:hover {
  background: #242427;
  border-color: rgba(0, 119, 255, 0.5);
  transform: translateY(-2px);
}

.works__btn:active {
  transform: translateY(0);
}

.works__btn svg {
  display: block;
}

/* Browser frame */
.works__browser {
  position: relative;
  background: rgb(8, 8, 12);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 48px -16px rgba(0, 0, 0, 0.6),
    0 8px 24px -8px rgba(0, 0, 0, 0.5);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.works__card:hover .works__browser {
  border-color: rgba(0, 119, 255, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 0 0 1px rgba(0, 119, 255, 0.15),
    0 32px 64px -16px rgba(0, 119, 255, 0.3),
    0 12px 32px -8px rgba(0, 0, 0, 0.5);
}

.works__browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgb(12, 12, 15);
  border-bottom: 1px solid rgb(36, 36, 39);
  position: relative;
  z-index: 2;
}

.works__browser-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.works__browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.works__browser-dots span:nth-child(1) { background: #ff5f57; }
.works__browser-dots span:nth-child(2) { background: #febc2e; }
.works__browser-dots span:nth-child(3) { background: #28c840; }

.works__browser-url {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 6px 14px;
  max-width: 280px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.works__browser-shot {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgb(8, 12, 24);
}

.works__browser-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.works__card:hover .works__browser-shot img {
  transform: scale(1.04);
}

/* Meta */
.works__meta {
  padding: 24px 4px 0;
  text-align: left;
}

.works__name {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 1.25em;
  color: #ffffff;
}

.works__desc {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.32px;
  color: #B6B6B7;
}

/* CTA */
.works__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.works__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 1px solid var(--btn-white-border);
  box-shadow: var(--btn-white-shadow);
  border-radius: 300px;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.works__cta:hover {
  background: var(--btn-white-bg-hover);
  border-color: var(--btn-white-border-hover);
  box-shadow: var(--btn-white-shadow-hover);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .works {
    padding: 80px 18px;
  }
  .works__title {
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 33.45px;
  }
  .works__marquee {
    margin-top: 40px;
  }
  .works__marquee-track {
    gap: 20px;
    padding: 16px;
    animation-duration: 60s;
  }
  .works__card {
    flex: 0 0 300px;
  }
  .works__name {
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 26px;
  }
  .works__desc {
    font-size: 14px;
    line-height: 21px;
  }
  .works__cta-wrap {
    margin-top: 40px;
  }
  .works__cta {
    padding: 12px 20px;
    line-height: 17.5px;
  }
  .works__browser-url {
    max-width: 200px;
    font-size: 12px;
  }
}

/* ---------- MARQUEE (advantages) ---------- */
.marquee {
  background: rgb(0, 0, 2);
  padding: 36px 0 56px;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.marquee__inner {
  max-width: 1316px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.marquee__label {
  margin: 0;
  font-size: 18px;
  line-height: 22.5px;
  font-weight: 500;
  letter-spacing: -0.32px;
  color: #ffffff;
}

.marquee__viewport {
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

.marquee__viewport:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 248, 0.9);
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.marquee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(180, 200, 255, 0.95);
  flex-shrink: 0;
}

.marquee__text {
  display: inline-block;
}

@media (max-width: 768px) {
  .marquee {
    padding: 24px 0 36px;
  }
  .marquee__inner {
    padding: 0 18px;
  }
  .marquee__label {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.28px;
  }
  .marquee__viewport {
    margin-top: 20px;
  }
  .marquee__track {
    gap: 24px;
    animation-duration: 28s;
  }
  .marquee__item {
    padding: 9px 15px;
    font-size: 14.5px;
    gap: 8px;
  }
  .marquee__icon {
    width: 18px;
    height: 18px;
  }
  .marquee__icon svg {
    width: 15px;
    height: 15px;
  }
}

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

/* ---------- INTRO PITCH ---------- */
.intro-pitch {
  background: rgb(0, 0, 2);
  padding: 24px 24px 80px;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  position: relative;
  z-index: 1;
}

.intro-pitch__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.intro-pitch__text {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(245, 245, 248, 0.92);
}

.intro-pitch__cta-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  isolation: isolate;
}

.hero__cta-row {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .hero__cta-row {
    margin-top: 22px;
  }
  .hero__cta-row .intro-pitch__btn {
    width: auto;
  }
}

.intro-pitch__cta-row::before {
  content: "";
  position: absolute;
  inset: -120% -20% -80%;
  background:
    radial-gradient(
      ellipse 60% 80% at 30% 50%,
      rgba(120, 160, 255, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 70% at 75% 50%,
      rgba(255, 220, 200, 0.12) 0%,
      transparent 60%
    );
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

.intro-pitch__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 300px;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.3px;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  overflow: hidden;
  transition: background-color 0.3s ease,
              border-color 0.3s ease,
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.intro-pitch__btn-track {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  height: 20px;
  overflow: hidden;
  line-height: 20px;
}

.intro-pitch__btn-text {
  display: inline-flex;
  align-items: center;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.intro-pitch__btn-text--hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(24px);
  opacity: 0;
}

.intro-pitch__btn:hover .intro-pitch__btn-text {
  transform: translateY(-24px);
  opacity: 0;
}

.intro-pitch__btn:hover .intro-pitch__btn-text--hover {
  transform: translateY(0);
  opacity: 1;
}

.intro-pitch__btn--primary {
  background: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 1px solid var(--btn-white-border);
  box-shadow: var(--btn-white-shadow);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-pitch__btn--primary:hover {
  transform: translateY(-5px);
  background: var(--btn-white-bg-hover);
  border-color: var(--btn-white-border-hover);
  box-shadow: var(--btn-white-shadow-hover);
}

.intro-pitch__btn--primary:active {
  transform: translateY(-1px);
  background: var(--btn-white-bg-active);
}

@property --btn-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.intro-pitch__btn--ghost {
  --btn-angle: 0deg;
  color: #ffffff;
  border: 1.5px solid transparent;
  background:
    radial-gradient(
      120% 180% at 4% 8%,
      rgb(37, 42, 50) 0%,
      rgb(17, 20, 29) 75%
    ) padding-box,
    conic-gradient(
      from var(--btn-angle),
      rgba(16, 90, 201, 0) 0deg,
      rgba(16, 90, 201, 0) 40deg,
      rgba(16, 90, 201, 1) 78deg,
      rgba(140, 190, 255, 1) 96deg,
      rgba(16, 90, 201, 1) 114deg,
      rgba(16, 90, 201, 0) 152deg,
      rgba(16, 90, 201, 0) 360deg
    ) border-box;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(16, 90, 201, 0.18);
  animation: introBtnBorderSpin 3.5s linear infinite;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease,
              animation-duration 0.3s ease;
}

@keyframes introBtnBorderSpin {
  to { --btn-angle: 360deg; }
}

.intro-pitch__btn--ghost:hover {
  transform: translateY(-5px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(16, 90, 201, 0.32);
  animation-duration: 1.6s;
}

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

@media (max-width: 768px) {
  .intro-pitch {
    padding: 12px 20px 56px;
  }
  .intro-pitch__inner {
    gap: 22px;
  }
  .intro-pitch__text {
    font-size: 16px;
    line-height: 1.5;
  }
  .intro-pitch__cta-row {
    flex-direction: column;
    align-items: center;       /* boutons centrés, pas étirés */
    width: 100%;
    gap: 10px;
  }
  /* Sur mobile, TOUS les boutons gardent une largeur AUTO (compacte).
     Aucun bouton ne s'étire en pleine largeur, même empilé en colonne. */
  .intro-pitch__btn {
    width: auto;
    padding: 11px 26px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.3px;
  }
  .intro-pitch__btn-track,
  .intro-pitch__btn-text {
    height: 20px;
    line-height: 20px;
  }
  .intro-pitch__btn-text--hover {
    transform: translateY(20px);
  }
  .intro-pitch__btn:hover .intro-pitch__btn-text {
    transform: translateY(-20px);
  }
}

.oseoo-app__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.oseoo-app__nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.55);
  letter-spacing: -0.1px;
  cursor: default;
}

.oseoo-app__nav-item.is-active {
  background: rgba(255, 255, 255, 0.06);
  color: #fafafa;
}

.oseoo-app__main {
  padding: 0 18px;
  display: flex;
}

.oseoo-app__side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 4px 8px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.oseoo-app__side-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(250, 250, 250, 0.85);
  letter-spacing: -0.1px;
  margin-top: 6px;
}

.oseoo-app__side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oseoo-app__side-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.oseoo-app__side-thumb {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.oseoo-app__side-list li > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 10px;
  color: #fafafa;
}

.oseoo-app__side-list li strong {
  font-weight: 600;
  letter-spacing: -0.1px;
}

.oseoo-app__side-list li em {
  font-style: normal;
  font-size: 9px;
  color: rgba(250, 250, 250, 0.5);
  letter-spacing: 0;
}

.oseoo-app__side-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  color: rgba(250, 250, 250, 0.6);
}

.oseoo-app__side-pill strong {
  color: #fafafa;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: -0.1px;
}

.oseoo-app__side-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oseoo-app__side-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.oseoo-app__side-feature-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: linear-gradient(180deg, #4f8cff 0%, #1f5fef 100%);
  color: #fff;
}

.oseoo-app__side-features li > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 10px;
}

.oseoo-app__side-features li strong {
  color: #fafafa;
  font-weight: 600;
  letter-spacing: -0.1px;
  font-size: 11px;
}

.oseoo-app__side-features li em {
  font-style: normal;
  font-size: 9px;
  color: rgba(250, 250, 250, 0.5);
}

.hero__prompt-eyebrow {
  font-size: 9px;
  font-weight: 500;
  color: rgba(126, 177, 255, 0.85);
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.hero__prompt-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-top: 6px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(206, 200, 255, 0.92) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__prompt-sub {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(250, 250, 250, 0.55);
  margin-top: 6px;
}

.hero__prompt-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid rgba(35, 64, 255, 0.6);
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    inset 0 -14px 60px rgba(35, 64, 255, 0.08),
    0 0 60px rgba(35, 64, 255, 0.25),
    0 10px 40px rgba(35, 64, 255, 0.2);
  padding: 18px 20px 16px;
  text-align: left;
  overflow: hidden;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  color: #fafafa;
}

.hero__prompt-card-bg {
  position: absolute;
  right: -30%;
  bottom: -60%;
  width: 80%;
  height: 140%;
  background: radial-gradient(
    ellipse 50% 50% at 50% 50%,
    rgba(35, 64, 255, 0.5) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__prompt-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #5a78ff 0%, #2340ff 100%);
  color: #fff;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero__prompt-text {
  flex: 1;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: rgba(250, 250, 250, 0.92);
  position: relative;
  z-index: 1;
  outline: none;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
  cursor: text;
}

.hero__prompt-text[contenteditable="true"] {
  caret-color: #cfe1ff;
}

.hero__prompt-typed {
  white-space: pre-wrap;
}

.hero__prompt-caret {
  display: inline-block;
  width: 2px;
  height: 17px;
  background: #cfe1ff;
  vertical-align: -3px;
  margin-left: 2px;
  animation: caretBlink 1s step-end infinite;
}

.hero__prompt-text[contenteditable="true"] .hero__prompt-caret {
  display: none;
}

@keyframes caretBlink {
  50% { opacity: 0; }
}

.hero__prompt-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.hero__prompt-hint {
  font-size: 12px;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.45);
  letter-spacing: 0.2px;
}

.hero__prompt-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 60px;
  background: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 1px solid var(--btn-white-border);
  box-shadow: var(--btn-white-shadow);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__prompt-submit:hover {
  background: var(--btn-white-bg-hover);
  border-color: var(--btn-white-border-hover);
  box-shadow: var(--btn-white-shadow-hover);
  transform: translateY(-2px);
}

.hero__prompt-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.hero__prompt-chip {
  font-size: 9px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(250, 250, 250, 0.65);
}

.hero__prompt-chip:first-child {
  background: rgba(56, 152, 236, 0.12);
  border-color: rgba(56, 152, 236, 0.4);
  color: #cfe1ff;
}

.hero__screen-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 26, 28, 0.08);
}

.hero__screen-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.hero__screen-nav {
  display: inline-flex;
  gap: 14px;
  font-size: 9px;
  color: rgba(26, 26, 28, 0.65);
  font-weight: 500;
}

.hero__screen-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: #1a1a1c;
  color: #fafafa;
  position: relative;
}

.hero__screen-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
}

.hero__screen-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  padding: 18px 0;
  flex: 1;
  align-items: center;
}

.hero__screen-eyebrow {
  font-size: 9px;
  font-weight: 500;
  color: rgba(26, 26, 28, 0.55);
  text-transform: lowercase;
  letter-spacing: 0.2px;
}

.hero__screen-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.6px;
  margin-top: 6px;
  color: #1a1a1c;
}

.hero__screen-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.hero__screen-btn-primary {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1a1a1c;
  color: #fafafa;
}

.hero__screen-btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 500;
  color: rgba(26, 26, 28, 0.7);
}

.hero__screen-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__screen-card {
  background: #ffffff;
  border: 1px solid rgba(26, 26, 28, 0.06);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.hero__screen-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.hero__screen-card-thumb--a {
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.6), transparent 60%),
    linear-gradient(135deg, #ffb88c 0%, #de6262 100%);
}

.hero__screen-card-thumb--b {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.5), transparent 60%),
    linear-gradient(135deg, #4f8cff 0%, #1f3a8a 100%);
}

.hero__screen-card-meta {
  display: flex;
  justify-content: space-between;
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 500;
  color: rgba(26, 26, 28, 0.55);
}

.hero__screen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(26, 26, 28, 0.08);
}

.hero__screen-stat-num {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}

.hero__screen-stat-num span {
  font-size: 11px;
  color: rgba(26, 26, 28, 0.5);
  margin-left: 1px;
}

.hero__screen-stat-label {
  font-size: 8px;
  font-weight: 500;
  color: rgba(26, 26, 28, 0.55);
  margin-top: 2px;
}

/* (legacy CSS macbook below kept temporarily — unused) */
.macbook {
  display: none;
}

.macbook__lid {
  position: relative;
  background: linear-gradient(180deg, #2a2c30 0%, #1a1c20 100%);
  border-radius: 18px;
  padding: 14px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.macbook__bezel {
  position: relative;
  background: #050505;
  border-radius: 8px;
  padding: 22px 6px 6px;
  overflow: hidden;
}

.macbook__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 16px;
  background: #050505;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 2;
}

.macbook__notch::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a1a1a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.macbook__display {
  position: relative;
  background: #0b0d12;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.macbook__browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(20, 22, 28, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.macbook__browser-dots {
  display: inline-flex;
  gap: 6px;
}

.macbook__browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.macbook__browser-dots span:nth-child(1) { background: #ff5f57; }
.macbook__browser-dots span:nth-child(2) { background: #febc2e; }
.macbook__browser-dots span:nth-child(3) { background: #28c840; }

.macbook__browser-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: rgba(250, 250, 250, 0.55);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: 6px;
  max-width: 240px;
  margin: 0 auto;
  letter-spacing: 0.2px;
}

.macbook__screen {
  position: relative;
  height: calc(100% - 40px);
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(79, 140, 255, 0.18) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, #0b0d12 0%, #06080c 100%);
  padding: 32px 40px;
  overflow: hidden;
}

.macbook__screen-glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(79, 140, 255, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.macbook__mock {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.macbook__mock-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: rgba(126, 177, 255, 0.85);
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.macbook__mock-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #fafafa;
  max-width: 70%;
  letter-spacing: -0.3px;
}

.macbook__mock-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.macbook__mock-meta span {
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(250, 250, 250, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.macbook__mock-grid {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.macbook__mock-card {
  padding: 14px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.macbook__mock-card-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #cfe1ff;
}

.macbook__mock-card-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.55);
  margin-top: 2px;
}

.macbook__base {
  position: relative;
  height: 14px;
  width: 108%;
  margin: 0 -4%;
  background: linear-gradient(180deg, #1f2125 0%, #303236 60%, #15171b 100%);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.5);
}

.macbook__hinge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22%;
  height: 5px;
  background: #0a0a0a;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.hero__visual-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background-image: linear-gradient(rgba(8, 8, 8, 0), rgb(8, 8, 8) 80%);
  z-index: 1;
  pointer-events: none;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__copy-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  width: 100%;
  padding-bottom: 70px;
  border-bottom: 1px solid #292929;
  text-align: center;
}

.hero__lede {
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: -0.32px;
  color: rgba(245, 245, 248, 0.72);
  margin: 22px auto 0;
  max-width: 560px;
  text-align: center;
}

.hero__answer {
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: -0.48px;
  color: rgba(245, 245, 248, 0.92);
  margin: 14px auto 0;
  max-width: 820px;
  text-align: center;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 34px;
  border-radius: 30px;
  background: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 1px solid var(--btn-white-border);
  box-shadow: var(--btn-white-shadow);
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.325s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background 0.45s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero__cta:hover {
  transform: scale(1.04);
  background: var(--btn-white-bg-hover);
  border-color: var(--btn-white-border-hover);
  box-shadow: var(--btn-white-shadow-hover);
}

@media (max-width: 768px) {
  body {
    font-size: 13px;
  }
  .hero {
    padding: 110px 16px 28px;
  }
  .hero__inner {
    padding-top: 0;
  }
  .hero__title {
    font-size: 36px;
    line-height: 1.115em;
    letter-spacing: -0.02em;
  }
  .hero__eyebrow {
    font-size: 11px;
    padding: 8px 14px;
  }
  .oseoo-app {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    padding: 14px;
    border-radius: 14px;
  }
  .oseoo-app__sidebar,
  .oseoo-app__side {
    display: none;
  }
  .oseoo-app__main {
    padding: 0;
  }
  .hero__prompt-card {
    min-height: 280px;
  }
  .hero__visual {
    width: 90%;
    margin-top: 22px;
  }
  .hero__lede {
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.5;
    padding: 0 8px;
  }
  .hero__cta {
    font-size: 14px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  position: relative;
  background: #000002;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  min-height: 100vh;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-color: rgb(0, 0, 0);
  background-image:
    linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 6, 30) 50%, rgb(0, 0, 0) 100%);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.contact-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  background: radial-gradient(
    circle,
    rgba(0, 119, 255, 0.65) 0%,
    rgba(0, 111, 255, 0.35) 28%,
    rgba(35, 64, 255, 0.15) 50%,
    transparent 70%
  );
  filter: blur(70px);
  transform-origin: center;
  animation: heroGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.contact-bg::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(58, 167, 255, 0.55) 0%,
    rgba(0, 111, 255, 0.25) 35%,
    transparent 70%
  );
  filter: blur(60px);
  transform-origin: center;
  animation: heroGlowPulse 4.5s ease-in-out infinite;
  animation-delay: -2s;
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .contact-bg {
    filter: blur(50px);
  }
}

/* Contact hero */
.contact-hero {
  position: relative;
  z-index: 1;
  padding: 160px 24px 60px;
}

.contact-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero__eyebrow {
  display: inline-block;
  padding: 12px 16px;
  background: rgb(12, 12, 15);
  border: 1px solid #242427;
  border-radius: 300px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: -0.24px;
  color: #ffffff;
}

.contact-hero__title {
  margin: 16px 0 0;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -1.08px;
  color: transparent;
  background-image: linear-gradient(180deg, #ffffff 0%, #fafbfd 28%, #e9ebee 50%, #c5c9d1 75%, #9da3ad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22));
}

.contact-hero__lede {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.32px;
  color: #B6B6B7;
}

/* Brief / Form section */
.brief {
  position: relative;
  z-index: 1;
  padding: 40px 24px 140px;
}

.brief__inner {
  max-width: 1316px;
  margin: 0 auto;
}

.brief__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  gap: 64px;
  align-items: start;
}

/* Form */
.brief__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(12, 12, 15, 0.7);
  border: 1px solid #242427;
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.brief__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brief__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: -0.28px;
  color: #ffffff;
}

.brief__input {
  width: 100%;
  background: rgba(0, 0, 2, 0.6);
  border: 1px solid #242427;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.32px;
  color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
}

.brief__input::placeholder {
  color: #B6B6B7;
  opacity: 0.65;
}

.brief__input:hover {
  border-color: #3D3D3F;
}

.brief__input:focus {
  outline: none;
  border-color: rgba(35, 64, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(35, 64, 255, 0.12);
  background: rgba(0, 0, 2, 0.85);
}

.brief__input--select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B6B6B7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.brief__input--textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5em;
}

.brief__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 32px;
  background-image: linear-gradient(180deg, #2340FF 0%, #1830D0 100%);
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.32px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 0 0 1px rgba(35, 64, 255, 0.4),
    0 12px 32px -8px rgba(35, 64, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-image 0.3s ease;
}

.brief__submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 0 0 1px rgba(35, 64, 255, 0.6),
    0 16px 40px -8px rgba(35, 64, 255, 0.6);
}

.brief__submit:active {
  transform: translateY(0);
}

.brief__legal {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.24px;
  color: #B6B6B7;
}

/* Conversation — centered iMessage bubbles directly on page */
.convo {
  position: relative;
  z-index: 1;
  padding: 40px 24px 48px;
}

.convo__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.convo__stream {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 16px;
  min-height: 0;
}

.convo__row {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.convo__row--bot {
  justify-content: flex-start;
}

.convo__row--user {
  justify-content: flex-end;
}

.convo__av {
  width: 41px;
  height: 41px;
  min-width: 41px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  background: #0C0C0F;
  border: 1px solid #242427;
  animation: convoAvIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.convo__av svg {
  width: 18px;
  height: 18px;
  display: block;
}

.convo__av-spacer {
  width: 41px;
  min-width: 41px;
  flex-shrink: 0;
}

@property --convo-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.convo__bubble {
  position: relative;
  max-width: 78%;
  padding: 1.5px;
  border-radius: 300px;
  --convo-angle: 0deg;
  background: conic-gradient(
    from var(--convo-angle),
    rgba(108, 180, 255, 0.95) 0deg,
    rgba(181, 140, 255, 0.95) 90deg,
    rgba(255, 157, 168, 0.95) 180deg,
    rgba(255, 184, 120, 0.95) 270deg,
    rgba(108, 180, 255, 0.95) 360deg
  );
  animation:
    convoBorderSpin 6s linear infinite,
    convoBubbleIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}

@keyframes convoBorderSpin {
  to { --convo-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .convo__bubble,
  .convo__input-bar {
    animation: none;
  }
}

/* user bubble uses the same gradient & padding as bot — only the row position differs */

.convo__bubble-inner {
  position: relative;
  background: rgb(16, 20, 27);
  border-radius: 300px;
  padding: 17px 26px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: #ffffff;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: hidden;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(16, 90, 201, 0.28);
}

.convo__bubble-inner::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -6%;
  width: 112%;
  height: 149%;
  background: radial-gradient(
    ellipse 35% 25% at 35% 30%,
    rgba(143, 176, 232, 0.18),
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.convo__bubble-inner > * {
  position: relative;
  z-index: 1;
}

@keyframes convoBubbleIn {
  from {
    opacity: 0;
    filter: blur(9px);
    transform: matrix(0.936, 0.378, -0.5, 0.866, -15, 70);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}

@keyframes convoAvIn {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

/* Typing indicator */
.convo__typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 18px 22px;
  min-width: 60px;
}

.convo__typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #B6B6B7;
  animation: convoDot 1.2s infinite ease-in-out;
}
.convo__typing span:nth-child(2) { animation-delay: 0.15s; }
.convo__typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes convoDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

/* Quick-reply choices */
.convo__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 78%;
}

.convo__choice {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #242427;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.convo__choice:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #3D3D3F;
  transform: translateY(-1px);
}

/* Recap */
.convo__recap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.convo__recap-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  letter-spacing: -0.28px;
}

.convo__recap-row span { color: #B6B6B7; }
.convo__recap-row b { color: #ffffff; font-weight: 600; text-align: right; }

/* Final CTA — match site style (white pill) */
.convo__final {
  padding: 14px 28px;
  background: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 1px solid var(--btn-white-border);
  box-shadow: var(--btn-white-shadow);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.convo__final:hover {
  background: var(--btn-white-bg-hover);
  border-color: var(--btn-white-border-hover);
  box-shadow: var(--btn-white-shadow-hover);
  transform: translateY(-2px);
}

/* Input bar — sticky at bottom of viewport */
.convo__input-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 9px 9px 26px;
  border: 1.5px solid transparent;
  border-radius: 300px;
  --convo-angle: 0deg;
  background:
    linear-gradient(rgb(16, 20, 27), rgb(16, 20, 27)) padding-box,
    conic-gradient(
      from var(--convo-angle),
      rgba(108, 180, 255, 0.95) 0deg,
      rgba(181, 140, 255, 0.95) 90deg,
      rgba(255, 157, 168, 0.95) 180deg,
      rgba(255, 184, 120, 0.95) 270deg,
      rgba(108, 180, 255, 0.95) 360deg
    ) border-box;
  box-shadow:
    0 12px 40px -8px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(16, 90, 201, 0.28);
  animation: convoBorderSpin 6s linear infinite;
  z-index: 5;
  margin-top: 0;
  max-width: 78%;
  margin-left: auto;
  width: max-content;
  min-width: min(420px, 100%);
}

.convo__input-bar--hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.convo__input {
  flex: 1;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.convo__input::placeholder { color: #B6B6B7; opacity: 0.65; }
.convo__input:focus { outline: none; }

.convo__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 1px solid var(--btn-white-border);
  box-shadow: var(--btn-white-shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.convo__send:hover {
  background: var(--btn-white-bg-hover);
  border-color: var(--btn-white-border-hover);
  box-shadow: var(--btn-white-shadow-hover);
  transform: translateY(-2px);
}

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

@media (max-width: 720px) {
  .convo {
    padding: 24px 16px 32px;
  }
  .convo__row--bot,
  .convo__row--user {
    left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .convo__bubble {
    max-width: 84%;
  }
}

/* After-conversation card section */
.contact-after {
  position: relative;
  z-index: 1;
  padding: 40px 24px 120px;
}

.contact-after__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 720px) {
  .contact-after {
    padding: 24px 18px 80px;
  }
}

/* Chat — iMessage style (legacy, unused) */
.chat {
  display: flex;
  flex-direction: column;
  background: rgb(8, 8, 8);
  border: 1px solid #242427;
  border-radius: 24px;
  overflow: hidden;
  height: 640px;
}

.chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0, 0, 2, 0.6);
  border-bottom: 1px solid #242427;
  flex-shrink: 0;
}

.chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2340FF, #0e1f80);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.32px;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 0 0 1px rgba(35, 64, 255, 0.4);
}

.chat__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25em;
  letter-spacing: -0.28px;
  color: #ffffff;
}

.chat__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: -0.24px;
  color: #B6B6B7;
}

.chat__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 0 3px rgba(40, 200, 64, 0.18);
}

.chat__body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  scroll-behavior: smooth;
}

.chat__body::-webkit-scrollbar {
  width: 6px;
}
.chat__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

/* Row — iMessage staggered offset */
.chat__row {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.chat__row--bot {
  left: -40px;
  padding-right: 40px;
}

.chat__row--user {
  left: 40px;
  padding-left: 40px;
  flex-direction: row;
}

/* Avatar */
.chat__bubble-av {
  width: 41px;
  height: 41px;
  min-width: 41px;
  min-height: 41px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.3px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: chatAvatarIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chat__bubble-av--bot {
  background: linear-gradient(135deg, #6f86ff 0%, #2340FF 50%, #0e1f80 100%);
}

.chat__bubble-av--user {
  background: linear-gradient(135deg, #d6a662 0%, #b6815b 60%, #6f4e3a 100%);
}

/* Bubble — gradient border via padding trick */
.chat__bubble {
  position: relative;
  max-width: 78%;
  padding: 1px;
  border-radius: 21px;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(
    45deg,
    rgba(35, 64, 255, 0) 0%,
    rgba(143, 176, 232, 0.95) 23%,
    rgba(35, 64, 255, 0) 45%,
    rgba(218, 207, 175, 0) 68%,
    rgba(218, 207, 175, 0.85) 100%
  );
  animation: chatBubbleIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}

.chat__bubble-inner {
  position: relative;
  background: rgb(16, 20, 27);
  border-radius: 20px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: -0.32px;
  color: #ffffff;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: hidden;
}

/* Decorative blur glow inside bubble (top-left) */
.chat__bubble-inner::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -6%;
  width: 112%;
  height: 149%;
  background: radial-gradient(
    ellipse 35% 25% at 35% 30%,
    rgba(143, 176, 232, 0.18),
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.chat__bubble-inner > * {
  position: relative;
  z-index: 1;
}

/* User bubble — different gradient border accent */
.chat__bubble--user {
  background-image: linear-gradient(
    225deg,
    rgba(35, 64, 255, 0) 0%,
    rgba(143, 176, 232, 0.95) 23%,
    rgba(35, 64, 255, 0) 45%,
    rgba(255, 255, 255, 0) 68%,
    rgba(255, 200, 150, 0.7) 100%
  );
}

@keyframes chatBubbleIn {
  from {
    opacity: 0;
    filter: blur(9px);
    transform: matrix(0.936, 0.378, -0.5, 0.866, -15, 70);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}

@keyframes chatAvatarIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Typing indicator inside iMessage bubble */
.chat__typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 18px 20px;
  min-width: 60px;
}

.chat__typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #B6B6B7;
  animation: chatDot 1.2s infinite ease-in-out;
}
.chat__typing span:nth-child(2) { animation-delay: 0.15s; }
.chat__typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

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

/* Choice buttons */
.chat__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 82%;
}

.chat__choice {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #242427;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.chat__choice:hover {
  background: rgba(35, 64, 255, 0.15);
  border-color: rgba(35, 64, 255, 0.5);
  transform: translateY(-1px);
}

/* Recap card */
.chat__recap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat__recap-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  letter-spacing: -0.28px;
}

.chat__recap-row span {
  color: #B6B6B7;
}

.chat__recap-row b {
  color: #ffffff;
  font-weight: 600;
  text-align: right;
}

/* Final CTA */
.chat__final {
  padding: 12px 22px;
  background: linear-gradient(180deg, #2340FF 0%, #1830D0 100%);
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 12px 32px -8px rgba(35, 64, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.chat__final:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 16px 40px -8px rgba(35, 64, 255, 0.6);
}

/* Input bar */
.chat__input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(0, 0, 2, 0.7);
  border-top: 1px solid #242427;
  flex-shrink: 0;
}

.chat__input-bar--hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.chat__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #242427;
  border-radius: 999px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: -0.3px;
  color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat__input::placeholder {
  color: #B6B6B7;
  opacity: 0.65;
}

.chat__input:focus {
  outline: none;
  border-color: rgba(35, 64, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(35, 64, 255, 0.12);
}

.chat__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2340FF 0%, #1830D0 100%);
  color: #ffffff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 6px 16px -4px rgba(35, 64, 255, 0.5);
}

.chat__send:hover {
  transform: translateY(-2px);
}

/* Sidebar */
.brief__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.brief__card {
  background: rgba(12, 12, 15, 0.7);
  border: 1px solid #242427;
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.brief__card-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B6B6B7;
}

.brief__steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brief__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.brief__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(35, 64, 255, 0.15);
  border: 1px solid rgba(35, 64, 255, 0.4);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.brief__step-title {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: -0.32px;
  color: #ffffff;
}

.brief__step-desc {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.28px;
  color: #B6B6B7;
}

.brief__direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 32px;
  background: rgba(12, 12, 15, 0.5);
  border: 1px solid #242427;
  border-radius: 24px;
}

.brief__direct-eyebrow {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B6B6B7;
  margin-bottom: 4px;
}

.brief__direct-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.32px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.brief__direct-link:hover {
  color: #6f86ff;
  transform: translateX(2px);
}

.brief__direct-link svg {
  flex-shrink: 0;
  color: #B6B6B7;
  transition: color 0.2s ease;
}

.brief__direct-link:hover svg {
  color: #6f86ff;
}

/* Responsive */
@media (max-width: 920px) {
  .brief__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .brief__side {
    position: static;
  }
  .contact-hero {
    padding: 120px 18px 40px;
  }
  .contact-hero__title {
    font-size: 36px;
    letter-spacing: -0.72px;
    line-height: 1.15em;
  }
  .brief {
    padding: 24px 18px 100px;
  }
  .chat {
    height: 560px;
    border-radius: 20px;
  }
  .brief__form {
    padding: 28px 22px;
    border-radius: 20px;
  }
  .brief__card,
  .brief__direct {
    padding: 24px;
    border-radius: 20px;
  }
}

/* ---------- FOOTER (card-style closing section) ---------- */
.site-footer {
  position: relative;
  background: rgb(0, 0, 2);
  color: #e9eaf2;
  padding: 20px 0 32px;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.site-footer__inner {
  width: 100%;
  max-width: 1316px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-footer__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(36, 36, 39);
  border-radius: 32px;
  padding: 100px 48px;
  isolation: isolate;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/hero-bg.jpg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.site-footer__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgb(12, 12, 15);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 300px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
  color: #ffffff;
  mix-blend-mode: screen;
}

.site-footer__title {
  margin: 12px 0 0;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.96px;
  color: #ffffff;
  background-image: linear-gradient(180deg, #ffffff 0%, #fafbfd 28%, #dadde4 62%, #aeb3bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22))
          drop-shadow(0 0 28px rgba(180, 195, 220, 0.22));
  padding-bottom: 3px;
}

.site-footer__lede {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.32px;
  color: #B6B6B7;
}

.site-footer__cta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.site-footer__legal {
  max-width: 1268px;
  margin: 12px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(233, 234, 242, 0.5);
}

.site-footer__copy {
  margin: 0;
}

.site-footer__legal-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer__legal-nav a {
  color: rgba(233, 234, 242, 0.55);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__legal-nav a:hover {
  color: #fff;
}

@media (max-width: 720px) {
  .site-footer {
    padding: 18px 0 28px;
  }
  .site-footer__inner {
    padding: 0 18px;
  }
  .site-footer__card {
    padding: 58px 24px;
    border-radius: 16px;
  }
  .site-footer__bg {
    filter: blur(20px);
    transform: matrix(1.5, 0, 0, 1.5, 0, 0);
  }
  .site-footer__title {
    font-size: 36px;
    letter-spacing: -0.72px;
    line-height: 1.12em;
  }
  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 18px;
  }
}

/* ---------- PRICING ---------- */
.pricing {
  position: relative;
  background: rgb(0, 0, 2);
  padding: 64px 24px 180px;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.32px;
  overflow: hidden;
  z-index: 1;
}

.pricing__bg {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1338px, 110%);
  aspect-ratio: 1338 / 1166;
  transform: translateX(-50%) scale(1.009);
  background-image: url("/assets/pricing-bg.jpg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.76;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to top, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 60%, transparent 100%);
}

.pricing__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1316px;
  margin: 0 auto;
}

.pricing__head {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.pricing__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgb(12, 12, 15);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 300px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
  color: #ffffff;
  mix-blend-mode: screen;
}

.pricing__title {
  margin: 12px 0 0;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.96px;
  color: #ffffff;
  background-image: linear-gradient(180deg, #ffffff 0%, #fafbfd 28%, #dadde4 62%, #aeb3bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22))
          drop-shadow(0 0 28px rgba(180, 195, 220, 0.22));
  padding-bottom: 3px;
}

.pricing__lede {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.32px;
  color: #B6B6B7;
}

.pricing__grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing__card--offset {
  padding-top: 100px;
}

.pricing__card--featured {
  padding-top: 12px;
  background:
    linear-gradient(rgba(96, 111, 165, 0.4), rgba(196, 206, 241, 0.5) 84%, rgba(48, 58, 95, 0.5));
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  padding: 12px 8px 8px;
}

.pricing__badge {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.26px;
  color: #ffffff;
  padding: 4px 0 12px;
}

.pricing__card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: rgba(12, 12, 15, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
}

.pricing__card--featured .pricing__card-inner {
  background: rgb(12, 12, 15);
  border-color: rgb(61, 61, 63);
}

.pricing__card-name {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: -0.48px;
  color: #ffffff;
}

.pricing__card-pitch {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.5em;
  letter-spacing: -0.29px;
  color: #B6B6B7;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.pricing__price-amount {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.115em;
  letter-spacing: -0.96px;
  color: #ffffff;
}

.pricing__price-suffix {
  font-size: 14px;
  line-height: 1.4em;
  letter-spacing: -0.28px;
  color: rgba(255, 255, 255, 0.55);
}

.pricing__cta {
  width: 100%;
  padding: 14px 28px;
}

.pricing__included-title {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.pricing__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pricing__features li {
  position: relative;
  padding: 12px 0 12px 26px;
  font-size: 14.5px;
  line-height: 1.5em;
  letter-spacing: -0.29px;
  color: #e9eaf2;
  border-top: 1px solid rgb(36, 36, 39);
}

.pricing__features li:first-child {
  border-top: none;
}

.pricing__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 7.5l2.5 2.5L11 4.5' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.85;
}

/* Vercel explainer */
.pricing__vercel {
  margin: 56px auto 0;
  max-width: 720px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  background: rgba(12, 12, 15, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.pricing__vercel-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
}

.pricing__vercel-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55em;
  letter-spacing: -0.28px;
  color: #B6B6B7;
}

.pricing__vercel-text strong {
  color: #fff;
  font-weight: 500;
}

/* ---------- ESTIMATOR ---------- */
.estimator {
  margin-top: 96px;
}

.estimator__head {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.estimator__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: rgb(12, 12, 15);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 300px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.23px;
  line-height: 14px;
  color: #ffffff;
  text-transform: uppercase;
}

.estimator__title {
  margin: 14px 0 0;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.68px;
  color: #ffffff;
  background-image: linear-gradient(180deg, #ffffff 0%, #fafbfd 35%, #dadde4 75%, #aeb3bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.estimator__lede {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55em;
  letter-spacing: -0.3px;
  color: #B6B6B7;
}

.estimator__layout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.estimator__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(12, 12, 15, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
}

.estimator__group {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estimator__legend {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.estimator__legend-hint {
  text-transform: none;
  letter-spacing: -0.24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.estimator__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.estimator__options--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.estimator__opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgb(12, 12, 15);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4em;
  color: #e9eaf2;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.estimator__opt:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgb(16, 16, 20);
}

.estimator__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.estimator__opt span {
  flex: 1;
  min-width: 0;
}

.estimator__opt em {
  font-style: normal;
  font-size: 12px;
  letter-spacing: -0.24px;
  color: rgba(255, 255, 255, 0.42);
}

.estimator__opt:has(input:checked) {
  background: rgba(96, 111, 165, 0.18);
  border-color: rgba(196, 206, 241, 0.45);
  box-shadow: 0 0 0 1px rgba(196, 206, 241, 0.25) inset;
}

.estimator__opt:has(input:checked) em {
  color: #ffffff;
}

/* SUMMARY */
.estimator__summary {
  position: sticky;
  top: 24px;
}

.estimator__summary-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background:
    linear-gradient(rgba(96, 111, 165, 0.18), rgba(48, 58, 95, 0.18));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
}

.estimator__summary-label {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.estimator__summary-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05em;
  letter-spacing: -1.12px;
  color: #ffffff;
}

.estimator__summary-amount [data-estimator-total] {
  font-variant-numeric: tabular-nums;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
}

.estimator__summary-amount.is-bumping [data-estimator-total] {
  transform: translateY(-3px) scale(1.02);
}

.estimator__summary-currency {
  font-size: 32px;
  letter-spacing: -0.64px;
  color: rgba(255, 255, 255, 0.7);
}

.estimator__summary-formula {
  margin: -4px 0 0;
  font-size: 14px;
  line-height: 1.4em;
  color: #B6B6B7;
}

.estimator__summary-formula strong {
  color: #ffffff;
  font-weight: 500;
}

.estimator__summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 240px;
  overflow-y: auto;
}

.estimator__summary-breakdown::-webkit-scrollbar {
  width: 4px;
}
.estimator__summary-breakdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.estimator__summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.4em;
  color: #d1d2dc;
}

.estimator__summary-line span:last-child {
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.estimator__summary-empty {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.estimator__summary-cta {
  width: 100%;
  padding: 14px 24px;
}

.estimator__summary-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

@media (max-width: 980px) {
  .pricing {
    padding: 56px 18px 140px;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 56px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing__card--offset {
    padding-top: 0;
  }
  .pricing__card--featured {
    order: -1;
  }
  .pricing__card-inner {
    padding: 32px 24px;
    border-radius: 20px;
    gap: 24px;
  }
  .pricing__card--featured {
    border-radius: 20px;
  }
  .pricing__title {
    font-size: 36px;
    letter-spacing: -0.72px;
  }
  .estimator {
    margin-top: 72px;
  }
  .estimator__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .estimator__form {
    padding: 24px;
    border-radius: 20px;
  }
  .estimator__options--grid {
    grid-template-columns: 1fr;
  }
  .estimator__summary {
    position: static;
  }
  .estimator__summary-inner {
    padding: 24px;
    border-radius: 20px;
  }
  .estimator__title {
    font-size: 28px;
    letter-spacing: -0.56px;
  }
}

@media (max-width: 520px) {
  .pricing__price-amount {
    font-size: 38px;
    letter-spacing: -0.76px;
  }
  .estimator__summary-amount {
    font-size: 44px;
    letter-spacing: -0.88px;
  }
  .estimator__summary-currency {
    font-size: 26px;
  }
}

/* ---------- CONTACT CUBE 3D — sticky scroll-driven : le cube grossit & tourne, le titre s'efface ---------- */
.contact-stack {
  background: transparent;             /* override .steps { background:#000 } → continuité avec .contact-bg */
  padding: 0;
  height: 220vh;                       /* trigger : ~120vh de scroll après l'arrivée du pin */
  position: relative;
  overflow: visible;
}

.contact-cube-pin {
  position: relative;
  height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.contact-cube-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.contact-cube-text .steps__eyebrow {
  margin-bottom: 18px;
}

.contact-cube-text .steps__title {
  margin: 0;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 1100px;
  padding: 0 24px;
}

.contact-cube-stage {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 320px;
  transform-style: preserve-3d;
  will-change: transform;
}

.contact-cube {
  --cube-half: 160px;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(-30deg);
  will-change: transform;
}

@property --face-x { syntax: "<length>"; initial-value: 0px; inherits: false; }
@property --face-y { syntax: "<length>"; initial-value: 0px; inherits: false; }
@property --face-z { syntax: "<length>"; initial-value: 160px; inherits: false; }
@property --face-rot { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --face-skew-x { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --face-skew-y { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --face-base-rot-x { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --face-base-rot-y { syntax: "<angle>"; initial-value: 0deg; inherits: false; }

.contact-cube__face {
  --face-x: 0px;
  --face-y: 0px;
  --face-z: 160px;
  --face-rot: 0deg;
  --face-skew-x: 0deg;
  --face-skew-y: 0deg;
  --face-base-rot-x: 0deg;
  --face-base-rot-y: 0deg;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  backface-visibility: visible;
  text-decoration: none;
  transition: filter 0.3s ease;
  pointer-events: auto;
  will-change: transform;
  /* Ordre lu de droite à gauche : skew → rotateZ chaos → translate (explosion) →
     rotateX/Y (placement cube animable). En annulant base-rot-x/y, la face revient face caméra. */
  transform:
    rotateY(var(--face-base-rot-y))
    rotateX(var(--face-base-rot-x))
    translate3d(var(--face-x), var(--face-y), var(--face-z))
    rotateZ(var(--face-rot))
    skew(var(--face-skew-x), var(--face-skew-y));
}

/* Carte sombre minimaliste : fond noir, bordure fine, radius 32, contenu
   centré (icone line blanche + label + sub-label).
   Hover : la bordure s'éclaircit et la card monte légèrement. */
.contact-cube__face {
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.contact-cube__face--whatsapp,
.contact-cube__face--email,
.contact-cube__face--phone {
  background: rgb(0, 0, 2);
  border: 1px solid rgb(36, 36, 39);
  color: #ffffff;
  font-family: "General Sans", Inter, system-ui, sans-serif;
  transition: border-color 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

/* Dégradé bleu iridescent visible uniquement au survol. Le pseudo-élément
   est placé sous le contenu (icone + label + sub) qui passe en z-index: 1
   pour rester lisible. Statique (pas d'animation), juste un fade-in/out. */
.contact-cube__face--whatsapp::before,
.contact-cube__face--email::before,
.contact-cube__face--phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      100deg,
      #0a0c20 0%,
      #2340ff 12%,
      #6b8cff 24%,
      #0a0c20 36%,
      #2340ff 50%,
      #8aa6ff 62%,
      #0a0c20 75%,
      #5a78ff 88%,
      #2340ff 100%
    );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.contact-cube__face--whatsapp:hover::before,
.contact-cube__face--email:hover::before,
.contact-cube__face--phone:hover::before {
  opacity: 1;
}

@keyframes contactCardShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 260% 50%; }
}

/* Contenu au-dessus du dégradé */
.contact-cube__icon,
.contact-cube__label,
.contact-cube__sub {
  position: relative;
  z-index: 1;
}

.contact-cube__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.contact-cube__icon svg {
  width: 56px;
  height: 56px;
}

.contact-cube__label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
}

.contact-cube__sub {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(245, 245, 248, 0.55);
  text-align: center;
  padding: 0 12px;
}

.contact-cube__face--front  { --face-base-rot-y: 0deg;    --face-base-rot-x: 0deg;   }
.contact-cube__face--back   { --face-base-rot-y: 180deg;  --face-base-rot-x: 0deg;   }
.contact-cube__face--right  { --face-base-rot-y: 90deg;   --face-base-rot-x: 0deg;   }
.contact-cube__face--left   { --face-base-rot-y: -90deg;  --face-base-rot-x: 0deg;   }
.contact-cube__face--top    { --face-base-rot-y: 0deg;    --face-base-rot-x: 90deg;  }
.contact-cube__face--bottom { --face-base-rot-y: 0deg;    --face-base-rot-x: -90deg; }

.contact-cube__face:hover {
  border-color: rgba(255, 255, 255, 0.35);
}
.contact-cube__face:hover .contact-cube__sub {
  color: rgba(245, 245, 248, 0.8);
}

@media (max-width: 720px) {
  .contact-cube__face {
    border-radius: 16px;
    gap: 12px;
    padding: 18px;
  }
  .contact-cube__label { font-size: 16px; line-height: 1.4; }
  .contact-cube__sub { font-size: 12px; }
  .contact-cube__icon svg { width: 44px; height: 44px; }
}

/* ========================================================================
   Section "Quatre autres moyens" — grille plate de 4 cartes sombres
   (remplace l'ancien cube 3D animé). Style cohérent avec le bouton
   "Réserver 15 min en visio" du haut de la page.
   ======================================================================== */
.contact-options {
  background: #000000;
  padding: 96px 24px 120px;
  font-family: "General Sans", "Inter", system-ui, -apple-system, sans-serif;
  position: relative;
  z-index: 1;
}

.contact-options__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-options__inner .steps__eyebrow {
  display: inline-block;
}

.contact-options__inner .steps__title {
  margin: 14px auto 0;
  max-width: 640px;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.12px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 30%, #d8dbe2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.contact-options__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-option {
  aspect-ratio: 1 / 1;
  background: rgb(0, 0, 2);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-option:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.contact-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.contact-option__icon svg {
  width: 56px;
  height: 56px;
}

.contact-option__label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
}

.contact-option__sub {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(245, 245, 248, 0.55);
  text-align: center;
  padding: 0 12px;
  transition: color 0.35s ease;
}
.contact-option:hover .contact-option__sub {
  color: rgba(245, 245, 248, 0.85);
}

@media (max-width: 900px) {
  .contact-options__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .contact-options__grid {
    grid-template-columns: 1fr;
  }
  .contact-option {
    aspect-ratio: 5 / 3;
  }
}

@media (max-width: 720px) {
  .contact-options {
    padding: 64px 20px 80px;
  }
  .contact-options__inner .steps__title {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.7px;
  }
  .contact-option {
    border-radius: 24px;
    gap: 12px;
    padding: 20px;
  }
  .contact-option__label { font-size: 16px; }
  .contact-option__sub  { font-size: 12px; }
  .contact-option__icon svg { width: 44px; height: 44px; }
}

/* Mobile : valeurs ajustées pour viewport étroit */
@media (max-width: 720px) {
  .contact-stack {
    height: 180vh;
  }
  .contact-cube-stage {
    width: 220px;
    height: 220px;
  }
  .contact-cube { --cube-half: 110px; }
  .contact-cube__face { border-radius: 22px; }
  .contact-cube__face svg { width: 72px; height: 72px; }
  .contact-cube-text .steps__title {
    font-size: 50px;
    line-height: 52.5px;
    letter-spacing: -1px;
    max-width: 460px;
    padding: 0 18px;
  }
  .contact-cube-text .steps__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 1.2px;
    line-height: 13.75px;
  }
}

/* Très petits écrans (iPhone SE, ≤375px) : titre un cran plus petit
   pour ne pas casser sur 2 lignes trop serrées */
@media (max-width: 380px) {
  .contact-cube-stage {
    width: 200px;
    height: 200px;
  }
  .contact-cube { --cube-half: 100px; }
  .contact-cube__face svg { width: 64px; height: 64px; }
  .contact-cube-text .steps__title {
    font-size: 40px;
    line-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-stack { height: auto; padding: 80px 24px 120px; }
  .contact-cube-pin { height: auto; min-height: 480px; }
}

/* ---------- CONTACT CHOICE — two compact buttons ---------- */
.contact-choice {
  position: relative;
  z-index: 1;
  padding: 0 24px 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-choice__btn {
  padding: 13px 24px;
  gap: 10px;
}

.contact-choice__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  color: currentColor;
}

@media (max-width: 520px) {
  .contact-choice {
    padding: 0 18px 40px;
    flex-direction: column;
    align-items: center;       /* width auto, boutons centrés (pas stretch) */
    gap: 10px;
  }
  .contact-choice__btn {
    width: auto;                /* défait l'override pleine largeur */
    justify-content: center;
  }
}

/* ========== TARIFS PAGE ========== */
.pricing-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #080808;
}

.pricing-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  background-image:
    linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 6, 30) 50%, rgb(0, 0, 0) 100%);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.pricing-page__bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  background: radial-gradient(
    circle,
    rgba(0, 119, 255, 0.65) 0%,
    rgba(0, 111, 255, 0.35) 28%,
    rgba(35, 64, 255, 0.15) 50%,
    transparent 70%
  );
  filter: blur(70px);
  transform-origin: center;
  animation: heroGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.pricing-page__bg::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(58, 167, 255, 0.55) 0%,
    rgba(0, 111, 255, 0.25) 35%,
    transparent 70%
  );
  filter: blur(60px);
  transform-origin: center;
  animation: heroGlowPulse 4.5s ease-in-out infinite;
  animation-delay: -2s;
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .pricing-page__bg {
    filter: blur(50px);
  }
}

.pricing-page__hero {
  position: relative;
  z-index: 1;
  padding: 160px 24px 56px;
}

.pricing-page__hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pricing-page__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgb(12, 12, 15);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 300px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
  color: #ffffff;
}

.pricing-page__title {
  margin: 18px 0 0;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -1.08px;
  color: transparent;
  background-image: linear-gradient(180deg, #ffffff 0%, #fafbfd 28%, #e9ebee 50%, #c5c9d1 75%, #9da3ad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.22))
          drop-shadow(0 0 28px rgba(180, 195, 220, 0.22));
  padding-bottom: 4px;
}

.pricing-page__lede {
  margin: 16px auto 0;
  max-width: 580px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55em;
  letter-spacing: -0.32px;
  color: #B6B6B7;
}

.pricing-page__grid-section {
  position: relative;
  z-index: 1;
  padding: 24px 24px 96px;
}

.pricing-page__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* ========== FORMULA CARD ========== */
.formula {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px 32px 36px;
  background:
    radial-gradient(ellipse 90% 35% at 50% -8%, rgba(96, 111, 165, 0.24), transparent 70%),
    linear-gradient(180deg, rgba(20, 22, 35, 0.55), rgba(12, 12, 15, 0.85));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 360ms ease,
              box-shadow 360ms ease;
}

.formula:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 206, 241, 0.32);
  box-shadow: 0 0 60px rgba(96, 111, 165, 0.18);
}

.formula--featured {
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(146, 161, 215, 0.42), transparent 70%),
    linear-gradient(180deg, rgba(28, 30, 50, 0.7), rgba(12, 12, 15, 0.92));
  border-color: rgba(196, 206, 241, 0.35);
  box-shadow: 0 0 80px rgba(96, 111, 165, 0.25);
}

.formula--featured:hover {
  border-color: rgba(196, 206, 241, 0.5);
  box-shadow: 0 0 100px rgba(96, 111, 165, 0.32);
}

.formula--custom {
  background:
    radial-gradient(ellipse 90% 35% at 50% -8%, rgba(165, 96, 215, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(22, 18, 35, 0.55), rgba(12, 12, 15, 0.85));
}

.formula--custom:hover {
  border-color: rgba(215, 165, 245, 0.32);
  box-shadow: 0 0 60px rgba(165, 96, 215, 0.16);
}

.formula__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 6px 14px;
  background: rgba(146, 161, 215, 0.95);
  color: rgb(12, 12, 18);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 28px rgba(96, 111, 165, 0.4);
}

.formula__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.formula__tier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.formula__tier::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(146, 161, 215, 0.7);
  box-shadow: 0 0 12px rgba(146, 161, 215, 0.4);
}

.formula__tier--accent::before {
  background: rgb(196, 206, 241);
  box-shadow: 0 0 14px rgba(196, 206, 241, 0.7);
}

.formula__tier--violet::before {
  background: rgb(215, 165, 245);
  box-shadow: 0 0 14px rgba(215, 165, 245, 0.6);
}

.formula__name {
  margin: 4px 0 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 1.2em;
  color: #ffffff;
}

.formula__pitch {
  margin: 4px 0 0;
  font-size: 14.5px;
  line-height: 1.55em;
  letter-spacing: -0.29px;
  color: #B6B6B7;
}

.formula__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.formula__amount {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05em;
  letter-spacing: -1.28px;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #d8dde6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.formula__amount-text {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -0.76px;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #d8dde6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.formula__currency {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -0.72px;
  color: rgba(255, 255, 255, 0.6);
}

.formula__suffix {
  margin-left: 6px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.formula__price--custom {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.formula__price--custom .formula__suffix {
  margin-left: 0;
}

.formula__cta {
  width: 100%;
  padding: 14px 24px;
}

.formula__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.formula__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.formula__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5em;
  letter-spacing: -0.29px;
  color: #e9eaf2;
}

.formula__features svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(196, 206, 241, 0.85);
}

.formula--custom .formula__features svg {
  color: rgba(215, 165, 245, 0.85);
}

/* Vercel block on tarifs page */
.pricing-page__vercel {
  margin: 56px auto 0;
  max-width: 720px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  background: rgba(12, 12, 15, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.pricing-page__vercel-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
}

.pricing-page__vercel-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55em;
  letter-spacing: -0.28px;
  color: #B6B6B7;
}

.pricing-page__vercel-text strong {
  color: #fff;
  font-weight: 500;
}

/* ========== ESTIMATOR PAGE SECTION ========== */
.estimator-page {
  position: relative;
  z-index: 1;
  padding: 40px 24px 120px;
}

.estimator-page__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.estimator-page__head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.estimator-page__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: rgb(12, 12, 15);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 300px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: 14px;
  color: #ffffff;
  text-transform: uppercase;
}

.estimator-page__title {
  margin: 16px 0 0;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.15em;
  letter-spacing: -0.76px;
  color: transparent;
  background-image: linear-gradient(180deg, #ffffff 0%, #fafbfd 35%, #dadde4 75%, #aeb3bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.estimator-page__lede {
  margin: 14px auto 0;
  max-width: 580px;
  font-size: 15px;
  line-height: 1.55em;
  letter-spacing: -0.3px;
  color: #B6B6B7;
}

.estimator-page .estimator__layout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

/* Override estimator option to hide cost suffix on tarifs page (no <em> in HTML, so safe) */
.estimator-page .estimator__opt em {
  display: none;
}

.estimator-page .estimator__summary-suffix {
  font-size: 12px;
  letter-spacing: -0.24px;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 8px;
}

@media (max-width: 980px) {
  .pricing-page__hero {
    padding: 130px 18px 40px;
  }
  .pricing-page__title {
    font-size: 38px;
    letter-spacing: -0.76px;
  }
  .pricing-page__grid-section {
    padding: 16px 18px 72px;
  }
  .pricing-page__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
  }
  .formula--featured {
    order: -1;
  }
  .formula {
    padding: 32px 26px 30px;
    border-radius: 22px;
  }
  .formula__amount {
    font-size: 52px;
    letter-spacing: -1.04px;
  }
  .formula__currency {
    font-size: 28px;
  }
  .estimator-page {
    padding: 24px 18px 96px;
  }
  .estimator-page__title {
    font-size: 30px;
    letter-spacing: -0.6px;
  }
  .estimator-page .estimator__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-page {
  position: relative;
  background: #000002;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  min-height: 100vh;
  overflow: hidden;
}

.blog {
  position: relative;
  z-index: 1;
  padding: 160px 24px 140px;
}

.blog__inner {
  max-width: 1316px;
  margin: 0 auto;
}

.blog__header {
  max-width: 530px;
  margin: 0 auto;
  text-align: center;
}

.blog__pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: -0.24px;
  line-height: 15px;
  font-weight: 500;
}

.blog__title {
  margin: 12px 0 0;
  font-size: 54px;
  line-height: 1.115;
  letter-spacing: -1.08px;
  font-weight: 500;
  background: linear-gradient(90deg, #ffffff, #DFDAFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 3px;
}

.blog__lede {
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
  max-width: 480px;
}

.blog__tabs {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.28px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.blog__tab:hover,
.blog__tab.is-active {
  background: rgb(36, 36, 39);
  border-color: rgb(61, 61, 63);
}

.blog__tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
}

.blog__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 24px;
  align-content: center;
}

.blog-card {
  margin: 0;
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-height: 100%;
  transition: transform 0.3s ease;
}

.blog-card__link:hover {
  transform: translateY(-2px);
}

.blog-card__media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgb(36, 36, 39);
  aspect-ratio: 16 / 9;
  position: relative;
}

.blog-card__thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.blog-card__num {
  font-family: "General Sans", sans-serif;
  font-size: 140px;
  font-weight: 600;
  letter-spacing: -4px;
  color: rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
}

.blog-card__thumb--01 { background: linear-gradient(160deg, #1a2030 0%, #0c1018 100%); }
.blog-card__thumb--02 { background: linear-gradient(160deg, #2a1834 0%, #15101c 100%); }
.blog-card__thumb--03 { background: linear-gradient(160deg, #1a2538 0%, #0a1218 100%); }
.blog-card__thumb--04 { background: linear-gradient(160deg, #2a201a 0%, #18100c 100%); }
.blog-card__thumb--05 { background: linear-gradient(160deg, #1a3540 0%, #0c181a 100%); }
.blog-card__thumb--06 { background: linear-gradient(160deg, #341a30 0%, #1c0c18 100%); }

.blog-card__meta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  max-width: 533px;
  gap: 16px;
}

.blog-card__title {
  margin: 0;
  font-size: 30px;
  line-height: 37.5px;
  letter-spacing: -0.6px;
  color: #ffffff;
  font-weight: 500;
}

.blog-card__row {
  display: flex;
  align-items: center;
  flex-flow: row wrap-reverse;
  gap: 16px;
}

.blog-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.28px;
}

.blog-card__cat svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
}

.blog-card__date {
  font-size: 16px;
  line-height: 20px;
  color: rgba(245, 245, 248, 0.7);
  font-weight: 400;
}

.blog__pagination {
  margin-top: 48px;
  padding-top: 48px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.blog__page-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  border: 1px solid rgb(36, 36, 39);
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.blog__page-btn:hover {
  background: rgb(36, 36, 39);
  border-color: rgb(61, 61, 63);
  transform: translateY(-1px);
}

.blog__page-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 720px) {
  .blog {
    padding: 100px 18px 80px;
  }
  .blog__title {
    font-size: 36px;
    line-height: 1.115;
    letter-spacing: -0.72px;
  }
  .blog__pill {
    font-size: 10px;
    padding: 8px 12px;
    line-height: 12.5px;
    letter-spacing: -0.2px;
  }
  .blog__tab {
    font-size: 12px;
    padding: 8px 12px;
    line-height: 17.5px;
  }
  .blog__tabs {
    gap: 8px;
  }
  .blog__grid {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .blog-card__title {
    font-size: 22px;
    line-height: 27.5px;
    letter-spacing: -0.44px;
  }
  .blog-card__num {
    font-size: 90px;
    letter-spacing: -2px;
  }
  .blog-card__media {
    border-radius: 16px;
  }
  .blog-card__meta {
    margin-top: 20px;
    max-width: 350px;
  }
  .blog-card__cat,
  .blog-card__date {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: -0.24px;
  }
  .blog-card__cat {
    padding: 8px 12px;
  }
  .blog__pagination {
    padding-top: 28px;
  }
  .blog__page-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }
}

/* ---------- BLOG reveal animation : flou + opacité 0 → net + opacité 1 quand l'élément
   entre dans le viewport. Stagger par index pour effet cascade. ---------- */
.blog-card,
.blog__header,
.blog__pagination {
  filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    filter 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card.is-revealed,
.blog__header.is-revealed,
.blog__pagination.is-revealed {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .blog-card,
  .blog__header,
  .blog__pagination {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- BLOG page background — gradient navy + glows bleus animés sur le 1er écran
   uniquement (même pattern que .pricing-page__bg). Au-delà, fond noir uniforme. ---------- */
.blog-page {
  background: #080808;
}

.blog-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  background-image:
    linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 6, 30) 50%, rgb(0, 0, 0) 100%);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blog-page__bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  background: radial-gradient(
    circle,
    rgba(0, 119, 255, 0.65) 0%,
    rgba(0, 111, 255, 0.35) 28%,
    rgba(35, 64, 255, 0.15) 50%,
    transparent 70%
  );
  filter: blur(70px);
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: heroGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.blog-page__bg::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(58, 167, 255, 0.55) 0%,
    rgba(0, 111, 255, 0.25) 35%,
    transparent 70%
  );
  filter: blur(60px);
  transform-origin: center;
  animation: heroGlowPulse 4.5s ease-in-out infinite;
  animation-delay: -2s;
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .blog-page__bg {
    filter: blur(50px);
  }
}

/* ============================================
   BLOG POST PAGE (article individuel)
   ============================================ */
.blog-post {
  position: relative;
  z-index: 1;
  padding: 160px 24px 140px;
}

.blog-post__hero {
  max-width: 1316px;
  margin: 0 auto;
  text-align: center;
}

.blog-post__hero-inner {
  max-width: 812px;
  margin: 0 auto;
}

.blog-post__title {
  margin: 0;
  font-size: 48px;
  line-height: 1.115;
  letter-spacing: -0.96px;
  font-weight: 500;
  color: #ffffff;
}

.blog-post__lede {
  margin: 16px auto 0;
  max-width: 600px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
  letter-spacing: -0.32px;
}

.blog-post__meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.blog-post__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.28px;
}

.blog-post__cat svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.blog-post__date {
  font-size: 16px;
  line-height: 20px;
  color: rgba(245, 245, 248, 0.7);
  font-weight: 400;
}

.blog-post__cover {
  margin: 56px auto 0;
  max-width: 1316px;
}

.blog-post__cover-frame {
  border: 1px solid rgb(36, 36, 39);
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.blog-post__cover-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a2030 0%, #0c1018 100%);
  position: relative;
}

.blog-post__cover-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.blog-post__cover-num,
.blog-post__figure-num {
  font-family: "General Sans", sans-serif;
  font-size: 220px;
  font-weight: 600;
  letter-spacing: -6px;
  color: rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
}

.blog-post__body {
  margin-top: 120px;
}

.blog-post__body-inner {
  max-width: 715px;
  margin: 0 auto;
  color: rgba(245, 245, 248, 0.85);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.32px;
}

.blog-post__body-inner > * {
  margin-bottom: 16px;
}

.blog-post__body-inner > *:first-child {
  margin-top: 0;
}

.blog-post__body-inner h2 {
  font-size: 36px;
  line-height: 45px;
  letter-spacing: -0.72px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
}

.blog-post__body-inner h3 {
  font-size: 30px;
  line-height: 37.5px;
  letter-spacing: -0.6px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 16px;
}

.blog-post__body-inner h4 {
  font-size: 26px;
  line-height: 32.5px;
  letter-spacing: -0.52px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 16px;
}

.blog-post__body-inner h5 {
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.4px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 12px;
}

.blog-post__body-inner h6 {
  font-size: 18px;
  line-height: 22.5px;
  letter-spacing: -0.36px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 12px;
}

.blog-post__body-inner p {
  margin: 0 0 16px;
  color: rgba(245, 245, 248, 0.78);
}

.blog-post__body-inner strong {
  color: #ffffff;
  font-weight: 600;
}

.blog-post__body-inner em {
  font-style: italic;
}

.blog-post__body-inner ul {
  margin: 16px 0 32px;
  padding-left: 40px;
  list-style: disc;
}

.blog-post__body-inner ul li {
  margin-bottom: 16px;
  color: rgba(245, 245, 248, 0.78);
}

.blog-post__body-inner ul li::marker {
  color: rgba(245, 245, 248, 0.4);
}

.blog-post__body-inner blockquote {
  background: rgb(12, 12, 15);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 24px;
  padding: 48px;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  margin: 32px 0;
  font-weight: 500;
}

.blog-post__figure {
  margin: 32px auto;
  width: 100%;
  text-align: center;
  clear: both;
}

.blog-post__figure-frame {
  border: 1px solid rgb(36, 36, 39);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.blog-post__figure-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #2a1834 0%, #15101c 100%);
  position: relative;
}

.blog-post__figure-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

/* Reveal au scroll : hero + cover + body partent flous puis se révèlent */
.blog-post__hero-inner,
.blog-post__cover-frame,
.blog-post__body-inner {
  filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    filter 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-post__hero-inner.is-revealed,
.blog-post__cover-frame.is-revealed,
.blog-post__body-inner.is-revealed {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .blog-post__hero-inner,
  .blog-post__cover-frame,
  .blog-post__body-inner {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 720px) {
  .blog-post {
    padding: 100px 18px 80px;
  }
  .blog-post__title {
    font-size: 30px;
    line-height: 33.45px;
    letter-spacing: -0.6px;
  }
  .blog-post__cover {
    margin-top: 38px;
  }
  .blog-post__cover-frame,
  .blog-post__figure-frame {
    border-radius: 16px;
  }
  .blog-post__cover-num,
  .blog-post__figure-num {
    font-size: 120px;
    letter-spacing: -3px;
  }
  .blog-post__body {
    margin-top: 48px;
  }
  .blog-post__body-inner h2 {
    font-size: 26px;
    line-height: 32.5px;
    letter-spacing: -0.52px;
  }
  .blog-post__body-inner h3 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.48px;
  }
  .blog-post__body-inner h4 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.44px;
  }
  .blog-post__body-inner ul {
    padding-left: 32px;
  }
  .blog-post__body-inner blockquote {
    padding: 28px 20px;
    border-radius: 16px;
    margin: 20px 0;
  }
}

/* ---------- BLOG mockups SVG : remplissent leur container ---------- */
.blog-card__thumb svg,
.blog-post__cover-thumb svg,
.blog-post__figure-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}

.blog-card__thumb {
  background: transparent;
  padding: 0;
}

/* ---------- BLOG POST : section "À lire aussi" ---------- */
.blog-post__related {
  margin: 100px auto 0;
  max-width: 1316px;
  padding: 0 24px;
}

.blog-post__related-inner {
  filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    filter 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-post__related-inner.is-revealed {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.blog-post__related-title {
  margin: 0 0 40px;
  font-size: 30px;
  line-height: 37.5px;
  letter-spacing: -0.6px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.blog-post__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-post__related-grid .blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.blog-post__related-grid .blog-card__link:hover {
  transform: translateY(-2px);
}

.blog-post__related-grid .blog-card__title {
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.4px;
  margin-top: 18px;
  font-weight: 500;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .blog-post__related-inner {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 720px) {
  .blog-post__related {
    margin-top: 60px;
    padding: 0 18px;
  }
  .blog-post__related-title {
    font-size: 22px;
    line-height: 27.5px;
    margin-bottom: 28px;
  }
  .blog-post__related-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   BLOG-POST — Layout avec TOC sticky, FAQ, CTA inline, footer NAP
   Ajouts SEO/UX (TOC auto, FAQ accordéon, CTA contextuel).
   ============================================================ */

/* Layout : TOC sticky à gauche du body article (desktop only). */
.blog-post__body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.blog-post__body-inner {
  max-width: 715px;
  width: 100%;
}

/* TOC ----------------------------------------------------- */
.blog-post__toc {
  position: sticky;
  top: 100px;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 0 4px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.blog-post__toc-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 14px;
}

.blog-post__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-post__toc-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.blog-post__toc-list a:hover,
.blog-post__toc-list a:focus-visible {
  color: #fff;
}

/* FAQ accordéon ------------------------------------------- */
.blog-post__faq {
  margin: 80px auto 0;
  padding: 0 24px;
}

.blog-post__faq-inner {
  max-width: 715px;
  margin: 0 auto;
}

.blog-post__faq-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin: 0 0 24px;
}

.blog-post__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.blog-post__faq-item summary {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
  user-select: none;
}

.blog-post__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Chevron animé : rotation à l'ouverture. */
.blog-post__faq-item summary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}

.blog-post__faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.blog-post__faq-answer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  padding-top: 16px;
}

.blog-post__faq-answer p {
  margin: 0;
}

/* CTA contextuel inline ----------------------------------- */
.blog-post__cta {
  margin: 40px 0;
  text-align: center;
}

.blog-post__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2340FF, #3DAEFF);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(35, 64, 255, 0.25);
}

.blog-post__cta-btn:hover,
.blog-post__cta-btn:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(35, 64, 255, 0.35);
}

.blog-post__cta-btn svg {
  flex-shrink: 0;
}

/* Footer BRAND (logo + tagline) ---------------------------- */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 56px 0 32px;
  text-align: center;
}

.site-footer__logo-img {
  display: block;
  height: 160px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.site-footer__tagline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Logo dans la colonne NAP (remplace l'ancien <strong>OSEOO</strong>) */
.site-footer__nap-logo {
  display: block;
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

@media (max-width: 720px) {
  .site-footer__brand { padding: 40px 0 24px; }
  .site-footer__logo-img { height: 110px; }
  .site-footer__tagline { font-size: 12px; letter-spacing: 0.4px; }
  .site-footer__nap-logo { height: 60px; }
}

/* Footer NAP ---------------------------------------------- */
.site-footer__nap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__nap-col strong {
  color: #fff;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.site-footer__nap-col p {
  margin: 0 0 6px;
}

.site-footer__nap a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__nap a:hover,
.site-footer__nap a:focus-visible {
  color: #fff;
}

/* Footer Contact — icônes seules (mêmes que about, beaucoup plus petites) */
.site-footer__contact-cards {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.site-footer__contact-cards .contact-square {
  width: 40px;
  height: 40px;
  aspect-ratio: auto;
  border-radius: 10px;
  gap: 0;
  padding: 0;
}

.site-footer__contact-cards .contact-square__icon svg {
  width: 18px;
  height: 18px;
}

/* Responsive ---------------------------------------------- */
@media (max-width: 1080px) {
  .blog-post__body {
    grid-template-columns: 200px 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .blog-post__body {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blog-post__toc {
    position: static;
    margin: 0 auto 32px;
    max-width: 715px;
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
  }
  .blog-post__body-inner {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .blog-post__toc {
    display: none; /* TOC cachée sur mobile pour économiser la place. */
  }
  .blog-post__faq {
    margin-top: 56px;
    padding: 0 18px;
  }
  .blog-post__faq-title {
    font-size: 24px;
  }
  .blog-post__faq-item summary {
    font-size: 16px;
  }
  .site-footer__nap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }
}


/* ============================================
   HEADER MOBILE — Top bar (Logo + CTA + Burger) + drawer slide-down
   ============================================ */
@media (max-width: 900px) {
  /* Top bar reste compact : logo à gauche, CTA + burger à droite */
  .site-header__inner {
    padding: 0 18px;
    gap: 12px;
  }

  /* MOBILE : au scroll, le HEADER ENTIER devient opaque (full-width).
     IMPORTANT : aucun backdrop-filter / transform / filter sur le header
     ni sur ses ancêtres, sinon ils créent un containing block qui casse
     le position:fixed du drawer mobile (.site-header__nav) qui ne couvrirait
     plus tout le viewport. On utilise donc un background totalement opaque. */
  .site-header.is-scrolled {
    background: #0a0a0c;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.5);
  }
  .site-header.is-scrolled .site-header__inner {
    max-width: none;
    padding: 6px 18px;
    background-color: transparent;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  /* Le header lui-même (non scrollé) ne doit pas non plus créer de containing block */
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* CTA visible et compact sur mobile (taille réduite, à côté du burger) */
  .site-header__cta {
    display: inline-flex !important;
    padding: 10px 18px;
    font-size: 13px;
  }
  .site-header.is-scrolled .site-header__cta {
    padding: 10px 16px;
    font-size: 12px;
  }

  .site-header__actions {
    gap: 10px;
  }

  /* Nav devient un drawer slide-down ancré au top, full-screen et OPAQUE.
     Backdrop-filter retiré : pas fiable sur Safari iOS pendant les transitions
     → on utilise un fond totalement opaque pour garantir l'occultation. */
  /* IMPORTANT : on cible aussi .site-header.is-scrolled .site-header__nav
     pour battre la règle desktop ligne 73-79 qui met background: transparent
     et qui sinon rend le drawer transparent dès qu'on scroll vers le bas. */
  .site-header__nav,
  .site-header.is-scrolled .site-header__nav {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #0a0a0c !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 96px 22px 40px !important;
    z-index: 90;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.4s;
  }

  .site-header.is-menu-open .site-header__nav,
  .site-header.is-scrolled.is-menu-open .site-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .site-header__nav-list li {
    width: 100%;
  }

  .site-header__nav-list a.site-header__link {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.36px;
    line-height: 1.3;
    color: #ffffff;
    padding: 4px 0;
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
  }
  .site-header__nav-list a.site-header__link:hover {
    opacity: 0.7;
  }
  .site-header__nav-list a.site-header__link.is-active {
    color: rgba(231, 231, 231, 0.6);
  }

  /* Burger toggle : au-dessus du drawer, garde son fond blanc */
  .site-header__menu-toggle {
    position: relative;
    z-index: 100;
    width: 42px;
    height: 42px;
    transition: background-color 0.3s ease;
  }

  .site-header__menu-toggle span {
    transition: transform 0.3s cubic-bezier(0.6, 0.01, 0.4, 1), opacity 0.2s ease;
  }

  /* Animation burger → X quand ouvert (2 spans) */
  .site-header__menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .site-header__menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  /* Empêche le scroll du body quand menu ouvert */
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    padding: 0 14px;
  }
  .site-header__cta {
    padding: 9px 14px;
    font-size: 12px;
  }
  .site-header__nav {
    padding: 92px 18px 36px;
  }
  .site-header__nav-list a.site-header__link {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__nav,
  .site-header__menu-toggle span {
    transition: none !important;
  }
}


/* ============================================
   AVIS GOOGLE — Carousel testimonials
   ============================================ */
.reviews {
  position: relative;
  background: #000000;
  padding: 100px 24px 120px;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.15) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.reviews__inner {
  max-width: 1316px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews__header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 532px;
  margin-left: auto;
  margin-right: auto;
}

.reviews__pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
}

.reviews__title {
  margin: 12px 0 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.115;
  letter-spacing: -0.96px;
  background: linear-gradient(180deg, #ffffff 0%, #d8dbe2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 3px;
}

.reviews__lede {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
  letter-spacing: -0.32px;
}

.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 12, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.reviews__stars {
  color: #FBBC05;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.reviews__rating-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.reviews__rating-text strong {
  color: #ffffff;
  font-weight: 600;
}

.reviews__rating-text a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease;
}

.reviews__rating-text a:hover {
  color: #ffffff;
}

/* ----- Carousel ----- */
.reviews__carousel {
  position: relative;
  margin: 48px auto 0;
  max-width: 971px;
}

.reviews__viewport {
  overflow: hidden;
  border-radius: 24px;
}

.reviews__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 48px;
  background: rgb(0, 0, 2);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 24px;
  min-height: 404px;
}

.review-slide__avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.4px;
  flex-shrink: 0;
  font-family: "General Sans", sans-serif;
}

.review-slide__avatar--1 { background: linear-gradient(135deg, #2340FF, #3DAEFF); }
.review-slide__avatar--2 { background: linear-gradient(135deg, #0077FF, #5BD8FF); }
.review-slide__avatar--3 { background: linear-gradient(135deg, #1a3a7a, #3DAEFF); }
.review-slide__avatar--4 { background: linear-gradient(135deg, #2a4ad8, #7FCBFF); }
.review-slide__avatar--5 { background: linear-gradient(135deg, #0a2a5e, #5BD8FF); }

.review-slide__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 32px;
}

.review-slide__quote {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.48px;
  color: #ffffff;
  max-width: 600px;
}

.review-slide__body {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.65);
  max-width: 504px;
  letter-spacing: -0.16px;
}

.review-slide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.review-slide__author {
  min-width: 0;
}

.review-slide__name {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.review-slide__role {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.14px;
}

.review-slide__google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

/* ----- Carousel nav (arrows) ----- */
.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.reviews__arrow {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  border: 1px solid rgb(36, 36, 39);
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.reviews__arrow:hover {
  background: rgb(36, 36, 39);
  border-color: rgb(61, 61, 63);
  transform: translateY(-1px);
}

.reviews__arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ----- CTA bottom ----- */
.reviews__cta-row {
  text-align: center;
  margin-top: 32px;
}

.reviews__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 300px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.reviews__cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .reviews { padding: 60px 18px 80px; }
  .reviews__title { font-size: 30px; letter-spacing: -0.6px; line-height: 33.45px; }
  .review-slide {
    flex-direction: column;
    padding: 28px 24px 34px;
    min-height: 348px;
    gap: 20px;
  }
  .review-slide__avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    font-size: 26px;
  }
  .review-slide__content { gap: 24px; }
  .review-slide__quote { font-size: 22px; line-height: 27.5px; letter-spacing: -0.44px; }
  .review-slide__body { font-size: 14px; line-height: 21px; }
  .review-slide__footer { flex-direction: row; align-items: center; }
  .reviews__arrow { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
  position: relative;
  background: #000002;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  min-height: 100vh;
  overflow: hidden;
}

/* ----- HERO card ----- */
.about-hero {
  position: relative;
  z-index: 1;
  padding: 120px 24px 0;
  max-width: 1316px;
  margin: 0 auto;
}

.about-hero__card {
  position: relative;
  border: 1px solid rgb(36, 36, 39);
  border-radius: 32px;
  padding: 56px 48px 80px;
  overflow: hidden;
  text-align: center;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(35, 64, 255, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 119, 255, 0.18) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.about-hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
}

/* Logo OSEOO en remplacement du pill "À propos" dans le hero about */
.about-hero__logo {
  display: block;
  height: 180px;
  width: auto;
  margin: 0 auto 4px;
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* Titre serré contre le logo (au lieu du gros gap par défaut du hero) */
.about-hero__logo + .about-hero__title { margin-top: 0; }

@media (max-width: 720px) {
  .about-hero__logo { height: 120px; margin-bottom: 0; }
}

.about-hero__title {
  margin: 12px 0 0;
  font-size: 54px;
  font-weight: 500;
  line-height: 60.21px;
  letter-spacing: -1.08px;
  background: linear-gradient(90deg, #ffffff, #DFDAFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 3px;
}

.about-hero__lede {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
}

.about-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

/* ----- ABOUT MARK (logo signature entre hero et story) ----- */
.about-mark {
  position: relative;
  z-index: 1;
  padding: 80px 24px 40px;
  display: flex;
  justify-content: center;
}

.about-mark__inner {
  max-width: 1316px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-mark__inner::before,
.about-mark__inner::after {
  content: "";
  flex: 1;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  max-width: 220px;
}

.about-mark__inner::before { margin-right: 32px; }
.about-mark__inner::after  { margin-left: 32px;  }

.about-mark__logo {
  display: block;
  height: 128px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

@media (max-width: 720px) {
  .about-mark { padding: 50px 18px 24px; }
  .about-mark__logo { height: 84px; }
  .about-mark__inner::before,
  .about-mark__inner::after { max-width: 60px; }
  .about-mark__inner::before { margin-right: 18px; }
  .about-mark__inner::after  { margin-left: 18px;  }
}

/* ----- STORY split sticky ----- */
.about-story {
  position: relative;
  z-index: 1;
  padding: 180px 24px;
  max-width: 1316px;
  margin: 0 auto;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story__col {
  position: relative;
}

.about-story__sticky {
  position: sticky;
  top: 100px;
  max-width: 460px;
}

.about-story__pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
}

.about-story__title {
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 53.52px;
  letter-spacing: -0.96px;
  font-weight: 500;
  color: #ffffff;
}

.about-story__text {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
}

.about-story__cta {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 20px;
  background: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 1px solid var(--btn-white-border);
  box-shadow: var(--btn-white-shadow);
  border-radius: 300px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 17.5px;
  letter-spacing: -0.28px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* .about-story__cta mobile : couvert par la règle d'harmonisation globale ci-dessous */

.about-story__cta:hover {
  transform: translateY(-2px);
  background: var(--btn-white-bg-hover);
  border-color: var(--btn-white-border-hover);
  box-shadow: var(--btn-white-shadow-hover);
}

.about-story__stats {
  display: grid;
  gap: 40px;
  max-width: 506px;
  justify-self: end;
  width: 100%;
}

.stat-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.stat-row__num {
  font-size: 54px;
  line-height: 60.21px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -1.08px;
}

.stat-row__num-suffix {
  display: inline;
}

.stat-row__label {
  margin-bottom: 6px;
  color: rgba(245, 245, 248, 0.7);
  font-size: 16px;
  line-height: 24px;
}

.stat-row__sep {
  height: 1px;
  background: rgb(36, 36, 39);
}

/* ----- VALUES grid ----- */
.about-values {
  position: relative;
  z-index: 1;
  padding: 0 24px 180px;
  max-width: 1316px;
  margin: 0 auto;
}

.about-values__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.about-values__pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
}

.about-values__title {
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 53.52px;
  letter-spacing: -0.96px;
  font-weight: 500;
  color: #ffffff;
}

.about-values__lede {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
}

/* ----- VALEURS — Carrousel horizontal ----- */
.values-carousel {
  position: relative;
  margin-top: 48px;
}

.values-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 8px;
  /* Effet "fade" doux sur les bords pour suggérer le défilement */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}
.values-carousel__viewport::-webkit-scrollbar { display: none; }

.values-carousel__track {
  display: inline-flex;
  gap: 24px;
  padding: 0 calc((100vw - min(404px, 90vw)) / 2);
  /* Le padding latéral permet à la première et dernière card d'être centrées au snap */
}

.value-card {
  flex: 0 0 404px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  min-height: 319px;
  padding: 48px 32px;
  background: rgb(0, 0, 2);
  border: 1px solid rgb(36, 36, 39);
  border-radius: 24px;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

.value-card.is-active {
  border-color: rgba(140, 190, 255, 0.35);
  box-shadow: 0 0 60px rgba(35, 64, 255, 0.18);
}

.value-card:hover {
  border-color: rgba(255, 255, 255, 0.20);
  transform: translateY(-3px);
}

.value-card__body { max-width: 320px; }

.value-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.48px;
  color: #ffffff;
  font-weight: 500;
}

.value-card__text {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
}

.value-card__icon {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: auto;
  height: 48px;
  color: #ffffff;
  /* Pas de cadre, pas de fond, juste le SVG en blanc */
}
.value-card__icon svg {
  height: 48px;
  width: auto;          /* préserve le ratio (teamwork est plus large) */
  display: block;
}

/* Contrôles du carrousel */
.values-carousel__controls {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.values-carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.values-carousel__arrow:hover {
  border-color: rgba(140, 190, 255, 0.4);
  background: rgb(18, 20, 28);
  transform: translateY(-2px);
}

.values-carousel__arrow:active { transform: translateY(0); }

.values-carousel__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.values-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}

.values-carousel__dot:hover { background: rgba(255, 255, 255, 0.7); }

.values-carousel__dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

/* ----- CONTACT 4 squares ----- */
.about-contact {
  position: relative;
  z-index: 1;
  padding: 0 24px 180px;
  max-width: 1316px;
  margin: 0 auto;
}

.about-contact__header {
  text-align: center;
  max-width: 554px;
  margin: 0 auto 48px;
}

.about-contact__pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
}

.about-contact__title {
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 53.52px;
  letter-spacing: -0.96px;
  font-weight: 500;
  color: #ffffff;
}

.about-contact__lede {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
}

.about-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.contact-square {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgb(36, 36, 39);
  border-radius: 32px;
  background: rgb(0, 0, 2);
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.45s ease, transform 0.45s ease;
}

/* Overlay décoratif révélé au survol */
.contact-square::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: url("/assets/contact-square-bg.jpg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Liseré bleu vif (rgb(35, 64, 255)) qui apparaît avec l'overlay */
.contact-square::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  border: 1px solid rgb(35, 64, 255);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.contact-square > * {
  position: relative;
  z-index: 2;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s ease;
}

.contact-square:hover {
  border-color: rgba(140, 190, 255, 0.6);
  transform: translateY(-4px);
}

.contact-square:hover::before { opacity: 0.97437; }

.contact-square:hover::after { opacity: 1; }

/* Icônes des 4 contact-squares : noir & blanc, sans cadre coloré.
   Toutes les icônes sont en blanc, sur la card sombre. Au survol, l'overlay
   navy se révèle (cf. .contact-square::before) et l'icône reste blanche. */
.contact-square__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-square:hover .contact-square__icon {
  transform: scale(1.08);
}

.contact-square__label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
  color: #ffffff;
}

.contact-square__sub {
  font-size: 13px;
  color: rgba(245, 245, 248, 0.55);
  line-height: 1.4;
  text-align: center;
  padding: 0 12px;
}

.contact-square:hover .contact-square__sub { color: rgba(255, 255, 255, 0.85); }

@media (prefers-reduced-motion: reduce) {
  .contact-square,
  .contact-square::before,
  .contact-square::after,
  .contact-square__icon,
  .contact-square > * { transition: none; }
}

/* ----- FAQ accordion ----- */
.about-faq {
  position: relative;
  z-index: 1;
  padding: 0 24px 180px;
  max-width: 800px;
  margin: 0 auto;
}

.about-faq__header {
  text-align: center;
  max-width: 400px;
  margin: 0 auto 48px;
}

.about-faq__pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 300px;
  border: 1px solid rgb(36, 36, 39);
  background: rgb(12, 12, 15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 15px;
}

.about-faq__title {
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 53.52px;
  letter-spacing: -0.96px;
  font-weight: 500;
  color: #ffffff;
}

.about-faq__lede {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
}

.about-faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgb(36, 36, 39);
  padding: 40px 0;
}

.faq-item:first-child { padding-top: 0; }

.faq-item__head {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.faq-item__head::-webkit-details-marker { display: none; }

.faq-item__q {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.48px;
  color: #ffffff;
  font-weight: 500;
}

.faq-item__plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-item__plus::before,
.faq-item__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__plus::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-item__plus::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item__body {
  margin-top: 16px;
  max-width: 600px;
}

.faq-item__body p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(245, 245, 248, 0.7);
}

@media (max-width: 900px) {
  .about-story__inner { grid-template-columns: 1fr; gap: 44px; }
  .about-story__sticky { position: static; max-width: none; }
  .about-story__stats { justify-self: stretch; max-width: none; }
  .about-contact__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 720px) {
  .about-hero { padding: 80px 18px 0; }
  .about-hero__card { padding: 36px 24px 48px; border-radius: 16px; }
  .about-hero__title { font-size: 36px; line-height: 40.14px; letter-spacing: -0.72px; }
  .about-story { padding: 100px 18px; }
  .about-story__title,
  .about-values__title,
  .about-contact__title,
  .about-faq__title { font-size: 30px; line-height: 33.45px; letter-spacing: -0.6px; }
  .stat-row__num { font-size: 36px; line-height: 40.14px; letter-spacing: -0.72px; }
  .about-values { padding: 0 18px 100px; }
  .value-card { flex-basis: 300px; min-height: 200px; padding: 28px 20px; border-radius: 16px; gap: 28px; }
  .value-card__body { max-width: 260px; }
  .value-card__title { font-size: 22px; line-height: 27.5px; letter-spacing: -0.44px; }
  .value-card__text { font-size: 15px; line-height: 22px; }
  .values-carousel { margin-top: 32px; }
  .values-carousel__track { gap: 16px; padding: 0 calc((100vw - 300px) / 2); }
  .values-carousel__viewport {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .about-contact { padding: 0 18px 100px; }
  .about-contact__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .contact-square { border-radius: 16px; }
  .contact-square__icon svg { width: 36px; height: 36px; }
  .contact-square__label { font-size: 16px; }
  .contact-square__sub { font-size: 12px; }
  .about-faq { padding: 0 18px 100px; }
  .about-faq__header { margin-bottom: 50px; }
  .faq-item { padding: 24px 0; }
  .faq-item__q { font-size: 20px; line-height: 25px; letter-spacing: -0.4px; }
}

/* ============================================================
   BOUTONS MOBILE, harmonisation globale
   Sur mobile (≤720px) tous les CTAs in-content adoptent une typo
   compacte (15px / 20px) et un padding mesuré (11px 26px), width auto.
   Le CTA du header reste compact (à côté du burger), voir .site-header__cta.
   ============================================================ */
@media (max-width: 720px) {
  .intro-pitch__btn,
  .intro-pitch__btn--primary,
  .intro-pitch__btn--ghost,
  .about-story__cta,
  .pricing__cta,
  .estimator__summary-cta,
  .formula__cta,
  .contact-choice__btn,
  .reviews__cta,
  .blog-post__cta-btn,
  .works__cta {
    padding: 11px 26px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.3px;
    border-radius: 300px;
  }
  /* Tracks/textes alignés sur la nouvelle hauteur */
  .intro-pitch__btn-track,
  .intro-pitch__btn-text {
    height: 20px;
    line-height: 20px;
  }
  .intro-pitch__btn-text--hover { transform: translateY(20px); }
  .intro-pitch__btn:hover .intro-pitch__btn-text { transform: translateY(-20px); }
}

/* ============================================================
   TITRES, dégradé argent unifié, identique au H1 de la page d'accueil
   (.hero__title). Centralisé ici pour TOUS les H1/H2 principaux
   du site afin de garantir la cohérence chromatique.
   ============================================================ */
:root {
  /* Blanc polaire pur, sans teinte. Blanc éclatant au sommet,
     descente sur des gris neutres pour la profondeur, sans aucun bleu. */
  --title-gradient: linear-gradient(
    180deg,
    #ffffff 0%,
    #fdfdfd 25%,
    #f3f3f3 55%,
    #dcdcdc 85%,
    #c0c0c0 100%
  );
  /* Halo blanc neutre, pas de teinte */
  --title-drop-shadow:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4))
    drop-shadow(0 0 32px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 60px rgba(255, 255, 255, 0.10));
}

.hero__title,
.steps__title,
.contact-hero__title,
.pricing__title,
.pricing-page__title,
.estimator__title,
.estimator-page__title,
.blog__title,
.blog-post__title,
.reviews__title,
.about-hero__title,
.about-story__title,
.about-values__title,
.about-contact__title,
.about-faq__title,
.site-footer__title,
.commitments__title,
.works__title,
.contact-cube-text .steps__title {
  background: var(--title-gradient) !important;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  filter: var(--title-drop-shadow);
}
