.top-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.1rem 0;
}

.top-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--surface-strong) 76%, rgba(255, 255, 255, 0.5)),
      color-mix(in srgb, var(--surface) 62%, transparent)
    ),
    radial-gradient(
      320px 80px at 12% 10%,
      color-mix(in srgb, var(--accent) 16%, #ffffff),
      transparent 72%
    );
  border-bottom: 1px solid transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 12px 42px rgba(16, 22, 38, 0.09);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition:
    border-color var(--time-fast) var(--ease-snappy),
    background var(--time-base) var(--ease-smooth),
    box-shadow var(--time-base) var(--ease-smooth);
  z-index: -1;
}

.top-nav.is-scrolled::before {
  border-bottom-color: var(--stroke);
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--surface-strong) 88%, rgba(255, 255, 255, 0.62)),
      color-mix(in srgb, var(--surface) 64%, transparent)
    ),
    radial-gradient(
      300px 80px at 12% 10%,
      color-mix(in srgb, var(--accent) 15%, #ffffff),
      transparent 70%
    );
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform var(--time-fast) var(--ease-snappy);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-icon {
  flex-shrink: 0;
  transition: transform var(--time-fast) var(--ease-snappy);
}

.brand:hover .brand-icon {
  transform: scale(1.05);
}

.brand-name {
  font-size: 0.95rem;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.nav-links a {
  position: relative;
  transition: color var(--time-fast) var(--ease-snappy);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--accent) 66%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--time-fast) var(--ease-snappy);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero-grid {
  display: grid;
  gap: 2.3rem;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
}

.hero {
  position: relative;
  overflow: clip;
  isolation: isolate;
  min-height: 92svh;
  display: grid;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 3;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  text-align: center;
  max-width: 900px;
  position: relative;
}

/* ── Halftone dither decoration ─────────────────────────────── */

/* Dynamic dotted wave host */
.hero-dither {
  position: absolute;
  inset: -15% -20% -30% -10%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
  overflow: hidden;
  filter: contrast(1.05);
}

.hero-dither-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Additional glow layer behind the wave */
.hero-dither::before {
  content: '';
  position: absolute;
  inset: 20% 10% 30% 20%;
  background: radial-gradient(ellipse 70% 50% at 60% 40%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  animation: waveGlow 8s ease-in-out infinite;
}

@keyframes waveGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

@media (max-width: 980px) {
  .hero-dither {
    inset: 0% -25% -25% -10%;
    opacity: 0.5;
  }

  .hero-dither::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-dither {
    inset: 5% -20% -20% -15%;
    opacity: 0.45;
  }
}

.hero-title {
  font-family: var(--hero-font);
  font-size: clamp(2.45rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 18ch;
  text-wrap: balance;
}

.hero-text {
  color: var(--text-secondary);
  max-width: 68ch;
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.hero-metrics {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-metrics li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-metrics li:not(:last-child)::after {
  content: "•";
  margin-left: 1.2rem;
  color: var(--stroke);
  font-weight: 400;
}

.hero-metrics strong {
  font-size: 1rem;
  font-family: var(--hero-font);
  font-weight: 700;
  color: var(--accent);
}

.hero-metrics span {
  color: var(--text-secondary);
}

.hero-3d-stage {
  position: absolute;
  inset: -12% -16% -28% -16%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(circle at 42% 42%, color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, 0.16)), transparent 56%),
    radial-gradient(circle at 66% 74%, color-mix(in srgb, var(--accent) 16%, rgba(0, 0, 0, 0.24)), transparent 66%);
}

.hero-3d-stage::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.2), transparent 54%),
    radial-gradient(circle at 72% 70%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 62%);
  filter: blur(26px);
  z-index: 0;
  pointer-events: none;
}

.hero-3d-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 42%,
    rgba(1, 5, 14, 0.28) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.hero-3d-canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.hero-3d-fallback {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 20%, rgba(255, 255, 255, 0.1)), transparent 70%),
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.22), transparent 42%),
    radial-gradient(circle at 76% 72%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 50%);
  overflow: hidden;
  z-index: 1;
}

.hero-3d-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    color-mix(in srgb, var(--accent) 45%, #ffffff) 1px,
    transparent 1px
  );
  background-size: 16px 16px;
  opacity: 0.42;
  filter: blur(0.4px);
}

.hero-3d-stage.is-ready .hero-3d-fallback {
  opacity: 0;
  transition: opacity 320ms ease;
}

.proof {
  padding-top: 2.5rem;
}

.proof-grid {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: transparent;
  padding: 1.6rem 1.8rem;
  display: grid;
  gap: 1.2rem;
}

.proof-grid p {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

.proof-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.proof-grid li {
  border: 1px solid var(--stroke);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition:
    border-color 200ms var(--ease-smooth),
    color 200ms var(--ease-smooth),
    transform 200ms var(--ease-smooth);
}

.proof-grid li:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--stroke));
  color: var(--accent);
  transform: translateY(-2px);
}

.styles-story {
  position: relative;
}

.styles-pin {
  position: sticky;
  top: 14vh;
  min-height: 72vh;
  display: grid;
  place-items: center;
  z-index: 4;
}

.styles-hero {
  width: min(980px, 100%);
  border-radius: calc(var(--radius-lg) + 10px);
  padding: clamp(1.4rem, 3.8vw, 3rem);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  box-shadow: var(--shadow-glass);
  transition:
    opacity 320ms ease,
    transform 380ms ease,
    border-color 380ms ease;
}

.styles-hero.is-changing {
  opacity: 0.72;
  transform: translateY(8px) scale(0.987);
}

.style-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--hero-font);
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.style-counter span:first-child {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--accent);
}

.style-counter span:last-child {
  font-size: 0.95rem;
}

.styles-hero h2 {
  font-family: var(--hero-font);
  font-size: clamp(2.3rem, 6.6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.styles-hero > p:last-child {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.9vw, 1.26rem);
  max-width: 48ch;
  text-wrap: pretty;
}

.styles-track {
  margin-top: -72vh;
  display: grid;
}

.style-step {
  min-height: 86vh;
  display: grid;
  place-items: center;
  opacity: 0.33;
  transition: opacity 320ms ease;
}

.style-step p {
  color: color-mix(in srgb, var(--text-secondary) 72%, transparent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.style-step.active {
  opacity: 1;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.offer-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: var(--shadow-glass);
  padding: 1.5rem 1.4rem;
  display: grid;
  gap: 0.9rem;
  transition:
    transform 250ms var(--ease-smooth),
    box-shadow 250ms var(--ease-smooth),
    border-color 250ms var(--ease-smooth);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--accent) 18%, transparent);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--stroke));
}

.offer-card h3 {
  font-family: var(--hero-font);
  font-size: 1.35rem;
  line-height: 1.15;
}

.offer-card p {
  color: var(--text-secondary);
  line-height: 1.55;
}

.timeline {
  display: grid;
  gap: 1.2rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.2rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  background: transparent;
  transition:
    transform 250ms var(--ease-smooth),
    box-shadow 250ms var(--ease-smooth),
    border-color 250ms var(--ease-smooth);
}

.timeline li:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent) 14%, transparent);
  border-color: color-mix(in srgb, var(--accent) 25%, var(--stroke));
}

.timeline span {
  font-size: 1.8rem;
  font-family: var(--hero-font);
  color: var(--accent);
  font-weight: 700;
}

