/* =====================================================
   ICOSIM — Cabinet de Recrutement
   Pure HTML/CSS · Dark · Modern · Minimal
   Palette : Teal + Wood/Coffee
===================================================== */

/* ---- Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-light:   #7EC8D4;
  --teal-mid:     #3D8B9A;
  --teal-dark:    #1E5F74;
  --teal-deep:    #134D61;
  --wood-light:   #D4A96A;
  --wood-mid:     #C4956A;
  --wood-dark:    #8B6348;
  --coffee:       #5C3D2E;
  --coffee-dark:  #3A2318;
  --bg-base:      #0F1923;
  --bg-surface:   #141E2B;
  --bg-card:      #192534;
  --bg-hover:     #1F3044;
  --text-primary:   #E8EDF2;
  --text-secondary: #8DA0B3;
  --text-muted:     #4E6070;
  --border:         rgba(126, 200, 212, 0.12);
  --border-hover:   rgba(126, 200, 212, 0.3);
  --font-body:    'Outfit', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --nav-h:        72px;
  --max-w:        1160px;
  --radius:       10px;
  --radius-lg:    18px;
  --t:            0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ---- Section helpers ---- */
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500; line-height: 1.15; margin-bottom: 16px; color: var(--text-primary);
}
.section-title em { font-style: italic; color: var(--teal-light); }
.section-sub { font-size: 1rem; color: var(--text-secondary); max-width: 520px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ---- Shared background pattern ---- */
.section-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; font-size: 0.88rem; font-weight: 600;
  border-radius: var(--radius); transition: all var(--t);
  cursor: pointer; border: none; white-space: nowrap; letter-spacing: 0.02em;
}
.btn--primary {
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  color: #fff; box-shadow: 0 4px 20px rgba(30, 95, 116, 0.45);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
  box-shadow: 0 6px 28px rgba(126, 200, 212, 0.3); transform: translateY(-2px);
}
.btn--ghost {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: var(--teal-light); color: var(--teal-light); background: rgba(126,200,212,0.06); }
.btn--full { width: 100%; justify-content: center; }

/* LinkedIn button */
.btn-linkedin {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px; font-size: 0.82rem; font-weight: 600;
  border-radius: var(--radius); border: 1.5px solid rgba(0,119,181,0.4);
  color: #5BA4CF; background: rgba(0,119,181,0.08);
  transition: all var(--t); white-space: nowrap; flex-shrink: 0;
}
.btn-linkedin:hover { background: rgba(0,119,181,0.18); border-color: #0077B5; color: #7EC5E8; }

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; padding: 0 40px;
  background: rgba(15, 25, 35, 0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border); transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }

.navbar__logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { height: 52px; width: auto; transition: opacity var(--t); }
.logo-svg--sm { height: 44px; }
.navbar__logo:hover .logo-svg { opacity: 0.85; }

.navbar__menu { display: flex; align-items: center; gap: 4px; }
.navbar__menu a {
  padding: 8px 14px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-secondary); border-radius: 7px; transition: color var(--t), background var(--t);
}
.navbar__menu a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.navbar__menu a.active { color: var(--teal-light); }
.navbar__menu a.nav-cta {
  color: var(--teal-light); border: 1px solid rgba(126,200,212,0.3); margin-left: 8px;
}
.navbar__menu a.nav-cta:hover { background: rgba(126,200,212,0.1); border-color: var(--teal-light); }

.navbar__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.navbar__burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--t); }
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO — tasses de café sur bois chaud
===================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden; padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 50%;
  transform: scale(1.04); transition: transform 8s ease;
  filter: brightness(0.5) saturate(0.85);
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,15,24,0.92) 45%, rgba(8,15,24,0.45) 100%),
              linear-gradient(to bottom, transparent 40%, rgba(8,15,24,0.6) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 80px 0 100px; width: 100%; }
.hero__label {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--wood-light);
  margin-bottom: 28px; padding: 6px 14px;
  border: 1px solid rgba(212,169,106,0.3); border-radius: 20px; background: rgba(212,169,106,0.08);
}
.hero__title {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500; line-height: 1.12; margin-bottom: 28px; color: var(--text-primary);
}
.hero__title em { font-style: italic; color: var(--teal-light); }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 44px; max-width: 560px; line-height: 1.75; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero__scroll-line { display: block; width: 1px; height: 60px; background: linear-gradient(to bottom, var(--wood-light), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =====================================================
   QUI NOUS SOMMES — bois grain en fond subtil
===================================================== */
.about { padding: 120px 0; position: relative; overflow: hidden; }
.about__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.18) saturate(0.6);
}
.about__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,30,43,0.93) 0%, rgba(20,30,43,0.88) 60%, rgba(20,30,43,0.93) 100%);
}

