/* ═══════════════════════════════════════════════
   OCRE — Landing Page v2
   ═══════════════════════════════════════════════ */

:root {
  --bg:      #f4efe6;
  --bg-s:    #ede4d3;
  --panel:   #fffdf8;
  --ink:     #1e1a15;
  --ink-s:   #5b5348;
  --ink-xs:  #9a8e83;
  --accent:  #a4572a;
  --acc-d:   #7d3914;
  --acc-l:   #c97a45;
  --line:    #e0d3be;
  --line-s:  #c8b89e;
  --sidebar: #1e1208;
  --ok:      #2d7a53;
  --danger:  #b64332;
  --r-xl:    24px;
  --r-lg:    16px;
  --r-md:    10px;
  --r-sm:    7px;
  --font:    "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-d:  "Avenir Next Condensed", "Gill Sans", "Trebuchet MS", sans-serif;
  --shadow:  0 24px 64px rgba(72,49,25,.13);
  --shadow-s:0 6px 20px rgba(72,49,25,.08);
}

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

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.hero-visual { animation: float 5s ease-in-out infinite; }

/* ── Bandeau social proof ───────────────────────── */
.trust-banner {
  background: linear-gradient(90deg, #1e1208 0%, #3e2614 50%, #1e1208 100%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
}
.trust-inner {
  max-width: 1140px; margin: 0 auto;
  padding: .6rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: .8rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(240,230,211,.7);
}
.trust-ico { font-size: 1rem; }
.trust-count, .trust-inner strong { color: #f0c89a; }
.trust-sep { color: rgba(240,230,211,.25); }

/* ── Nav ────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,239,230,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: .85rem 2rem;
}
.nav-logo {
  font-size: 1.55rem; font-weight: 900;
  color: var(--ink); flex-shrink: 0;
  display: inline-flex; align-items: baseline; gap: 0; text-decoration: none;
}
.nav-logo .logo-home {
  font-family: 'Nunito', var(--font-d); font-weight: 900;
  color: #7a5c38; letter-spacing: -.01em;
}
.nav-logo .logo-reno {
  font-family: 'Nunito', var(--font-d); font-weight: 900;
  color: var(--accent); letter-spacing: -.01em;
}

/* Footer logo variant */
.logo-home { font-family: 'Nunito', var(--font-d); font-weight: 900; color: #f0dfc3; letter-spacing: -.01em; }
.logo-reno { font-family: 'Nunito', var(--font-d); font-weight: 900; color: #c97a45; letter-spacing: -.01em; }
.nav-links { display: flex; gap: 1.8rem; flex: 1; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--ink-s);
  transition: color .15s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: .7rem; align-items: center; }

.btn-ghost {
  padding: .42rem .95rem; border-radius: var(--r-md);
  font-weight: 600; font-size: .86rem; color: var(--ink-s);
  border: 1.5px solid var(--line); transition: all .15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-primary {
  padding: .48rem 1.1rem; border-radius: var(--r-md);
  font-weight: 700; font-size: .86rem;
  background: var(--accent); color: #fff;
  transition: background .15s, transform .1s;
  box-shadow: 0 2px 8px rgba(164,87,42,.25);
}
.btn-primary:hover { background: var(--acc-d); transform: translateY(-1px); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem;
  align-items: center; padding: 5.5rem 2rem 4.5rem;
  animation: fadeUp .6s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .28rem .8rem; border-radius: 99px;
  background: rgba(164,87,42,.1); color: var(--accent);
  font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1.3rem; border: 1px solid rgba(164,87,42,.2);
}
.hero-title {
  font-family: var(--font-d); font-size: 3rem; font-weight: 900;
  line-height: 1.1; letter-spacing: -.01em; margin-bottom: 1.3rem;
  color: var(--ink);
}
.hero-accent {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--acc-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.02rem; color: var(--ink-s); max-width: 500px;
  margin-bottom: 2.2rem; line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }

.btn-hero-primary {
  padding: .82rem 1.8rem; border-radius: var(--r-lg);
  font-weight: 700; font-size: .98rem;
  background: linear-gradient(135deg, var(--accent), var(--acc-l));
  color: #fff; transition: all .2s;
  box-shadow: 0 6px 20px rgba(164,87,42,.35);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(164,87,42,.4); }

.btn-hero-ghost {
  padding: .82rem 1.6rem; border-radius: var(--r-lg);
  font-weight: 600; font-size: .98rem;
  border: 1.5px solid var(--line-s); color: var(--ink-s);
  transition: all .15s;
}
.btn-hero-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-proof {
  display: flex; align-items: center; gap: .7rem;
  font-size: .86rem; color: var(--ink-xs); flex-wrap: wrap;
}
.hero-proof-item strong { color: var(--ink); font-weight: 800; }
.hero-proof-sep { color: var(--line-s); }

/* ── App Preview ────────────────────────────────── */
.app-preview {
  background: var(--panel); border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  overflow: hidden; border: 1px solid var(--line);
  position: relative;
}
.app-preview::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(164,87,42,.03) 0%, transparent 60%);
  pointer-events: none;
}

.preview-bar {
  display: flex; align-items: center; gap: .35rem; padding: .65rem 1rem;
  background: #ede5d8; border-bottom: 1px solid var(--line);
  position: relative; z-index: 1;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.preview-url {
  flex: 1; text-align: center; font-size: .72rem; color: var(--ink-xs);
  margin: 0 .5rem;
}

.preview-content { display: flex; position: relative; z-index: 1; }

.preview-sidebar {
  width: 115px; background: var(--sidebar); padding: .9rem .6rem;
  flex-shrink: 0;
}
.ps-logo {
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 900;
  letter-spacing: .18em; color: #f0e6d3; margin-bottom: .9rem;
  padding: 0 .4rem;
}
.ps-item {
  font-size: .68rem; color: rgba(240,230,211,.45); padding: .38rem .55rem;
  border-radius: 6px; margin-bottom: .18rem; cursor: default; transition: all .15s;
}
.ps-active {
  background: rgba(164,87,42,.25); color: #f0c8a0; font-weight: 600;
  border-left: 2px solid var(--acc-l);
}

/* ── Preview main ───────────────────────────────── */
.preview-main { flex: 1; padding: .85rem .9rem; overflow: hidden; }

.pm-doc-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: .7rem; padding-bottom: .6rem;
  border-bottom: 1.5px solid var(--line);
}
.pm-doc-num {
  font-family: var(--font-d); font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; color: var(--accent); margin-bottom: .15rem;
}
.pm-doc-client { font-size: .71rem; font-weight: 700; color: var(--ink); }

.pm-badge {
  font-size: .62rem; font-weight: 800; padding: .2rem .5rem; border-radius: 5px;
  white-space: nowrap; flex-shrink: 0;
}
.pm-badge-ok { background: rgba(45,122,83,.12); color: var(--ok); }

.pm-lot {
  display: flex; align-items: center; gap: .35rem;
  font-size: .6rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent);
  padding: .5rem 0 .2rem;
}
.pm-lot-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.pm-line {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .3rem 0; border-bottom: 1px dashed var(--line); gap: .4rem;
}
.pm-line-left { display: flex; flex-direction: column; gap: .08rem; min-width: 0; }
.pm-line-code {
  font-size: .58rem; font-weight: 700; color: var(--ink-xs);
  font-family: monospace; letter-spacing: .02em;
}
.pm-line-text {
  font-size: .68rem; color: var(--ink-s); line-height: 1.35;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 175px;
}
.pm-line-right { display: flex; flex-direction: column; align-items: flex-end; gap: .05rem; flex-shrink: 0; }
.pm-line-qty { font-size: .6rem; color: var(--ink-xs); }
.pm-line-price { font-size: .74rem; font-weight: 700; color: var(--ink); }

.pm-totals-block {
  margin-top: .55rem; padding: .55rem .6rem;
  background: rgba(164,87,42,.05); border-radius: var(--r-sm);
  border: 1px solid rgba(164,87,42,.12);
}
.pm-total-row {
  display: flex; justify-content: space-between;
  font-size: .67rem; color: var(--ink-s); padding: .12rem 0;
}
.pm-total-ttc {
  padding-top: .3rem; margin-top: .2rem;
  border-top: 1.5px solid var(--line-s);
  font-size: .78rem; font-weight: 800; color: var(--ink);
}
.pm-total-ttc strong { color: var(--accent); font-size: .88rem; }

.pm-ia-tag {
  font-size: .62rem; color: var(--ink-xs); text-align: center;
  padding: .45rem 0 .1rem; font-style: italic;
}

/* ── Dashboard preview (hero) ───────────────────── */
.pdash {
  background: var(--bg) !important;
  padding: .75rem .85rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: .55rem !important;
}

.pdash-hdr {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.pdash-greet {
  font-size: .76rem; font-weight: 700; color: var(--ink);
}
.pdash-sub {
  font-size: .62rem; color: var(--ink-xs); margin-top: .1rem;
}
.pdash-new-btn {
  font-size: .6rem; font-weight: 700;
  background: var(--accent); color: #fff;
  padding: .28rem .55rem; border-radius: 7px;
  white-space: nowrap; flex-shrink: 0;
}

.pdash-wf {
  display: flex; align-items: stretch; gap: .25rem;
  background: var(--panel); border-radius: 10px;
  padding: .5rem .55rem; border: 1px solid var(--line);
}
.pdash-wf-step {
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  flex: 1; padding: .3rem .35rem; border-radius: 7px; opacity: .4;
}
.pdash-wf-done  { opacity: .65; }
.pdash-wf-active {
  background: rgba(164,87,42,.1); opacity: 1;
  border: 1px solid rgba(164,87,42,.25);
}
.pdash-wf-n {
  font-size: .55rem; font-weight: 800; color: var(--ink-xs);
  background: var(--bg-s); border-radius: 50%;
  width: 14px; height: 14px;
  display: flex; align-items: center; justify-content: center;
}
.pdash-wf-active .pdash-wf-n {
  background: var(--accent); color: #fff;
}
.pdash-wf-lbl { font-size: .58rem; font-weight: 600; color: var(--ink-s); text-align: center; }
.pdash-wf-arr { font-size: .8rem; color: var(--line-s); align-self: center; }

.pdash-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .35rem;
}
.pdash-kpi {
  background: var(--panel); border-radius: 9px;
  padding: .45rem .5rem; border: 1px solid var(--line);
  border-left: 3px solid var(--line);
}
.pdash-kpi-b  { border-left-color: #6496c8; }
.pdash-kpi-g  { border-left-color: var(--ok); }
.pdash-kpi-o  { border-left-color: #d97706; }
.pdash-kpi-br { border-left-color: var(--accent); }
.pdash-kv { font-size: .84rem; font-weight: 800; color: var(--ink); line-height: 1; }
.pdash-kl { font-size: .57rem; color: var(--ink-xs); margin-top: .12rem; line-height: 1.2; }
.pdash-ka { font-size: .62rem; font-weight: 700; color: var(--ok); margin-top: .08rem; }

.pdash-lists {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; flex: 1;
}
.pdash-col-title {
  font-size: .58rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; color: var(--ink-xs); margin-bottom: .28rem;
}
.pdash-row {
  display: flex; align-items: center; gap: .3rem;
  background: var(--panel); border-radius: 6px;
  padding: .28rem .4rem; margin-bottom: .18rem;
  border: 1px solid var(--line); font-size: .6rem;
}
.pdash-row-ia {
  background: none; border: none; font-size: .58rem;
  color: var(--ink-xs); font-style: italic; gap: 0; padding: .2rem 0;
}
.pdash-ref    { font-weight: 700; color: var(--ink-s); flex-shrink: 0; }
.pdash-client { flex: 1; color: var(--ink-xs); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pdash-amt    { font-weight: 700; color: var(--ink); flex-shrink: 0; }
.pdash-badge  {
  font-size: .56rem; font-weight: 700;
  padding: .1rem .3rem; border-radius: 99px; flex-shrink: 0;
}
.pdash-neutral { background: var(--bg-s); color: var(--ink-xs); }
.pdash-ok      { background: rgba(45,122,83,.1); color: var(--ok); }
.pdash-warn    { background: rgba(217,119,6,.1);  color: #d97706; }

/* ── Hero proof FE badge ────────────────────────── */
.hero-proof-fe {
  display: flex; align-items: center; gap: .55rem;
  background: rgba(0,49,137,.06); color: #003189;
  padding: .3rem .8rem .3rem .4rem; border-radius: 99px;
  border: 1px solid rgba(0,49,137,.15);
}
.fe-logo-svg { width: 28px; height: 28px; flex-shrink: 0; }
.fe-logo-text {
  display: flex; flex-direction: column; gap: 0; line-height: 1.2;
}
.fe-ready {
  font-size: .68rem; font-weight: 800; color: #003189;
  text-transform: uppercase; letter-spacing: .05em;
}
.fe-label {
  font-size: .72rem; font-weight: 500; color: #003189; opacity: .75;
}

/* ── Feature card FE ────────────────────────────── */
.feature-card-fe {
  background: linear-gradient(135deg, rgba(45,122,83,.04) 0%, var(--panel) 100%);
  border-color: rgba(45,122,83,.2) !important;
}
.fe-badge {
  display: inline-flex; align-items: center;
  margin-top: .9rem;
  padding: .3rem .75rem; border-radius: 99px;
  background: rgba(45,122,83,.1); color: var(--ok);
  font-size: .75rem; font-weight: 700;
  border: 1px solid rgba(45,122,83,.2);
}

/* ── Sections communes ──────────────────────────── */
.section-inner { max-width: 1140px; margin: 0 auto; padding: 5.5rem 2rem; }

.section-label {
  font-size: .73rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--accent); margin-bottom: .7rem;
  display: flex; align-items: center; gap: .5rem;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px; background: var(--accent);
}

.section-title {
  font-family: var(--font-d); font-size: 2.35rem; font-weight: 900;
  line-height: 1.18; margin-bottom: 1rem; color: var(--ink);
}
.section-sub {
  font-size: 1rem; color: var(--ink-s); max-width: 560px; margin-bottom: 3rem;
  line-height: 1.65;
}

/* ── How it works ───────────────────────────────── */
.how {
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 100%);
  border-bottom: 1px solid var(--line);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
  margin-top: 3rem;
}
.step-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--panel); border-radius: var(--r-lg); padding: 1.6rem;
  border: 1px solid var(--line);
  transition: box-shadow .25s, transform .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(164,87,42,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .25s;
}
.step-card:hover { box-shadow: var(--shadow-s); transform: translateY(-3px); border-color: var(--line-s); }
.step-card:hover::before { opacity: 1; }

.step-num {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--accent), var(--acc-l));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.35rem; font-weight: 900;
  box-shadow: 0 4px 12px rgba(164,87,42,.3);
}
.step-body h3 { font-size: .97rem; font-weight: 800; margin-bottom: .5rem; }
.step-body p  { font-size: .85rem; color: var(--ink-s); line-height: 1.65; }

