:root {
  --orange: #f2751f;
  --orange-dark: #d9600f;
  --orange-soft: #fbe3d1;
  --ink: #1f1a17;
  --muted: #6b625c;
  --paper: #fffaf6;
  --line: #eadfd6;
  --max: 1040px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: var(--orange-dark); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
header.top { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 5; }
header.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; position: relative; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 800; font-size: 20px; }
.brand .mark { width: 36px; height: 36px; border-radius: 10px; background: var(--orange); color: #fff; display: grid; place-items: center; font-weight: 800; }
nav.menu a { margin-left: 18px; text-decoration: none; color: var(--muted); font-weight: 600; font-size: 15px; }
nav.menu a:hover { color: var(--orange-dark); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  nav.menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(31, 26, 23, 0.08);
    padding: 8px 0;
  }
  nav.menu.open { display: block; }
  nav.menu a {
    display: block;
    margin: 0;
    padding: 14px 20px;
    font-size: 16px;
    border-top: 1px solid var(--line);
  }
  nav.menu a:first-child { border-top: 0; }
}

.hero { padding: 72px 0 48px; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.02em; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 640px; margin: 0 0 26px; }
.badge { display: inline-block; background: var(--orange-soft); color: var(--orange-dark); font-weight: 700; padding: 6px 12px; border-radius: 999px; font-size: 13px; margin-bottom: 18px; }
.btn { display: inline-block; background: var(--orange); color: #fff; text-decoration: none; font-weight: 700; padding: 12px 20px; border-radius: 12px; }
.btn.secondary { background: #fff; color: var(--orange-dark); border: 1px solid var(--line); margin-left: 10px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero .actions .btn.secondary { margin-left: 0; }
.proof { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--muted); font-size: 14px; font-weight: 600; }
.proof li::before { content: "✓ "; color: var(--orange-dark); }
section p.sub { color: var(--muted); font-size: 17px; max-width: 680px; margin: 0 0 8px; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
h3.group { margin: 28px 0 0; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-dark); }
h3.group + .grid { margin-top: 12px; }
.metiers { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.chips span { background: var(--orange-soft); color: var(--orange-dark); font-weight: 700; padding: 8px 14px; border-radius: 999px; font-size: 14px; }
.assistant { background: var(--ink); color: #fff; }
.assistant h2, .assistant p { color: #fff; }
.assistant p { color: #d8cfc8; font-size: 17px; max-width: 520px; }
.assistant .badge { background: rgba(242, 117, 31, 0.18); color: #ffb27a; }
.assistant .btn.secondary { margin: 8px 0 0; background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.split { display: grid; gap: 32px; grid-template-columns: 1.1fr 1fr; align-items: start; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checks li { padding-left: 30px; position: relative; color: #d8cfc8; font-size: 15px; line-height: 1.5; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 7px; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800; }
.checks strong { color: #fff; }
.steps ol { counter-reset: step; list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.steps li { counter-increment: step; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px 20px 64px; position: relative; color: var(--muted); font-size: 15px; }
.steps li::before { content: counter(step); position: absolute; left: 20px; top: 20px; width: 32px; height: 32px; border-radius: 10px; background: var(--orange); color: #fff; font-weight: 800; display: grid; place-items: center; }
.steps li strong { color: var(--ink); }
.cta { text-align: center; }
.cta .wrap { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; border-radius: 24px; padding: 48px 24px; }
.cta h2, .cta p { color: #fff; }
.cta p { font-size: 17px; opacity: 0.92; margin: 0 0 22px; }
.cta .btn { background: #fff; color: var(--orange-dark); }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin: 32px 0; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.card h3 { margin: 10px 0 6px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--orange-soft); color: var(--orange-dark); display: grid; place-items: center; font-size: 20px; }
section { padding: 36px 0; }
section h2 { font-size: 26px; margin: 0 0 10px; letter-spacing: -0.01em; }
.trust { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust ul { columns: 2; gap: 24px; padding-left: 18px; color: var(--muted); }
@media (max-width: 640px) {
  .trust ul { columns: 1; }
  .hero { padding: 48px 0 36px; }
  .btn.secondary { margin: 10px 0 0; }
}
article.legal { max-width: 760px; }
article.legal h1 { font-size: 34px; margin: 40px 0 6px; }
article.legal h2 { font-size: 21px; margin-top: 30px; }
article.legal .date { color: var(--muted); font-size: 14px; }
article.legal table { border-collapse: collapse; width: 100%; font-size: 15px; }
article.legal th, article.legal td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
article.legal th { background: var(--orange-soft); }
code { background: #f6efe9; padding: 1px 5px; border-radius: 4px; font-size: 0.95em; }
footer { border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
footer a { color: var(--muted); }
