/* =============================================
   LOOKFOROP — Design System
   Style: "Harmonisé logo" — teal du logo + accent cuivre
   Proposition de refonte visuelle (juillet 2026)
   ============================================= */

:root {
  --cream:    #F5F6F4;   /* fond principal : blanc cassé neutre */
  --beige:    #E8ECEA;   /* fond de section secondaire */
  --terracotta: #D97D3D; /* accent : cuivre chaud, complémentaire du teal */
  --terracotta-light: #E89A5E;
  --navy:     #1B6E8A;   /* teal du logo Lookforop, identique au logo */
  --navy-mid: #2E8AA6;
  --text:     #1F2A2E;
  --text-muted: #5B6669;
  --white:    #FFFFFF;
  --border:   #DCE2E0;
  --radius:   8px;
  --radius-lg: 14px;
  --shadow:   0 2px 12px rgba(27,110,138,.06);
  --shadow-lg: 0 8px 28px rgba(27,110,138,.10);
  --transition: all .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-label.center { display: block; }

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

p { color: var(--text-muted); margin-bottom: 16px; }
p strong { color: var(--text); }
p:last-child { margin-bottom: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-light);
  border-color: var(--terracotta-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,125,61,.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-full { width: 100%; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,246,244,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: -.01em;
}
.logo-look { color: var(--navy); }
.logo-forop { color: var(--terracotta); }
.logo-light .logo-look { color: var(--white); }
.logo-light .logo-forop { color: var(--terracotta-light); }

/* Logo image (SVG) */
.logo-img-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.logo-img-light {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: 68px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(217,125,61,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(46,138,166,.6) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--terracotta-light);
  font-style: normal;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  margin: 0 auto;
}

/* ============================================
   VALUES STRIP
   ============================================ */
.values-strip {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card {
  text-align: center;
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: .9rem; }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 20px; }
.about-visual {
  position: relative;
}
.about-card-stack {
  position: relative;
  height: 320px;
}
.about-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  text-align: center;
  min-width: 160px;
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}
.ac1 { top: 0; left: 0; transform: rotate(-1deg); }
.ac2 { top: 80px; left: 140px; transform: rotate(.5deg); z-index: 2; }
.ac3 { top: 170px; left: 20px; transform: rotate(-.5deg); }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--beige);
}
.services h2 { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 14px; }
.service-card p { font-size: .925rem; }

/* ============================================
   BIO
   ============================================ */
.bio {
  padding: 100px 0;
  background: var(--navy);
}
.bio-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.bio-visual { text-align: center; }
.bio-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 0 0 8px rgba(217,125,61,.2);
}
.bio-avatar-inner {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
}
.bio-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  padding: 0 16px;
}
.bio-text .section-label { color: var(--terracotta-light); }
.bio-text h2 { color: var(--white); margin-bottom: 6px; }
.bio-role {
  color: var(--terracotta-light);
  font-weight: 500;
  font-size: .95rem;
  margin-bottom: 24px;
}
.bio-text p { color: rgba(255,255,255,.65); }
.bio-tags {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
}

/* ============================================
   SECTORS
   ============================================ */
.sectors {
  padding: 100px 0;
  background: var(--cream);
}
.sectors h2 { margin-bottom: 48px; }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.sector-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
  border-left: 4px solid var(--terracotta);
  box-shadow: var(--shadow);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--beige);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 { margin-bottom: 20px; }
.contact-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-detail {
  font-size: .9rem;
  color: var(--text-muted);
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .925rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(217,125,61,.12);
}
.form-group textarea { resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  margin-top: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--terracotta-light); }
.footer-legal p {
  color: rgba(255,255,255,.3);
  font-size: .8rem;
  text-align: right;
}

/* ============================================
   WHY SECTION (avantages cabinet vs direct)
   ============================================ */
.why-section {
  background: var(--beige);
  padding: 80px 0;
}
.why-header {
  margin-bottom: 48px;
}
.why-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy);
  margin-top: 10px;
  max-width: 560px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border-top: 3px solid var(--terracotta);
}
.why-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ARTICLE / BLOG
   ============================================ */