.timeline h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.timeline p {
  color: var(--text-secondary);
  line-height: 1.55;
}

.contact-wrap {
  border-radius: calc(var(--radius-lg) + 8px);
  border: 1px solid var(--stroke);
  background: transparent;
  box-shadow: var(--shadow-glass);
  padding: clamp(1.2rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
}

.contact-wrap h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-family: var(--hero-font);
  line-height: 1;
  max-width: 18ch;
}

.contact-wrap p {
  color: var(--text-secondary);
  max-width: 55ch;
}

.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-strong);
  border-top: 1px solid var(--stroke);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--time-fast) ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color var(--time-fast) ease;
}

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

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-nav,
  .footer-contact {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1060px) {
  .hero-3d-stage {
    inset: -10% -32% -24% -32%;
  }

  .styles-pin {
    top: 11vh;
    min-height: 66vh;
  }

  .styles-track {
    margin-top: -66vh;
  }

  .style-step {
    min-height: 76vh;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Mobile Navigation ─────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stroke);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.nav-mobile a {
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--stroke);
}

.nav-mobile a:last-child {
  border-bottom: none;
  margin-top: 0.5rem;
}

.nav-mobile.is-open {
  display: flex;
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10.6vw, 3.9rem);
  }

  .hero-3d-stage {
    inset: -8% -52% -22% -52%;
  }

  .hero {
    min-height: 86svh;
  }

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

  .timeline li {
    grid-template-columns: 1fr;
  }

  .styles-pin {
    top: 9vh;
    min-height: 62vh;
  }

  .styles-track {
    margin-top: -62vh;
  }

  .style-step {
    min-height: 68vh;
  }

  .styles-hero {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .styles-hero h2 {
    font-size: clamp(1.8rem, 11.8vw, 3rem);
  }
}

/* ══════════════════════════════════════════════════════════════
   SHOWCASE — Section full-screen business universes
   ══════════════════════════════════════════════════════════════ */

/* Section : 1000vh = 10 slides × 100vh d'espace de scroll (1 intro + 9 biz) */
.showcase {
  position: relative;
  height: 1000vh;
}

/* Pin sticky : reste visible pendant tout le scroll de la section */
.showcase-pin {
  position: sticky;
  top: 0;
  height: 100vh; /* fallback */
  height: 100svh; /* small viewport height — gère l'address bar iOS/Android */
  overflow: hidden;
  isolation: isolate; /* stacking context → masque les orbs du body */
  transform: translateZ(0); /* Force composite layer sur le GPU */
}

/* ── Frames (un par univers business) ──────────────────────── */
.sc-frame {
  position: absolute;
  inset: 0;
  background: var(--bg, #111);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  /* Masque par defaut */
  opacity: 0;
  transform: scale(1.02) translateY(8px);
  pointer-events: none;
  transition:
    opacity 450ms var(--ease-out),
    transform 500ms var(--ease-smooth);
  /* will-change gere dynamiquement en JS : seulement sur les 2 frames en transition */
  contain: layout paint;
}

.sc-frame.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* ── Fond décoratif (radial gradient thématisé) ───────────── */
.sc-bg-deco {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 68% 38%, var(--sc-deco, transparent), transparent 70%),
    radial-gradient(ellipse 35% 50% at 22% 68%, var(--sc-deco, transparent), transparent 60%);
}

/* Grille neon SaaS */
body[data-biz="saas"] .sc-bg-deco {
  background:
    radial-gradient(ellipse 50% 60% at 62% 40%, rgba(26, 140, 255, 0.18), transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(26, 140, 255, 0.04) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(26, 140, 255, 0.04) 49px);
}

/* Slash géométrique Mode */
body[data-biz="mode"] .sc-bg-deco {
  background: linear-gradient(135deg, transparent 45%, rgba(8, 8, 8, 0.05) 46%, transparent 47%);
}

/* ── Navigation mock ────────────────────────────────────────── */
.sc-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.4rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--bg, #111) 82%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sc-logo {
  font-family: var(--hero-font, sans-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.sc-logo-accent {
  color: var(--accent);
}

.sc-nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
}

.sc-cta-btn {
  background: var(--accent);
  color: var(--button-text);
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--time-fast) var(--ease-snappy),
    box-shadow var(--time-fast) var(--ease-snappy);
}

.sc-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* ── Hero mock ─────────────────────────────────────────────── */
.sc-hero {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.4rem, 4vw, 3.5rem) 2rem;
  display: grid;
  gap: 1.2rem;
  align-content: start;
  /* Stagger-in apres l'animation clip-path */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 400ms 100ms var(--ease-out),
    transform 450ms 100ms var(--ease-smooth);
}

.sc-frame.is-active .sc-hero {
  opacity: 1;
  transform: translateY(0);
}

.sc-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.sc-headline {
  font-family: var(--hero-font, sans-serif);
  font-size: var(--sc-hl-size, clamp(2.4rem, 5.5vw, 5rem));
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 15ch;
}

body[data-biz="mode"] .sc-headline {
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.sc-sub {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  max-width: 52ch;
}

.sc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition:
    transform var(--time-fast) var(--ease-snappy),
    box-shadow var(--time-fast) var(--ease-snappy);
}

.sc-btn:hover {
  transform: translateY(-1px);
}

.sc-btn-primary {
  background: var(--accent);
  color: var(--button-text);
}

.sc-btn-primary:hover {
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 30%, transparent);
}

.sc-btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--stroke);
}

/* ── Dashboard chrome SaaS ─────────────────────────────────── */
.sc-dashboard {
  margin-top: 1.2rem;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  overflow: hidden;
  max-width: 400px;
  background: color-mix(in srgb, var(--surface-strong) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sc-dash-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.sc-dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stroke);
}

.sc-dash-url {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-family: "Sora", monospace;
}

.sc-dash-body {
  display: flex;
  gap: 1rem;
  padding: 0.75rem;
}

.sc-dash-stat {
  font-family: var(--hero-font);
  font-size: 0.95rem;
  color: var(--text-primary);
  display: grid;
  gap: 0.1rem;
}

.sc-dash-stat small {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-family: var(--body-font);
}

.sc-dash-stat--accent {
  color: var(--accent);
}

/* ── Cards mock ─────────────────────────────────────────────── */
.sc-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1.4rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  /* Stagger-in legerement apres le hero */
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 400ms 180ms var(--ease-out),
    transform 450ms 180ms var(--ease-smooth);
}

.sc-frame.is-active .sc-cards {
  opacity: 1;
  transform: translateY(0);
}

.sc-card {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  gap: 0.3rem;
}

.sc-card strong {
  font-family: var(--hero-font);
  font-size: 1.05rem;
  color: var(--text-primary);
}

.sc-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

.sc-card--accent {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
}

/* ── Label overlay (numero + nom du business) ──────────────── */
.sc-label {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.4rem, 4vw, 3rem);
  z-index: 10;
  text-align: right;
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 350ms 250ms var(--ease-out),
    transform 400ms 250ms var(--ease-smooth);
}

.sc-frame.is-active .sc-label {
  opacity: 1;
  transform: translateX(0);
}

.sc-label-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.sc-label-biz {
  font-family: var(--hero-font);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
}

.sc-label-line {
  font-size: 0.82rem;
  color: var(--text-secondary);
  max-width: 28ch;
}

