/* DIXROSES — landing (dixroses.com) */
:root{
  --bg:#F7F3EE; --ink:#5A101B; --soft:rgba(90,16,27,.78);
  --stroke:rgba(90,16,27,.12); --accent:#5A101B; --panel:#fff;
}
*{ box-sizing:border-box; }
html,body{ margin:0; }
body{
  background:radial-gradient(1200px 800px at 50% 0%, rgba(255,255,255,.6), rgba(255,255,255,0)), var(--bg);
  color:var(--ink);
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.6;
}
h1,h2,h3{ font-family:"Playfair Display",Georgia,serif; }

.btn{ display:inline-block; padding:11px 20px; border-radius:999px; font-weight:600;
  text-decoration:none; font-size:15px; border:1px solid transparent; cursor:pointer; }
.btn--primary{ background:var(--accent); color:#fff; }
.btn--ghost{ background:transparent; border-color:var(--stroke); color:var(--ink); }
.btn--lg{ padding:14px 26px; font-size:16px; }

.nav{ display:flex; align-items:center; justify-content:space-between; padding:20px 6vw; }
.logo{ font-family:"Playfair Display",serif; font-weight:700; font-size:22px; color:var(--ink); text-decoration:none; letter-spacing:.5px; }
.nav__links{ display:flex; align-items:center; gap:18px; }
.nav__links a{ color:var(--soft); text-decoration:none; font-size:15px; }
.nav__links a.btn{ color:inherit; }
.nav__links .btn--primary{ color:#fff; }

.hero{ position:relative; padding:60px 6vw 80px; overflow:hidden; }
.hero__rose{ position:absolute; top:-40px; right:-40px; width:min(340px,38vw); transform:rotate(8deg);
  opacity:.95; filter:drop-shadow(0 16px 22px rgba(0,0,0,.18)); pointer-events:none; }
.hero__content{ position:relative; max-width:760px; }
.hero h1{ font-size:clamp(36px,6vw,68px); line-height:1.05; margin:0 0 18px; }
.hero__sub{ font-size:clamp(16px,2.2vw,20px); color:var(--soft); max-width:60ch; }
.hero__actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }

.section{ padding:70px 6vw; max-width:1100px; margin:0 auto; }
.section--alt{ background:rgba(255,255,255,.4); border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke); max-width:none; }
.section h2{ font-size:clamp(26px,3.6vw,40px); margin:0 0 10px; }
.section__lead{ color:var(--soft); font-size:18px; margin:0 0 30px; }
.section__note{ color:var(--soft); font-size:14px; margin-top:24px; }

.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:30px; }
.step{ background:var(--panel); border:1px solid var(--stroke); border-radius:16px; padding:22px; }
.step__num{ display:inline-grid; place-items:center; width:34px; height:34px; border-radius:50%;
  background:var(--accent); color:#fff; font-weight:700; margin-bottom:12px; }
.step h3{ margin:0 0 6px; font-size:18px; }
.step p{ margin:0; color:var(--soft); font-size:15px; }

.example-card{ position:relative; max-width:520px; margin:30px auto 0; background:var(--panel);
  border:1px solid var(--stroke); border-radius:22px; padding:40px 30px; text-align:center;
  box-shadow:0 18px 55px rgba(0,0,0,.08); }
.example-card__rose{ position:absolute; right:-30px; bottom:-40px; width:160px; opacity:.95;
  filter:drop-shadow(0 16px 22px rgba(0,0,0,.18)); pointer-events:none; }
.example-card h3{ font-size:32px; margin:0 0 12px; }
.example-card p{ color:var(--soft); }
.example-card__lock{ display:inline-block; margin-top:18px; padding:6px 14px; border-radius:999px;
  background:rgba(90,16,27,.08); color:var(--accent); font-size:14px; font-weight:600; }

.pricing{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; max-width:720px; }
.price-card{ background:var(--panel); border:1px solid var(--stroke); border-radius:18px; padding:28px; }
.price-card--featured{ border-color:var(--accent); box-shadow:0 12px 40px rgba(90,16,27,.12); }
.price-card h3{ margin:0 0 6px; font-size:22px; }
.price{ font-size:30px; font-weight:700; margin:0 0 16px; }
.price-card ul{ list-style:none; padding:0; margin:0 0 22px; }
.price-card li{ padding:7px 0; border-bottom:1px solid var(--stroke); color:var(--soft); font-size:15px; }
.price-card li:last-child{ border-bottom:0; }

.footer{ text-align:center; padding:40px 6vw 60px; color:var(--soft); }
.footer__links a{ color:var(--accent); text-decoration:none; }

@media (max-width:860px){
  .steps{ grid-template-columns:1fr 1fr; }
  .pricing{ grid-template-columns:1fr; }
  .nav__links a:not(.btn){ display:none; }   /* on masque les ancres, on garde les 2 boutons */
}
@media (max-width:560px){
  .nav{ flex-wrap:wrap; gap:10px; padding:16px 5vw; }
  .nav__links{ gap:10px; }
  .nav__links .btn{ padding:9px 14px; font-size:14px; }
}
@media (max-width:520px){
  .steps{ grid-template-columns:1fr; }
}
