/* ═══════════════════════════════════════════════════════════════
   YADA — style.css
   Palette : cyan #00BFDF → vert #6DBE45 → ambre #F5A623 → jaune #FFE600
   ══════════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --bg:      #07080D;
  --bg-2:    #0C0D16;
  --bg-3:    #11121C;
  --bg-4:    #191A27;
  --border:  rgba(255 255 255 / 0.07);
  --border2: rgba(255 255 255 / 0.13);
  --text:    #E4E6EE;
  --text-2:  #8A90A4;
  --text-3:  #515669;
  --cyan:    #00BFDF;
  --green:   #6DBE45;
  --amber:   #F5A623;
  --yellow:  #FFE600;
  --grad:    linear-gradient(90deg, #00BFDF 0%, #6DBE45 38%, #F5A623 72%, #FFE600 100%);
  --fhead:   'Plus Jakarta Sans', sans-serif;
  --fbody:   'Inter', sans-serif;
  --r:       12px;
  --r-lg:    20px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fbody);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
strong { font-weight: 600; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 104px 0; }
.section--alt { background: var(--bg-2); }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes grad-move {
  to { background-position: 200% center; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.is-visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.17s; }
.d3 { transition-delay: 0.26s; }
.d4 { transition-delay: 0.35s; }
.d5 { transition-delay: 0.48s; }

/* ─── Gradient helpers ───────────────────────────────────────── */
.grad-text {
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-move 5s linear infinite;
}

/* ─── Typography helpers ─────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.eyebrow--light { color: rgba(0 191 223 / 0.75); }

.section__title {
  font-family: var(--fhead);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section__title em {
  font-style: normal;
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-move 5s linear infinite;
}
.section__intro {
  font-size: 1.08rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--fbody);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn--lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 10px; }

.btn--primary {
  background: var(--grad);
  background-size: 200% auto;
  color: #07080D;
  font-weight: 600;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0 191 223 / 0.35);
  filter: brightness(1.06);
  animation: grad-move 2s linear infinite;
}
.btn--glow {
  box-shadow: 0 0 40px rgba(0 191 223 / 0.18), 0 4px 16px rgba(0 0 0 / 0.4);
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: rgba(0 191 223 / 0.45);
  background: rgba(0 191 223 / 0.05);
  transform: translateY(-1px);
}
.btn--white {
  background: #fff;
  color: #07080D;
  font-weight: 600;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255 255 255 / 0.15);
  background: var(--grad);
  background-size: 200% auto;
  animation: grad-move 2s linear infinite;
}

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.is-scrolled {
  background: rgba(7 8 13 / 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo img { height: 30px; width: auto; display: block; }
.nav__links { display: flex; gap: 1.75rem; margin-left: auto; }
.nav__links a { font-size: 0.88rem; color: var(--text-2); transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: 1rem; padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  border-radius: 6px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 24px 2rem;
  background: rgba(7 8 13 / 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav.is-open .nav__mobile { display: flex; }
.nav__mobile-links { display: flex; flex-direction: column; gap: 0; }
.nav__mobile-links a {
  font-size: 1.05rem;
  color: var(--text-2);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav__mobile-links a:hover { color: var(--text); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 960px; height: 720px;
  background: radial-gradient(ellipse at center,
    rgba(0 191 223 / 0.11) 0%,
    rgba(109 190 69 / 0.05) 42%,
    transparent 68%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0 191 223 / 0.08);
  border: 1px solid rgba(0 191 223 / 0.22);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__headline {
  font-family: var(--fhead);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}
.hero__proof-item strong {
  font-family: var(--fhead);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-move 5s linear infinite;
}
.hero__proof-item span {
  font-size: 0.78rem;
  color: var(--text-3);
  letter-spacing: 0.01em;
}
.hero__proof-sep {
  width: 1px; height: 36px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ─── Hero Screen ─────────────────────────────────────────────── */