/* ── Responsive showcase ───────────────────────────────────── */
@media (max-width: 720px) {
  .sc-nav-links {
    display: none;
  }

  .sc-cards {
    grid-template-columns: repeat(3, 240px); /* Défilement horizontal sur mobile */
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.25rem;
  }

  .sc-cards::-webkit-scrollbar {
    display: none;
  }

  .sc-label {
    right: 1rem;
    bottom: 1rem;
  }

  .sc-dashboard {
    max-width: 100%;
  }

  .showcase {
    height: 1100vh; /* un peu plus pour confort mobile */
  }
}

/* ══════════════════════════════════════════════════════════════
   SHOWCASE AMÉLIORATIONS — dots, CTA, intro, audit
   ══════════════════════════════════════════════════════════════ */

/* ── Dots de navigation ─────────────────────────────────────── */
.sc-dots {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sc-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text-primary, #fff) 30%, transparent);
  border: none;
  cursor: pointer;
  transition:
    width 300ms ease,
    background 300ms ease;
  padding: 0;
}

.sc-dot.is-active {
  width: 18px;
  background: var(--accent, #0e69ff);
}

@media (max-width: 720px) {
  .sc-dots {
    display: none;
  }
}

/* ── CTA flottant ───────────────────────────────────────────── */
.sc-float-cta {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.4rem, 4vw, 3rem);
  z-index: 30;
  background: var(--accent);
  color: var(--button-text);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 300ms 400ms var(--ease-out),
    transform 350ms 400ms var(--ease-smooth),
    background 300ms ease,
    color 300ms ease,
    box-shadow 200ms ease;
  pointer-events: none;
}

.showcase-pin.has-active .sc-float-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.showcase-pin.has-active .sc-float-cta:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 40%, transparent);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .sc-float-cta {
    display: none;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .sc-float-cta {
    font-size: 0.78rem;
    padding: 0.6rem 0.9rem;
    bottom: 1.2rem;
    left: 1.2rem;
  }
}

/* ── Frame intro ────────────────────────────────────────────── */
.sc-frame--intro {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--bg);
  grid-template-rows: none;
}

.sc-frame--intro .sc-bg-deco {
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 60%);
}

.sc-intro-content {
  display: grid;
  gap: 1.6rem;
  max-width: 720px;
  padding: 0 clamp(2rem, 6vw, 5rem);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms 150ms ease,
    transform 600ms 150ms ease;
}

.sc-frame--intro.is-active .sc-intro-content {
  opacity: 1;
  transform: translateY(0);
}

.sc-intro-title {
  font-family: var(--hero-font, sans-serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin: 0;
}

.sc-intro-sub {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  max-width: 48ch;
}

.sc-intro-scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.sc-intro-scroll span {
  width: 1px;
  height: 24px;
  background: var(--accent);
  animation: introLineGrow 1.4s ease-in-out infinite;
}

@keyframes introLineGrow {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════════
   SECTION DEVIS
   ══════════════════════════════════════════════════════════════ */

.devis-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.devis-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.devis-intro {
  display: grid;
  gap: 1.2rem;
  position: sticky;
  top: 120px;
}

.devis-intro h2 {
  font-family: var(--hero-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.devis-text {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 42ch;
  line-height: 1.6;
}

.devis-benefits {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.devis-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.devis-benefit-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Form styles */
.devis-form {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 24px;
  border: 1px solid var(--stroke);
}

.devis-form-group {
  display: grid;
  gap: 0.5rem;
}

.devis-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.devis-form-group label .required {
  color: var(--accent);
  margin-left: 0.15em;
}

.devis-form-group input,
.devis-form-group select,
.devis-form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--text-primary);
  font-family: var(--body-font);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.devis-form-group input::placeholder,
.devis-form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.devis-form-group input:focus,
.devis-form-group select:focus,
.devis-form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
}

.devis-form-group select option {
  background: var(--bg);
  color: var(--text-primary);
}

.devis-form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

/* Radio buttons for project type */
.devis-project-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.devis-radio {
  cursor: pointer;
}

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

.devis-radio-box {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition:
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.devis-radio:hover .devis-radio-box {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--stroke));
  transform: translateY(-1px);
}

.devis-radio input:checked + .devis-radio-box {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--accent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 20%, transparent);
}

.devis-radio input:focus-visible + .devis-radio-box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Submit button */
.devis-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  width: 100%;
}

.devis-submit svg {
  transition: transform 300ms ease;
}

.devis-submit:hover svg {
  transform: translateX(4px);
}

.devis-submit.is-success {
  background: #22c55e;
  border-color: #22c55e;
}

.devis-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.devis-privacy {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: -0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .devis-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .devis-intro {
    position: static;
    text-align: center;
    justify-items: center;
  }

  .devis-intro h2 {
    max-width: none;
  }

  .devis-text {
    max-width: 56ch;
  }

  .devis-benefits {
    justify-items: center;
  }
}

@media (max-width: 480px) {
  .devis-project-options {
    flex-direction: column;
  }

  .devis-radio-box {
    text-align: center;
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════
   OPTIMISATIONS PERFORMANCE — content-visibility, GPU layers
   ══════════════════════════════════════════════════════════════ */

/* Sections sous le fold : le navigateur peut sauter le rendu tant qu'elles
   sont hors viewport. Gain significatif au premier paint. */
.offers,
.process,
.devis-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* Réduire backdrop-filter sur mobile : trop coûteux sur GPU mobile */
@media (max-width: 720px) {
  .sc-nav {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .sc-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Overscroll lockout dans le showcase pour éviter le rebond iOS */
.showcase {
  overscroll-behavior: none;
}
/* Showcase interactions */
.sc-nav-item {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  transition: color var(--time-fast) var(--ease-snappy);
}

.sc-nav-item:hover,
.sc-nav-item:focus-visible {
  color: var(--text-primary);
  outline: none;
}

.sc-nav-item.is-active {
  color: var(--accent);
}

.sc-card {
  cursor: pointer;
  transition:
    border-color var(--time-fast) var(--ease-snappy),
    box-shadow var(--time-fast) var(--ease-snappy),
    transform var(--time-fast) var(--ease-snappy);
}

.sc-card:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 68%, transparent);
  outline-offset: 3px;
}

.sc-card.is-selected {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 20%, transparent);
}

.sc-btn.is-clicked,
.sc-cta-btn.is-clicked {
  animation: scButtonTap 320ms ease;
}

@keyframes scButtonTap {
  0% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-1px) scale(0.98);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.sc-live-note {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3rem);
  bottom: 1.1rem;
  z-index: 24;
  margin: 0;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--stroke));
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  pointer-events: none;
}

.sc-live-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sc-intro-btn {
  width: fit-content;
}

@media (max-width: 720px) {
  .sc-intro-btn {
    width: 100%;
    justify-content: center;
  }

  .sc-live-note {
    left: 1rem;
    bottom: 0.85rem;
    font-size: 0.72rem;
  }
}

/* ============================================
   SHOWCASE UNIFIED LAYOUT
   Structure claire : Nav | Hero + Panel | Cards
   ============================================ */

/* Base grid for all business slides */
.showcase .sc-frame[data-biz]:not(.sc-frame--intro) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "nav nav"
    "hero panel"
    "cards cards";
  gap: 0;
  min-height: 100%;
}

.showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-nav {
  grid-area: nav;
  padding-inline: clamp(1.4rem, 3vw, 2.5rem);
}

.showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-hero {
  grid-area: hero;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.4rem, 3vw, 2.5rem) 1.5rem;
  align-content: start;
  gap: 1.1rem;
}

.showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-cards {
  grid-area: cards;
  padding: 0 clamp(1.4rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Panel area - right side feature content */
.sc-feature-panel,
.sc-menu-board,
.sc-map-mock,
.sc-slot-board,
.sc-kpi-grid,
.sc-proof-rail,
.sc-care-flow,
.sc-material-grid,
.sc-look-strip {
  grid-area: panel;
  align-self: center;
  margin: 0 clamp(1.4rem, 3vw, 2.5rem) 0 0;
  max-width: 380px;
  z-index: 3;
}

/* Common panel styles */
.sc-feature-panel,
.sc-menu-board,
.sc-map-mock,
.sc-slot-board {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.2rem;
}

.sc-panel-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-secondary);
}

/* Headline constraints */
.showcase .sc-headline {
  max-width: 14ch;
  text-wrap: balance;
}

/* Interactive element groups */
.sc-chip-row,
.sc-slot-grid,
.sc-map-pins {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sc-kpi-grid,
.sc-proof-rail,
.sc-care-flow,
.sc-material-grid {
  display: grid;
  gap: 0.6rem;
}

.sc-look-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
}

/* Base interactive element styles */
.sc-chip,
.sc-slot,
.sc-map-pin,
.sc-material,
.sc-kpi,
.sc-proof-item,
.sc-care-step,
.sc-look-card {
  border: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--text-primary);
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.sc-chip,
.sc-slot,
.sc-map-pin,
.sc-material {
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
}

.sc-kpi,
.sc-proof-item,
.sc-care-step {
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.sc-look-card {
  padding: 0.8rem 1rem;
  display: grid;
  gap: 0.2rem;
  min-width: 160px;
}

/* Hover states */
.sc-chip:hover,
.sc-slot:hover,
.sc-map-pin:hover,
.sc-material:hover,
.sc-kpi:hover,
.sc-proof-item:hover,
.sc-care-step:hover,
.sc-look-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 12%, transparent);
}

/* Active states */
.sc-chip.is-active,
.sc-slot.is-active,
.sc-map-pin.is-active,
.sc-material.is-active,
.sc-kpi.is-active,
.sc-proof-item.is-active,
.sc-care-step.is-active,
.sc-look-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 22%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
}

/* Element-specific typography */
.sc-kpi span,
.sc-proof-item span,
.sc-care-step span {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.sc-kpi strong,
.sc-proof-item strong,
.sc-care-step strong {
  font-size: 0.95rem;
  font-family: var(--hero-font);
}

.sc-look-card span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.sc-look-card strong {
  font-size: 0.9rem;
  line-height: 1.25;
}

/* Menu board specifics */
.sc-menu-board ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.sc-menu-board li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed color-mix(in srgb, var(--stroke) 60%, transparent);
  padding-bottom: 0.5rem;
}

.sc-menu-board li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sc-menu-board strong {
  font-family: var(--hero-font);
  color: var(--accent);
}

/* Map mock specifics */
.sc-map-mock {
  min-height: 200px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent),
    color-mix(in srgb, var(--surface-strong) 90%, transparent);
}

.sc-map-mock > span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Care flow step numbers */
.sc-care-step strong {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  font-size: 0.8rem;
}

/* ============================================
   SLIDE-SPECIFIC LAYOUTS
   ============================================ */

/* TECH - Apple-style dark product showcase */
.showcase .sc-frame[data-biz='tech'] {
  background: #000;
  color: #f5f5f7;
}

.showcase .sc-frame[data-biz='tech'] .sc-bg-deco {
  background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(0, 113, 227, 0.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 70%, rgba(94, 92, 230, 0.12) 0%, transparent 60%);
}

.showcase .sc-frame[data-biz='tech'] .sc-nav {
  background: rgba(0, 0, 0, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(120%) blur(20px);
  -webkit-backdrop-filter: saturate(120%) blur(20px);
}

.showcase .sc-frame[data-biz='tech'] .sc-logo {
  color: #f5f5f7;
  letter-spacing: 0.02em;
}

.showcase .sc-frame[data-biz='tech'] .sc-nav-links li {
  color: rgba(245, 245, 247, 0.72);
}

.showcase .sc-frame[data-biz='tech'] .sc-cta-btn {
  background: #0071e3;
  color: #fff;
  border-color: transparent;
}

.showcase .sc-frame[data-biz='tech'] .sc-cta-btn:hover {
  background: #0077ed;
}

.showcase .sc-frame[data-biz='tech'] .sc-kicker {
  color: rgba(245, 245, 247, 0.55);
}

.showcase .sc-frame[data-biz='tech'] .sc-headline {
  color: #f5f5f7;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.showcase .sc-frame[data-biz='tech'] .sc-headline-accent {
  color: #0071e3;
}

.showcase .sc-frame[data-biz='tech'] .sc-sub {
  color: rgba(245, 245, 247, 0.55);
}

.showcase .sc-frame[data-biz='tech'] .sc-btn-primary {
  background: #0071e3;
  color: #fff;
  border-color: transparent;
  font-size: 0.82rem;
}

.showcase .sc-frame[data-biz='tech'] .sc-btn-ghost {
  color: #2997ff;
  border-color: rgba(41, 151, 255, 0.4);
  background: transparent;
}

/* Tech specs row */
.sc-tech-specs {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.sc-spec {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sc-spec-val {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #f5f5f7;
  letter-spacing: -0.02em;
  line-height: 1;
}

.sc-spec-label {
  font-size: 0.65rem;
  color: rgba(245, 245, 247, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Phone mockup CSS-only */
.sc-tech-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 280px;
}

.sc-phone-mockup {
  position: relative;
  width: 160px;
  height: 320px;
  background: linear-gradient(145deg, #1c1c1e 0%, #2c2c2e 40%, #1c1c1e 100%);
  border-radius: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 8px 24px rgba(0, 113, 227, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sc-phone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 11px;
  background: #000;
  border-radius: 8px;
  z-index: 2;
}

.sc-phone-screen {
  position: absolute;
  inset: 6px;
  border-radius: 30px;
  overflow: hidden;
  background: #0a0a0a;
}

.sc-phone-wallpaper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 70%, rgba(94, 92, 230, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 113, 227, 0.45) 0%, transparent 60%),
    linear-gradient(160deg, #0d0d1a 0%, #000 100%);
}

.sc-phone-glow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.35) 0%, transparent 70%);
  filter: blur(16px);
}

.sc-phone-time {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  z-index: 1;
}

.sc-phone-shine {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 50%;
  border-radius: 30px 30px 60% 60%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

/* Cards dark overrides */
.showcase .sc-frame[data-biz='tech'] .sc-cards {
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
}

.showcase .sc-frame[data-biz='tech'] .sc-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f5f5f7;
}

.showcase .sc-frame[data-biz='tech'] .sc-card--accent {
  background: #0071e3;
  border-color: transparent;
}

.showcase .sc-frame[data-biz='tech'] .sc-card strong {
  color: #f5f5f7;
}

.showcase .sc-frame[data-biz='tech'] .sc-card p {
  color: rgba(245, 245, 247, 0.6);
}

.showcase .sc-frame[data-biz='tech'] .sc-card--accent p {
  color: rgba(255, 255, 255, 0.8);
}

.showcase .sc-frame[data-biz='tech'] .sc-card-price {
  color: rgba(245, 245, 247, 0.85);
}

.showcase .sc-frame[data-biz='tech'] .sc-card--accent .sc-card-price {
  color: #fff;
}

.showcase .sc-frame[data-biz='tech'] .sc-card-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.showcase .sc-frame[data-biz='tech'] .sc-card-icon {
  font-size: 1.4rem;
}

/* Label dark */
.showcase .sc-frame[data-biz='tech'] .sc-label {
  color: rgba(245, 245, 247, 0.4);
}

.showcase .sc-frame[data-biz='tech'] .sc-label-num,
.showcase .sc-frame[data-biz='tech'] .sc-label-biz {
  color: rgba(245, 245, 247, 0.7);
}

/* TECH - Apple-style centered product hero */
.showcase .sc-frame--tech-centered {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: unset;
  grid-template-rows: unset;
  grid-template-areas: unset;
}

.showcase .sc-frame--tech-centered .sc-nav {
  flex-shrink: 0;
}

.sc-tech-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 2rem clamp(1.4rem, 4vw, 3rem);
}

.sc-tech-product {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-phone-hero {
  width: 200px;
  height: 400px;
  transform: perspective(1000px) rotateY(-8deg);
  transition: transform 0.5s ease;
}

.sc-frame--tech-centered:hover .sc-phone-hero {
  transform: perspective(1000px) rotateY(0deg);
}

.sc-tech-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 380px;
}

.sc-tech-copy .sc-kicker {
  color: #ff9500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.sc-tech-copy .sc-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: none;
}

.sc-tech-copy .sc-sub {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 32ch;
}

.sc-tech-copy .sc-tech-specs {
  margin-top: 0.5rem;
}

.sc-tech-copy .sc-actions {
  margin-top: 0.5rem;
}

.showcase .sc-frame--tech-centered .sc-label {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1.4rem, 3vw, 2.5rem);
}

