/* ===== DESIGN TOKENS ===== */
:root {
  --bg:        #EEEBe4;
  --surface:   #F7F5F0;
  --white:     #FDFCF9;
  --green:     #1A9E6A;
  --green-mid: #20B87A;
  --green-dim: #E4F4EC;
  --ink:       #151410;
  --ink-mid:   #3A3930;
  --ink-muted: #79786F;
  --ink-faint: #B4B2A9;
  --border:    rgba(21,20,16,0.09);
  --border-md: rgba(21,20,16,0.15);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 52px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  font-weight: 800;
}
h1 {
  font-size: clamp(34px, 3.4vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.08;
  max-width: 800px;
}
h1 em, h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -1.5px;
  line-height: 1.1;
}
h3 {
  font-size: 17px;
  letter-spacing: -0.3px;
}
p { color: var(--ink-mid); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav {
  height: 62px;
  background: rgba(238,235,228,0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
#nav.scrolled {
  box-shadow: 0 1px 12px rgba(21,20,16,0.06);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 52px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-logo {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -1px;
  color: var(--ink);
  z-index: 1;
}
.nav-logo span { color: var(--green); }

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-center a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color .2s;
}
.nav-center a:hover { color: var(--ink); }

.nav-cta {
  margin-left: auto;
  opacity: 0.6;
  transition: opacity .3s, background .2s;
}
#nav.scrolled .nav-cta { opacity: 1; }

/* ===== BUTTONS ===== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--white);
  border: none;
  transition: background .2s;
}
.btn-pill:hover { background: var(--green); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--white);
  border: none;
  transition: background .2s;
}
.btn-primary:hover { background: var(--green); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-muted);
  transition: color .2s;
}
.btn-ghost:hover { color: var(--ink); }

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}
.section-white { background: var(--white); }
.section-bg    { background: var(--bg); }
.section-surface { background: var(--surface); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 12px;
}

/* ===== HERO ===== */
.hero {
  padding: 72px 0 0;
  background: var(--bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: flex-start;
  gap: 56px;
}
.hero-content {
  max-width: 420px;
  padding-top: 48px;
  padding-bottom: 72px;
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 48px;
}
.hero-dashboard {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  transform-origin: left top;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(21,20,16,0.12), 0 4px 12px rgba(21,20,16,0.07);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 2.4s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}
.hero h1 { margin-bottom: 16px; }
.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 420px;
  margin-bottom: 28px;
}
.hero-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cal {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color .2s;
}
.hero-cal:hover { color: var(--green); }
.hero-fr {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: .01em;
}
.fr-flag { font-size: 16px; line-height: 1; }

/* HERO ANIMATIONS */
.hero-eyebrow  { animation: fadeUp .5s ease 0s both; }
.hero h1       { animation: fadeUp .5s ease .07s both; }
.hero-sub      { animation: fadeUp .5s ease .14s both; }
.hero-row      { animation: fadeUp .5s ease .21s both; }
.hero-fr       { animation: fadeUp .5s ease .26s both; }
.hero-visual   { animation: fadeUp .6s ease .32s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MOCKUP ===== */
.mockup {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-md);
  box-shadow: 0 2px 40px rgba(21,20,16,0.07), 0 1px 3px rgba(21,20,16,0.05);
  overflow: hidden;
  width: 100%;
}
.mockup-bar {
  height: 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.mockup-dots {
  display: flex;
  gap: 5px;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-faint);
  opacity: .5;
}
.mockup-bar-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: .02em;
}
.mockup-body {
  display: flex;
  height: 380px;
}

/* Sidebar */
.mockup-side {
  width: 210px;
  flex-shrink: 0;
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mockup-brand { padding: 0 8px; }
.mockup-brand-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.mockup-brand-sub {
  display: block;
  font-size: 11px;
  color: var(--ink-muted);
}
.mockup-nav { display: flex; flex-direction: column; gap: 2px; }
.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: background .15s, color .15s;
  position: relative;
}
.mockup-nav-item:hover {
  background: var(--bg);
  color: var(--ink);
}
.mockup-nav-item.active {
  background: var(--green-dim);
  color: var(--green);
  font-weight: 600;
}
.mockup-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-badge {
  margin-left: auto;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 100px;
}

/* Main mockup */
.mockup-main {
  flex: 1;
  padding: 28px;
  overflow: hidden;
}
.mockup-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 4px;
}
.mockup-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1;
}

