/*
 * Kwenti Design System
 * Direction : Minimal Operationnel
 * Font : Inter (Google Fonts)
 * Validee par Ines le 2026-05-06
 */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: "Aller Display";
  src: url("/fonts/AllerDisplay.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === DESIGN TOKENS === */
:root {
  --white: #ffffff;
  --off-white: #f7f7f7;
  --black: #1A1A1A;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D4D4D4;
  --gray-400: #999999;
  --gray-500: #6B6B6B;
  --gray-600: #4A4A4A;

  --kwenti-yellow: #fec704;
  --kwenti-orange: #f59b01;
  --kwenti-orange-mid: #efad3d;
  --kwenti-gradient: linear-gradient(135deg, var(--kwenti-yellow) 0%, var(--kwenti-orange-mid) 50%, var(--kwenti-orange) 100%);
  --kwenti-orange-hover: #e08c00;
  --accent-light: #FFF4E0;
  --accent-pill: #FFF8E6;
  --accent-pill-border: #F5E6B8;
  --accent-pill-text: #8B6914;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: "Aller Display", 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.06);
  --shadow-orange: 0 4px 20px rgba(245, 155, 1, 0.08);

  --max-width: 1060px;
  --max-width-narrow: 860px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; zoom: 1.1; }

body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* === HEADER === */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 2rem;
}
.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header .logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.site-header .logo-img {
  height: 48px;
  width: auto;
}

.site-header .logo-text {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  color: var(--black);
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-header nav a:not(.cta-primary):not(.cta-secondary),
.site-header nav .dropdown-toggle {
  text-decoration: none;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  padding: 0;
  transition: color 0.2s;
}

.site-header nav a:not(.cta-primary):not(.cta-secondary):hover,
.site-header nav .dropdown-toggle:hover {
  color: var(--kwenti-orange);
}

/* Dropdown */
.dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 110;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--accent-light);
}

/* CTAs */
.cta-secondary,
.cta-primary {
  text-decoration: none;
}

.cta-secondary {
  border: 1.5px solid var(--kwenti-orange);
  color: var(--kwenti-orange) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: all 0.2s;
}
.site-header .cta-secondary,
.site-header .cta-primary {
  font-size: 0.88rem;
}

.cta-secondary:hover {
  background: var(--kwenti-orange);
  color: var(--white) !important;
}

.cta-primary {
  background: var(--kwenti-gradient);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  border: none;
  transition: opacity 0.2s;
}

.cta-primary:hover {
  opacity: 0.9;
}

