@font-face {
  font-family: "JNL";
  src: url("../fonts/Subscription_JNL.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #161616;
  --yellow: #FFE656;
  --white: #FAFAF8;
  --grey: #222222;
  --pink: #F2C4C4;
  --blue: #C4D9F2;
  --green: #C4F2D4;
}
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 80px;
  background: transparent;
  transition: background 0.3s, transform 0.35s ease, padding 0.4s ease;
}
nav.scrolled { padding: 18px 80px; }
nav.scrolled {
  background: rgba(22,22,22,0.96);
  backdrop-filter: blur(10px);
}
nav.nav-hidden {
  transform: translateY(-120%) !important;
}

.nav-logo {
  height: clamp(32px, 4vw, 52px);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo svg {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(250,250,248,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-sep {
  color: rgba(250,250,248,0.35);
  margin: 0 14px;
  font-size: 13px;
  user-select: none;
}

.nav-cta {
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #f0d800; transform: scale(1.03); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 100px;
  position: relative;
  overflow: hidden;
}

.hero > *:not(.hero-bars) {
  max-width: 1642px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.55);
  margin-bottom: 16px;
}

.hero-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(32px, 6.7vw, 110px);
  font-weight: 100;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-title .line1 {
  display: block;
  color: var(--white);
}

.hero-title .line2 {
  display: block;
  /* Yellow outline — stroke only, no fill */
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
  text-shadow: none;
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 25px);
  font-weight: 100;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}
.hero-sub strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 36px;
  margin-top: 4px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 36px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: #f0d800; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 15px 36px;
  text-decoration: none;
  border: 1px solid rgba(250,250,248,0.4);
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--white); }

/* ── PLACEHOLDER rest of page styles ── */

════════════════════════════════ */
.adn {
  background: var(--white);
  padding: 120px 80px;
}
.adn-inner { max-width: 1642px; margin: 0 auto; }