/* Stats grid */
.m-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.m-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
}
.m-stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-dim);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.m-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.m-stat-label {
  font-size: 10px;
  color: var(--ink-muted);
  margin-top: 3px;
}

/* Search bar */
.m-search {
  background: var(--bg);
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-muted);
}
.m-search-placeholder {
  flex: 1;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-search-btn {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--green);
  color: white;
  border: none;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ===== PROBLÈME ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.problem-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.problem-num {
  position: absolute;
  top: -6px;
  right: 14px;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -4px;
  color: var(--ink);
  opacity: 0.045;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.problem-item p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.72;
}
.problem-item strong { color: var(--ink); }

/* ===== MODULES ===== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 34px 30px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.module-card:hover {
  border-color: var(--border-md);
  box-shadow: 0 4px 20px rgba(21,20,16,0.05);
  transform: translateY(-2px);
}
.module-featured {
  background: var(--surface);
  border-color: var(--border);
  border-top: 3px solid var(--green);
}
.module-featured .module-tagline { color: var(--green); }
.module-featured .module-icon { background: var(--green-dim); color: var(--green); }
.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.module-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--green-dim);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: .05em;
}
.module-tagline {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 6px;
}
.module-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.4px;
}
.module-card p {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--ink-muted);
}
.module-chip {
  display: inline-flex;
  align-items: center;
  background: var(--green-dim);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 5px 14px;
  border-radius: 6px;
  margin-top: 18px;
}

/* ===== MESSAGES IA ===== */
.msg-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 72px;
  align-items: center;
}
.msg-left h2 { margin-top: 8px; margin-bottom: 16px; }
.msg-right { display: flex; flex-direction: column; gap: 10px; }

/* Config block */
.msg-config {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.msg-config-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.msg-config-fields { display: flex; flex-direction: column; gap: 8px; }
.msg-config-field {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
}
.msg-config-key {
  font-weight: 600;
  color: var(--ink-muted);
  flex-shrink: 0;
  min-width: 110px;
}
.msg-config-val { color: var(--ink); }

/* Generated email block */
.msg-generated {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.msg-generated-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.msg-variant-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
}
.msg-chip {
  display: inline-flex;
  background: var(--green-dim);
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.msg-generated-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg-generated-body p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.65;
}
.msg-objet {
  font-size: 12px !important;
  color: var(--ink-muted) !important;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}
.msg-objet-label {
  font-weight: 700;
  color: var(--ink-faint);
  margin-right: 4px;
}
.msg-actions {
  display: flex;
  gap: 8px;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.msg-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-md);
  background: var(--white);
  color: var(--ink-mid);
  cursor: default;
}
.msg-action-send {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.banned-words {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 18px;
}
.banned-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.banned-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.banned-chips span {
  font-size: 12px;
  color: var(--ink-faint);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 3px 10px;
  text-decoration: line-through;
}

/* ===== COMPARAISON ===== */
.table-wrap {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.compare-table colgroup col:first-child { width: 30%; }
.compare-table colgroup col:nth-child(2) { width: 35%; }
.compare-table colgroup col:nth-child(3) { width: 35%; }
.compare-table thead tr { background: var(--ink); }
.compare-table th {
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: none;
  color: rgba(255,255,255,0.35);
}
.compare-table th:first-child { color: rgba(255,255,255,0.2); font-weight: 500; }
.compare-table th.th-od1 { color: var(--green-mid); }
.compare-table tbody tr { transition: background .15s; }
.compare-table tbody tr:nth-child(odd) { background: var(--white); }
.compare-table tbody tr:nth-child(even) { background: var(--surface); }
.compare-table tbody tr:hover { background: var(--green-dim); }
.compare-table td {
  padding: 18px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}
.td-crm {
  color: var(--ink-faint);
  font-size: 13.5px;
  font-style: italic;
}
.td-od1 {
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.td-od1 svg { color: var(--green); flex-shrink: 0; }

/* ===== POUR QUI ===== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px 26px;
  transition: border-color .2s, transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.who-card:hover {
  border-color: var(--border-md);
  transform: translateY(-2px);
}
.who-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-dim);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.who-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.2px;
}
.who-card p { font-size: 14px; line-height: 1.68; color: var(--ink-muted); }

/* ===== PRINCIPES ===== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin-top: 40px;
}
.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px 28px;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.principle-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-dim);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.principle-text h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.principle-text p { font-size: 14px; line-height: 1.68; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 48px;
}
.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.faq-last { border-bottom: none; }
.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.2px;
  color: var(--ink);
  transition: background .15s;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { display: none; }
.faq-summary:hover { background: var(--surface); }
.faq-chevron {
  color: var(--ink-faint);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] .faq-summary { color: var(--green); }
.faq-body {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 580px;
  padding: 0 28px 22px;
}

/* ===== ACCÈS ANTICIPÉ ===== */
.beta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.beta-left h2 { margin-top: 8px; margin-bottom: 16px; }
.beta-left > p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.beta-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.beta-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}
.beta-benefits svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.beta-quotas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.quota-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--ink-mid);
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: 6px;
  padding: 5px 12px;
}
.urgency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-muted);
}
.urgency svg { flex-shrink: 0; }