/* === BUTTONS === */
.btn-main {
  display: inline-block;
  background: var(--kwenti-gradient);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-main:hover { opacity: 0.88; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gray-200);
  color: var(--black);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover { border-color: var(--kwenti-orange); color: var(--kwenti-orange); }

.btn-link {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-link:hover { color: var(--black); }

.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-dark:hover { opacity: 0.85; }

/* === SECTIONS === */
.section {
  padding: 100px 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-alt {
  background: var(--off-white);
  max-width: none;
  padding: 100px 3rem;
}

.section-alt .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-inner-narrow {
  max-width: 720px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--kwenti-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section h2 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 0;
}

.section-intro {
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 560px;
  line-height: 1.65;
}

/* Header transparent on hero */
.hero-header .site-header {
  background: transparent;
  border-bottom: none;
  position: fixed;
  width: 100%;
  transition: background 0.3s, border-bottom 0.3s;
}
.hero-header .site-header nav a:not(.cta-primary):not(.cta-secondary),
.hero-header .site-header nav .dropdown-toggle,
.hero-header .site-header .logo-text {
  color: var(--white);
}
.hero-header .site-header .cta-secondary {
  border-color: rgba(255,255,255,0.5);
  color: var(--white) !important;
}
.hero-header .site-header .cta-secondary:hover {
  background: var(--white);
  color: var(--kwenti-orange) !important;
  border-color: var(--white);
}
.hero-header .site-header .logo-img {
  filter: brightness(0) invert(1);
}
.hero-header .site-header.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.hero-header .site-header.scrolled nav a:not(.cta-primary):not(.cta-secondary),
.hero-header .site-header.scrolled nav .dropdown-toggle,
.hero-header .site-header.scrolled .logo-text {
  color: var(--black);
}
.hero-header .site-header.scrolled .cta-secondary {
  border-color: var(--kwenti-orange);
  color: var(--kwenti-orange) !important;
}
.hero-header .site-header.scrolled .cta-secondary:hover {
  background: var(--kwenti-orange);
  color: var(--white) !important;
}
.hero-header .site-header.scrolled .logo-img {
  filter: none;
}

/* === HERO === */
.hero {
  padding: 0;
  max-width: none;
  margin: 0;
  text-align: center;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 2rem;
}

.hero-logo {
  display: block;
  width: 72px;
  height: auto;
  margin: 0 auto 16px;
  opacity: 1;
}

.hero-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .accent {
  background: var(--kwenti-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* === PROMISE BAND (scroll-driven multi-row) === */
.promise-band {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.promise-band::before,
.promise-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.promise-band::before {
  left: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}

.promise-band::after {
  right: 0;
  background: linear-gradient(270deg, var(--black) 0%, transparent 100%);
}

.promise-row {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.promise {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.promise-sep {
  font-size: 6px;
  color: var(--kwenti-orange);
  flex-shrink: 0;
}

/* === PITCH BLOCK (douleur > solution > produit) === */
.section-pitch {
  text-align: center;
}

.pitch-headline {
  max-width: 720px;
  margin: 0 auto;
}

.pitch-pain {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 620px;
  margin: 20px auto 0;
}

/* Pain Floating Message Bubbles — Liquid Glass — Cascade */
.pain-notifs-cascade {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1000px;
  margin: 48px auto 0;
  position: relative;
  padding: 40px 40px;
}

.pain-notifs-cascade::before,
.pain-notifs-cascade::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.pain-notifs-cascade::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245,155,1,0.35), transparent 70%);
  top: 5%;
  left: 5%;
}

.pain-notifs-cascade::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(254,199,4,0.28), transparent 70%);
  bottom: 5%;
  right: 5%;
}

.pain-notif {
  position: relative;
  text-align: left;
  max-width: 420px;
  z-index: 1;
}

/* Cascade alternating left/right with strong offsets */
.pain-notif-1 { align-self: flex-start;  margin-left: 4%;   transform: rotate(-1.5deg); }
.pain-notif-2 { align-self: flex-end;    margin-right: 8%;  transform: rotate(1.5deg); }
.pain-notif-3 { align-self: flex-start;  margin-left: 18%;  transform: rotate(-1deg); }
.pain-notif-4 { align-self: flex-end;    margin-right: 2%;  transform: rotate(2deg); }
.pain-notif-5 { align-self: flex-start;  margin-left: 10%;  transform: rotate(-2deg); }
.pain-notif-6 { align-self: flex-end;    margin-right: 14%; transform: rotate(1deg); }

.pain-notif-bubble {
  display: inline-block;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--black);
  padding: 14px 20px;
  border-radius: 22px 22px 22px 6px;
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
}

.pain-notif-bubble::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom-right-radius: 12px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.pain-notif-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.pain-notif-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.pain-notif-time {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

.pain-notif-text {
  font-size: 15px;
  line-height: 1.45;
  color: var(--black);
}

.pitch-pivot {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--kwenti-orange);
  letter-spacing: -0.5px;
  margin-top: 48px;
}

.pitch-transition {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--gray-500);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* Showcase tabs + captures */
.pitch-showcase {
  max-width: 900px;
  margin: 48px auto 0;
}

.pitch-screen-area {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}

.pitch-screen-frame {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.pitch-screen-frame[hidden] {
  display: none;
}

.pitch-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pitch-screen-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: -0.3px;
}

.pitch-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pitch-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pitch-tab:hover {
  border-color: var(--gray-400);
  color: var(--black);
}

.pitch-tab.active {
  border-color: var(--kwenti-orange);
  color: var(--kwenti-orange);
  background: var(--accent-light);
}

/* === ENGAGEMENTS (a propos) — cards liquid glass === */
.engagement-card-glass {
  padding: 40px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.25s, transform 0.25s;
}

.engagement-card-glass:hover {
  border-color: var(--kwenti-orange);
  transform: translateY(-3px);
}

.engagement-card-glass:hover h3 {
  color: var(--kwenti-orange);
}

.engagement-card-glass h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  transition: color 0.25s;
}

.engagement-card-glass p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0;
}

/* === DIFFERENTIATORS LIQUID GLASS (a propos) === */
.diff-glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 40px 20px;
}

.diff-glass-grid::before,
.diff-glass-grid::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.diff-glass-grid::before {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245,155,1,0.28), transparent 70%);
  top: -60px;
  left: -40px;
}

.diff-glass-grid::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(254,199,4,0.22), transparent 70%);
  bottom: -40px;
  right: -40px;
}

