:root {
  /* Design Tokens — Hospitality Premium & Trust */
  --bg: #FFFDF9; /* Warm white base */
  --bg-card: #FFFFFF; /* Pure white card surface */
  --bg-muted: #F7F5F0; /* Soft warm sand */
  --bg-accent: #FFF1EE; /* Delicate coral tint */
  --bg-accent-success: #F0F6F4; /* Sage green tint */
  --bg-accent-pdf: #FEF9EB; /* Amber/yellow tint */

  --primary: #E85B4A; /* Dynamic Coral */
  --primary-hover: #D64A39;
  --primary-soft: rgba(232, 91, 74, 0.08);

  --success: #2E7D64; /* Sage Green */
  --success-hover: #24634F;
  --success-soft: rgba(46, 125, 100, 0.08);

  --pdf-accent: #F6C453; /* Amber/Yellow for PDF */
  --pdf-soft: rgba(246, 196, 83, 0.12);

  --danger: #B23A48;
  --danger-soft: #FDF2F3;

  --ink: #1F1F1F; /* Deep Charcoal */
  --ink-muted: #524F4C;
  --ink-light: #7A716B;

  --border: #E8DED6; /* Warm borders */
  --border-light: #F4EFEA;

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  --shadow-sm: 0 2px 4px rgba(31, 31, 31, 0.015);
  --shadow-md: 0 4px 16px rgba(31, 31, 31, 0.03), 0 2px 4px rgba(31, 31, 31, 0.015);
  --shadow-lg: 0 16px 36px -8px rgba(31, 31, 31, 0.06), 0 4px 12px rgba(31, 31, 31, 0.03);
  --shadow-xl: 0 32px 64px -16px rgba(31, 31, 31, 0.1), 0 8px 24px -8px rgba(31, 31, 31, 0.04);

  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  --font-display: var(--font-sans);

  --topbar-h: 72px;
  --container-max: 1200px;
  --section-y: clamp(72px, 10vw, 120px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* CSS Reset & Defaults */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11", "kern" 1;
  font-variant-ligatures: common-ligatures;
  overflow-x: hidden;
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Accessibility Focus States */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

button:focus-visible,
a.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

input:focus-visible,
select:focus-visible {
  outline: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.024em;
  line-height: 1.06;
}

/* Grid & Layout Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 40px);
  width: 100%;
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 12px;
}

.section-head p {
  color: var(--ink-muted);
  font-size: clamp(16px, 1.5vw, 18px);
  margin-top: 16px;
  text-wrap: balance;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-accent);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid color-mix(in srgb, var(--primary) 12%, transparent);
}

.badge-tag.success {
  background-color: var(--bg-accent-success);
  color: var(--success);
  border-color: color-mix(in srgb, var(--success) 12%, transparent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px var(--primary-soft);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-soft);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--ink);
  color: var(--bg);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink-muted);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--bg-accent);
}

/* Sticky Header */
.topbar {
  height: var(--topbar-h);
  background-color: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.scrolled .topbar {
  border-bottom-color: var(--border);
  background-color: color-mix(in srgb, var(--bg) 92%, transparent);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
}

.brand-mark {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 12px var(--primary-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-muted);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.nav-cta:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav-link:not(.nav-cta) {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 40px 0 var(--section-y);
  position: relative;
  overflow: hidden;
}

/* 3-zone hero: text (left) + form (right) on top, full-width video below. */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "text form"
    "video video";
  column-gap: 56px;
  row-gap: 56px;
  align-items: start;
}

.hero-text {
  grid-area: text;
  max-width: 580px;
  align-self: center;
}

.hero-form-col {
  grid-area: form;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.hero-visual {
  grid-area: video;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "form"
      "video";
    column-gap: 0;
    row-gap: 40px;
    text-align: center;
  }
  .hero-text,
  .hero-form-col {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    justify-self: stretch;
  }
}

.hero h1 {
  font-size: clamp(34px, 5.8vw, 54px);
  margin-top: 16px;
  line-height: 1.1;
}

.hero .text-highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero .lede {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-muted);
  margin: 24px 0 36px;
  text-wrap: balance;
}

/* Outcomes checklist in Hero */
.hero-bullets {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}

@media (max-width: 1024px) {
  .hero-bullets {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 550;
  color: var(--ink-muted);
}

.hero-bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--bg-accent-success);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Waitlist Form UI */
.waitlist-form {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 16px;
  text-align: left;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.waitlist-form:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.input-group {
  display: grid;
  gap: 8px;
}

.input-group label,
.input-group .input-label {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: -0.005em;
}

.input-group label .optional,
.input-group .input-label .optional {
  font-weight: 400;
  color: var(--ink-light);
  font-size: 12px;
}

.waitlist-form input,
.waitlist-form select {
  font-family: var(--font-sans);
  background-color: var(--bg-muted);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  width: 100%;
  outline: none;
  min-height: 48px;
  transition: all 0.2s ease;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  background-color: var(--bg-card);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Custom Select (replaces native <select>) */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  font-family: var(--font-sans);
  background-color: var(--bg-muted);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 12px 44px 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  width: 100%;
  min-height: 48px;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.custom-select-trigger:hover {
  border-color: color-mix(in srgb, var(--ink) 18%, var(--border));
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  background-color: var(--bg-card);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
  outline: none;
}

.custom-select-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
}

.custom-select-text.is-placeholder {
  color: var(--ink-light);
}

.custom-select-chev {
  flex-shrink: 0;
  color: var(--ink-muted);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease, color 0.2s ease;
  pointer-events: none;
}

.custom-select.is-open .custom-select-chev {
  transform: translateY(-50%) rotate(180deg);
  color: var(--primary);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px;
  margin: 0;
  list-style: none;
  z-index: 60;
  max-height: 280px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  outline: none;
  opacity: 0;
  transform: translateY(-4px) scale(0.99);
  transform-origin: top center;
  transition: opacity 0.16s ease, transform 0.16s ease;
  pointer-events: none;
}

.custom-select-menu[hidden] {
  display: none !important;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.custom-select-option {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.12s ease, color 0.12s ease;
}

.custom-select-option:hover,
.custom-select-option.is-active {
  background-color: var(--bg-muted);
}

.custom-select-option.is-selected {
  background-color: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

.custom-select-option.is-selected::after {
  content: "";
  margin-left: auto;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E85B4A' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-submit {
  width: 100%;
  min-height: 50px;
  background-color: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--primary-soft);
}

.cta-arrow {
  transition: transform 0.2s ease;
}

.btn-submit:hover .cta-arrow {
  transform: translateX(4px);
}

.form-disclaimer {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-light);
  font-weight: 500;
}

/* Status Elements */
.status {
  padding: 0;
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.status.is-ok {
  opacity: 1;
  max-height: 80px;
  padding: 10px;
  background-color: var(--bg-accent-success);
  color: var(--success);
  border: 1px solid color-mix(in srgb, var(--success) 20%, transparent);
}

.status.is-err {
  opacity: 1;
  max-height: 80px;
  padding: 10px;
  background-color: var(--danger-soft);
  color: var(--danger);
  border: 1px solid color-mix(in srgb, var(--danger) 20%, transparent);
}

/* Hero Film — Remotion-rendered MP4/WebM. Source: tools/remotion/ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-film {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--bg-muted);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 1440 / 900;
  isolation: isolate;
}

.hero-film-video,
.hero-film-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-film-video {
  position: relative;
  z-index: 2;
  background-color: var(--bg-muted);
}

/* Fallback poster behind the video — covers any brief gap before the first frame paints. */
.hero-film-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

/* Reduced-motion users see the poster only — hide the video entirely so the
   browser may skip the fetch when sources are not eagerly preloaded. */
@media (prefers-reduced-motion: reduce) {
  .hero-film-video {
    display: none;
  }
  .hero-film-fallback {
    position: relative;
    inset: auto;
  }
}

@media (max-width: 1024px) {
  .hero-film {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-film {
    max-width: 100%;
    border-radius: var(--radius-md);
  }
}

/* Trust / Proof Strip */
.trust-strip {
  padding: 24px 0;
  background-color: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-muted);
}

.trust-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: start;
    padding: 0 16px;
  }
}

/* Problem Section: Avant vs Avec */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.comparison-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
}

.comparison-card.avant {
  border-top: 4px solid var(--danger);
}

.comparison-card.avec {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.comparison-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.comparison-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-muted);
}