/* Form */
.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  box-shadow: 0 2px 24px rgba(21,20,16,0.04);
}
.form-box h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
}
.field-group input:not([type="checkbox"]),
.field-group select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2379786F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field-group input::placeholder { color: var(--ink-faint); }
.field-group input:focus,
.field-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,158,106,.1);
}
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--white);
  border: none;
  margin-top: 8px;
  transition: background .2s, opacity .2s;
  cursor: pointer;
}
.btn-submit:hover:not(:disabled) { background: var(--green); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.consent-group { margin-top: 4px; margin-bottom: 12px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--green);
  cursor: pointer;
  border: 1.5px solid var(--border-md);
  border-radius: 4px;
  background: var(--bg);
  transition: all .2s;
}
.consent-label input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}
.consent-label a { color: var(--green); text-decoration: underline; }

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: var(--ink);
  padding: 104px 52px;
}
.footer-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.footer-cta h2 {
  color: var(--surface);
  font-size: clamp(30px, 4.2vw, 56px);
  letter-spacing: -2px;
  line-height: 1.08;
  max-width: 600px;
  margin: 0 auto 16px;
}
.footer-cta h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-mid);
}
.footer-cta-sub {
  font-size: 14px;
  color: rgba(247,245,240,.4);
  margin-bottom: 32px;
}
.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 100px;
  background: var(--surface);
  color: var(--ink);
  border: none;
  transition: background .2s, color .2s;
}
.btn-footer-cta:hover {
  background: var(--green);
  color: white;
}
.footer-cal-link {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(247,245,240,.4);
  text-decoration: none;
  transition: color .2s;
}
.footer-cal-link:hover { color: rgba(247,245,240,.8); }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 26px 52px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  font-weight: 800;
  font-size: 15px;
  color: var(--surface);
  letter-spacing: -.3px;
}
.footer-logo span { color: var(--green-mid); }
.footer-center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(247,245,240,.3);
}
.footer-center a {
  color: rgba(247,245,240,.3);
  transition: color .2s;
}
.footer-center a:hover { color: rgba(247,245,240,.7); }
.footer-sep { opacity: .4; }
.footer-right {
  font-size: 12px;
  color: rgba(247,245,240,.3);
}
.footer-right a {
  color: rgba(247,245,240,.45);
  text-decoration: none;
}
.footer-right a:hover { color: rgba(247,245,240,.7); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-md);
  padding: 12px 20px;
  display: none;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(21,20,16,0.08);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.sticky-btn {
  width: 100%;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }

  .nav-center { display: none; }
  .nav-inner { padding: 0 24px; }

  .hero { padding: 72px 0 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
  }
  .hero-content { padding-top: 16px; padding-bottom: 0; max-width: 100%; }
  .hero-visual {
    margin-right: -24px;
    margin-left: -24px;
    padding-top: 0;
    justify-content: center;
    overflow: hidden;
  }
  .hero-dashboard {
    width: 100%;
    transform: none;
    border-radius: 10px 10px 0 0;
  }

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

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

  .msg-layout { grid-template-columns: 1fr; gap: 40px; }

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

  .beta-layout { grid-template-columns: 1fr; gap: 48px; }
  .field-row { grid-template-columns: 1fr; }

  .footer-cta { padding: 72px 24px; }
  .footer { padding: 22px 24px 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .sticky-mobile-cta { display: flex; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(36px, 8vw, 44px); }
  .m-stats { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .compare-table { display: block; overflow-x: auto; }
  .footer-center { flex-wrap: wrap; gap: 6px; }
}
