/* ============================================================
   RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #ffffff;
  --off-white:   #f5f4f1;
  --black:       #0a0a08;
  --ink:         #141410;
  --grey:        #6e6c66;
  --grey-light:  #c0bdb6;
  --vert:        #00f8c1;
  --vert-dim:    rgba(0,248,193,0.10);
  --line:        rgba(14,13,8,0.08);
  --line-strong: rgba(14,13,8,0.15);
  --nav-h:       72px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  position: fixed; width: 6px; height: 6px;
  background: var(--vert); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
.cursor-ring {
  position: fixed; width: 28px; height: 28px;
  border: 1px solid var(--vert); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); opacity: .5;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  padding: 0 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s;
}

nav.dark {
  background: rgba(20,20,16,.95);
  border-bottom-color: rgba(255,255,255,.06);
}

.nav-logo {
  display: flex; align-items: center; gap: .9rem;
  text-decoration: none; cursor: pointer;
}
.nav-logo img { height: 26px; width: auto; }
.nav-logo-name {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--ink);
  transition: color .3s;
}
nav.dark .nav-logo-name { color: var(--white); }
.nav-logo-sub {
  display: block; font-size: .58rem; font-weight: 300;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--vert); margin-top: 1px;
}

.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey); text-decoration: none;
  cursor: pointer; transition: color .2s;
}
nav.dark .nav-links a { color: rgba(255,255,255,.45); }
.nav-links a:hover,
nav.dark .nav-links a:hover { color: var(--vert); }

.nav-cta {
  background: var(--vert) !important;
  color: var(--ink) !important;
  padding: .55rem 1.1rem;
  font-weight: 700 !important;
}
.nav-cta:hover { opacity: .85; }

/* back button (case study) */
.nav-back {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey); text-decoration: none;
  display: flex; align-items: center; gap: .5rem;
  cursor: pointer; transition: color .2s;
}
nav.dark .nav-back { color: rgba(255,255,255,.4); }
.nav-back:hover { color: var(--vert); }

/* ============================================================
   VIEW SYSTEM
   ============================================================ */
.view { display: none; padding-top: var(--nav-h); }
.view.active { display: block; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink); padding: .85rem 0; overflow: hidden;
  border-top: 2px solid var(--vert);
}
.ticker-inner {
  display: flex; gap: 0; width: max-content;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 2.5rem; font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); white-space: nowrap;
}
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--vert); flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SHARED LAYOUT HELPERS
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }

.section-label {
  font-size: .56rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--grey-light);
  border-top: 1px solid var(--line-strong);
  padding-top: .4rem;
}

.two-col {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 6rem;
  align-items: start;
}

.section-pad { padding: 7rem 0; border-bottom: 1px solid var(--line); }
.section-alt  { background: var(--off-white); }
.section-dark { background: var(--ink); border-bottom: none; }
.section-dark .section-label { border-top-color: rgba(255,255,255,.1); color: rgba(255,255,255,.3); }

h2.bold {
  font-size: clamp(1.6rem,2.4vw,2.4rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.02em;
  line-height: 1.05; color: var(--ink);
}
h2.bold .vert { color: var(--vert); }
.section-dark h2.bold { color: var(--white); }

.body-text {
  font-size: .95rem; font-weight: 300;
  color: var(--grey); line-height: 1.8; max-width: 600px;
}
.body-text + .body-text { margin-top: 1rem; }
.section-dark .body-text { color: rgba(255,255,255,.5); }

.pull-quote {
  border-left: 2px solid var(--vert);
  padding: 1.2rem 1.5rem;
  background: var(--vert-dim);
  margin: 1.8rem 0; max-width: 600px;
}
.pull-quote p {
  font-size: 1rem; font-style: italic;
  color: var(--ink); font-weight: 400;
}

.badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem; }
.badge {
  font-size: .55rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .8rem;
  border: 1px solid rgba(0,248,193,.3); color: var(--vert);
}

.btn-primary {
  display: inline-block;
  background: var(--ink); color: var(--white);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .95rem 2rem; text-decoration: none;
  cursor: pointer; transition: background .2s, color .2s;
  border: none;
}
.btn-primary:hover { background: var(--vert); color: var(--ink); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.home-hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
}