.about__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }

.about__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.about__logo-stack { position: relative; width: 260px; height: 260px; }
.stack-sq { position: absolute; border-radius: 8px; transition: transform 0.6s ease; }
.stack-sq--1 { width: 195px; height: 195px; top: 0; right: 0; background: rgba(126,200,212,0.15); border: 1px solid rgba(126,200,212,0.25); }
.stack-sq--2 { width: 165px; height: 165px; top: 50px; right: 50px; background: rgba(61,139,154,0.2); border: 1px solid rgba(61,139,154,0.35); }
.stack-sq--3 { width: 135px; height: 135px; top: 105px; right: 105px; background: rgba(30,95,116,0.3); border: 1px solid rgba(30,95,116,0.5); }
.about__visual:hover .stack-sq--1 { transform: translate(6px,-6px); }
.about__visual:hover .stack-sq--2 { transform: translate(2px,2px); }
.about__visual:hover .stack-sq--3 { transform: translate(-4px,6px); }

.about__tag {
  position: absolute; bottom: 10px; left: 0;
  background: linear-gradient(135deg, var(--coffee), var(--wood-dark));
  border-radius: var(--radius); padding: 16px 22px;
  display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.about__tag-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--wood-light); line-height: 1; }
.about__tag-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.4; }

.about__desc { color: var(--text-secondary); margin-bottom: 18px; line-height: 1.8; }
.about__desc strong { color: var(--text-primary); }

.about__values { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color var(--t), background var(--t);
}
.value-item:hover { border-color: var(--border-hover); background: var(--bg-hover); }
.value-item__icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(126,200,212,0.1); border-radius: 8px; color: var(--teal-light); }
.value-item__icon svg { width: 18px; height: 18px; }
.value-item strong { display: block; font-size: 0.9rem; color: var(--text-primary); margin-bottom: 2px; }
.value-item p { font-size: 0.82rem; color: var(--text-secondary); }

/* ---- Fondateur ---- */
.founder { margin-top: 80px; padding-top: 64px; border-top: 1px solid var(--border); }
.founder__header { margin-bottom: 24px; }
.founder__inner {
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px;
}
.founder__avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 2px solid var(--border-hover);
}
.founder__initials { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--teal-light); }
.founder__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.founder__name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.founder__role { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-mid); }
.founder__bio { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; margin-bottom: 14px; }
.founder__bio--punch { font-size: 1rem; color: rgba(232,237,242,0.85); }
.founder__bio strong { color: var(--text-primary); }
.founder__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.badge {
  display: inline-block; padding: 5px 14px; font-size: 0.78rem; font-weight: 500;
  border-radius: 20px; background: rgba(196,149,106,0.1); border: 1px solid rgba(196,149,106,0.25); color: var(--wood-light);
}

/* =====================================================
   NOTRE MÉTHODE — grains de café
===================================================== */
.services { padding: 120px 0; position: relative; overflow: hidden; }
.services__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.32) saturate(0.7);
}
.services__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg-base) 0%, rgba(15,25,35,0.72) 25%, rgba(15,25,35,0.72) 75%, var(--bg-base) 100%);
}
.services__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

.service-card {
  padding: 36px; background: rgba(25,37,52,0.88);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative; overflow: hidden; backdrop-filter: blur(10px);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-mid), transparent);
  opacity: 0; transition: opacity var(--t);
}
.service-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-card--featured { background: rgba(30,45,61,0.9); border-color: rgba(126,200,212,0.2); }
.service-card__num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: rgba(126,200,212,0.07); line-height: 1; position: absolute; top: 24px; right: 28px; }
.service-card__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(126,200,212,0.1); border-radius: 10px; color: var(--teal-light); margin-bottom: 20px; }
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.service-card__text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* =====================================================
   SECTEURS — bois 3D
===================================================== */
.sectors { padding: 120px 0; position: relative; overflow: hidden; }
.sectors__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(0.6);
}
.sectors__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,30,43,0.9) 0%, rgba(15,25,35,0.85) 100%);
}