.comparison-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.avant .comparison-item-icon {
  background-color: var(--danger-soft);
  color: var(--danger);
}

.avec .comparison-item-icon {
  background-color: var(--bg-accent-success);
  color: var(--success);
}

/* Steps / Comment ça marche */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--bg-accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.step-visual {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: center;
}

/* Personas Section */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 960px) {
  .personas-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.persona-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.persona-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.persona-icon {
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.persona-card h3 {
  font-size: 21px;
  margin-bottom: 16px;
}

.persona-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.persona-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.4;
}

.persona-item svg {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* PDF Verifio / Rapport preview section */
.pdf-preview-section {
  background-color: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pdf-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 960px) {
  .pdf-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pdf-preview-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.pdf-preview-content p {
  color: var(--ink-muted);
  font-size: 16.5px;
  margin-bottom: 32px;
}

.pdf-features {
  display: grid;
  gap: 16px;
}

.pdf-feature-item {
  display: flex;
  gap: 16px;
}

.pdf-feature-icon {
  width: 40px;
  height: 40px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.pdf-feature-text h4 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.pdf-feature-text p {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.5;
  margin-bottom: 0;
}

/* PDF Document Styling */
.pdf-mockup {
  background-color: #FFFFFF;
  border: 1px solid #D1CFC9;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  max-width: 480px;
  margin: 0 auto;
  padding: 32px;
  color: #1F1F1F;
  font-family: var(--font-sans);
  text-align: left;
}

.pdf-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 2px solid #E8E6E0;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.pdf-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #1F1F1F;
}

.pdf-logo-mark {
  width: 22px;
  height: 22px;
  background-color: #E85B4A;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.pdf-header-title {
  text-align: right;
}

.pdf-header-title h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7A716B;
}

.pdf-header-title .pdf-status {
  background-color: #EBF2F0;
  color: #2E7D64;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}

.pdf-mockup-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: 11.5px;
  margin-bottom: 24px;
}

.pdf-meta-label {
  color: #7A716B;
  font-weight: 600;
}

.pdf-meta-val {
  font-weight: 700;
  color: #1F1F1F;
}

.pdf-checklist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 24px;
}

.pdf-checklist-table th {
  text-align: left;
  border-bottom: 1.5px solid #E8E6E0;
  padding: 6px 8px;
  color: #7A716B;
}

.pdf-checklist-table td {
  padding: 8px;
  border-bottom: 1px solid #F4EFEA;
}

.pdf-check-icon {
  color: #2E7D64;
  font-weight: 800;
}

.pdf-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.pdf-photo-box {
  aspect-ratio: 4/3;
  background-color: #F4EFEA;
  border: 1px solid #E8DED6;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: #7A716B;
}

.pdf-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdf-footer-stamp {
  border-top: 1.5px dashed #E8E6E0;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  color: #7A716B;
}

.pdf-signature {
  font-family: cursive;
  font-size: 16px;
  color: #0c3c60;
  transform: rotate(-3deg);
  display: inline-block;
  opacity: 0.8;
}

/* Use cases section */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 880px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.usecase-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s ease;
}