@media (max-width: 900px) {
  .sc-tech-stage {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .sc-phone-hero {
    width: 140px;
    height: 280px;
    transform: none;
  }

  .sc-tech-copy {
    align-items: center;
  }

  .sc-tech-copy .sc-sub {
    max-width: 40ch;
  }
}

/* RESTO - Centered hero, menu + cards bottom */
.showcase .sc-frame[data-biz='resto'] {
  grid-template-areas:
    "nav nav"
    "hero hero"
    "menu cards";
}

.showcase .sc-frame[data-biz='resto'] .sc-hero {
  text-align: center;
  justify-items: center;
  max-width: 700px;
  justify-self: center;
}

.showcase .sc-frame[data-biz='resto'] .sc-actions,
.showcase .sc-frame[data-biz='resto'] .sc-chip-row {
  justify-content: center;
}

.showcase .sc-frame[data-biz='resto'] .sc-menu-board {
  grid-area: menu;
  margin: 0 0 1.5rem clamp(1.4rem, 3vw, 2.5rem);
  align-self: start;
}

.showcase .sc-frame[data-biz='resto'] .sc-cards {
  grid-area: cards;
  grid-template-columns: 1fr;
  margin-right: clamp(1.4rem, 3vw, 2.5rem);
  padding-left: 0;
}

/* MODE - Split layout with visual panel left */
.showcase .sc-frame--mode-split {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "nav nav"
    "visual hero"
    "label label";
}

.sc-mode-visual {
  grid-area: visual;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), transparent);
}

.sc-mode-visual .sc-look-strip {
  flex-direction: column;
  gap: 0.8rem;
  max-width: 220px;
  margin: 0;
}

.showcase .sc-frame--mode-split .sc-hero {
  grid-area: hero;
  text-align: left;
  justify-items: start;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.4rem, 3vw, 2.5rem);
}

.showcase .sc-frame--mode-split .sc-headline {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  max-width: 8ch;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.showcase .sc-frame--mode-split .sc-label {
  grid-area: label;
  position: static;
  padding: 1rem clamp(1.4rem, 3vw, 2.5rem);
  border-top: 1px solid var(--stroke);
  text-align: left;
}

@media (max-width: 800px) {
  .showcase .sc-frame--mode-split {
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "hero"
      "visual"
      "label";
  }

  .sc-mode-visual {
    padding: 1rem;
  }

  .sc-mode-visual .sc-look-strip {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
    justify-content: center;
  }
}

/* IMMO - Enhanced map focus */
.showcase .sc-frame[data-biz='immo'] .sc-map-mock {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 6%, var(--surface-strong)), var(--surface-strong));
}

.showcase .sc-frame[data-biz='immo'] .sc-map-mock > span {
  position: relative;
  z-index: 2;
  padding: 0.2rem 0.6rem;
  background: color-mix(in srgb, var(--surface-strong) 90%, transparent);
  border-radius: 6px;
  font-size: 0.75rem;
}

.showcase .sc-frame[data-biz='immo'] .sc-map-visual {
  position: relative;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background:
    /* Seine river */
    linear-gradient(85deg, transparent 20%, color-mix(in srgb, var(--accent) 18%, transparent) 35%, color-mix(in srgb, var(--accent) 12%, transparent) 45%, transparent 60%),
    /* District zones */
    radial-gradient(ellipse 50% 40% at 25% 50%, color-mix(in srgb, var(--accent) 8%, transparent), transparent),
    radial-gradient(ellipse 40% 35% at 65% 35%, color-mix(in srgb, var(--accent) 12%, transparent), transparent),
    radial-gradient(ellipse 35% 40% at 75% 65%, color-mix(in srgb, var(--accent) 6%, transparent), transparent),
    /* Grid lines */
    repeating-linear-gradient(0deg, transparent, transparent 20px, color-mix(in srgb, var(--stroke) 30%, transparent) 20px, color-mix(in srgb, var(--stroke) 30%, transparent) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 25px, color-mix(in srgb, var(--stroke) 30%, transparent) 25px, color-mix(in srgb, var(--stroke) 30%, transparent) 26px),
    /* Base */
    color-mix(in srgb, var(--surface) 95%, transparent);
  border: 1px solid var(--stroke);
}

.showcase .sc-frame[data-biz='immo'] .sc-map-dot {
  width: 14px;
  height: 14px;
  z-index: 3;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent) 40%, transparent);
}

.showcase .sc-frame[data-biz='immo'] .sc-map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent) 30%, transparent);
  animation: mapPing 2s ease-out infinite;
}

@keyframes mapPing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.showcase .sc-frame[data-biz='immo'] .sc-map-dot--1::after { animation-delay: 0ms; }
.showcase .sc-frame[data-biz='immo'] .sc-map-dot--2::after { animation-delay: 400ms; }
.showcase .sc-frame[data-biz='immo'] .sc-map-dot--3::after { animation-delay: 800ms; }

.showcase .sc-frame[data-biz='immo'] .sc-map-pins {
  margin-top: 0.5rem;
  justify-content: center;
}

.showcase .sc-frame[data-biz='immo'] .sc-map-pin {
  min-width: 80px;
}

/* SAAS - Centered dashboard with side-by-side layout */
.showcase .sc-frame--saas-centered {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: unset;
  grid-template-rows: unset;
  grid-template-areas: unset;
}

