*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1B2E45;
  --blue: #3A7CA5;
  --teal: #5DB8A8;
  --mist: #EEF4F7;
  --white: #FFFFFF;
  --ink: #2C3E50;
  --mid: #6B7D8E;
  --line: rgba(27,46,69,.10);
  --radius: 16px;
  --shell-max: 1280px;
}
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
.shell {
  width: min(100% - 48px, var(--shell-max));
  margin: 0 auto;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 38px; }
.nav-logo span {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: .02em;
}
nav a.cta-nav {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 9px 22px;
  border-radius: 100px;
  transition: background .2s, color .2s;
}
nav a.cta-nav:hover { background: var(--blue); color: var(--white); }
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 70% at 80% 50%, #D6EDF5 0%, transparent 70%),
              radial-gradient(ellipse 60% 60% at 10% 90%, #C8EDE6 0%, transparent 60%),
              var(--white);
}
.hero-inner { position: relative; z-index: 1; }
.blob {
  position: absolute;
  right: -6vw;
  top: 50%;
  transform: translateY(-50%);
  width: 52vw;
  max-width: 700px;
  opacity: .18;
  animation: drift 12s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translateY(-50%) rotate(0deg) scale(1); }
  to { transform: translateY(-54%) rotate(4deg) scale(1.04); }
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 28px;
}
h1 em { font-style: italic; color: var(--blue); }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 400;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid var(--line);
  transition: border-color .2s, transform .15s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
section { padding: 96px 0; }
.section-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  max-width: 540px;
}
#trust {
  background: var(--navy);
  padding: 52px 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 60px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
#candidats { background: var(--mist); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--line);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 12px 36px rgba(27,46,69,.08); transform: translateY(-4px); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #D6EDF5, #C8EDE6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.card p { font-size: .9rem; line-height: 1.65; color: var(--mid); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}
.split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, #2A4A68 60%, #3A7CA5 100%);
  padding: 48px 40px;
  position: relative;
}
.split-visual::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(93,184,168,.12);
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(93,184,168,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check svg { width: 12px; height: 12px; stroke: var(--teal); fill: none; stroke-width: 2.5; }
.feature-list li span { font-size: .92rem; line-height: 1.6; color: rgba(255,255,255,.8); }
.feature-list li strong { color: var(--white); font-weight: 500; }
.employer-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.employer-text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 24px;
}
.employer-text-last { margin-bottom: 36px; }
.employer-cta { display: inline-flex; }
#conformite { background: var(--mist); }
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.compliance-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border-left: 3px solid var(--teal);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compliance-card .label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 10px;
}
.compliance-card h4 {
  font-family: "DM Serif Display", serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.compliance-card p { font-size: .88rem; line-height: 1.6; color: var(--mid); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  color: var(--navy);
}
.step:hover .step-num {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transition: all .2s;
}
.step h4 {
  font-family: "DM Serif Display", serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p { font-size: .84rem; line-height: 1.55; color: var(--mid); }
#cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, #224060 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(93,184,168,.06);
}
#cta-final h2 { color: var(--white); position: relative; z-index: 1; }
#cta-final p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 20px auto 44px;
  position: relative;
  z-index: 1;
}
#cta-final .btn-primary {
  background: var(--teal);
  color: var(--white);
  position: relative;
  z-index: 1;
}
#cta-final .btn-primary:hover { background: #4aa593; }
#cta-final .contact-link {
  display: block;
  margin-top: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
#cta-final .contact-link:hover { color: rgba(255,255,255,.7); }
.final-eyebrow { justify-content: center; color: var(--teal); }
.final-eyebrow::before {
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
footer {
  background: var(--navy);
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
  font-size: .82rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: rgba(255,255,255,.7); }
.footer-links { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 991px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .blob { display: none; }
  #hero { padding-top: 120px; }
  .steps::before { display: none; }
}
@media (max-width: 576px) {
  .shell { width: min(100% - 32px, var(--shell-max)); }
  nav a.cta-nav { padding: 8px 16px; }
}