.diff-card {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.diff-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.diff-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* === FOUNDER STORY HERO (image + intro) === */
.story-hero-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.story-hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: var(--gray-400);
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

.story-intro-headline {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  letter-spacing: -0.4px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* === FOUNDER STORY (a propos) === */
.founder-story {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-600);
}

.founder-story p {
  margin-bottom: 22px;
}

.founder-story strong {
  color: var(--black);
  font-weight: 700;
}

.founder-chapter {
  font-size: 14px;
  font-weight: 700;
  color: var(--kwenti-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 40px 0 18px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.founder-chapter:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.founder-quote {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.3px;
  line-height: 1.35;
  border-left: 3px solid var(--kwenti-orange);
  padding: 8px 0 8px 24px;
  margin: 36px 0;
}

.founder-signature {
  font-style: italic;
  color: var(--kwenti-orange);
  font-weight: 600;
  margin-top: 32px;
}

.founders-signature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.founder-card {
  text-align: center;
  padding: 24px 16px;
}

.founder-avatar {
  width: 80px;
  height: 80px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gray-400);
}

.founder-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 13px;
  color: var(--kwenti-orange);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === PACK INCLUSIONS (categories incluses tarifs) === */
.pack-incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pack-incl-card {
  position: relative;
  z-index: 1;
  padding: 32px 22px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pack-incl-icon {
  display: inline-flex;
  color: var(--kwenti-orange);
  margin-bottom: 14px;
}

.pack-incl-icon svg {
  width: 24px;
  height: 24px;
}

.pack-incl-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.pack-incl-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* === CUSTOM BANNER GLASS (+100 utilisateurs) === */
.custom-banner-glass {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}

.custom-banner-glass::before,
.custom-banner-glass::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.custom-banner-glass::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 155, 1, 0.32), transparent 70%);
  top: -120px;
  left: -60px;
}

.custom-banner-glass::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(254, 199, 4, 0.25), transparent 70%);
  bottom: -100px;
  right: -40px;
}

.custom-banner-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.custom-banner-title {
  font-weight: 700;
  font-size: 19px;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.custom-banner-sub {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.custom-banner-cta {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--kwenti-orange);
  border: 2px solid var(--kwenti-orange);
  border-radius: var(--radius-pill);
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.custom-banner-cta:hover {
  background: var(--kwenti-orange);
  color: var(--white);
}

/* === HERO GLOW (design system de hero) === */
html { scroll-behavior: smooth; }

.hero-glow {
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 50%, var(--off-white) 100%);
  position: relative;
  padding: 100px 2rem;
}

.hero-glow-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

@keyframes hero-halo-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, 40px); }
}

@keyframes hero-halo-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, -30px); }
}

.hero-glow::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 155, 1, 0.26), transparent 70%);
  filter: blur(110px);
  bottom: -220px;
  left: -180px;
  z-index: 0;
  pointer-events: none;
  animation: hero-halo-drift-1 14s ease-in-out infinite;
}

.hero-glow::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 199, 4, 0.22), transparent 65%);
  filter: blur(110px);
  bottom: 60px;
  right: 5%;
  z-index: 0;
  pointer-events: none;
  animation: hero-halo-drift-2 16s ease-in-out infinite;
}

.hero-glow > * {
  position: relative;
  z-index: 1;
}

/* === HERO FEATURES (specifiques fonctionnalites) === */
.hero-features {
  text-align: center;
  padding-bottom: 36px;
}

.hero-features > * {
  position: relative;
  z-index: 1;
}

.hero-features h1 {
  color: var(--black);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 880px;
  margin: 0 auto 24px;
}

.hero-features .hero-sub {
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 72px;
  font-size: 17px;
  line-height: 1.7;
}

.features-anchors {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;
}

.features-anchor {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.features-anchor:hover {
  border-color: var(--kwenti-orange);
  color: var(--kwenti-orange);
  background: var(--accent-light);
}

/* === POUR QUI === */
.metier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metier-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 3.5;
  background: var(--black);
  text-decoration: none;
  display: flex;
  align-items: flex-end;
}

.metier-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.metier-visual:hover .metier-bg {
  transform: scale(1.05);
}

.metier-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.metier-visual-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  width: 100%;
}

.metier-visual-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.metier-visual-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.metier-visual-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--kwenti-orange);
  transition: transform 0.2s;
  display: inline-block;
}

.metier-visual:hover .metier-visual-link {
  transform: translateX(4px);
}