.how-result {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 2.5rem; padding: 1.3rem 1.6rem;
  background: linear-gradient(135deg, rgba(164,87,42,.08), rgba(164,87,42,.04));
  border-radius: var(--r-lg); border-left: 4px solid var(--accent);
  border: 1px solid rgba(164,87,42,.2);
}
.how-result-icon { font-size: 1.5rem; flex-shrink: 0; }
.how-result-text { font-size: .97rem; font-weight: 600; color: var(--ink); line-height: 1.5; }

/* ── Features ───────────────────────────────────── */
.features {
  background: var(--panel);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--bg); border-radius: var(--r-lg); padding: 1.5rem;
  border: 1px solid var(--line);
  transition: box-shadow .25s, transform .2s, border-color .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-s); transform: translateY(-3px);
  border-color: var(--line-s);
}
.feature-icon {
  font-size: 1.7rem; margin-bottom: .8rem; display: block;
  filter: drop-shadow(0 2px 4px rgba(164,87,42,.2));
}
.feature-card h3 { font-size: .95rem; font-weight: 800; margin-bottom: .45rem; }
.feature-card p  { font-size: .84rem; color: var(--ink-s); line-height: 1.6; }

/* ── Founder ─────────────────────────────────────── */
.founder { background: var(--bg); border-bottom: 1px solid var(--line); }
.founder-inner {
  display: grid; grid-template-columns: 260px 1fr; gap: 4.5rem; align-items: start;
}
.founder-visual { position: sticky; top: 90px; }
.founder-badge-wrap {
  display: flex; align-items: center; gap: 1rem;
  background: var(--panel); border-radius: var(--r-lg); padding: 1.1rem 1.2rem;
  border: 1px solid var(--line); margin-bottom: 1.8rem;
  box-shadow: var(--shadow-s);
}
.founder-avatar {
  width: 50px; height: 50px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--accent), var(--acc-l));
  color: #fff; font-family: var(--font-d); font-size: 1.5rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(164,87,42,.3);
}
.founder-name { font-weight: 800; font-size: .97rem; }
.founder-title { font-size: .76rem; color: var(--ink-s); line-height: 1.4; }
.founder-quote-marks {
  font-family: Georgia, serif; font-size: 5rem; line-height: 1;
  color: var(--accent); opacity: .15; text-align: center;
}
.founder-content p {
  font-size: .93rem; color: var(--ink-s); line-height: 1.75; margin-bottom: 1.2rem;
}
.founder-list {
  list-style: none; margin: 1.2rem 0 1.4rem;
  display: flex; flex-direction: column; gap: .65rem;
}
.founder-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .9rem; color: var(--ink); line-height: 1.45;
}
.founder-list li span { flex-shrink: 0; }
.founder-closing {
  font-size: .93rem; font-weight: 700; color: var(--accent) !important;
  border-left: 3px solid var(--accent); padding-left: 1rem;
  margin-top: 1rem; line-height: 1.6;
}