.usecase-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.usecase-emoji {
  font-size: 24px;
  background-color: var(--bg-muted);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usecase-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 6px;
}

.usecase-card p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Objection Handling Section */
.objection-section {
  background-color: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.objection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}

@media (max-width: 768px) {
  .objection-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.objection-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.objection-icon {
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
}

.objection-item p {
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* FAQ Section Accordions */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item summary {
  padding: 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  user-select: none;
}

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

.faq-chev {
  color: var(--ink-light);
  display: flex;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-chev {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-inner {
  background-color: var(--ink);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 8vw, 80px) clamp(20px, 6vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-content h2 {
  font-size: clamp(26px, 5vw, 44px);
  color: #FFFFFF;
  margin-bottom: 20px;
}

.final-cta-content p.cta-lede {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.final-cta-inner .waitlist-form {
  max-width: 500px;
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* Footer Section */
.footer {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  color: var(--ink-light);
  font-size: 14.5px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

/* Sticky Mobile CTA button */
.sticky-cta {
  position: fixed;
  bottom: calc(16px + var(--safe-bottom));
  left: 16px;
  right: 16px;
  background-color: var(--ink);
  color: var(--bg);
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 90;
  transform: translateY(150%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
  border: 1px solid var(--border);
}

.sticky-cta:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

body.show-sticky-cta .sticky-cta {
  transform: translateY(0);
}

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

/* ============================================
   Legal Page (Mentions légales)
   ============================================ */
.legal {
  padding: clamp(48px, 8vw, 96px) 0 clamp(48px, 8vw, 96px);
}

.legal-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.legal-head h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-top: 16px;
}

.legal-updated {
  margin-top: 12px;
  color: var(--ink-light);
  font-size: 14px;
  font-weight: 500;
}

.legal-section {
  max-width: 720px;
  margin: 0 auto 40px;
}

.legal-section h2 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 12px;
  letter-spacing: -0.012em;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section a {
  color: var(--primary);
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  transition: border-color 0.15s ease;
}
.legal-section a:hover { border-bottom-color: var(--primary); }

.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.022em; }