.metier-coming {
  border-radius: var(--radius-lg);
  border: 2px solid var(--kwenti-orange);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  aspect-ratio: 3 / 3.5;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
}

.metier-coming:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.metier-coming-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--kwenti-orange);
  margin-bottom: 16px;
}

.metier-coming-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--kwenti-orange);
}

/* === MODAL === */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] { display: none; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px 8px;
}

.modal-close:hover { color: var(--black); }

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
}

.modal-form label em {
  color: var(--kwenti-orange);
  font-style: normal;
}

.modal-form input {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.modal-form input:focus {
  outline: none;
  border-color: var(--kwenti-orange);
  background: var(--white);
}

.modal-submit {
  margin-top: 8px;
  width: 100%;
}


/* === DOUBLE INTERFACE === */
.dual-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.dual-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-top: 20px;
}

.dual-screens {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

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

.dual-screen-desktop {
  flex: 1.4;
}

.dual-screen-mobile {
  flex: 0.6;
}

.dual-screen-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
}

.dual-screen-frame {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.dual-screen-desktop .dual-screen-frame {
  aspect-ratio: 4 / 3;
}

.dual-screen-mobile .dual-screen-frame {
  aspect-ratio: 9 / 16;
}

.dual-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dual-screen-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-300);
}

/* === WHY KWENTI === */
.why-h2 {
  max-width: 720px;
  margin: 0 auto;
}

.why-sub {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.6;
}

.why-icon {
  display: inline-flex;
  color: var(--kwenti-orange);
  margin-bottom: 14px;
}

.why-icon svg {
  width: 20px;
  height: 20px;
}

.why-bridge {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
}

.why-glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 48px auto 0;
  position: relative;
  padding: 60px 40px;
}

.why-glass-grid::before,
.why-glass-grid::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.why-glass-grid::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245,155,1,0.32), transparent 70%);
  top: -20px;
  left: 10%;
}

.why-glass-grid::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(254,199,4,0.28), transparent 70%);
  bottom: -20px;
  right: 10%;
}

.why-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  padding: 22px 24px;
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.why-card-1 { transform: rotate(-1.2deg); }
.why-card-2 { transform: rotate(0.8deg) translateY(10px); }
.why-card-3 { transform: rotate(-0.6deg) translateY(-6px); }
.why-card-4 { transform: rotate(1deg); }

.why-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.why-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}

.why-link {
  margin-top: 8px;
  display: inline-block;
  color: var(--kwenti-orange);
  font-weight: 600;
  border: 2px solid var(--kwenti-orange);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.why-link:hover {
  background: var(--kwenti-orange);
  color: var(--white);
}

.pitch-features-link {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: var(--kwenti-orange);
  font-weight: 600;
}

.pitch-features-link:hover { color: var(--kwenti-orange-hover); }

/* === APP PREVIEW === */
.app-preview {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 3rem;
}

.app-frame {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.app-frame img {
  width: 100%;
  height: auto;
}

.app-frame-placeholder {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
}

/* === CARDS === */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.25s;
}

.card:hover {
  border-color: var(--kwenti-orange);
  box-shadow: var(--shadow-orange);
}

.card.disabled {
  opacity: 0.38;
  pointer-events: none;
}

.card-muted {
  background: var(--off-white);
  border-color: transparent;
}

/* Card with icon */
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black);
}

.card p {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

/* Numbered card */
.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--kwenti-gradient);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Feature card */
.feature-card {
  display: flex;
  gap: 16px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--kwenti-orange); }

.feature-dot {
  width: 10px;
  height: 10px;
  background: var(--kwenti-gradient);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

/* Pricing card */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.25s;
}

.pricing-card:hover {
  border-color: var(--kwenti-orange);
  box-shadow: 0 6px 24px rgba(245, 155, 1, 0.08);
}

.pricing-card .plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kwenti-orange);
  margin-bottom: 4px;
}

.pricing-card .plan-users {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 400;
  margin-bottom: 20px;
}

.pricing-card .plan-price {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--black);
  margin-bottom: 2px;
}

.pricing-card .plan-period {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 400;
  margin-bottom: 24px;
}

