/* ─── RESET & TOKENS ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --green:       #2e7d4f;
  --green-dark:  #245f3d;
  --green-deep:  #234e36;
  --green-light: #eaf3ec;
  --green-mid:   #bfe0cb;
  --terra:       #c1654a;
  --terra-light: #fbeae4;
  --bg:          #faf7f1;
  --bg-alt:      #f3eee4;
  --border:      #ece5d8;
  --border-alt:  #e7dfd0;
  --text:        #2b2620;
  --text-dark:   #221d17;
  --text-mid:    #5f574a;
  --text-muted:  #6b6354;
  --text-faint:  #9a9182;
  --text-warm:   #7a7060;
  --footer-bg:   #221d17;
  --footer-text: #cfc6b4;
  --font-serif:  'Spectral', Georgia, serif;
  --font-sans:   'Work Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); font-family: var(--font-sans); color: var(--text); -webkit-font-smoothing: antialiased; }
section[id] { scroll-margin-top: 90px; }
a { text-decoration: none; }
button { font-family: var(--font-sans); }

/* ─── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes tFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ─── LAYOUT HELPERS ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(250, 247, 241, 0.88);
  box-shadow: 0 10px 30px -22px rgba(43, 38, 32, 0.6);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--green);
  box-shadow: 0 6px 14px -8px rgba(46, 125, 79, 0.9);
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: #544c40;
  transition: color .15s ease;
}
.nav-desktop a:hover { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 18px;
  border-radius: 9px;
  text-decoration: none;
  box-shadow: 0 8px 18px -10px rgba(46, 125, 79, 0.8);
  transition: background .15s ease, transform .15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 16.5px;
  padding: 15px 24px;
  border-radius: 11px;
  border: 1px solid #ddd4c3;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--green); transform: translateY(-2px); }

.btn-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
  line-height: 1;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 10px 24px 18px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 11px 4px;
  font-size: 16px;
  font-weight: 500;
  color: #3a342b;
  border-bottom: 1px solid #efe8da;
}
.nav-mobile a:last-child { border-bottom: none; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 50% at 80% 14%, rgba(46,125,79,.11), transparent 70%),
    radial-gradient(42% 44% at 8% 92%,  rgba(193,101,74,.09), transparent 72%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-top: 60px;
  padding-bottom: 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.12fr;
  gap: 54px;
  align-items: center;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef4ee;
  border: 1px solid #d8e7dc;
  color: #2c6b45;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  letter-spacing: .01em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 18px 0 0;
  text-wrap: balance;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.62;
  color: var(--text-mid);
  max-width: 31em;
  margin: 20px 0 0;
  text-wrap: pretty;
}
.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 16.5px;
  padding: 15px 26px;
  border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 14px 28px -12px rgba(46, 125, 79, 0.85);
  transition: background .15s ease, transform .15s ease;
}
.btn-cta-hero:hover { background: var(--green-dark); transform: translateY(-2px); }

.hero-reassurance {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
  color: var(--text-warm);
  font-size: 14px;
}
.hero-reassurance span { display: inline-flex; align-items: center; gap: 7px; }
.check { color: var(--green); font-weight: 700; }

.hero-visual { position: relative; }
.float-card {
  position: absolute;
  left: -22px;
  bottom: -26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 13px 16px;
  box-shadow: 0 24px 48px -24px rgba(36, 31, 25, 0.45);
  display: flex;
  align-items: center;
  gap: 13px;
  animation: tFloat 6s ease-in-out infinite;
}
.float-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-light);
}
.float-card-label { font-size: 12px; color: #8a8170; }
.float-card-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #241f19;
}
.float-card-value em { font-style: normal; font-size: 13px; color: var(--green); font-weight: 600; }

/* ─── SOCIAL PROOF ───────────────────────────────────────────────────────── */
.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #9a9182;
  font-size: 13.5px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.social-proof-name {
  font-family: var(--font-serif);
  font-size: 19px;
  color: #6f6657;
  text-transform: none;
  letter-spacing: 0;
}