.adn-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.9; color: var(--black);
  text-transform: uppercase; margin-bottom: 24px;
}
.adn-title .yellow-dark { color: #9a7c00; }

.adn-subtitle {
  font-size: clamp(18px, 2vw, 24px); font-weight: 300;
  color: #444; margin-bottom: 64px;
  max-width: 600px; line-height: 1.4;
}

.adn-divider { width: 48px; height: 3px; background: var(--black); margin-bottom: 48px; }

.adn-body { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

.adn-para { font-size: 15px; font-weight: 300; color: #555; line-height: 1.9; }
.adn-para strong { color: var(--black); font-weight: 500; }
.adn-para p + p { margin-top: 20px; }

.adn-values { display: flex; flex-direction: column; gap: 2px; }
.value-item {
  background: var(--black); padding: 18px 24px;
  display: flex; align-items: center; gap: 16px;
}
.value-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }
.value-text { font-size: 14px; font-weight: 400; color: var(--white); line-height: 1.4; }

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
/* removed */
.services-inner { max-width: 1642px; margin: 0 auto; }

.services-header { margin-bottom: 56px; }

.chip-services {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1.5px solid var(--black);
  border-radius: 100px;
  margin-bottom: 20px;
}

.services-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.services-title-outline {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-card {
  border-radius: 20px;
  padding: 32px 36px 32px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,0.08);
}

.svc-emoji {
  font-size: 22px;
  line-height: 1;
}

.svc-name {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* decorative circle bottom-right */
.svc-circle {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.18;
}

.svc-yellow { background: var(--yellow); }
.svc-yellow .svc-name { color: var(--black); }
.svc-yellow .svc-circle { background: #b8960a; }

.svc-pink { background: #F9C8D4; border-color: rgba(0,0,0,0.06); }
.svc-pink .svc-name { color: var(--black); }
.svc-pink .svc-circle { background: #c0607a; }

.svc-lavender { background: #E4E0F5; border-color: rgba(0,0,0,0.06); }
.svc-lavender .svc-name { color: var(--black); }
.svc-lavender .svc-circle { background: #7060c0; }

.svc-black { background: var(--black); border-color: transparent; }
.svc-black .svc-name { color: var(--yellow); }
.svc-black .svc-circle { background: var(--yellow); }


/* ════════════════════════════════
   TARIFICATION
════════════════════════════════ */
.tarif {
  background: var(--white);
  padding: 100px 80px;
  border-top: 1.5px solid rgba(0,0,0,0.08);
}
.tarif-inner { max-width: 1400px; margin: 0 auto; }
.tarif-top { margin-bottom: 64px; }
.chip-tarif {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tarif-title-solid {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.tarif-title-outline {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.tarif-intro {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888;
  line-height: 1.75;
  max-width: 480px;
}
.tarif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.tpcard {
  background: #F5F5F0;
  border-radius: 12px;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid #161616;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tpcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.tpcard-yellow {
  background: var(--yellow);
  border-color: transparent;
}
.tpcard-tag {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 16px;
}
.tpcard-tag-dark { color: rgba(22,22,22,0.45); }
.tpcard-name {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: normal;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.tpcard-price {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  margin-bottom: 20px;
}
.tpcard-price strong {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.tpcard-yellow .tpcard-price { color: rgba(22,22,22,0.55); }
.tpcard-yellow .tpcard-price strong { color: var(--black); }
.tpcard-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}
.tpcard-yellow .tpcard-desc { color: rgba(22,22,22,0.6); }
.tpcard-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.tpcard-btn:hover { background: #333; }
.tpcard-btn-dark {
  background: var(--black);
  color: var(--yellow);
}
.tpcard-btn-dark:hover { background: #333; }

.tarif-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 1.5px solid rgba(0,0,0,0.08);
  padding-bottom: 0;
}
.tarif-tab {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 20px 14px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
}
.tarif-tab:hover { color: var(--black); }
.tarif-tab.active {
  color: var(--black);
  border-bottom-color: var(--black);
}
.tarif-panel { display: none; }
.tarif-panel.active { display: block; }
.tarif-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tarif-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; }

.tarif-note {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #aaa;
  text-align: center;
}
.tarif-note a {
  color: var(--black);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ════════════════════════════════
   PROJETS
════════════════════════════════ */
.projets { background: var(--white); padding: 100px 80px; }
.projets-inner { max-width: 1642px; margin: 0 auto; }

.projets-header { margin-bottom: 48px; }
.projets-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9; color: var(--black); text-transform: uppercase;
}
.projets-title-sub {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.9; text-transform: uppercase;
  -webkit-text-stroke: 1px #ccc; color: transparent;
}

.projets-grid { display: flex; flex-direction: column; gap: 2px; }

.projet-card {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 280px; overflow: hidden; position: relative;
}
.projet-card.full { grid-template-columns: 1fr; }

.projet-img {
  background: #e0e0e0;
  position: relative; overflow: hidden;
  min-height: 280px;
}
.projet-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #aaa; letter-spacing: 0.1em; text-transform: uppercase;
}
.projet-img-placeholder.yellow-bg { background: linear-gradient(135deg, var(--yellow), #f0d800); color: var(--black); }
.projet-img-placeholder.pink-bg { background: linear-gradient(135deg, var(--pink), #e8a8a8); }

.projet-info {
  background: var(--black); padding: 40px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.projet-info.light { background: var(--grey); }

.projet-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 12px;
}
.projet-name {
  font-family: "JNL", "Impact", sans-serif;
  font-size: 32px; color: var(--white); line-height: 1;
  text-transform: uppercase; margin-bottom: 12px;
}
.projet-desc { font-size: 13px; font-weight: 300; color: #888; line-height: 1.6; }
.projet-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow); text-decoration: none;
  margin-top: 24px; transition: gap 0.2s;
}
.projet-link:hover { gap: 14px; }

.projets-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 2px; }

/* ════════════════════════════════
   TEAM
════════════════════════════════ */
.team { background: var(--black); padding: 100px clamp(20px, 5vw, 80px); }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }
.team-inner { max-width: 1642px; margin: 0 auto; }

.team-header { margin-bottom: 56px; }
.team-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9; color: var(--white); text-transform: uppercase;
}
.team-title .yellow { color: var(--yellow); }

.team-subtitle {
  font-size: 15px; font-weight: 300; color: #555;
  margin-top: 16px; max-width: 460px; line-height: 1.6;
}

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2px, 1.5vw, 24px); }

.person { background: var(--grey); padding: 48px 44px; }
.person-accent { width: 32px; height: 3px; background: var(--yellow); margin-bottom: 28px; }
.person-role {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 8px;
}
.person-name {
  font-family: "JNL", "Impact", sans-serif;
  font-size: 56px; color: var(--white); line-height: 1;
  text-transform: uppercase; margin-bottom: 24px;
}
.person-bio { font-size: 15px; font-weight: 300; color: #888; line-height: 1.8; }
.person-bio strong { color: var(--white); font-weight: 500; }
.person-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag {
  font-size: 11px; font-weight: 500; padding: 5px 12px;
  border: 1px solid #333; color: #666; letter-spacing: 0.05em;
}

/* ════════════════════════════════
   PROCESS
════════════════════════════════ */
.process { background: var(--white); padding-left: 0 !important; padding-right: 0 !important; }

.process-header { padding: 80px 80px 48px; max-width: 1642px; margin: 0 auto; }
.process-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.9; color: var(--black); text-transform: uppercase;
  margin-bottom: 8px;
}
.process-subtitle {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.9; text-transform: uppercase;
  -webkit-text-stroke: 2px var(--black); color: transparent;
}
.process-desc {
  font-size: 15px; font-weight: 300; color: #888;
  max-width: 600px; line-height: 1.7; margin-top: 24px;
}

.step {
  width: 100%;
  min-height: 260px;
  margin-bottom: 24px;
  display: flex;
  align-items: stretch;
}
.step:last-child { margin-bottom: 0; }

.step-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1642px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.step-left {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid rgba(0,0,0,0.1);
}
.step-num {
  font-family: "JNL", "Impact", sans-serif;
  font-size: 72px; line-height: 1;
  color: rgba(0,0,0,0.1); text-transform: uppercase;
}
.step-name {
  font-family: "JNL", "Impact", sans-serif;
  font-size: 28px; color: var(--black);
  line-height: 1; margin-bottom: 4px; text-transform: uppercase;
}
.step-sub {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(0,0,0,0.3);
}
.step-right {
  padding: 48px 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.step-timing {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(0,0,0,0.3);
}
.step-desc { font-size: 16px; font-weight: 300; color: rgba(0,0,0,0.6); line-height: 1.75; max-width: 560px; }
.step-desc strong { color: var(--black); font-weight: 500; }
.step-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.step-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 14px;
  border: 1.5px solid rgba(0,0,0,0.2); color: rgba(0,0,0,0.4);
  border-radius: 100px;
}

.step-1 { background: var(--yellow); }
.step-2 { background: var(--pink); }
.step-3 { background: var(--blue); }
.step-4 { background: var(--green); }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact { background: var(--white); padding: 100px 80px 0; }

.contact-hero { text-align: center; padding-bottom: 80px; }
.contact-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: 96px;
  font-weight: 100;
  line-height: 0.9; color: var(--black);
  text-transform: uppercase; margin-bottom: 90px;
}
.contact-title span {
  font-size: 80px;
  font-weight: 100;
}
.contact-title span {
  display: inline-block; background: var(--yellow);
  color: var(--black); padding: 0 12px;
  border: 3px solid var(--black);
}

.btn-contact {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--yellow); color: var(--black);
  font-size: 20px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 18px 40px;
  cursor: pointer; border: none;
  font-family: "DM Sans", sans-serif; transition: all 0.2s;
}
.btn-contact:hover { background: var(--black); color: var(--yellow); }

.contact-infos {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid #d0d0cc;
  text-align: center;
}
.info-col {
  padding: 40px 24px; border-right: 1px solid #d0d0cc;
  text-align: center;
}
.info-col:last-child { border-right: none; padding-left: 48px; padding-right: 0; }
.info-col:nth-child(2) { padding-left: 48px; }
.info-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #bbb; margin-bottom: 12px;
}
.info-value { font-size: 15px; font-weight: 400; color: var(--black); line-height: 1.7; }
.info-value a { color: var(--black); text-decoration: none; display: block; }
.info-value a:hover { color: #666; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--black); position: relative;
  overflow: hidden; padding: 80px 80px 48px;
}

.footer-bars {
  position: absolute; bottom: -80px; right: -80px;
  width: 420px; height: 420px;
  transform: rotate(45deg); pointer-events: none;
  display: flex; flex-direction: column; gap: 16px; justify-content: flex-end;
}
.f-bar { height: 56px; border-radius: 6px; width: 100%; }
.f-bar-white { background: var(--white); }
.f-bar-yellow { background: var(--yellow); }

.footer-logo { margin-bottom: 80px; position: relative; z-index: 1; }
.footer-logo svg { height: 48px; width: auto; }
.footer-tagline {
  font-size: 13px; font-weight: 300; color: #555;
  margin-top: 16px; letter-spacing: 0.05em; text-transform: uppercase;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 64px;
  border-bottom: 1px solid #2a2a2a;
  position: relative; z-index: 1;
}
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #444; margin-bottom: 20px;
}
.footer-cta-text {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--white); line-height: 1.05;
  text-transform: uppercase; margin-bottom: 24px;
}
.footer-cta-text span { color: var(--yellow); }
.footer-cta-btn {
  display: inline-block; background: var(--yellow); color: var(--black);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 14px 28px; text-decoration: none;
  transition: background 0.2s;
}
.footer-cta-btn:hover { background: #f0d800; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; font-weight: 400; color: #666;
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item { font-size: 14px; font-weight: 300; color: #666; line-height: 1.8; }
.footer-contact-item a { color: #666; text-decoration: none; }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-contact-item strong {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #333; margin-bottom: 4px; margin-top: 16px;
}
.footer-contact-item strong:first-child { margin-top: 0; }
.social-links { display: flex; flex-direction: column; gap: 12px; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #666; text-decoration: none; transition: color 0.2s;
}
.social-link:hover { color: var(--yellow); }
.social-link::before { content: "↗"; font-size: 12px; color: #333; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; position: relative; z-index: 1;
}
.footer-copy { font-size: 12px; font-weight: 300; color: #333; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; font-weight: 300; color: #333; text-decoration: none; }
.footer-legal a:hover { color: #666; }

/* ════════════════════════════════
   POPUP
════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup {
  background: #161616; color: #FAFAF8; width: 100%; max-width: 680px;
  max-height: 90vh; overflow-y: auto; position: relative;
  transform: translateY(20px); transition: transform 0.3s;
  padding: 44px 48px 48px;
}
.popup-overlay.active .popup { transform: translateY(0); }
.popup-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-size: 22px; line-height: 1; cursor: pointer; transition: color 0.2s;
}
.popup-close:hover { color: #fff; }
.popup-brand {
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #FFE656; margin-bottom: 22px;
}
.popup .recap {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  min-height: 28px; margin-bottom: 18px;
}
.popup .chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; background: #222; color: rgba(255,255,255,.6);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s cubic-bezier(.22,1,.36,1);
}
.popup .chip.on { opacity: 1; transform: translateY(0); }
.popup .chip-dot { width: 6px; height: 6px; border-radius: 50%; background: #FFE656; flex-shrink: 0; }
.popup .arr { color: rgba(255,255,255,.2); font-size: 16px; opacity: 0; transition: opacity .3s; }
.popup .arr.on { opacity: 1; }
.popup .prog {
  width: 100%; height: 2px; background: rgba(255,255,255,.08);
  margin-bottom: 40px; position: relative;
}
.popup .prog-fill { height: 100%; background: #FFE656; transition: width .5s cubic-bezier(.22,1,.36,1); width: 0%; }
.popup .dots { position: absolute; right: 0; top: 8px; display: flex; gap: 5px; }
.popup .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.12); transition: background .3s; }
.popup .dot.on { background: #FFE656; }
.popup .step { display: none; opacity: 0; }
.popup .step.active { display: block; animation: pup .45s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes pup { from{opacity:0;transform:translateY(18px);}to{opacity:1;transform:translateY(0);} }
.popup .eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 12px;
}
.popup .question {
  font-size: clamp(22px,4vw,36px); font-weight: 700; line-height: 1.1;
  color: #FAFAF8; margin-bottom: 28px; letter-spacing: -.02em;
}
.popup .question span { color: #FFE656; }
.popup .svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.popup .svc {
  padding: 22px 18px; border: 2px solid transparent; cursor: pointer;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .25s, transform .3s cubic-bezier(.22,1,.36,1), box-shadow .25s;
}
.popup .svc:active { transform: scale(.97); }
.popup .svc.sel { box-shadow: 0 0 0 3px rgba(0,0,0,.3); transform: translateY(-3px); }
.popup .svc.dark.sel { border-color: #FFE656 !important; box-shadow: 0 0 0 3px rgba(255,230,86,.3) !important; }
.popup .svc-emoji { font-size: 20px; }
.popup .svc-label { font-size: 13px; font-weight: 700; color: #161616; line-height: 1.2; }
.popup .svc.dark .svc-label { color: #FFE656; }
.popup .svc-desc { font-size: 11px; color: rgba(0,0,0,.5); line-height: 1.5; }
.popup .svc.dark .svc-desc { color: rgba(255,255,255,.4); }
.popup .svc-badge {
  font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(0,0,0,.1); color: #161616; padding: 3px 8px;
  align-self: flex-start; margin-top: auto;
}
.popup .svc.dark .svc-badge { background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.popup .options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.popup .opt {
  display: flex; align-items: center; gap: 18px; padding: 16px 20px;
  background: #222; border: 2px solid transparent; cursor: pointer;
  transition: background .25s, border-color .25s, transform .3s cubic-bezier(.22,1,.36,1);
}
.popup .opt:active { transform: scale(.98); }
.popup .opt.sel { border-color: #FFE656; background: #2a2a2a; transform: translateX(5px); }
.popup .opt.sel .odot { background: #FFE656; border-color: #FFE656; }
.popup .opt.sel .odot::after { opacity: 1; }
.popup .odot {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.2);
  border-radius: 50%; flex-shrink: 0; position: relative; transition: all .2s;
}
.popup .odot::after {
  content: ''; position: absolute; inset: 3px;
  background: #161616; border-radius: 50%; opacity: 0; transition: opacity .2s;
}
.popup .ocontent { flex: 1; }
.popup .otitle { font-size: 14px; font-weight: 600; color: #FAFAF8; line-height: 1.2; }
.popup .odesc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.4); margin-top: 3px; line-height: 1.4; }
.popup .otag {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #FFE656; border: 1px solid rgba(255,230,86,.25); padding: 3px 8px;
  white-space: nowrap; flex-shrink: 0;
}
.popup .fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.popup .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.popup .field { display: flex; flex-direction: column; gap: 7px; }
.popup .field label {
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.popup .field input, .popup .field textarea, .popup .field select {
  background: #222; border: 2px solid transparent; color: #FAFAF8;
  font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 300;
  padding: 13px 15px; outline: none; transition: border-color .2s;
  resize: none; appearance: none; -webkit-appearance: none;
}
.popup .field input::placeholder, .popup .field textarea::placeholder { color: rgba(255,255,255,.2); }
.popup .field input:focus, .popup .field textarea:focus, .popup .field select:focus { border-color: #FFE656; }
.popup .field textarea { min-height: 80px; }
.popup .field select option { background: #222; }
.popup .opt-label { opacity: .4; font-weight: 300; text-transform: none; letter-spacing: 0; font-size: 10px; }
.popup .nav { display: flex; align-items: center; justify-content: space-between; }
.popup .btn-back {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.3);
  background: none; border: none; cursor: pointer;
  font-family: inherit; padding: 0; transition: color .2s;
}
.popup .btn-back:hover { color: #FAFAF8; }
.popup .btn-next {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFE656; color: #161616; border: none;
  padding: 14px 30px; font-family: inherit; font-size: 12px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .2s;
}
.popup .btn-next:hover { background: #f0d800; }
.popup .btn-next:active { transform: scale(.97); }
.popup .btn-next:disabled { opacity: .22; cursor: not-allowed; transform: none; }
.popup .psucc { display: none; }
.popup .psucc.active { display: block; animation: pup .45s cubic-bezier(.22,1,.36,1) forwards; }
.popup .s-check {
  width: 48px; height: 48px; background: #FFE656;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.popup .s-title {
  font-size: clamp(28px,6vw,46px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1; color: #FAFAF8; margin-bottom: 12px;
}
.popup .s-title span { color: #FFE656; }
.popup .s-text {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.5);
  line-height: 1.7; max-width: 480px; margin-bottom: 28px;
}
.popup .estim {
  background: #FFE656; padding: 20px 24px; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.popup .estim-label { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(0,0,0,.5); }
.popup .estim-price { font-size: clamp(20px,4vw,30px); font-weight: 700; color: #161616; letter-spacing: -.02em; line-height: 1; }
.popup .estim-note { font-size: 12px; color: rgba(0,0,0,.55); line-height: 1.5; }
.popup .nsteps { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.popup .nstep { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; background: #222; }
.popup .nnum { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #FFE656; flex-shrink: 0; min-width: 32px; margin-top: 2px; }
.popup .ntitle { font-size: 13px; font-weight: 600; color: #FAFAF8; margin-bottom: 2px; }
.popup .ndesc { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.5; }
.popup .s-recap {
  padding: 12px 16px; background: rgba(255,230,86,.05);
  border-left: 3px solid #FFE656; font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.45); line-height: 1.7;
}
.popup .s-recap strong { color: #FFE656; font-weight: 600; }
@media (max-width: 768px) {
  .popup { padding: 32px 22px 36px; max-height: 100vh; }
  .popup .svc-grid { grid-template-columns: 1fr; }
  .popup .row { grid-template-columns: 1fr; }
}




/* ════════════════════════════════
   SERVICES (maquette)
════════════════════════════════ */
.services {
  background: #F5F5F0;
  padding: 80px 80px 80px;
}
.services-inner { max-width: 1642px; margin: 0 auto; }

.services-top { margin-bottom: 52px; }

.chip-services {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1.5px solid var(--black);
  border-radius: 100px;
  margin-bottom: 20px;
}

.s-title-solid {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.95;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.s-title-outline {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.scard {
  position: relative;
  border-radius: 18px;
  padding: 32px 36px 40px;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 2px solid var(--black);
}

.scard-deco {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}

.scard-yellow { background: var(--yellow); }
.scard-yellow .scard-deco { background: var(--black); }

.scard-pink { background: #F9C8D4; }
.scard-pink .scard-deco { background: var(--black); }

.scard-lavender { background: #E2E0F5; }
.scard-lavender .scard-deco { background: var(--black); }

.scard-black { background: #2b2b2b;  }
.scard-black .scard-deco { background: #555; opacity: 0.3; }
.scard-black .scard-label { color: var(--yellow); }

.scard-emoji {
  font-size: 26px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.scard-label {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}


/* ════════════════════════════════
   SERVICES DETAIL
════════════════════════════════ */
.sdetail {
  background: #F5F5F0;
}

.sdetail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.sdetail-col {
  padding: 52px 24px 60px 24px;
  border-right: 1.5px solid rgba(0,0,0,0.15);
}
.sdetail-col:first-child { padding-left: 0; padding-right: 24px; }
.sdetail-col:not(:first-child) { padding-left: 24px; }
.sdetail-col-last { border-right: none; }

.sdetail-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 0;
  margin-bottom: 36px;
}
.sdetail-head-yellow { background: #FFF4A3; }
.sdetail-head-pink   { background: #FDDDE6; }
.sdetail-head-grey   { background: #E0E0E0; }
.sdetail-head-lavender { background: #E8E6FF; }

.sdetail-square {
  display: inline-block;
  width: 13px; height: 13px;
  flex-shrink: 0;
  border-radius: 2px;
}
.sq-yellow   { background: var(--yellow); }
.sq-pink     { background: #F9C8D4; }
.sq-black    { background: var(--black); }
.sq-lavender { background: #C8C4F0; }

.sdetail-col-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}

.sdetail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.sdetail-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sdetail-list li:first-child { border-top: 1px solid rgba(0,0,0,0.1); }

.sdetail-list strong {
  font-family: "DM Sans", sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--black);
}

.sdetail-list em {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: #888;
  line-height: 1.4;
}



/* ════════════════════════════════
   VALEURS
════════════════════════════════ */
.valeurs {
  background: var(--black);
  padding: 100px 80px;
}
.valeurs-inner { max-width: 1400px; margin: 0 auto; }
.valeurs-top { margin-bottom: 64px; }
.chip-valeurs {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.valeurs-title-solid {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.valeurs-title-outline {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.valeurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.vcard {
  background: #1a1a1a;
  padding: 48px 44px 52px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.vcard:hover { background: #1f1f1f; }
.vcard-main {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 44px 48px;
  border: none;
  min-height: 480px;
}
.vcard-main:hover { background: #f5da3e; }
.vcard-main .vcard-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: normal;
  color: var(--black);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.vcard-main .vcard-text {
  color: rgba(22,22,22,0.6);
  margin-top: 28px;
}
.vcard-title {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: normal;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.vcard-text {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,250,248,0.55);
  line-height: 1.75;
}

/* ════════════════════════════════
   PROJETS
════════════════════════════════ */
.projets {
  background: #F5F5F0;
  padding: 80px 80px 100px;
  border-top: 1.5px solid rgba(0,0,0,0.1);
}
.projets-inner { max-width: 1642px; margin: 0 auto; }

.projets-top { margin-bottom: 48px; }

.chip-portfolio {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1.5px solid var(--black);
  border-radius: 100px;
  margin-bottom: 16px;
}

.projets-title-solid {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.projets-title-outline {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Cards */
.pcard {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.18);
}
.pcard:hover .pcard-screenshot {
  transform: scale(1.04);
}
.pcard:hover .pcard-arrow {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.pcard-full { margin-bottom: 14px; }

.projets-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Visuals */
.pcard-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pcard-visual { height: 260px; }

.pcard-visual.pcard-visual-yellow {
  background: linear-gradient(135deg, #fffaaa 0%, #FFE656 60%, #f0c800 100%);
}
.pcard-visual.pcard-visual-pink {
  background: linear-gradient(135deg, #ffdde8 0%, #f9a8c0 100%);
}
.pcard-visual.pcard-visual-blue {
  background: linear-gradient(135deg, #c8ddf5 0%, #7ab0e0 60%, #4d8fcb 100%);
}
.pcard-visual.pcard-visual-dark {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

/* Image projet — flottante centrée avec padding */
.pcard-screenshot {
  width: 72%;
  height: calc(100% - 40px);
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Card full width — deux images côte à côte */
.pcard-visual-duo {
  gap: 16px;
}
.pcard-visual-duo .pcard-screenshot {
  width: 38%;
}

/* Deco circles */
.pcard-deco-circle {
  position: absolute;
  bottom: 24px; left: 32px;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.pcard-deco-diamond {
  position: absolute;
  top: 24px; right: 32px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.12);
  transform: rotate(45deg);
  border-radius: 4px;
}

/* Browser mockup */
.browser-mockup {
  width: 72%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.browser-mockup-pink { width: 76%; }

.browser-bar {
  background: #f0f0f0;
  padding: 8px 12px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.browser-dot {
  width: 9px; height: 9px;
  border-radius: 50%; display: inline-block;
}
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28CA41; }

.browser-content {
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-line {
  height: 8px; border-radius: 4px;
  background: #e8e8e8;
}
.bc-line-url { width: 55%; }
.bc-line-short { width: 35%; }
.bc-line-pink { background: #f9c8d4; }

.bc-row {
  display: flex;
  gap: 8px;
}
.bc-block {
  border-radius: 6px;
  height: 48px;
}
.bc-block-hero      { flex: 3; background: #e8e8e8; }
.bc-block-side      { flex: 1; background: #e8e8e8; }
.bc-block-hero-pink { flex: 1; background: #fddde6; height: 64px; border-radius: 6px; }

/* Footer info */
.pcard-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}
.pcard-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 4px;
}
.pcard-name {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.pcard-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--black);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.pcard-arrow:hover { background: var(--black); color: var(--yellow); border-color: var(--black); }


/* ════════════════════════════════
   TEAM (maquette)
════════════════════════════════ */
.team {
  background: var(--black);
  padding: 80px 80px 100px;
}
.team-inner { max-width: 1642px; margin: 0 auto; }

.team-top { margin-bottom: 52px; }

.chip-team {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1.5px solid var(--black);
  border-radius: 100px;
  margin-bottom: 16px;
}

.team-title-solid {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.team-title-outline {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
}

.tcard {
  background: #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s;
}
.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border-color: rgba(255,230,86,0.2);
}
.tcard:hover .tcard-photo-img {
  transform: scale(1.04);
}

.tcard-photo {
  width: 100%;
  height: 330px;
  background: #d8d8d8;
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.tcard-photo-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tcard-body {
  padding: 28px clamp(16px, 2.5vw, 32px) 32px;
}

.tcard-accent {
  width: 28px;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 16px;
}

.tcard-role {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.tcard-name {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.tcard-bio {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,250,248,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
}
.tcard-bio strong {
  color: var(--white);
  font-weight: 700;
}

.tcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ttag {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(250,250,248,0.4);
  border: 1px solid rgba(250,250,248,0.15);
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}


/* ════ GRILLE GLOBALE 1642px ════ */
.grid-wrap {
  max-width: 1642px;
  margin: 0 auto;
  width: 100%;
}

/* Toutes les sections ont un padding horizontal de 80px */
nav,
.hero,
.services,
.sdetail,
.projets,
.team,
.contact,
footer {
  padding-left: 80px;
  padding-right: 80px;
}

/* Les inner containers ne font plus leur propre padding H */
.services-inner,
.sdetail-grid,
.projets-inner,
.team-inner,
.footer-grid,
.footer-logo,
.footer-bottom {
  max-width: 1642px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}



/* Contact inner */
.contact-hero,
.contact-infos {
  max-width: 1642px;
  margin-left: auto;
  margin-right: auto;
}


/* ════════════════════════════════
   FOOTER (maquette)
════════════════════════════════ */
footer {
  background: #161616;
  padding: 0 !important;
}

.footer-inner {
  max-width: 1642px;
  margin: 0 auto;
  padding: 64px 80px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-logo {
  display: block;
}
.footer-logo svg {
  height: 120px;
  width: auto;
}

.footer-col-title {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,250,248,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social-link span {
  color: rgba(250,250,248,0.3);
  font-size: 12px;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 14px;
}
.footer-contact-label:first-child { margin-top: 0; }
.footer-contact-val {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,250,248,0.55);
  text-decoration: none;
  display: block;
}
a.footer-contact-val:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 32px;
}
.footer-copy {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(250,250,248,0.25);
}

.footer-yellow-bar {
  width: 100%;
  height: 8px;
  background: var(--yellow);
}

.footer-social-icons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(250,250,248,0.55);
  transition: color 0.2s, border-color 0.2s;
}
.footer-icon-link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.footer-mobile-logo {
  display: none;
}



.scard-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.12);
  border: 1.5px solid rgba(0,0,0,0.25);
  color: var(--black);
  z-index: 3;
  pointer-events: none;
  cursor: pointer;
}
.scard-black .scard-arrow {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
}









.scard {
  cursor: pointer;
}
.scard .scard-arrow {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}
.scard:hover .scard-arrow {
  transform: scale(1.18) rotate(-5deg);
  background: rgba(0,0,0,0.08);
}
.scard-black:hover .scard-arrow {
  background: rgba(255,255,255,0.22);
}
.scard:hover .scard-arrow svg {
  transform: translate(2px, -2px);
  transition: transform 0.3s ease;
}


.sdetail-col {
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
}

@keyframes colFlashYellow {
  0%   { background: transparent; box-shadow: inset 0 0 0 0px transparent; }
  15%  { background: rgba(255,230,86,0.2); box-shadow: inset 0 0 0 2px rgba(255,230,86,0.7); }
  60%  { background: rgba(255,230,86,0.1); box-shadow: inset 0 0 0 2px rgba(255,230,86,0.3); }
  100% { background: transparent; box-shadow: inset 0 0 0 0px transparent; }
}
@keyframes colFlashPink {
  0%   { background: transparent; box-shadow: inset 0 0 0 0px transparent; }
  15%  { background: rgba(249,200,212,0.35); box-shadow: inset 0 0 0 2px rgba(249,200,212,0.9); }
  60%  { background: rgba(249,200,212,0.18); box-shadow: inset 0 0 0 2px rgba(249,200,212,0.4); }
  100% { background: transparent; box-shadow: inset 0 0 0 0px transparent; }
}
@keyframes colFlashGrey {
  0%   { background: transparent; box-shadow: inset 0 0 0 0px transparent; }
  15%  { background: rgba(200,200,200,0.25); box-shadow: inset 0 0 0 2px rgba(180,180,180,0.7); }
  60%  { background: rgba(200,200,200,0.12); box-shadow: inset 0 0 0 2px rgba(180,180,180,0.3); }
  100% { background: transparent; box-shadow: inset 0 0 0 0px transparent; }
}
@keyframes colFlashLavender {
  0%   { background: transparent; box-shadow: inset 0 0 0 0px transparent; }
  15%  { background: rgba(226,224,245,0.4); box-shadow: inset 0 0 0 2px rgba(180,170,230,0.8); }
  60%  { background: rgba(226,224,245,0.2); box-shadow: inset 0 0 0 2px rgba(180,170,230,0.3); }
  100% { background: transparent; box-shadow: inset 0 0 0 0px transparent; }
}

#sdetail-col-1.highlighted { animation: colFlashYellow 1.4s ease forwards; }
#sdetail-col-2.highlighted { animation: colFlashPink 1.4s ease forwards; }
#sdetail-col-3.highlighted { animation: colFlashLavender 1.4s ease forwards; }
#sdetail-col-4.highlighted { animation: colFlashGrey 1.4s ease forwards; }


.nav-logo { height: 52px; display: flex; align-items: center; position: relative; }

.logo-default, .logo-scrolled {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.logo-default svg { height: clamp(36px, 5vw, 72px); width: auto; }
.logo-scrolled svg { width: clamp(140px, 16vw, 220px); height: auto; }

.logo-default { opacity: 1; transform: translateY(-50%) scale(1); }
.logo-scrolled { opacity: 0; transform: translateY(-50%) scale(0.92); pointer-events: none; }

nav.scrolled .logo-default { opacity: 0; transform: translateY(-50%) scale(1.06); pointer-events: none; }
nav.scrolled .logo-scrolled { opacity: 1; transform: translateY(-50%) scale(1); pointer-events: auto; }


.hero-logo {
  margin-bottom: 48px;
}
.hero-logo svg {
  height: 56px;
  width: auto;
}


/* ════════════════════════════════
   ANIMATIONS GLOBALES
════════════════════════════════ */

/* Keyframes */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hero animations */
.hero-eyebrow {
  opacity: 0;
}
.hero-title .line1 {
  opacity: 0;
}
.hero-title .line2 {
  opacity: 0;
}
.hero-sub {
  animation: fadeSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 3.9s both;
}
.hero-btns {
  opacity: 0;
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.reveal-left {
  transform: translateX(-60px);
}
.reveal.reveal-right {
  transform: translateX(60px);
}
.reveal.reveal-scale {
  transform: scale(0.92);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

.chip-process {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: var(--black);
  font-family: "DM Sans", sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 999px; border: 1.5px solid var(--black);
  margin-bottom: 16px;
}


/* ════════════════════════════════
   LOADER
════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: #161616;
  transform-origin: bottom;
  transition: transform 0.8s cubic-bezier(0.76,0,0.24,1);
}

.loader-slice {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.loader-logo {
  width: 420px;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderLogoIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.loader-logo svg { width: 100%; height: auto; }

@keyframes loaderLogoIn {
  to { opacity: 1; transform: translateY(0); }
}

.loader-bar-wrap {
  width: 320px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.3s ease 0.5s forwards;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  border-radius: 2px;
  animation: loaderProgress 1.6s cubic-bezier(0.4,0,0.2,1) 0.6s forwards;
}

@keyframes loaderProgress {
  0%   { width: 0%; }
  60%  { width: 75%; }
  90%  { width: 92%; }
  100% { width: 100%; }
}

.loader-label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  opacity: 0;
  animation: fadeIn 0.3s ease 0.7s forwards;
}

.loader-dots::after {
  content: '';
  animation: dots 1.4s steps(4, end) 0.8s infinite;
}
@keyframes dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

/* Exit animation */
#loader.hide .loader-content {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#loader.hide .loader-bg {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s cubic-bezier(0.76,0,0.24,1) 0.2s;
}
#loader.hide .loader-slice { display: none; }

#loader.done {
  pointer-events: none;
  display: none;
}


/* Hero animate-in (triggered after loader) */
.hero-eyebrow, .hero-title .line1, .hero-title .line2, .hero-sub, .hero-btns { opacity: 0; }
.hero-eyebrow.go    { animation: fadeSlideDown 0.7s cubic-bezier(0.22,1,0.36,1) 0s both; }
.hero-title .line1.go { animation: fadeSlideLeft 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.hero-title .line2.go { animation: fadeSlideRight 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s both; }
.hero-sub.go        { animation: fadeSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
.hero-btns.go       { animation: fadeSlideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.6s both; }


/* ── Burger & Mobile Menu ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: "JNL", "Impact", sans-serif;
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 100;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  line-height: 1.1;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu-cta {
  margin-top: 24px;
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid var(--black);
}

@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
}


.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 8px;
}
.mobile-menu-close:hover { opacity: 1; }


/* ════════════════════════════════════════
   RESPONSIVE MOBILE — max-width: 768px
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav {
    padding: 20px 24px;
  }
  nav.scrolled {
    padding: 14px 24px;
  }

  /* ── HERO ── */
  .hero {
    padding: 0 24px 72px;
    min-height: 80vh;
    margin-top: 100px;
    justify-content: center;
  }
  .hero-eyebrow {
    font-size: 10px;
    text-align: center;
  }
  .hero-title {
    font-size: 60px!important;
        white-space: normal;
        margin-bottom: 24px;
        text-align: center;
  }
  .hero-sub {
    font-size: clamp(13px, 3.5vw, 18px);
    line-height: normal!important;
    text-align: center;
  }
 .hero-sub strong{
    font-size: 7vw;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-btns .btn, .hero-btns a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ── SERVICES CARDS ── */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .services {
    padding: 60px 20px;
  }
  .services-top {
    margin-bottom: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .scard {
    min-height: 130px;
    padding: 24px 24px 32px;
  }

  /* ── SERVICES DETAIL ── */
  .sdetail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sdetail-col {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 32px 20px;
  }
  .sdetail-col:nth-child(odd) {
    border-right: 1px solid rgba(0,0,0,0.1);
  }

  /* ── PROJETS ── */
  .projets {
    padding: 60px 20px;
  }
  .projets-row2 {
    grid-template-columns: 1fr;
  }
  .pcard-full .pcard-visual,
  .projets-row2 .pcard-visual {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .pcard-visual .pcard-screenshot {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .pcard-visual-duo {
    gap: 0;
  }
  .pcard-visual-duo .pcard-screenshot:last-child {
    display: none;
  }
  .pcard-halves {
    flex-direction: column;
    gap: 12px;
  }
  .pcard-half {
    width: 100%;
  }
  .pcard-full-img, .pcard-half-img {
    height: 200px;
  }
  .pcard-info {
    padding: 16px 20px;
  }

  /* ── TEAM ── */
  .team {
    padding: 60px 20px;
  }
  .tarif {
    padding: 38px 0 32px;
  }
  .tarif-top {
    padding: 0 20px;
  }
  .tarif-tabs {
    justify-content: space-between;
    padding: 0;
  }
  .tarif-tab {
    flex: 1;
    font-size: 11px;
    padding: 10px 4px 14px;
    text-align: center;
  }
  .tarif-note {
    padding: 0 20px;
  }
  .tarif-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 20px 12px;
    scroll-padding-left: 20px;
    scrollbar-width: none;
  }
  .tarif-grid::-webkit-scrollbar { display: none; }
  .tarif-grid .tpcard {
    flex: 0 0 78vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .tarif-grid-2 {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .valeurs {
    padding: 64px 20px;
  }
  .valeurs-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .vcard-main {
    grid-column: 1;
    grid-row: auto;
    min-height: 320px;
  }
  .vcard {
    padding: 32px 24px 36px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tcard-photo {
    height: 260px;
  }
  .tcard-body {
    padding: 24px 20px 28px;
  }
  .tcard-name {
    font-size: clamp(24px, 7vw, 38px);
  }

  /* ── PROCESS ── */
  .process-header {
    padding: 60px 24px 32px;
  }
  .step {
    min-height: auto;
    margin-bottom: 20px;
  }
  .step-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .step-left {
    padding: 28px 24px 22px;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .step-num {
    font-size: 52px;
    flex-shrink: 0;
    opacity: 0.18;
  }
  .step-right {
    padding: 24px 24px 32px;
    gap: 18px;
  }
  .step-desc {
    font-size: 15px;
  }

  /* ── CONTACT ── */
  .contact {
    padding: 12px 24px 32px 24px;
    border-top: none;
  }
  .contact-hero {
    padding-bottom: 40px;
  }
  .contact-title {
    font-size: clamp(44px, 12vw, 72px);
    margin-bottom: 32px;
    line-height: 0.92;
  }
  .contact-title span {
    font-size: clamp(36px, 12vw, 56px);
  }
  .btn-contact {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px 24px;
  }
  .contact-infos {
    grid-template-columns: 1fr;
  }
  .info-col {
    border-right: none;
    border-bottom: 1px solid #d0d0cc;
    padding: 32px 24px;
    text-align: center;
  }
  .info-col:last-child {
    border-bottom: none;
    border-right: none;
    padding: 32px 24px;
  }
  .info-col:nth-child(2) {
    padding: 32px 24px;
  }

  /* ── FOOTER ── */
  .footer-inner {
    padding: 48px 24px 0;
  }
  .footer-logo-col {
    display: none;
  }
  .footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 24px;
    padding-bottom: 40px;
  }
  .footer-nav-col {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }
  .footer-contact-col {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }
  .footer-social-col {
    flex: 1 1 100%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
  }
  .footer-social-icons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .footer-mobile-logo {
    display: block;
    text-align: center;
    margin-bottom: 16px;
  }
  .footer-mobile-logo img {
    height: 28px;
    width: auto;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 0 32px;
  }

  /* ── POPUP ── */
  .popup {
    max-width: 100%;
    margin: 0;
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
  }
  .popup-overlay {
    align-items: flex-end;
  }
  .popup-body {
    padding: 28px 24px;
  }
  .popup-step-grid {
    grid-template-columns: 1fr;
  }

  /* ── SECTION TITLES ── */
  .section-title, .projets-title, .team-title, .services-title {
    font-size: clamp(36px, 9vw, 60px);
  }
}

/* ── Très petit mobile ── */
@media (max-width: 400px) {
  .hero-title {
    font-size: 8.5vw;
  }
  .sdetail-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
}


/* ── Mobile Service Accordion ── */
.mob-drawer {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
  background: var(--drawer-bg);
  color: var(--drawer-tc);
  border-radius: 0 0 18px 18px;
  margin-top: -12px;
  margin-bottom: 12px;
}
.mob-drawer.open {
  max-height: 600px;
}
.mob-drawer-inner {
  padding: 8px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mob-drawer-item {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mob-drawer-item:last-child { border-bottom: none; }
.mob-drawer-strong {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--drawer-tc);
  line-height: 1.3;
}
.mob-drawer-em {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--drawer-tc);
  opacity: 0.65;
  font-style: italic;
  margin-top: 2px;
}
/* black drawer text overrides */
#mob-drawer-4 .mob-drawer-item {
  border-bottom-color: rgba(255,255,255,0.12);
}

@media (max-width: 768px) {
  .mob-drawer { display: block; }
  .sdetail { display: none; }
  /* Active card gets bottom radius removed */
  .scard.mob-active {
    border-radius: 18px 18px 0 0;
    border-bottom-color: transparent;
  }
  .mob-drawer.open {
    border: 2px solid var(--black);
    border-top: none;
  }
  /* Arrow rotation on active card */
  .scard.mob-active .scard-arrow svg {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
}


.info-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--black);
  opacity: 0.4;
}





/* ── Back to top ── */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#backToTop:hover {
  background: var(--yellow);
  color: var(--black);
}
@media (max-width: 768px) {
  #backToTop { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 600px) {
  .loader-logo { width: min(72vw, 260px); }
  .loader-bar-wrap { width: min(72vw, 260px); }
}