.hero__screen {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow:
    0 50px 120px rgba(0 0 0 / 0.75),
    0 0 0 1px rgba(0 191 223 / 0.07),
    inset 0 1px 0 rgba(255 255 255 / 0.05);
  animation: float 6s 1s ease-in-out infinite;
}
.hero__screen-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 11px 16px;
  background: var(--bg-4);
  border-bottom: 1px solid var(--border);
}
.hero__screen-dots { display: flex; gap: 5px; }
.hero__screen-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero__screen-dots span:nth-child(1) { background: #FF5F57; }
.hero__screen-dots span:nth-child(2) { background: #FEBC2E; }
.hero__screen-dots span:nth-child(3) { background: #28C840; }
.hero__screen-url {
  flex: 1;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  background: var(--bg-3);
  padding: 4px 12px;
  border-radius: 6px;
}
.hero__screen-actions { display: flex; gap: 6px; margin-left: auto; }
.hero__screen-actions div {
  width: 26px; height: 16px;
  border-radius: 4px;
  background: var(--border);
}
.hero__screen-body { background: var(--bg-3); }

/* ─── Mock UI ─────────────────────────────────────────────────── */
.mock-ui {
  display: flex;
  min-height: 380px;
  font-family: var(--fbody);
  font-size: 0.76rem;
  color: var(--text-2);
  user-select: none;
}
.mock-ui__sidebar {
  width: 168px;
  flex-shrink: 0;
  background: var(--bg-4);
  border-right: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-ui__logo-area {
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mock-ui__logo-area img { width: 52px; }
.mock-ui__nav { display: flex; flex-direction: column; gap: 2px; padding: 0 8px; }
.mock-ui__nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--text-3);
  transition: background 0.15s, color 0.15s;
}
.mock-ui__nav-item--active {
  background: rgba(0 191 223 / 0.1);
  color: var(--cyan);
  font-weight: 500;
}
.mock-ui__main {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  min-width: 0;
}
.mock-ui__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.mock-ui__page-title {
  font-family: var(--fhead);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.mock-ui__topbar-actions { display: flex; gap: 6px; }
.mock-ui__tbtn {
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-2);
}
.mock-ui__tbtn--accent {
  background: rgba(0 191 223 / 0.12);
  border-color: rgba(0 191 223 / 0.25);
  color: var(--cyan);
}
.mock-ui__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-ui__kpi {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px;
}
.mock-ui__kpi-label {
  font-size: 0.68rem;
  color: var(--text-3);
  margin-bottom: 5px;
}
.mock-ui__kpi-val {
  font-family: var(--fhead);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 1;
}
.mock-ui__kpi-val--cyan  { color: var(--cyan);  }
.mock-ui__kpi-val--green { color: var(--green); }
.mock-ui__kpi-val--amber { color: var(--amber); }
.mock-ui__kpi-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.mock-ui__kpi-bar div {
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
}
.mock-ui__table {
  flex: 1;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.mock-ui__row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 80px;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.71rem;
}
.mock-ui__row:last-child { border-bottom: none; }
.mock-ui__row--head {
  background: rgba(255 255 255 / 0.02);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
}
.mock-ui__cell { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
.mock-ui__cell--muted { color: var(--text-3); }
.mock-ui__progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.mock-ui__progress div {
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
}
.mock-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 500;
  white-space: nowrap;
}
.mock-badge--green { background: rgba(109 190 69 / 0.15); color: var(--green); border: 1px solid rgba(109 190 69 / 0.25); }
.mock-badge--cyan  { background: rgba(0 191 223 / 0.12); color: var(--cyan);  border: 1px solid rgba(0 191 223 / 0.22); }
.mock-badge--amber { background: rgba(245 166 35 / 0.12); color: var(--amber); border: 1px solid rgba(245 166 35 / 0.22); }

/* ─── Ticker ─────────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 13px 0;
}
.ticker__inner {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-2);
  will-change: transform;
}
.ticker__sep { color: var(--cyan); opacity: 0.6; font-size: 0.65rem; }

/* ─── Problem ────────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 2.5rem;
}
.pain-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.pain-card:hover {
  border-color: rgba(0 191 223 / 0.2);
  transform: translateY(-3px);
}
.pain-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0 191 223 / 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.pain-card h3 {
  font-family: var(--fhead);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pain-card p {
  font-size: 0.87rem;
  color: var(--text-2);
  line-height: 1.65;
}
.problem__callout {
  background: var(--bg-3);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--cyan);
  border-radius: var(--r);
  padding: 1.75rem 2.25rem;
  font-size: 1.02rem;
  line-height: 1.75;
}
.problem__callout p + p { margin-top: 0.6rem; color: var(--text-2); }

/* ─── Solution ───────────────────────────────────────────────── */
.solution-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 0.5rem;
}
.solution-split__text p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.solution-split__text p:last-child { margin-bottom: 0; }
.solution-split__text strong { color: var(--text); }
.solution-split__card {
  background: var(--bg-3);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  position: sticky;
  top: 90px;
}
.solution-split__note {
  font-size: 0.82rem;
  color: var(--text-2);
}
.solution-split__checks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  width: 100%;
}

/* ─── Modules ────────────────────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 1rem;
}
.module-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.6rem 1.4rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.module-card:hover { transform: translateY(-4px); }
.module-card:has(.module-card__icon--cyan):hover  { border-color: rgba(0 191 223 / 0.25); box-shadow: 0 20px 50px rgba(0 191 223 / 0.07); }
.module-card:has(.module-card__icon--green):hover { border-color: rgba(109 190 69 / 0.25); box-shadow: 0 20px 50px rgba(109 190 69 / 0.07); }
.module-card:has(.module-card__icon--amber):hover { border-color: rgba(245 166 35 / 0.25); box-shadow: 0 20px 50px rgba(245 166 35 / 0.07); }
.module-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.module-card__icon--cyan  { background: rgba(0 191 223 / 0.1);  color: var(--cyan);  }
.module-card__icon--green { background: rgba(109 190 69 / 0.1); color: var(--green); }
.module-card__icon--amber { background: rgba(245 166 35 / 0.1); color: var(--amber); }
.module-card h3 {
  font-family: var(--fhead);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.module-card p { font-size: 0.84rem; color: var(--text-2); line-height: 1.65; }

/* ─── Efficiency ─────────────────────────────────────────────── */
.gains-list {
  max-width: 720px;
  margin: 0 auto 3rem;
}
.gain-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.gain-item:first-child { border-top: 1px solid var(--border); }
.gain-item__arrow {
  flex-shrink: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 1rem;
  padding-top: 3px;
  width: 20px;
  transition: transform 0.2s;
}
.gain-item:hover .gain-item__arrow { transform: translateX(4px); }
.gain-item div { display: flex; flex-direction: column; gap: 3px; }
.gain-item strong { font-size: 0.98rem; color: var(--text); font-weight: 600; }
.gain-item span { font-size: 0.87rem; color: var(--text-2); }

.efficiency__quote {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--fhead);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  padding: 2.5rem 2rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.efficiency__quote em {
  font-style: normal;
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-move 5s linear infinite;
}

/* ─── Founder ────────────────────────────────────────────────── */
.founder {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.founder__quote-mark {
  display: block;
  font-size: 7rem;
  font-family: Georgia, serif;
  line-height: 0.5;
  color: rgba(0 191 223 / 0.12);
  margin-bottom: 1rem;
  pointer-events: none;
}
.founder__title {
  font-family: var(--fhead);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.founder__body {
  text-align: left;
  max-width: 580px;
  margin: 0 auto 2rem;
}
.founder__body p {
  font-size: 1.04rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.founder__body p:last-child { margin-bottom: 0; }
.founder__body strong { color: var(--text); }
.founder__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.founder__tags span {
  padding: 6px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border2);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-2);
}

/* ─── Proof ──────────────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 2.5rem;
}
.proof-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.proof-card:hover {
  border-color: rgba(0 191 223 / 0.2);
  transform: translateY(-3px);
}
.proof-card__num {
  font-family: var(--fhead);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-card__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.proof-card__sub { font-size: 0.76rem; color: var(--text-3); }

.proof-testimonial {
  background: var(--bg-3);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.proof-testimonial blockquote {
  font-family: var(--fhead);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.proof-testimonial blockquote::before { content: '"'; color: var(--cyan); opacity: 0.5; }
.proof-testimonial blockquote::after  { content: '"'; color: var(--cyan); opacity: 0.5; }
.proof-testimonial cite { font-size: 0.8rem; color: var(--text-3); font-style: normal; }

.proof-onboarding {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.proof-onboarding__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-2);
}
.proof-onboarding__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ─── Objections ─────────────────────────────────────────────── */
.objections {
  max-width: 740px;
  margin: 0 auto;
}
.objection { border-bottom: 1px solid var(--border); }
.objection:first-child { border-top: 1px solid var(--border); }
.objection__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--fhead);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.objection__q:hover { color: var(--cyan); }
.objection__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-2);
  transition: transform 0.3s, border-color 0.3s, color 0.3s, background 0.3s;
}
.objection.is-open .objection__icon {
  transform: rotate(45deg);
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0 191 223 / 0.08);
}
.objection__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.objection.is-open .objection__a { grid-template-rows: 1fr; }
.objection__a > div { overflow: hidden; }
.objection.is-open .objection__a > div { padding-bottom: 1.5rem; }
.objection__a p { font-size: 0.94rem; color: var(--text-2); line-height: 1.75; margin-bottom: 0.5rem; }
.objection__a p:last-child { margin-bottom: 0; }
.objection__a strong { color: var(--text); }