.home-hero-left {
  padding: 7rem 4rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-tag {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--vert); margin-bottom: 2rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-tag::before {
  content: ''; display: block;
  width: 22px; height: 1px; background: var(--vert);
}

.home-hero h1 {
  font-size: clamp(2.8rem,4.5vw,5rem); font-weight: 800;
  line-height: 1.0; letter-spacing: -.03em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 1.8rem;
}
.home-hero h1 .vert { color: var(--vert); display: block; }

.hero-body {
  font-size: .98rem; font-weight: 300; color: var(--grey);
  max-width: 400px; line-height: 1.75; margin-bottom: 2.8rem;
  border-left: 2px solid var(--vert); padding-left: 1.2rem;
}

.hero-actions { display: flex; align-items: center; gap: 2rem; }

.btn-ghost {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--grey); text-decoration: none; cursor: pointer;
  border-bottom: 1px solid var(--line-strong); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

.home-hero-right {
  background: var(--ink); position: relative; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1a16;
}

/* ============================================================
   HOME — PROJETS GRID
   ============================================================ */
.projets-home-section { border-bottom: 1px solid var(--line); }
.projets-home-section .container { padding: 0 4rem; }

.projets-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin: 0 4rem;
  border: 1px solid var(--line-strong);
}

.proj-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  border-right: 1px solid var(--line-strong);
}
.proj-card:last-child { border-right: none; }

.proj-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1a16;
  transition: transform .65s ease;
}
.proj-card:not(.soon):hover .proj-card-bg { transform: scale(1.06); }

.proj-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,.92) 0%, rgba(10,10,8,.35) 55%, transparent 100%);
  padding: 1.8rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: .55rem;
}

.proj-card-cat {
  font-size: .5rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--vert);
  border: 1px solid rgba(0,248,193,.35);
  padding: .22rem .65rem;
  display: inline-block; width: fit-content;
}

.proj-card-title {
  font-size: 1.25rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
  color: var(--white); line-height: 1.1; margin: 0;
}

.proj-card-desc {
  font-size: .8rem; font-weight: 300;
  color: rgba(255,255,255,.6); line-height: 1.6;
  overflow: hidden; max-height: 0;
  opacity: 0; transform: translateY(6px);
  transition: max-height .4s ease, opacity .35s ease, transform .35s ease;
}
.proj-card:not(.soon):hover .proj-card-desc {
  max-height: 120px; opacity: 1; transform: translateY(0);
}

.proj-card-cta {
  font-size: .52rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--vert); display: inline-block;
  opacity: 0; transform: translateY(5px);
  transition: opacity .35s ease .07s, transform .35s ease .07s;
}
.proj-card:not(.soon):hover .proj-card-cta { opacity: 1; transform: translateY(0); }

.proj-card.soon { cursor: default; }
.proj-card.soon .proj-card-bg { filter: saturate(.25) brightness(.7); }
.proj-card.soon .proj-card-overlay {
  background: linear-gradient(to top, rgba(10,10,8,.85) 0%, rgba(10,10,8,.2) 55%, transparent 100%);
}

.proj-card-soon {
  font-size: .5rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.12);
  padding: .22rem .65rem;
  display: inline-block; width: fit-content;
}

/* ============================================================
   HOME — APPROCHE
   ============================================================ */
.approche-content h2 { margin-bottom: 1.5rem; }
.approche-content .body-text { margin-bottom: 0; }

/* ============================================================
   OFFRES PAGE
   ============================================================ */
.offres-hero {
  background: var(--ink);
  border-bottom: 2px solid var(--vert);
  padding: 6rem 4rem 5rem;
}
.offres-hero h1 {
  font-size: clamp(2.5rem,5vw,5rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.03em;
  line-height: 1.0; color: var(--white);
}
.offres-hero h1 .vert { color: var(--vert); }
.offres-hero p {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.45); max-width: 500px;
  line-height: 1.7; margin-top: 1.5rem;
  border-left: 2px solid var(--vert); padding-left: 1.2rem;
}

.offres-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-left: 1px solid var(--line-strong);
}
.offre-card {
  padding: 3.5rem 2.8rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  position: relative; transition: background .25s;
}
.offre-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: transparent; transition: background .3s;
}
.offre-card:hover { background: var(--off-white); }
.offre-card:hover::before { background: var(--vert); }

.offre-num {
  font-size: .55rem; font-weight: 700;
  letter-spacing: .3em; color: var(--vert);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: .8rem;
}
.offre-num::after {
  content: ''; flex: 1; height: 1px;
  background: var(--line-strong);
}
.offre-card h3 {
  font-size: 1.35rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 1rem; line-height: 1.1;
}
.offre-desc {
  font-size: .88rem; font-weight: 300;
  color: var(--grey); line-height: 1.7; margin-bottom: 2rem;
}
.offre-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.offre-tag {
  font-size: .55rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .7rem;
  border: 1px solid var(--line-strong); color: var(--grey);
}