/* ── Pricing ────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-top: 3rem;
}
.pricing-single {
  grid-template-columns: 1fr;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.pricing-card {
  background: var(--panel); border-radius: var(--r-xl); padding: 2rem 1.6rem;
  border: 1.5px solid var(--line); position: relative;
  transition: box-shadow .25s, transform .2s;
}
.pricing-card:hover {
  box-shadow: var(--shadow-s); transform: translateY(-3px);
}
.pricing-featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(164,87,42,.15);
  background: linear-gradient(170deg, var(--panel) 0%, rgba(244,239,230,.6) 100%);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--acc-l));
  color: #fff; font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .22rem .9rem; border-radius: 99px;
  box-shadow: 0 3px 10px rgba(164,87,42,.35);
}
.plan-name { font-weight: 900; font-size: 1.05rem; margin-bottom: .55rem; }
.plan-price { display: flex; align-items: baseline; gap: .15rem; margin-bottom: .3rem; }
.plan-amount { font-family: var(--font-d); font-size: 2.6rem; font-weight: 900; line-height: 1; }
.plan-period { font-size: .88rem; color: var(--ink-s); }
.plan-price-custom { font-family: var(--font-d); font-size: 1.9rem; font-weight: 900; margin-bottom: .3rem; }
.plan-desc { font-size: .83rem; color: var(--ink-s); margin-bottom: 1.3rem; }
.plan-features { list-style: none; margin-bottom: 1.8rem; }
.plan-features li {
  font-size: .86rem; padding: .38rem 0;
  border-bottom: 1px solid var(--line); color: var(--ink-s);
}
.plan-features li:last-child { border-bottom: none; }

.btn-plan {
  display: block; text-align: center; width: 100%;
  padding: .72rem; border-radius: var(--r-md);
  font-weight: 700; font-size: .9rem;
  background: var(--bg); color: var(--ink);
  border: 1.5px solid var(--line); transition: all .15s;
}
.btn-plan:hover { border-color: var(--accent); color: var(--accent); }
.btn-plan-featured {
  background: linear-gradient(135deg, var(--accent), var(--acc-l));
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(164,87,42,.3);
}
.btn-plan-featured:hover {
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(164,87,42,.4);
}
.btn-plan-contact { color: var(--ink-s); }
.plan-note { text-align: center; font-size: .75rem; color: var(--ink-xs); margin-top: .65rem; }

/* ── Contact section ────────────────────────────── */
.contact-section { background: var(--panel); border-top: 1px solid var(--line); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 3.5rem;
  margin-top: 2.5rem; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-field { display: flex; flex-direction: column; gap: .4rem; }
.contact-field label { font-size: .82rem; font-weight: 700; color: var(--ink-s); }
.contact-field input,
.contact-field textarea {
  padding: .7rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--bg);
  font-size: .95rem; color: var(--ink); outline: none;
  font-family: inherit; resize: vertical;
  transition: border-color .15s, box-shadow .15s;
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(164,87,42,.1);
}
.contact-error {
  padding: .6rem 1rem; border-radius: 8px;
  background: rgba(182,67,50,.1); color: #b64332;
  font-size: .86rem; font-weight: 600;
}
.contact-success {
  padding: .6rem 1rem; border-radius: 8px;
  background: rgba(45,122,83,.1); color: var(--ok);
  font-size: .86rem; font-weight: 600;
}
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: .9rem; }
.cii-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.cii-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-xs); margin-bottom: .2rem; }
.cii-val { font-size: .9rem; color: var(--ink-s); line-height: 1.6; }
.cii-val a { color: var(--accent); }