.sc-saas-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 2rem clamp(1.4rem, 4vw, 3rem);
}

.sc-saas-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 340px;
}

.sc-saas-copy .sc-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: none;
}

.showcase .sc-frame--saas-centered .sc-dashboard {
  width: 340px;
  flex-shrink: 0;
}

.showcase .sc-frame--saas-centered .sc-cards {
  padding: 0 clamp(1.4rem, 3vw, 2.5rem) 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.showcase .sc-frame--saas-centered .sc-card {
  flex: 0 1 200px;
  max-width: 220px;
}

.showcase .sc-frame--saas-centered .sc-label {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1.4rem, 3vw, 2.5rem);
}

@media (max-width: 900px) {
  .sc-saas-hero {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .sc-saas-copy {
    align-items: center;
  }

  .showcase .sc-frame--saas-centered .sc-dashboard {
    width: 100%;
    max-width: 320px;
  }

  .showcase .sc-frame--saas-centered .sc-cards {
    flex-wrap: wrap;
  }
}

/* CONSEIL - Centered hero with horizontal proof metrics */
.showcase .sc-frame[data-biz='conseil'] {
  display: grid !important;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto auto;
  grid-template-areas:
    "nav"
    "hero"
    "proof"
    "cards" !important;
}

.showcase .sc-frame[data-biz='conseil'] .sc-hero {
  grid-area: hero;
  text-align: center;
  justify-items: center;
  max-width: 720px;
  justify-self: center;
  padding-bottom: 1rem;
}

.showcase .sc-frame[data-biz='conseil'] .sc-headline {
  max-width: 16ch;
}

.showcase .sc-frame[data-biz='conseil'] .sc-actions {
  justify-content: center;
}

.showcase .sc-frame[data-biz='conseil'] .sc-trust-logos {
  justify-content: center;
}

.showcase .sc-frame[data-biz='conseil'] .sc-proof-rail {
  grid-area: proof;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0 clamp(1.4rem, 3vw, 2.5rem) 1.5rem;
  margin: 0;
  max-width: none;
  align-self: center;
}

.showcase .sc-frame[data-biz='conseil'] .sc-proof-item {
  flex: 0 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.2rem 1.4rem;
  gap: 0.6rem;
}

.showcase .sc-frame[data-biz='conseil'] .sc-proof-icon {
  font-size: 1.8rem;
}

.showcase .sc-frame[data-biz='conseil'] .sc-proof-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.showcase .sc-frame[data-biz='conseil'] .sc-proof-metric {
  font-family: var(--hero-font);
  font-size: 1.4rem;
  color: var(--accent);
}

.showcase .sc-frame[data-biz='conseil'] .sc-cards {
  grid-area: cards;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0;
}

@media (max-width: 800px) {
  .showcase .sc-frame[data-biz='conseil'] .sc-proof-rail {
    flex-direction: column;
    align-items: center;
  }

  .showcase .sc-frame[data-biz='conseil'] .sc-proof-item {
    flex: none;
    width: 100%;
    max-width: 280px;
  }
}

/* BEAUTE - Soft aesthetic, reversed */
.showcase .sc-frame[data-biz='beaute'] {
  grid-template-areas:
    "nav nav"
    "slots hero"
    "cards cards";
}

.showcase .sc-frame[data-biz='beaute'] .sc-hero {
  text-align: right;
  justify-items: end;
}

.showcase .sc-frame[data-biz='beaute'] .sc-slot-board {
  grid-area: slots;
  margin-left: clamp(1.4rem, 3vw, 2.5rem);
  margin-right: 0;
}

/* SANTE - Trust-focused clean layout with centered care flow */
.showcase .sc-frame[data-biz='sante'] {
  grid-template-areas:
    "nav nav"
    "hero panel"
    "cards cards" !important;
}

.showcase .sc-frame[data-biz='sante'] .sc-care-flow {
  align-self: center;
  justify-self: center;
  max-width: 320px;
  padding: 1.2rem;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.showcase .sc-frame[data-biz='sante'] .sc-care-step {
  flex-direction: row;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
}

.showcase .sc-frame[data-biz='sante'] .sc-care-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.showcase .sc-frame[data-biz='sante'] .sc-care-detail span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.showcase .sc-frame[data-biz='sante'] .sc-care-detail small {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* ARCHI - Gallery-style three column layout */
.showcase .sc-frame--archi-gallery {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: unset;
  grid-template-rows: unset;
  grid-template-areas: unset;
}

.sc-archi-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1.5rem;
  padding: 2rem clamp(1.4rem, 3vw, 2.5rem);
  align-items: center;
}

.sc-archi-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.sc-archi-left .sc-material-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 0;
  max-width: none;
}

.sc-archi-left .sc-material {
  text-align: center;
  padding: 0.6rem 0.4rem;
  font-size: 0.7rem;
}

.sc-archi-left .sc-project-counter {
  text-align: center;
}

.sc-archi-left .sc-counter-number {
  font-size: 3rem;
  display: block;
}

.sc-archi-left .sc-counter-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.showcase .sc-frame--archi-gallery .sc-hero {
  text-align: center;
  justify-items: center;
  padding: 0;
}

.showcase .sc-frame--archi-gallery .sc-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 14ch;
}

.sc-archi-types {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sc-archi-type-card {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.sc-archi-type-card:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--stroke));
  transform: translateX(4px);
}

.sc-archi-type-card--accent {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}

.sc-archi-type-card .sc-archi-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.sc-archi-type-card strong {
  font-family: var(--hero-font);
  font-size: 1.4rem;
  color: var(--accent);
}

.showcase .sc-frame--archi-gallery .sc-label {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1.4rem, 3vw, 2.5rem);
}

@media (max-width: 900px) {
  .sc-archi-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    text-align: center;
  }

  .sc-archi-left {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .sc-archi-left .sc-material-grid {
    grid-template-columns: repeat(4, auto);
  }

  .sc-archi-types {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .sc-archi-type-card {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem 1.2rem;
  }
}

/* Label positioning - assure pas de chevauchement avec cards */
.showcase .sc-frame[data-biz] .sc-label {
  bottom: 1.5rem;
  right: clamp(1.4rem, 3vw, 2.5rem);
  z-index: 15;
  max-width: 280px;
}

.showcase .sc-frame[data-biz='mode'] .sc-label,
.showcase .sc-frame[data-biz='beaute'] .sc-label {
  left: clamp(1.4rem, 3vw, 2.5rem);
  right: auto;
  text-align: left;
}

/* Assurer que les cards ne chevauchent pas le label */
.showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-cards {
  margin-bottom: 4.5rem;
}


/* ============================================
   SHOWCASE ENHANCED COMPONENTS
   ============================================ */

/* Trust badges */
.sc-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.sc-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
}

/* Live indicator */
.sc-live-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 0.4rem;
  animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Panel footer */
.sc-panel-footer {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--stroke);
  font-size: 0.72rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

/* Enhanced slots */
.sc-slot {
  display: grid;
  gap: 0.15rem;
  text-align: center;
  min-width: 70px;
}

.sc-slot-time {
  font-size: 0.85rem;
  font-weight: 700;
}