.sectors__tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.sector-tab {
  padding: 10px 24px; font-size: 0.875rem; font-weight: 500; border-radius: 30px;
  cursor: pointer; border: 1.5px solid var(--border); background: transparent;
  color: var(--text-secondary); transition: all var(--t);
}
.sector-tab:hover { border-color: var(--teal-mid); color: var(--teal-light); }
.sector-tab--active {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  border-color: transparent; color: #fff; box-shadow: 0 4px 16px rgba(30,95,116,0.4);
}
.sector-panel { display: none; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; animation: fadePanel 0.35s ease; }
.sector-panel--active { display: block; }
@keyframes fadePanel { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.sector-panel__intro { margin-bottom: 32px; }
.sector-panel__intro h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; color: var(--teal-light); margin-bottom: 10px; }
.sector-panel__intro p { color: var(--text-secondary); max-width: 600px; font-size: 0.95rem; line-height: 1.7; }
.sector-panel__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.stag { padding: 7px 16px; font-size: 0.82rem; font-weight: 500; border-radius: 6px; background: rgba(126,200,212,0.08); border: 1px solid rgba(126,200,212,0.18); color: var(--teal-light); transition: all var(--t); cursor: default; }
.stag:hover { background: rgba(126,200,212,0.15); border-color: rgba(126,200,212,0.35); }

/* =====================================================
   ILS NOUS FONT CONFIANCE — tasses café
===================================================== */
.trust { position: relative; padding: 120px 0; overflow: hidden; }
.trust__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 60%;
  filter: brightness(0.3) saturate(0.75);
}
.trust__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,25,14,0.75) 0%, rgba(12,20,30,0.85) 60%);
}

.trust__logos { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 64px; }
.trust-logo {
  display: flex; align-items: center; gap: 16px; padding: 24px 28px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); backdrop-filter: blur(8px);
  transition: background var(--t), border-color var(--t);
}
.trust-logo:hover { background: rgba(212,169,106,0.1); border-color: rgba(212,169,106,0.25); }
.trust-logo__icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(126,200,212,0.12); border-radius: 10px; color: var(--teal-light); }
.trust-logo__icon svg { width: 22px; height: 22px; }
.trust-logo span:last-child { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.8); line-height: 1.3; }

.trust__quote { max-width: 700px; margin: 0 auto; text-align: center; padding-top: 20px; }
.trust__quote-icon { width: 36px; height: 28px; color: var(--wood-mid); margin: 0 auto 20px; display: block; }
.trust__quote p { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 20px; }
.trust__quote span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wood-light); }

/* =====================================================
   BLOG PREVIEW — bois grain chaud
===================================================== */
.blog-preview { padding: 120px 0; position: relative; overflow: hidden; }
.blog-preview__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.22) saturate(0.65);
}
.blog-preview__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,20,30,0.92) 40%, rgba(12,20,30,0.78) 100%);
}
.blog-preview__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.blog-preview__text { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.blog-preview__desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; max-width: 420px; }

.blog-preview__cards { display: flex; flex-direction: column; gap: 16px; }
.blog-card {
  padding: 28px 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: border-color var(--t), transform var(--t);
}
.blog-card--preview { background: rgba(25,37,52,0.85); backdrop-filter: blur(10px); }
.blog-card--preview:hover { border-color: rgba(212,169,106,0.3); transform: translateX(4px); }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-card__date { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.blog-card__tag { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-light); background: rgba(126,200,212,0.1); border: 1px solid rgba(126,200,212,0.2); padding: 3px 10px; border-radius: 20px; }
.blog-card__excerpt { font-family: var(--font-serif); font-size: 0.95rem; font-style: italic; color: var(--text-primary); line-height: 1.65; margin-bottom: 16px; }
.blog-card__link { font-size: 0.82rem; font-weight: 600; color: var(--teal-light); transition: color var(--t); }
.blog-card__link:hover { color: var(--teal-light); text-decoration: underline; }