.pricing-card .plan-btn {
  display: block;
  text-align: center;
  padding: 11px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.pricing-card:hover .plan-btn {
  background: var(--kwenti-gradient);
  border-color: transparent;
  color: var(--white);
}

/* === CTA BAND === */
.cta-band {
  background: var(--black);
  padding: 72px 3rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.cta-band-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.cta-band-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 0;
}

.cta-band-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.6;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-band {
  display: inline-block;
  background: var(--kwenti-orange);
  color: var(--black);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 8px 24px rgba(245, 155, 1, 0.25);
}

.btn-cta-band:hover {
  transform: translateY(-2px);
  background: var(--kwenti-yellow);
  box-shadow: 0 12px 30px rgba(245, 155, 1, 0.4);
}

.btn-outline-muted {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,0.2);
  color: var(--black);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-muted:hover {
  border-color: var(--black);
}

.pricing-footer {
  text-align: center;
}

.pricing-note {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

/* === ACCORDION / FAQ === */
.faq-list { list-style: none; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--kwenti-orange);
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item p {
  padding-bottom: 20px;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.65;
}

/* === GRIDS === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* === FOOTER === */
.site-footer {
  padding: 3rem 3rem 2rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.875rem;
  background: var(--off-white);
}

.footer-top,
.footer-bottom {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  flex-shrink: 0;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
}

.footer-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.footer-social a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--kwenti-orange); }

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

.footer-bottom .copyright {
  color: var(--gray-400);
  font-size: 0.8rem;
  margin: 0;
}

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

.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

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

/* Card as link */
.card-link {
  cursor: pointer;
  text-decoration: none;
  display: block;
}

/* Benefits */
.benefit .num { margin-bottom: 14px; }
.benefit h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.benefit p { font-size: 14px; color: var(--gray-500); line-height: 1.55; margin: 0; }

/* Testimonials */
.testimonial-quote { font-style: italic; margin-bottom: 16px; }
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 13px; color: var(--gray-400); }

/* App frame large */
.app-frame-lg { max-width: 800px; }
.app-frame-placeholder-lg { height: 420px; }

/* Section intro centered */
.section-intro-center { margin: 12px auto 0; text-align: center; }

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.mt-32 { margin-top: 32px; }
.mt-24 { margin-top: 24px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1.25rem;
  }
  .site-header nav a:not(.cta-secondary):not(.cta-primary),
  .site-header nav .dropdown {
    display: none;
  }

  .hero-video-wrap { min-height: 70vh; }
  .hero-video-content { padding: 48px 1.25rem; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .promise-band { padding: 32px 0; gap: 12px; }
  .promise-row { gap: 16px; }
  .app-preview { padding: 0 1.25rem; }
  .section { padding: 60px 1.25rem; }
  .section-alt { padding: 60px 1.25rem; }
  .cta-band { padding: 60px 1.25rem; }

  .pitch-pivot { margin-top: 36px; }
  .metier-grid { grid-template-columns: repeat(2, 1fr); }
  .metier-coming { aspect-ratio: auto; min-height: 120px; }
  .dual-layout { grid-template-columns: 1fr; gap: 32px; }
  .why-layout { grid-template-columns: 1fr; gap: 32px; }
  .why-heading h2 { position: static; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pitch-tabs { gap: 6px; flex-wrap: wrap; }
  .pitch-tab { padding: 8px 16px; font-size: 13px; }
  .pitch-screen-area { aspect-ratio: 4 / 3; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .site-footer { padding: 2rem 1.25rem 1.5rem; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
}

/* === PAGE ESSAI GRATUIT === */
.page-essai .site-header nav { display: none; }

.essai-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.essai-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.essai-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.essai-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
}

.essai-form-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.essai-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.essai-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.essai-form label em {
  color: var(--kwenti-orange);
  font-style: normal;
}

.essai-form input,
.essai-form select {
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: border-color 0.15s, background 0.15s;
}

.essai-form input:focus,
.essai-form select:focus {
  outline: none;
  border-color: var(--kwenti-orange);
  background: var(--white);
}

.essai-submit {
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.essai-form-separator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem 0 0.25rem;
}

.essai-form-separator span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  white-space: nowrap;
}

.essai-form-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.essai-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.essai-reassurance-bancaire {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: #fef9f0;
  border: 1px solid #f5e6cc;
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
}

.essai-reassurance-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.essai-reassurance-bancaire p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0;
}

.essai-reassurance-bancaire strong {
  color: var(--black);
}

/* Steps */
.essai-steps {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.essai-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0.25rem 1rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.essai-steps li .step-num {
  grid-row: 1 / -1;
  align-self: center;
}

.essai-steps li p {
  grid-column: 2;
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--kwenti-gradient);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}

/* === 404 === */
.error-404 { text-align: center; padding-top: 6rem; }