.tarif-block {
  background: var(--ink); color: var(--white);
  padding: 4rem;
}
.tarif-block h2 {
  font-size: clamp(1.4rem,2vw,2rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.02em;
  margin-bottom: 3rem;
}
.tarif-block h2 .vert { color: var(--vert); }
.tarif-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,.06);
}
.tarif-item {
  background: var(--ink); padding: 2rem 2.5rem;
  transition: background .2s;
}
.tarif-item:hover { background: #1c1c18; }
.tarif-item-label {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--vert); margin-bottom: .8rem;
}
.tarif-item-price {
  font-size: 1.5rem; font-weight: 800;
  color: var(--white); margin-bottom: .4rem;
}
.tarif-item-desc {
  font-size: .8rem; font-weight: 300;
  color: rgba(255,255,255,.4); line-height: 1.5;
}

/* ============================================================
   CS LIST — PREVIEW AU HOVER
   ============================================================ */
#cs-preview {
  position: fixed; pointer-events: none; z-index: 150;
  width: 260px; height: 180px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  transition: opacity .22s ease, transform .22s ease;
  left: -9999px; top: -9999px;
}
#cs-preview.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#cs-preview img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ============================================================
   CASE STUDIES LIST
   ============================================================ */
.cs-hero {
  background: var(--ink); border-bottom: 2px solid var(--vert);
  padding: 6rem 4rem 5rem;
}
.cs-hero h1 {
  font-size: clamp(2.5rem,5vw,5rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.03em;
  line-height: 1.0; color: var(--white);
}
.cs-hero h1 .vert { color: var(--vert); }
.cs-hero p {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.45); max-width: 500px;
  line-height: 1.7; margin-top: 1.5rem;
  border-left: 2px solid var(--vert); padding-left: 1.2rem;
}

.cs-list { padding: 0 4rem; }

.cs-list-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 3rem; align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line-strong);
  cursor: pointer; transition: background .2s;
}
.cs-list-item:hover { background: var(--off-white); margin: 0 -4rem; padding: 3rem 4rem; }

.cs-list-num {
  font-size: .55rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--vert);
}
.cs-list-body {}
.cs-list-cat {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--grey-light); margin-bottom: .5rem;
}
.cs-list-title {
  font-size: 1.4rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
  color: var(--ink); line-height: 1.1; margin-bottom: .6rem;
}
.cs-list-desc {
  font-size: .88rem; font-weight: 300;
  color: var(--grey); line-height: 1.5; max-width: 580px;
}
.cs-list-arrow {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--grey-light); white-space: nowrap;
  display: flex; align-items: center; gap: .5rem;
  transition: color .2s;
}
.cs-list-item:hover .cs-list-arrow { color: var(--vert); }

.cs-list-item.soon { cursor: default; opacity: .45; }
.cs-list-item.soon:hover { background: transparent; margin: 0; padding: 3rem 0; }

/* ============================================================
   CASE STUDY DETAIL
   ============================================================ */
.cs-detail-hero {
  background: var(--ink); border-bottom: 2px solid var(--vert);
}
.cs-detail-hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 4rem 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: end;
}
.cs-detail-tag {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--vert); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .8rem;
}
.cs-detail-tag::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--vert);
}
.cs-detail-hero h1 {
  font-size: clamp(2rem,3.5vw,3.5rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.03em;
  line-height: 1.0; color: var(--white);
}
.cs-detail-hero h1 .vert { color: var(--vert); }
.cs-detail-sub {
  font-size: .95rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 1.2rem;
}
.cs-meta-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 4rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.cs-meta-item {
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.cs-meta-item:last-child { border-right: none; }
.cs-meta-label {
  font-size: .53rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--vert); margin-bottom: .4rem;
}
.cs-meta-value {
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.65); line-height: 1.4;
}

.cs-visual-placeholder {
  background: var(--off-white); height: 400px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line-strong);
  color: var(--grey-light); flex-direction: column; gap: 1rem;
}
.cs-visual-placeholder span {
  font-size: .55rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
}

.cs-section { padding: 5.5rem 0; border-bottom: 1px solid var(--line); }
.cs-section-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 4rem;
}
.cs-two-col {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 5rem; align-items: start;
}