.sc-slot-info,
.sc-slot-stylist {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sc-slot-day {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.sc-slot--full {
  opacity: 0.5;
  cursor: not-allowed;
}

.sc-slot--full .sc-slot-info {
  color: var(--text-secondary);
}

/* Enhanced cards with icons and badges */
.sc-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.sc-card-price,
.sc-property-price,
.sc-beauty-price,
.sc-service-price,
.sc-pricing-amount {
  font-family: var(--hero-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.5rem;
  display: block;
}

.sc-card-price small,
.sc-pricing-amount small {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sc-card-badge,
.sc-pricing-badge,
.sc-property-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--button-text);
}

.sc-card {
  position: relative;
}

/* Stats in cards */
.sc-card-stat {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.sc-stat-number {
  font-family: var(--hero-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.sc-stat-stars {
  font-size: 0.8rem;
  color: #fbbf24;
}

.sc-card-mini {
  display: block;
  font-size: 0.68rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

/* Stock indicator */
.sc-stock-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.sc-stock-dot--live {
  background: #22c55e;
  animation: pulse-live 1.5s ease-in-out infinite;
}

/* Countdown */
.sc-countdown {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  padding: 0.6rem 1rem;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  width: fit-content;
}

.sc-countdown-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sc-countdown-timer {
  display: flex;
  gap: 0.5rem;
}

.sc-countdown-unit {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.sc-countdown-unit strong {
  font-family: var(--hero-font);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-right: 0.15rem;
}

/* Look card enhancements */
.sc-look-price {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 0.2rem;
  display: block;
}

.sc-look-card--new {
  position: relative;
}

.sc-new-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--button-text);
}

/* Map visual */
.sc-map-visual {
  position: relative;
  height: 100px;
  background:
    radial-gradient(circle at 30% 40%, color-mix(in srgb, var(--accent) 15%, transparent) 20px, transparent 20px),
    radial-gradient(circle at 60% 30%, color-mix(in srgb, var(--accent) 10%, transparent) 30px, transparent 30px),
    radial-gradient(circle at 70% 60%, color-mix(in srgb, var(--accent) 12%, transparent) 25px, transparent 25px);
  border-radius: 8px;
}

.sc-map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--button-text);
  cursor: pointer;
  transition: transform 180ms ease;
}

.sc-map-dot:hover {
  transform: scale(1.3);
}

.sc-map-dot--1 { top: 35%; left: 28%; }
.sc-map-dot--2 { top: 25%; left: 58%; }
.sc-map-dot--3 { top: 55%; left: 68%; }

/* Enhanced map pins */
.sc-map-pin {
  display: grid;
  gap: 0.1rem;
  text-align: center;
  padding: 0.5rem 0.8rem;
}

.sc-map-pin strong {
  font-size: 0.8rem;
}

.sc-map-pin small {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

/* Property cards */
.sc-property-card {
  position: relative;
}

.sc-property-badge {
  top: 0.8rem;
  right: 0.8rem;
}

/* Menu board enhancements */
.sc-menu-board li strong {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--body-font);
}

.sc-menu-cta {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--stroke);
}

.sc-menu-cta .sc-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
}

/* Dashboard enhancements */
.sc-dash-dot--red { background: #ef4444; }
.sc-dash-dot--yellow { background: #fbbf24; }
.sc-dash-dot--green { background: #22c55e; }

.sc-dash-value {
  font-family: var(--hero-font);
  font-size: 1.1rem;
  display: block;
}

.sc-dash-bar-mini {
  height: 3px;
  background: color-mix(in srgb, var(--stroke) 50%, transparent);
  border-radius: 999px;
  margin-top: 0.3rem;
  overflow: hidden;
}

.sc-dash-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 600ms ease;
}

/* KPI enhancements */
.sc-kpi {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.1rem 0.5rem;
}

.sc-kpi span {
  grid-column: 1;
  grid-row: 1;
}

.sc-kpi strong {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.sc-kpi-sub {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.65rem !important;
  color: var(--text-secondary) !important;
}

/* Pricing cards */
.sc-pricing-card {
  text-align: center;
  padding: 1.2rem 1rem !important;
}

.sc-pricing-card strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.3rem;
}

.sc-pricing-amount {
  margin: 0.5rem 0;
}

.sc-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  text-align: left;
  font-size: 0.78rem;
}

.sc-pricing-features li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
}

.sc-pricing-popular {
  position: relative;
}

.sc-pricing-popular .sc-pricing-badge {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}

/* Proof items enhancements */
.sc-proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  text-align: left;
  padding: 0.8rem 1rem;
}

.sc-proof-icon {
  font-size: 1.3rem;
  align-self: center;
}

.sc-proof-content {
  display: grid;
  gap: 0.1rem;
}

.sc-proof-content strong {
  font-size: 0.85rem;
}

.sc-proof-metric {
  font-family: var(--hero-font);
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
}

.sc-proof-content small {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* Trust logos */
.sc-trust-logos {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.sc-client-logo {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--stroke);
  border-radius: 6px;
  color: var(--text-secondary);
}

/* Service cards */
.sc-service-card {
  position: relative;
}

.sc-service-duration {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}

/* Stylist row */
.sc-stylist-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.sc-stylist {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  cursor: pointer;
  transition: all 180ms ease;
}

.sc-stylist:hover {
  border-color: var(--accent);
}

.sc-stylist-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 20%, var(--surface));
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

.sc-stylist-name {
  font-size: 0.78rem;
  font-weight: 600;
}

/* Beauty cards */
.sc-beauty-card {
  position: relative;
}

.sc-beauty-duration {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 0.2rem;
}

/* Health cards */
.sc-health-card {
  text-align: center;
}

.sc-health-icon {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.sc-health-stat {
  display: block;
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--stroke);
}

/* Care flow enhancements */
.sc-care-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  text-align: left;
}

.sc-care-detail {
  display: grid;
  gap: 0.1rem;
}