/* ─── PROBLEM / SOLUTION ─────────────────────────────────────────────────── */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.section-label--green { color: var(--green); }
.section-label--terra  { color: var(--terra); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin: 12px 0 0;
}
.section-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 14px 0 0;
  text-wrap: pretty;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 46px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 18px 40px -32px rgba(36, 31, 25, 0.35);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
}
.card-icon--terra { background: var(--terra-light); }
.card-icon--green { background: var(--green-light); }

.card-sublabel {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 18px;
}
.card-sublabel--terra { color: var(--terra); }
.card-sublabel--green { color: var(--green); }
.card-text { font-size: 16px; line-height: 1.55; margin: 6px 0 0; }
.card-text--muted { color: #6b6354; }
.card-text--dark  { color: #3a342b; }
.card-divider { height: 1px; background: #efe8da; margin: 18px 0; }

/* ─── FEATURES ───────────────────────────────────────────────────────────── */
.section-features { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.cards-grid-feat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 42px;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--border-alt);
  border-radius: 16px;
  padding: 26px;
}
.feat-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
}
.feat-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #241f19;
  margin: 18px 0 0;
}
.feat-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #6b6354;
  margin: 7px 0 0;
}

/* ─── APERÇU ─────────────────────────────────────────────────────────────── */
.apercu-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 54px;
  align-items: center;
}
.apercu-steps { margin-top: 24px; display: flex; flex-direction: column; gap: 22px; }
.apercu-step { display: flex; gap: 14px; }
.step-num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}
.step-title { font-size: 17px; font-weight: 600; color: var(--text); }
.step-desc  { font-size: 15.5px; line-height: 1.55; color: #6b6354; margin: 4px 0 0; }

/* ─── TARIFS ─────────────────────────────────────────────────────────────── */
.section-tarifs { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.pricing-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 38px 32px;
  box-shadow: 0 34px 70px -34px rgba(46, 125, 79, 0.5);
  text-align: center;
  max-width: 480px;
  margin: 38px auto 0;
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid #cfe5d6;
  color: #256b43;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 2px;
}
.pricing-number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.pricing-currency {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #6f6657;
}
.pricing-note { font-size: 14.5px; color: var(--text-warm); }
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
  border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 14px 28px -12px rgba(46, 125, 79, 0.85);
  transition: background .15s ease, transform .15s ease;
}
.pricing-cta:hover { background: var(--green-dark); transform: translateY(-2px); }
.pricing-nocb { font-size: 13px; color: #9a9182; margin-top: 12px; }
.pricing-divider { height: 1px; background: #efe8da; margin: 26px 0; }
.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
  text-align: left;
}
.pricing-feat {
  display: flex;
  gap: 9px;
  font-size: 15px;
  color: #4a4338;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-sans);
}
.faq-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-a {
  display: none;
  padding: 0 22px 22px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-mid);
  text-wrap: pretty;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── CTA FINAL ──────────────────────────────────────────────────────────── */
.cta-final {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  margin-bottom: 80px;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 70% at 85% 10%, rgba(193,101,74,.28), transparent 60%),
    radial-gradient(40% 60% at 5%  100%, rgba(46,125,79,.5), transparent 60%);
  pointer-events: none;
}
.cta-final-inner { position: relative; }
.cta-final h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 auto;
  max-width: 18em;
  text-wrap: balance;
}
.cta-final p {
  font-size: 18px;
  line-height: 1.6;
  color: #cfe0d4;
  margin: 16px auto 0;
  max-width: 34em;
}
.cta-final-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 16.5px;
  padding: 15px 28px;
  border-radius: 11px;
  text-decoration: none;
  transition: transform .15s ease;
}
.btn-cta-final:hover { transform: translateY(-2px); }
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 16.5px;
  padding: 15px 24px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: border-color .15s ease;
  font-family: var(--font-sans);
}
.btn-ghost-dark:hover { border-color: #fff; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--footer-bg); color: var(--footer-text); }
.footer-inner { padding-top: 62px; padding-bottom: 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #a89e8b;
  margin: 16px 0 0;
  max-width: 26em;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #463d31;
  color: var(--footer-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: border-color .15s ease, color .15s ease;
}
.footer-social a:hover { border-color: var(--green); color: #fff; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #8a8170;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 15px; color: var(--footer-text); text-decoration: none; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  height: 1px;
  background: rgba(58, 50, 39, 0.52);
  margin: 40px 0 22px;
}
.footer-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13.5px;
  color: #8a8170;
}
.footer-copy-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-copy a { color: #8a8170; text-decoration: none; transition: color .15s ease; }
.footer-copy a:hover { color: var(--footer-text); }

/* ─── DEMO MODAL ─────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(34, 29, 23, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: var(--bg);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.6);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
}
.modal-sub { font-size: 14px; color: var(--text-warm); margin-top: 2px; }
.modal-close {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
  line-height: 1;
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}
.btn-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 15.5px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s ease;
}
.btn-modal-cta:hover { background: var(--green-dark); }

/* ─── APP MOCKUP ─────────────────────────────────────────────────────────── */
.mockup-wrap { width: 100%; }
.mockup-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px -42px rgba(36,31,25,.45), 0 14px 30px -20px rgba(36,31,25,.25);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #f4efe6;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.mock-dot--red    { background: #e0827a; }
.mock-dot--yellow { background: #e6c269; }
.mock-dot--green  { background: #86c79a; }
.mockup-url-bar {
  flex: 1;
  display: flex;
  justify-content: center;
}
.mockup-url {
  font-size: 11px;
  color: #8a8170;
  background: #fff;
  border: 1px solid #e7e0d2;
  border-radius: 6px;
  padding: 4px 14px;
}
.mockup-body { display: flex; min-height: 344px; }
.mockup-sidebar {
  width: 150px;
  flex: none;
  background: #f8f4ec;
  border-right: 1px solid #efe8da;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 6px 12px;
}
.sidebar-logo-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sidebar-logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border-radius: 8px;
  font-size: 12.5px;
}
.sidebar-item--active { background: #e9f2eb; color: #256b43; font-weight: 600; }
.sidebar-item--idle   { color: #6f6657; }
.sidebar-bullet {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  display: inline-block;
}
.sidebar-bullet--active { background: var(--green); }
.sidebar-bullet--idle   { background: #cfc6b4; }
.mockup-content { flex: 1; padding: 18px 20px; background: #fffdf9; min-width: 0; }
.mockup-greeting {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: #241f19;
}
.mockup-date { font-size: 12px; color: #8a8170; margin-top: 3px; }
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}
.mockup-stat {
  border: 1px solid #efe8da;
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
}
.mockup-stat-label { font-size: 10.5px; color: #8a8170; text-transform: uppercase; letter-spacing: .04em; }
.mockup-stat-val   { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: #241f19; margin-top: 4px; white-space: nowrap; }
.mockup-stat-sub   { font-size: 11px; margin-top: 2px; }
.mockup-stat-sub--green { color: var(--green); }
.mockup-stat-sub--gray  { color: #8a8170; }
.mockup-chart {
  margin-top: 14px;
  border: 1px solid #efe8da;
  border-radius: 10px;
  padding: 14px 15px;
  background: #fff;
}
.mockup-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-chart-title { font-size: 13px; font-weight: 600; color: #3a342b; }
.mockup-chart-badge { font-size: 11px; color: var(--green); font-weight: 600; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 96px;
  margin-top: 14px;
}
.chart-bar { flex: 1; border-radius: 5px 5px 0 0; }
.chart-labels { display: flex; gap: 10px; margin-top: 8px; }
.chart-label { flex: 1; text-align: center; font-size: 10px; color: #9a9182; }

/* ─── REVEAL ─────────────────────────────────────────────────────────────── */
[data-reveal] { opacity: 1; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .nav-desktop  { display: none; }
  .btn-burger   { display: inline-flex; }
  .hero-grid    { grid-template-columns: 1fr; }
  .apercu-grid  { grid-template-columns: 1fr; }
  .float-card   { display: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid     { grid-template-columns: 1fr; }
  .cta-row         { flex-direction: column; }
  .pricing-features { grid-template-columns: 1fr; }
  .mockup-sidebar  { width: 110px; }
}
