/* SoluSwipe — site vitrine. Palette et style alignés sur l'application
   (careerswipe.primary #2F3B91, secondary #4355C7, accent #1EAEDB). */
:root {
  --primary: #2F3B91;
  --secondary: #4355C7;
  --accent: #1EAEDB;
  --success: #10B981;
  --bg: #FFFFFF;
  --bg-soft: #F5F6FA;
  --card: #FFFFFF;
  --text: #1B1F32;
  --text-soft: #5A6072;
  --border: #E5E7F0;
  --radius: 18px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F1220;
    --bg-soft: #171B2E;
    --card: #191E33;
    --text: #F2F3F8;
    --text-soft: #A6ACC4;
    --border: #2A3050;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.container { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; color: var(--text); }
.brand img { width: 34px; height: 34px; }
.brand:hover { text-decoration: none; }
.nav a { margin-left: 22px; font-size: .95rem; color: var(--text-soft); font-weight: 500; }
.nav a:hover { color: var(--secondary); text-decoration: none; }
@media (max-width: 640px) { .nav a { margin-left: 14px; font-size: .85rem; } .nav .hide-mobile { display: none; } }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 55%, var(--accent) 130%);
  color: #fff;
  padding: 84px 0 92px;
  text-align: center;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.15; margin-bottom: 18px; letter-spacing: -.02em; }
.hero p.lead { font-size: clamp(1.02rem, 2.4vw, 1.25rem); max-width: 660px; margin: 0 auto 30px; opacity: .92; }
.badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px; padding: 10px 20px; font-weight: 600; font-size: .95rem; color: #fff;
}
.hero .note { margin-top: 18px; font-size: .85rem; opacity: .75; }

/* Sections */
section { padding: 64px 0; }
section.soft { background: var(--bg-soft); }
h2.section-title { font-size: clamp(1.5rem, 3.4vw, 2rem); text-align: center; margin-bottom: 8px; letter-spacing: -.01em; }
p.section-sub { text-align: center; color: var(--text-soft); max-width: 620px; margin: 0 auto 42px; }

.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: 0 6px 24px rgba(20, 25, 70, .06);
}
.card .icon {
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-size: 1.25rem; margin-bottom: 14px;
}
.card h3 { font-size: 1.06rem; margin-bottom: 6px; }
.card p { color: var(--text-soft); font-size: .93rem; }

/* Steps */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.step { text-align: center; padding: 10px 14px; }
.step .num {
  width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.02rem; margin-bottom: 5px; }
.step p { color: var(--text-soft); font-size: .92rem; }

/* Contact */
.contact-box {
  text-align: center; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 44px 26px; box-shadow: 0 6px 24px rgba(20,25,70,.06);
}
.btn {
  display: inline-block; background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-weight: 600; padding: 13px 30px; border-radius: 999px; font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(47,59,145,.35); text-decoration: none; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 34px 0 44px; background: var(--bg-soft); }
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: flex-start; }
.site-footer .brand { font-size: 1rem; }
.site-footer nav { display: flex; flex-direction: column; gap: 7px; font-size: .9rem; }
.site-footer .legal { margin-top: 22px; font-size: .8rem; color: var(--text-soft); }

/* Pages légales */
.page { padding: 46px 0 70px; max-width: 780px; margin: 0 auto; }
.page h1 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); margin-bottom: 6px; letter-spacing: -.01em; }
.page .updated { color: var(--text-soft); font-size: .88rem; margin-bottom: 30px; }
.page h2 { font-size: 1.18rem; margin: 30px 0 10px; }
.page p, .page li { color: var(--text); font-size: .96rem; margin-bottom: 10px; }
.page ul { padding-left: 22px; margin-bottom: 12px; }
.page .muted { color: var(--text-soft); }
.placeholder {
  background: #FEF3C7; color: #92400E; border-radius: 6px; padding: 1px 7px;
  font-weight: 600; font-size: .92em; white-space: nowrap;
}
@media (prefers-color-scheme: dark) { .placeholder { background: #4a3a12; color: #fbbf24; } }
.info-table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: .93rem; }
.info-table th, .info-table td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.info-table th { color: var(--text-soft); font-weight: 600; width: 38%; }