.sc-care-detail span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sc-care-detail small {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* Project counter */
.sc-project-counter {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.sc-counter-number {
  font-family: var(--hero-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.sc-counter-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Material swatches */
.sc-material {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
  text-align: left;
  padding: 0.6rem 0.8rem;
}

.sc-material-swatch {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--stroke) 50%, transparent);
}

.sc-swatch-oak {
  background: linear-gradient(135deg, #c4a574, #8b6c42);
}

.sc-swatch-stone {
  background: linear-gradient(135deg, #4a4a4a, #2d2d2d);
}

.sc-swatch-brass {
  background: linear-gradient(135deg, #d4a84b, #9c7a2e);
}

.sc-swatch-concrete {
  background: linear-gradient(135deg, #9ca3af, #6b7280);
}

.sc-material-name {
  font-size: 0.78rem;
  font-weight: 600;
}

/* Archi cards */
.sc-archi-card {
  position: relative;
}

.sc-archi-type {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.2rem;
}

.sc-archi-count {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

/* Mobile showcase stability + readability */
@media (max-width: 980px) {
  .showcase {
    height: 1000dvh;
  }

  .showcase-pin {
    height: 100svh;
    height: 100dvh;
  }

  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) {
    min-height: 100dvh;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto auto auto !important;
    grid-template-areas:
      "nav"
      "hero"
      "panel"
      "cards"
      "label" !important;
    align-content: start;
    gap: 0.55rem !important;
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    overflow-x: hidden;
  }
}

/* Small mobile - more aggressive simplification */
@media (max-width: 720px) {
  .showcase {
    height: 1100dvh;
  }

  .showcase-pin {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .showcase .sc-frame {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) {
    min-height: auto !important;
    height: auto !important;
    padding: 0.8rem 1rem calc(1rem + env(safe-area-inset-bottom)) !important;
    gap: 0.5rem !important;
  }

  /* Simplify hero content */
  .showcase .sc-headline {
    font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
    line-height: 1 !important;
  }

  .showcase .sc-sub {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }

  .showcase .sc-kicker {
    font-size: 0.7rem !important;
  }

  /* Compact nav */
  .showcase .sc-nav {
    padding: 0.6rem 0.8rem !important;
  }

  .sc-logo {
    font-size: 0.9rem !important;
  }

  .sc-cta-btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
  }

  /* Compact actions */
  .showcase .sc-actions {
    flex-direction: column !important;
    gap: 0.4rem !important;
  }

  .showcase .sc-btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.8rem !important;
  }

  /* Hide extra content to fit in viewport */
  .showcase .sc-trust-logos,
  .showcase .sc-chip-row,
  .showcase .sc-stylist-row,
  .showcase .sc-live-note {
    display: none !important;
  }

  /* Panels: horizontal scroll, compact */
  .sc-feature-panel,
  .sc-menu-board,
  .sc-slot-board {
    max-height: 140px !important;
    overflow-y: auto !important;
    padding: 0.6rem !important;
    font-size: 0.8rem !important;
  }

  /* Hide cards on mobile - too much content */
  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-cards {
    display: none !important;
  }

  /* Compact label */
  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-label {
    padding: 0.4rem 0 !important;
    margin: 0.3rem 0.8rem 0.5rem !important;
    font-size: 0.75rem !important;
  }

  .sc-label-line {
    display: none !important;
  }

  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-nav {
    grid-area: nav !important;
    padding: 0.9rem 1rem !important;
  }

  .sc-nav-links {
    display: none !important;
  }

  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-hero {
    grid-area: hero !important;
    padding: 1rem 1rem 0.2rem !important;
    text-align: left !important;
    justify-items: start !important;
    align-content: start;
    gap: 0.8rem;
  }

  .showcase .sc-headline {
    max-width: 100% !important;
    font-size: clamp(1.9rem, 8vw, 3.2rem) !important;
    line-height: 0.94;
  }

  .showcase .sc-sub {
    max-width: 100%;
  }

  .sc-feature-panel,
  .sc-menu-board,
  .sc-map-mock,
  .sc-slot-board,
  .sc-kpi-grid,
  .sc-proof-rail,
  .sc-care-flow,
  .sc-material-grid,
  .sc-look-strip {
    grid-area: panel !important;
    align-self: start !important;
    margin: 0 1rem !important;
    width: auto !important;
    max-width: none !important;
  }

  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-cards {
    grid-area: cards !important;
    margin: 0 1rem !important;
    padding: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 0.55rem;
    overflow: visible !important;
    max-height: none;
  }

  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-cards .sc-card {
    min-width: 0 !important;
    width: 100%;
  }

  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-cards .sc-card:nth-child(n + 3) {
    display: none;
  }

  /* Assurer espacement vertical adequat */
  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-cards {
    margin-bottom: 0;
  }

  .sc-kpi-grid,
  .sc-proof-rail,
  .sc-care-flow,
  .sc-material-grid,
  .sc-look-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-width: none !important;
  }

  .sc-kpi-grid::-webkit-scrollbar,
  .sc-proof-rail::-webkit-scrollbar,
  .sc-care-flow::-webkit-scrollbar,
  .sc-material-grid::-webkit-scrollbar,
  .sc-look-strip::-webkit-scrollbar {
    display: none;
  }

  .sc-kpi,
  .sc-proof-item,
  .sc-care-step,
  .sc-material,
  .sc-look-card {
    min-width: 200px !important;
    flex-shrink: 0;
  }

  .showcase .sc-frame[data-biz]:not(.sc-frame--intro) .sc-label {
    grid-area: label !important;
    position: static !important;
    margin: 0.5rem 1rem calc(0.8rem + env(safe-area-inset-bottom)) !important;
    text-align: left !important;
    opacity: 1 !important;
    transform: none !important;
    z-index: auto !important;
    max-width: none !important;
    padding-top: 0.5rem;
    border-top: 1px solid var(--stroke);
  }

  .showcase .sc-frame[data-biz='mode'] .sc-label,
  .showcase .sc-frame[data-biz='beaute'] .sc-label {
    left: auto !important;
    right: auto !important;
  }

  .sc-float-cta,
  .sc-live-note {
    display: none !important;
  }

  .sc-map-mock {
    min-height: 160px !important;
  }

  .sc-frame--intro {
    min-height: 100dvh;
    justify-content: center;
  }

  .sc-intro-content {
    min-height: 0 !important;
    max-width: none;
    width: 100%;
    padding: 0 1rem !important;
    gap: 1rem;
  }

  .sc-intro-title {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .sc-intro-scroll {
    display: none;
  }

  .sc-nav,
  .sc-feature-panel,
  .sc-menu-board,
  .sc-map-mock,
  .sc-slot-board,
  .sc-card,
  .sc-live-note {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Conseil slide mobile - show proof rail horizontally */
  .showcase .sc-frame[data-biz='conseil'] .sc-proof-rail {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
    padding: 0.5rem 0 !important;
  }

  .showcase .sc-frame[data-biz='conseil'] .sc-proof-item {
    min-width: 140px !important;
    flex-shrink: 0 !important;
    padding: 0.5rem !important;
  }

  /* Sante slide mobile - compact care flow */
  .showcase .sc-frame[data-biz='sante'] .sc-care-flow {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
  }

  .showcase .sc-frame[data-biz='sante'] .sc-care-step {
    min-width: 130px !important;
    flex-shrink: 0 !important;
    padding: 0.5rem !important;
  }

  /* Archi slide mobile - simplify */
  .showcase .sc-frame--archi-gallery {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
  }

  .sc-archi-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
  }

  .sc-archi-left {
    display: none !important;
  }

  .sc-archi-types {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
  }

  .sc-archi-type-card {
    min-width: 100px !important;
    flex-shrink: 0 !important;
    padding: 0.6rem !important;
    font-size: 0.8rem !important;
  }

  .sc-archi-type-card strong {
    font-size: 1.1rem !important;
  }

  /* Beaute - compact slot board */
  .showcase .sc-frame[data-biz='beaute'] .sc-slot-board {
    max-height: 120px !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   GUARANTEES SECTION
   ══════════════════════════════════════════════════════════════ */

.guarantees {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.guarantee-card {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 0.5rem;
}

.guarantee-icon {
  font-family: var(--hero-font);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.guarantee-card h3 {
  font-family: var(--hero-font);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.guarantee-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════════ */

.faq {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.faq-grid {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.faq-item summary {
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--hero-font);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  transition: transform 200ms var(--ease-snappy);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.9rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-right: 2rem;
}

.faq-cta {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq-cta a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--time-fast) var(--ease-snappy);
}

.faq-cta a:hover {
  color: var(--text-primary);
}

@media (max-width: 720px) {
  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-card {
    text-align: center;
    justify-items: center;
  }

  .faq-item summary {
    font-size: 0.95rem;
  }

  .faq-item p {
    padding-right: 0;
  }
}