/* =====================================================
   CONTACT
===================================================== */
.contact { padding: 120px 0; background: var(--bg-base); position: relative; }
.contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal-dark), transparent); }
.contact__centered { max-width: 680px; margin: 0 auto; }
.contact__desc { color: var(--text-secondary); margin-bottom: 40px; line-height: 1.75; text-align: center; }
.contact__form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-surface); border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 16px; color: var(--text-primary); font-size: 0.9rem;
  transition: border-color var(--t), box-shadow var(--t); outline: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select {
  cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238DA0B3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal-mid); box-shadow: 0 0 0 3px rgba(61,139,154,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success, .form-error {
  display: none; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 500;
}
.form-success.visible, .form-error.visible { display: flex; }
.form-success { background: rgba(61,139,154,0.12); border: 1px solid rgba(61,139,154,0.35); color: var(--teal-light); }
.form-error   { background: rgba(224,92,92,0.1);  border: 1px solid rgba(224,92,92,0.3);  color: #e0856a; }

/* =====================================================
   FOOTER
===================================================== */
.footer { background: var(--bg-surface); border-top: 1px solid var(--border); padding: 48px 0 0; }
.footer__inner { display: flex; flex-direction: column; gap: 36px; }
.footer__brand { display: flex; align-items: center; gap: 24px; }
.footer__brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; padding-left: 24px; border-left: 2px solid var(--border); }
.footer__nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer__nav a { font-size: 0.875rem; color: var(--text-secondary); transition: color var(--t); }
.footer__nav a:hover { color: var(--teal-light); }
.footer__legal { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer__legal p { font-size: 0.8rem; color: var(--text-muted); }
.footer__legal div { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--t); }
.footer__legal a:hover { color: var(--text-secondary); }

/* =====================================================
   ANIMATIONS
===================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { justify-content: flex-start; }
  .trust__logos { grid-template-columns: repeat(2,1fr); }
  .blog-preview__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar__nav { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(15,25,35,0.98); backdrop-filter: blur(20px); padding: 16px 20px 28px; border-bottom: 1px solid var(--border); }
  .navbar__nav.open { display: block; }
  .navbar__menu { flex-direction: column; align-items: flex-start; gap: 4px; }
  .navbar__menu a { padding: 12px 16px; width: 100%; font-size: 1rem; }
  .navbar__menu a.nav-cta { margin-left: 0; margin-top: 8px; }
  .navbar__burger { display: flex; }
  .hero__content { padding: 60px 0 80px; }
  .hero__title { font-size: 2rem; }
  .services__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust__logos { grid-template-columns: 1fr; }
  .sector-panel { padding: 28px; }
  .contact__form { padding: 28px 24px; }
  .founder__inner { grid-template-columns: 1fr; }
  .founder__title-row { flex-direction: column; }
  .footer__brand { flex-direction: column; align-items: flex-start; }
  .footer__brand p { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 16px; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about, .services, .sectors, .trust, .blog-preview, .contact { padding: 80px 0; }
}

/* =====================================================
   TEST DISC CTA SECTION
===================================================== */
.disc-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0F1923 0%, #141E2B 50%, #0F1923 100%);
  border-top: 1px solid rgba(126,200,212,0.1);
  border-bottom: 1px solid rgba(126,200,212,0.1);
}

.disc-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}

.disc-cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #E8EDF2;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.disc-cta__title em {
  background: linear-gradient(135deg, #7EC8D4, #3D8B9A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.disc-cta__desc {
  font-size: 0.95rem;
  color: #8DA0B3;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.disc-cta__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.disc-cta__pill {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1.5px solid;
}

.disc-cta__pill--d { color: #E05858; border-color: rgba(224,88,88,0.4);  background: rgba(224,88,88,0.08); }
.disc-cta__pill--i { color: #E8953A; border-color: rgba(232,149,58,0.4); background: rgba(232,149,58,0.08); }
.disc-cta__pill--s { color: #4CAF82; border-color: rgba(76,175,130,0.4); background: rgba(76,175,130,0.08); }
.disc-cta__pill--c { color: #4A90C4; border-color: rgba(74,144,196,0.4); background: rgba(74,144,196,0.08); }

.disc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.disc-cta__note {
  font-size: 0.78rem;
  color: #4E6070;
}

/* Roue DISC décorative */
.disc-wheel {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  gap: 3px;
  background: #0F1923;
  box-shadow: 0 0 60px rgba(126,200,212,0.12);
}

.disc-wheel__quad {
  display: flex;
  align-items: center;
  justify-content: center;
}

.disc-wheel__quad span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  opacity: 0.9;
}

.disc-wheel__quad--d { background: rgba(224,88,88,0.2);  color: #E05858; border-radius: 50% 0 0 0; }
.disc-wheel__quad--i { background: rgba(232,149,58,0.2); color: #E8953A; border-radius: 0 50% 0 0; }
.disc-wheel__quad--s { background: rgba(76,175,130,0.2); color: #4CAF82; border-radius: 0 0 0 50%; }
.disc-wheel__quad--c { background: rgba(74,144,196,0.2); color: #4A90C4; border-radius: 0 0 50% 0; }

@media (max-width: 768px) {
  .disc-cta__inner { grid-template-columns: 1fr; gap: 2rem; }
  .disc-cta__visual { display: flex; justify-content: center; order: -1; }
  .disc-wheel { width: 140px; height: 140px; }
}