.deliverables {
  list-style: none; margin-top: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 600px;
  border: 1px solid var(--line-strong);
}
.deliverables li {
  font-size: .85rem; font-weight: 400; color: var(--ink);
  padding: .9rem 1.2rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; align-items: flex-start;
  gap: .7rem; line-height: 1.4;
}
.deliverables li:nth-child(even) { border-right: none; }
.deliverables li:nth-last-child(-n+2) { border-bottom: none; }
.deliverables li::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--vert); flex-shrink: 0; margin-top: 4px;
}

.result-block {
  background: var(--vert-dim);
  border-left: 3px solid var(--vert);
  padding: 2.5rem; max-width: 600px;
}
.result-block p {
  font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,.75); font-weight: 400;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--ink); border-bottom: 2px solid var(--vert);
  padding: 6rem 4rem 5rem;
}
.contact-hero h1 {
  font-size: clamp(2.5rem,5vw,5rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.03em;
  line-height: 1.0; color: var(--white);
}
.contact-hero h1 .vert { color: var(--vert); }

.contact-body {
  padding: 6rem 4rem;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.8rem,2.5vw,2.5rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -.02em;
  line-height: 1.05; color: var(--ink); margin-bottom: 1.5rem;
}
.contact-left h2 .vert { color: var(--vert); }
.contact-left p {
  font-size: .95rem; font-weight: 300; color: var(--grey);
  line-height: 1.8; margin-bottom: 2rem;
  border-left: 2px solid var(--vert); padding-left: 1.2rem;
}
.contact-email {
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid var(--vert); padding-bottom: 2px;
  transition: color .2s;
}
.contact-email:hover { color: var(--vert); }

.contact-details {}
.contact-detail {
  padding: 1.8rem 0; border-bottom: 1px solid var(--line);
}
.contact-detail:first-child { padding-top: 0; }
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label {
  font-size: .55rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--vert); margin-bottom: .4rem;
}
.contact-detail-value {
  font-size: .95rem; font-weight: 400; color: var(--ink); line-height: 1.5;
}

/* ============================================================
   REFS STRIP (shared)
   ============================================================ */
.refs-strip { border-top: 1px solid var(--line-strong); }
.clients-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  border-bottom: 1px solid var(--line-strong);
}
.client-item {
  padding: 2rem 1rem;
  border-right: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey-light); text-align: center;
  transition: color .2s, background .2s;
}
.client-item:last-child { border-right: none; }
.client-item:hover { color: var(--ink); background: var(--off-white); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  padding: 2.2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 2px solid var(--vert);
}
.footer-logo { display: flex; align-items: center; gap: .8rem; }
.footer-logo img { height: 20px; }
.footer-logo-text {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.footer-links { display: flex; gap: 2.5rem; }
.footer-links a {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.3); text-decoration: none; cursor: pointer;
  transition: color .2s;
}
.footer-links a:hover { color: var(--vert); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease forwards; }
.fade-up-1 { animation: fadeUp .7s ease .1s forwards; opacity: 0; }
.fade-up-2 { animation: fadeUp .7s ease .2s forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp .7s ease .3s forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp .7s ease .4s forwards; opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links li:not(:last-child) { display: none; }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-left { padding: 4rem 1.5rem 3rem; }
  .home-hero-right { height: 55vw; }
  .container { padding: 0 1.5rem; }
  .two-col, .cs-two-col, .cs-detail-hero-inner,
  .contact-body { grid-template-columns: 1fr; gap: 2rem; }
  .offres-grid, .tarif-grid, .clients-grid { grid-template-columns: 1fr; }
  .projets-grid { grid-template-columns: 1fr 1fr; margin: 0 1.5rem; }
  .proj-card { border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
  .proj-card:nth-child(even) { border-right: none; }
  .offre-card { border-right: none; }
  .tarif-grid { gap: 0; }
  .cs-meta-strip { grid-template-columns: 1fr 1fr; }
  .cs-list { padding: 0 1.5rem; }
  .cs-list-item { grid-template-columns: 60px 1fr; }
  .cs-list-arrow { display: none; }
  .cs-list-item:hover { margin: 0; padding: 3rem 0; background: transparent; }
  .deliverables { grid-template-columns: 1fr; }
  .deliverables li { border-right: none !important; }
  .offres-hero, .cs-hero, .contact-hero { padding: 4rem 1.5rem 3rem; }
  footer { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; text-align: center; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}