/* ─── CTA Final ──────────────────────────────────────────────── */
.cta-final { background: var(--bg); }
.cta-final__inner {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
}
.cta-final__glow {
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse,
    rgba(0 191 223 / 0.14) 0%,
    rgba(109 190 69 / 0.06) 42%,
    transparent 70%);
  pointer-events: none;
}
.cta-final__title {
  font-family: var(--fhead);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.cta-final__sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta-final__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  text-align: center;
}
.footer__logo { opacity: 0.55; transition: opacity 0.2s; }
.footer__logo:hover { opacity: 1; }
.footer__tagline { font-size: 0.84rem; color: var(--text-2); }
.footer__copy { font-size: 0.75rem; color: var(--text-3); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid   { grid-template-columns: repeat(2, 1fr); }
  .pain-grid    { grid-template-columns: repeat(2, 1fr); }
  .solution-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .solution-split__card { position: static; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 64px; }
  .hero__proof-sep { display: none; }
  .hero__proof { gap: 1.75rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .modules-grid { grid-template-columns: 1fr; }
  .pain-grid    { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .mock-ui__sidebar { display: none; }
  .mock-ui__kpis { grid-template-columns: repeat(2, 1fr); }
  .hero__screen { animation: none; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__screen { display: none; }
  .cta-final__inner { padding: 3rem 1.5rem; }
}