/* ── CTA Final ──────────────────────────────────── */
.cta-final {
  background: linear-gradient(160deg, #1e1208 0%, #3e2614 50%, #2a1810 100%);
  color: #f0e6d3; padding: 5.5rem 2rem;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(164,87,42,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final h2 {
  font-family: var(--font-d); font-size: 2.2rem; font-weight: 900;
  margin-bottom: .8rem; position: relative;
}
.cta-final p { font-size: .97rem; opacity: .7; margin-bottom: 2.2rem; position: relative; }
.cta-final .btn-hero-primary {
  box-shadow: 0 6px 24px rgba(0,0,0,.3); position: relative;
}

/* ── Footer ─────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: var(--panel); }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 1.4rem 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.footer-brand {
  font-family: var(--font-d); font-weight: 900; letter-spacing: .2em; font-size: 1.05rem;
}
.footer-links { display: flex; gap: 1.5rem; flex: 1; }
.footer-links a { font-size: .83rem; color: var(--ink-s); transition: color .15s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: .78rem; color: var(--ink-xs); }

/* ── Visuel mobile hero ──────────────────────────── */
.hero-mobile-card {
  display: none;
  flex-direction: column;
  gap: .8rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.2rem 1.4rem;
  margin-top: .6rem;
  box-shadow: var(--shadow-s);
}
.hmc-stats {
  display: flex; align-items: center; justify-content: space-around; gap: .5rem;
}
.hmc-stat { text-align: center; }
.hmc-val  { font-size: 1.6rem; font-weight: 900; color: var(--accent); line-height: 1; }
.hmc-lbl  { font-size: .72rem; color: var(--ink-xs); text-transform: uppercase; letter-spacing: .06em; margin-top: .15rem; }
.hmc-sep  { width: 1px; height: 32px; background: var(--line); }
.hmc-flow {
  display: flex; align-items: center; justify-content: center;
  gap: .4rem; flex-wrap: wrap; font-size: .82rem;
}
.hmc-step { background: var(--bg-s); padding: .3rem .6rem; border-radius: var(--r-sm); font-weight: 600; color: var(--ink-s); }
.hmc-arr  { color: var(--accent); font-weight: 700; }
.hmc-tag  {
  text-align: center; font-size: .76rem; color: var(--ok);
  background: rgba(45,122,83,.08); padding: .35rem .8rem;
  border-radius: var(--r-sm); font-weight: 600;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid, .pricing-grid, .steps-grid { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-visual { position: static; }
  .nav-links { display: none; }
  .section-title { font-size: 1.9rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-mobile-card { display: flex; }
}

@media (max-width: 680px) {
  .hero { padding: 2.5rem 1.2rem 2rem; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: .93rem; }
  .hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { text-align: center; font-size: .92rem; padding: .78rem 1.4rem; }
  .hero-proof { flex-wrap: wrap; gap: .4rem .6rem; }
  .hero-proof-sep { display: none; }
  .section-title { font-size: 1.7rem !important; }
  .section-inner { padding: 3rem 1.2rem; }
  .trust-inner { font-size: .72rem; flex-wrap: wrap; gap: .3rem; }
  .trust-sep { display: none; }
  .nav-inner { padding: .7rem 1rem; }
  .nav-actions .btn-ghost { display: none; }
  .pricing-card { padding: 1.5rem 1.2rem; }
  .plan-features li { font-size: .86rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 1.75rem; }
  .hero-badge { font-size: .7rem; }
  .hmc-val    { font-size: 1.35rem; }
  .hmc-flow   { font-size: .75rem; }
}