.article-hero {
  background: var(--navy);
  padding: 120px 0 60px;
}
.article-meta {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  max-width: 720px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-hero .article-desc {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 600px;
}
.article-body {
  padding: 72px 0 100px;
  background: var(--white);
}
.article-content {
  max-width: 740px;
  margin: 0 auto;
}
.article-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 40px 0 14px;
}
.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}
.article-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.article-content li {
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}
.article-content strong { color: var(--navy); }
.article-cta-box {
  background: var(--beige);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 40px 0;
}
.article-cta-box p { margin: 0 0 14px; }

/* Blog cards */
.blog-section {
  padding: 100px 0;
  background: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-size: .75rem;
  color: var(--terracotta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.35;
}
.blog-card p {
  font-size: .9rem;
  flex: 1;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--terracotta);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  transition: var(--transition);
}
.blog-card-link:hover { gap: 10px; }

/* Tests page */
.tests-intro {
  padding: 100px 0;
  background: var(--white);
}
.tests-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tests-cards {
  padding: 0 0 100px;
  background: var(--white);
}
.tests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
}
.test-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.test-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.test-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.test-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.test-card li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-muted);
}
.test-card li:last-child { border-bottom: none; }
.test-card li::before { content: "✓ "; color: var(--terracotta); font-weight: 700; }
.test-price {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-top: 12px;
}
.process-simple {
  padding: 80px 0;
  background: var(--navy);
}
.process-simple h2 { color: var(--white); margin-bottom: 48px; }
.process-simple-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.simple-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.simple-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -8px;
  top: 16px;
  color: rgba(255,255,255,.3);
  font-size: 1.2rem;
}
.simple-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.simple-step p { color: rgba(255,255,255,.65); font-size: .875rem; }

/* Mentions légales */
.legal-content {
  padding: 100px 0;
  background: var(--white);
}
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-inner h2 {
  font-size: 1.2rem;
  margin: 36px 0 10px;
  color: var(--navy);
}
.legal-inner p {
  font-size: .95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-inner a { color: var(--terracotta); }

/* ============================================
   PAGE HERO (Candidat / Entreprise)
   ============================================ */
.page-hero {
  position: relative;
  padding-top: 68px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 30%, rgba(217,125,61,.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(46,138,166,.5) 0%, transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 80px;
}

/* ============================================
   PAGE INTRO
   ============================================ */
.page-intro {
  padding: 100px 0;
  background: var(--white);
}
.page-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro-highlight-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.highlight-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.highlight-item strong { display: block; color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
.highlight-item p { font-size: .875rem; margin: 0; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--cream);
}
.process h2 { margin-bottom: 60px; }
.process-steps {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content {
  padding-top: 8px;
  padding-bottom: 8px;
}
.step-content h3 { margin-bottom: 8px; }
.process-connector {
  width: 1px;
  height: 32px;
  background: var(--border);
  margin-left: 23px;
}

/* ============================================
   PROFILES
   ============================================ */
.profiles {
  padding: 100px 0;
  background: var(--beige);
}
.profiles h2 { margin-bottom: 40px; }
.profiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 32px;
}
.profile-tag {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.profile-tag:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: rgba(217,125,61,.05);
}
.profiles-note {
  text-align: center;
  font-size: .875rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ENTREPRISE — PROCESS TABLE
   ============================================ */
.entreprise-process {
  padding: 100px 0;
  background: var(--beige);
}
.entreprise-process h2 { margin-bottom: 56px; }
.etapes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}
.etape-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.etape-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}
.etape-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.etape-body h3 { margin-bottom: 8px; }
.etape-body p { font-size: .925rem; }

/* ============================================
   CANDIDATURE section variant
   ============================================ */
.candidature {
  background: var(--cream);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .values-grid,
  .services-grid { grid-template-columns: 1fr; }
  .about-inner,
  .bio-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; }
  .footer-legal p { text-align: left; }
  .nav-links { display: none; }
  .sectors-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}
