/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
.dgc-page *,
.dgc-page *::before,
.dgc-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.dgc-page {
  font-family: 'Manrope', sans-serif;
  color: #36414b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* Force Manrope partout dans la page, même si Divi surcharge certains titres */
.dgc-page,
.dgc-page * {
  font-family: 'Manrope', sans-serif !important;
}

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
.dgc-page {
  --navy: #122e55;
  --navy-mid: #1a3d6e;
  --red: #bc172f;
  --anthracite: #36414b;
  --light: #f5f7fa;
  --white: #ffffff;
  --border: rgba(18,46,85,0.10);
  --max: 1800px;
}

/* ─────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────── */
.dgc-inner {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}

.dgc-s {
  padding-top: 96px;
  padding-bottom: 96px;
}
.dgc-s-white { background: var(--white); }
.dgc-s-light { background: var(--light); }
.dgc-s-navy  { background: var(--navy); }
.dgc-s-red   { background: var(--red); }

/* ─────────────────────────────────────────
   TYPOGRAPHY SYSTEM
───────────────────────────────────────── */
.dgc-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.dgc-eyebrow--inv { color: rgba(255,255,255,0.4); }

.dgc-h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 4px;
}
.dgc-h2--inv { color: #ffffff; }

.dgc-h2-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  color: #6b7a8d;
  line-height: 1.55;
  letter-spacing: 0;
  margin-bottom: 48px;
}
.dgc-h2-sub--inv { color: rgba(255,255,255,0.68); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.dgc-btn-red {
  display: inline-block;
  background: var(--red);
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.dgc-btn-red:hover { background: #9e1226; color: #fff; }

.dgc-btn-white {
  display: inline-block;
  background: #ffffff;
  color: var(--red);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.dgc-btn-white:hover { opacity: 0.9; }

.dgc-btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(18,46,85,0.25);
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.dgc-btn-outline:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ─────────────────────────────────────────
   HERO — pleine largeur
───────────────────────────────────────── */
.dgc-hero {
  width: 100%;
  height: 100vh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.dgc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  z-index: 0;
  display: block;
  filter: brightness(0.80);
}
.dgc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.dgc-hero__card {
  background: rgba(18,46,85,0.88);
  border-radius: 16px;
  padding: 52px 48px;
  max-width: 480px;
  width: 44%;
  backdrop-filter: blur(2px);
}
.dgc-hero__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 20px;
}
.dgc-hero__q1 {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.dgc-hero__q2 {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  color: rgba(255,255,255,0.30);
  line-height: 1.2;
  margin-bottom: 28px;
}
.dgc-hero__body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.dgc-hero__body p + p { margin-top: 8px; }
.dgc-hero__quote {
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin: 22px 0 32px;
}
.dgc-hero__quote p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   S1 — COMPARAISON
───────────────────────────────────────── */
.dgc-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dgc-cmp-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.dgc-cmp-head {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dgc-cmp-head--fb   { background: #f0f2f5; }
.dgc-cmp-head--site { background: var(--navy); }

.dgc-cmp-head-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.dgc-cmp-head--fb   .dgc-cmp-head-icon { background: #1877f2; color: #fff; }
.dgc-cmp-head--site .dgc-cmp-head-icon { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.7); }

.dgc-cmp-head-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.dgc-cmp-head--fb   .dgc-cmp-head-label { color: #1877f2; }
.dgc-cmp-head--site .dgc-cmp-head-label { color: rgba(255,255,255,0.45); }

.dgc-cmp-body { background: #fff; padding: 0 28px; }
.dgc-cmp-body--dark { background: rgba(18,46,85,0.97); }

.dgc-cmp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18,46,85,0.07);
  font-size: 14px;
  font-weight: 500;
  color: var(--anthracite);
}
.dgc-cmp-body--dark .dgc-cmp-row {
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dgc-cmp-row:last-child { border-bottom: none; }

.dgc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dgc-dot--fb   { background: #1877f2; }
.dgc-dot--site { background: var(--red); }

.dgc-compare-tagline {
  text-align: center;
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.dgc-compare-tagline p {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.5px;
}
.dgc-compare-tagline span { color: var(--red); }

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.dgc-cta-band {
  padding: 56px 80px;
  text-align: center;
}
.dgc-cta-band p {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   S2 — TYPE DE SITE
───────────────────────────────────────── */
.dgc-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dgc-type-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: default;
}
.dgc-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(18,46,85,0.09);
}

.dgc-type-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dgc-type-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(18,46,85,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--navy);
}
.dgc-type-icon--red {
  background: rgba(188,23,47,0.08);
  color: var(--red);
}

.dgc-type-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.dgc-type-badge--red   { background: rgba(188,23,47,0.08); color: var(--red); }
.dgc-type-badge--gray  { background: rgba(0,0,0,0.05); color: #888; }

.dgc-type-bar {
  width: 100%;
  height: 3px;
  border-radius: 0;
  background: var(--border);
  margin-bottom: 18px;
}
.dgc-type-bar--red { background: var(--red); }

.dgc-type-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.dgc-type-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--anthracite);
  opacity: 0.75;
  margin-bottom: 16px;
}

.dgc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.dgc-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(18,46,85,0.06);
  color: var(--navy);
}

.dgc-type-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.dgc-type-link:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   S3 — FORMULES SITE VITRINE
───────────────────────────────────────── */
.dgc-formules-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.dgc-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}
.dgc-form-card--featured {
  background: var(--navy);
  border: 2px solid var(--red);
  padding: 44px 28px 36px;
  box-shadow: 0 20px 60px rgba(18,46,85,0.18);
}

.dgc-form-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--red);
  color: #fff;
  margin-bottom: 20px;
}

.dgc-form-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.dgc-form-name--inv { color: #fff; }

.dgc-form-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--anthracite);
  opacity: 0.65;
  margin-bottom: 24px;
}
.dgc-form-desc--inv {
  color: rgba(255,255,255,0.55);
  opacity: 1;
}

.dgc-form-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(18,46,85,0.07);
  color: var(--anthracite);
  line-height: 1.45;
}
.dgc-form-feat--inv {
  color: rgba(255,255,255,0.82);
  border-bottom-color: rgba(255,255,255,0.08);
}
.dgc-form-feat:last-of-type { border-bottom: none; }

.dgc-feat-chk {
  color: var(--red);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.dgc-form-link {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  margin-top: 20px;
}
.dgc-form-link:hover { text-decoration: underline; }

.dgc-form-cta {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.2s;
}
.dgc-form-cta:hover { background: #9e1226; color: #fff; }

/* ─────────────────────────────────────────
   S4 — DIGISHOP
───────────────────────────────────────── */
.dgc-digishop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dgc-dshop-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.22s ease;
}
.dgc-dshop-card:hover { transform: translateY(-4px); }

.dgc-dshop-head {
  background: var(--navy);
  padding: 32px 28px 26px;
  position: relative;
  overflow: hidden;
}
.dgc-dshop-wm {
  position: absolute;
  right: -4px;
  bottom: -10px;
  font-size: 64px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  transition: color 0.22s;
}
.dgc-dshop-card:hover .dgc-dshop-wm { color: rgba(255,255,255,0.11); }

.dgc-dshop-head h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
  position: relative;
}
.dgc-dshop-head p {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  font-weight: 600;
  position: relative;
}

.dgc-dshop-body {
  background: #fff;
  padding: 22px 28px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--anthracite);
  opacity: 0.85;
}

/* ─────────────────────────────────────────
   S5 — DIGIPAGE
───────────────────────────────────────── */
.dgc-digipage-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.dgc-digipage-inner > p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--anthracite);
  opacity: 0.78;
  margin-bottom: 32px;
}

.dgc-dtags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.dgc-dtag {
  font-size: 12px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(18,46,85,0.18);
  color: var(--navy);
  background: #fff;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  cursor: default;
}
.dgc-dtag:hover {
  border-color: var(--red);
  color: var(--red);
}

.dgc-dp-mockup {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 36px 48px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(18,46,85,0.06);
}
.dgc-dp-mockup-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.dgc-dp-mockup-bar::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 40%; height: 100%;
  background: var(--red);
  border-radius: 2px;
}
.dgc-dp-mockup h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.dgc-dp-mockup > p {
  font-size: 12px;
  color: var(--anthracite);
  opacity: 0.5;
  margin-bottom: 22px;
}

/* ─────────────────────────────────────────
   S6 — AUDIT GRATUIT
───────────────────────────────────────── */
.dgc-audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.dgc-audit-qs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dgc-audit-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}
.dgc-audit-q-icon {
  font-size: 22px;
  color: rgba(255,255,255,0.28);
  flex-shrink: 0;
  margin-top: 1px;
}
.dgc-audit-q p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.dgc-audit-note {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  margin-top: 20px;
  line-height: 1.65;
}

.dgc-audit-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 32px 28px;
}
.dgc-audit-form-title {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: center;
}
.dgc-audit-form-title strong { color: #fff; }

.dgc-f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.dgc-f-input {
  width: 100%;
  height: 40px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 5px;
  color: rgba(255,255,255,0.95);
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.18s;
}
.dgc-f-input::placeholder { color: #6b7280#6b7280; }
.dgc-audit-form label,
.dgc-audit-form .forminator-label,
.dgc-audit-form .forminator-checkbox-label,
.dgc-audit-form .forminator-radio-label {
  color: rgba(255,255,255,0.88) !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.dgc-f-input:focus { border-color: rgba(188,23,47,0.55); }
.dgc-f-input--full { display: block; margin-bottom: 10px; }

.dgc-f-submit {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  margin-top: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.dgc-f-submit:hover { background: #9e1226; color: #fff; }

.dgc-f-note {
  font-size: 10px;
  color: #fff;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   S7 — RÉALISATIONS
───────────────────────────────────────── */
.dgc-real-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dgc-real-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.dgc-real-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(18,46,85,0.10);
}

.dgc-real-img {
  height: 320px;
  background: #d4dce8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.dgc-real-img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center top;
  display: block;
  background: #ffffff;
}
.dgc-real-img-placeholder {
  font-size: 13px;
  font-weight: 600;
  color: rgba(18,46,85,0.32);
}

.dgc-real-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,46,85,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.dgc-real-card:hover .dgc-real-img-overlay { opacity: 1; }
.dgc-real-img-overlay span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.dgc-real-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(18,46,85,0.75);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}

.dgc-real-body {
  background: #fff;
  padding: 18px 22px 20px;
}
.dgc-real-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.dgc-real-body p {
  font-size: 12px;
  color: var(--anthracite);
  opacity: 0.60;
  line-height: 1.5;
}

.dgc-center-cta {
  text-align: center;
  margin-top: 44px;
}

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
@keyframes dgc-fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dgc-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.dgc-anim-q1  { animation: dgc-fadeUp 0.55s 0.00s ease both; }
.dgc-anim-q2  { animation: dgc-fadeUp 0.55s 0.20s ease both; }
.dgc-anim-body{ animation: dgc-fadeUp 0.55s 0.38s ease both; }
.dgc-anim-img { animation: dgc-fadeIn 0.80s 0.15s ease both; }

.dgc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.dgc-reveal.dgc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.dgc-reveal-group > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.dgc-reveal-group.dgc-visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.00s; }
.dgc-reveal-group.dgc-visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.10s; }
.dgc-reveal-group.dgc-visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.20s; }
.dgc-reveal-group.dgc-visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.30s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .dgc-inner { padding-left: 48px; padding-right: 48px; }
  .dgc-formules-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .dgc-form-card--featured { padding: 36px 28px; }
}

@media (max-width: 768px) {
  .dgc-inner { padding-left: 24px; padding-right: 24px; }
  .dgc-s { padding-top: 64px; padding-bottom: 64px; }

  .dgc-hero { height: 100vh; min-height: 560px; align-items: flex-end; }
  .dgc-hero__inner { padding: 0; justify-content: stretch; }
  .dgc-hero__card { max-width: 100%; width: 100%; border-radius: 0; padding: 32px 24px; margin-top: auto; }

  .dgc-compare-grid { grid-template-columns: 1fr; }
  .dgc-type-grid { grid-template-columns: 1fr; }
  .dgc-formules-grid { grid-template-columns: 1fr; max-width: 100%; }
  .dgc-digishop-grid { grid-template-columns: 1fr; }
  .dgc-audit-grid { grid-template-columns: 1fr; gap: 32px; }
  .dgc-real-grid { grid-template-columns: 1fr; }
  .dgc-f-row { grid-template-columns: 1fr; }

  .dgc-cta-band { padding: 44px 24px; }
  .dgc-hero__q1 { font-size: 28px; }
  .dgc-hero__q2 { font-size: 20px; }
}

/* ─── CTA 4 CARTES ─── */
.dgc-cta4-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 44px;
}
.dgc-cta4-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 22px;
  text-decoration: none;
  border: 1.5px solid rgba(18,46,85,0.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.dgc-cta4-card:hover { box-shadow: 0 8px 32px rgba(18,46,85,0.12); transform: translateY(-3px); }
.dgc-cta4-card--primary { background: var(--red); border-color: var(--red); }
.dgc-cta4-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(18,46,85,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 2px;
}
.dgc-cta4-icon svg { stroke: var(--navy); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dgc-cta4-card--primary .dgc-cta4-icon { background: rgba(255,255,255,0.15); }
.dgc-cta4-card--primary .dgc-cta4-icon svg { stroke: #ffffff; }
.dgc-cta4-title { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.dgc-cta4-card--primary .dgc-cta4-title { color: #ffffff; }
.dgc-cta4-desc { font-size: 12.5px; color: #6b7a8d; line-height: 1.6; }
.dgc-cta4-card--primary .dgc-cta4-desc { color: rgba(255,255,255,0.75); }
@media (max-width: 1024px) { .dgc-cta4-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .dgc-cta4-grid { grid-template-columns: 1fr; gap: 12px; } }

.dgc-dshop-sla { margin-top: auto; padding-top: 14px; font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 0.4px; display: flex; align-items: center; gap: 5px; opacity: 0.50; }
.dgc-dp-usecases { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; }
.dgc-dp-uc { font-size: 13px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 7px; padding: 9px 12px; background: var(--light); border-radius: 8px; }
.dgc-dp-uc i { color: var(--red); font-size: 15px; }
.dgc-digipage-inner { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.dgc-dp-text p { font-size: 15px; line-height: 1.8; color: var(--anthracite); }
@media (max-width: 900px) { .dgc-digipage-inner { grid-template-columns: 1fr; } }
.dgc-dshop-card { display: flex; flex-direction: column; }

/* ─── AUDIT BANNER ─── */
.dgc-audit-banner {
  background: #ffffff;
  border-bottom: 1px solid rgba(18,46,85,0.08);
  padding: 56px 0;
}
.dgc-audit-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.dgc-audit-banner__text { flex: 1; min-width: 320px; }
.dgc-audit-banner__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.dgc-audit-banner__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  color: #6b7a8d;
  line-height: 1.55;
  max-width: 780px;
}
.dgc-audit-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.dgc-audit-banner__btn:hover { background: #0d2240; color:#fff; }
@media (max-width: 768px) {
  .dgc-audit-banner { padding: 44px 0; }
  .dgc-audit-banner__inner { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .dgc-audit-banner__text { min-width: 0; }
}

/* ─── CTA TYPE DISCRET ─── */
.dgc-type-cta {
  margin-top: 48px;
  padding: 28px 36px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(18,46,85,0.10);
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.dgc-type-cta__text-block { flex: 1; min-width: 260px; }
.dgc-type-cta__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.dgc-type-cta__sub {
  font-size: 13.5px;
  color: #6b7a8d;
  line-height: 1.6;
}
.dgc-type-cta__links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.dgc-type-cta__links a, .dgc-type-cta__links span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.dgc-type-cta__links a:hover { text-decoration: underline; }
.dgc-type-cta__sep { color: rgba(18,46,85,0.18); font-size: 16px; }
@media (max-width: 768px) {
  .dgc-type-cta { flex-direction: column; gap: 16px; }
  .dgc-type-cta__links { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ─── CARTE SUR MESURE ─── */
.dgc-form-card--surmesure {
  border: 1.5px dashed rgba(18,46,85,0.22);
  background: rgba(18,46,85,0.02);
}
.dgc-form-badge--neutral {
  background: rgba(18,46,85,0.07);
  color: var(--navy);
}
.dgc-form-surmesure-body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--anthracite);
  margin-top: 14px;
}
.dgc-form-link--cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.dgc-form-link--cta:hover { text-decoration: underline; }
.dgc-dshop-ideal {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dgc-dshop-ideal li {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(18,46,85,0.07);
  border-radius: 5px;
  padding: 4px 10px;
  letter-spacing: 0.2px;
}
.dgc-dshop-card--sla {
  background: var(--navy);
  border-radius: 14px;
}
.dgc-dshop-card--sla .dgc-dshop-head h3 { color: #ffffff; }
.dgc-dshop-card--sla .dgc-dshop-head p { color: rgba(255,255,255,0.55); }
.dgc-dshop-card--sla .dgc-dshop-body { color: rgba(255,255,255,0.72); }
.dgc-dshop-card--sla .dgc-dshop-wm { background: rgba(255,255,255,0.10); color: #ffffff; }
.dgc-dshop-card--sla .dgc-form-link { color: #ffffff; margin-top:20px; display:inline-block; font-size:13px; font-weight:700; text-decoration:none; }
.dgc-dshop-card--sla .dgc-form-link:hover { text-decoration:underline; }
.dgc-digishop-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
@media (max-width: 1100px) { .dgc-digishop-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .dgc-digishop-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .dgc-real-img { height: 240px; } }

/* ─── DIGISHOP — version pédagogique ─── */
.dgc-digishop-intro {
  max-width: 1100px;
  margin: -18px 0 44px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--anthracite);
}
.dgc-digishop-intro strong { color: var(--navy); font-weight: 800; }
.dgc-dshop-body { flex: 1; }
.dgc-dshop-ideal { padding: 0 28px 20px; margin: 0; }
.dgc-dshop-sla { padding: 14px 28px 24px; }
.dgc-dshop-card--sla .dgc-dshop-head,
.dgc-dshop-card--sla .dgc-dshop-body { background: var(--navy); }
.dgc-dshop-card--sla .dgc-dshop-body { color: rgba(255,255,255,0.76); opacity: 1; }
.dgc-dshop-card--sla .dgc-dshop-sla { color: rgba(255,255,255,0.75); opacity: 1; }
.dgc-dshop-card--sla .dgc-dshop-wm { color: rgba(255,255,255,0.08); }

/* ─── DIGIPAGE — conteneur large ─── */
.dgc-digipage-inner {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 96px;
  align-items: start;
}
.dgc-dp-text { max-width: 920px; }
.dgc-dp-usecases { justify-content: flex-start; }
.dgc-dp-mockup { max-width: 520px; width: 100%; }
@media (max-width: 900px) {
  .dgc-digipage-inner { grid-template-columns: 1fr; gap: 36px; }
  .dgc-dp-text { max-width: 100%; }
}


/* ─── 4e CARTE REALISATIONS ─── */
.dgc-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.dgc-mosaic img:first-child {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dgc-mosaic img:not(:first-child) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dgc-real-cta-btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.dgc-real-cta-btn:hover { background: #9e1226; color:#fff; }

/* ─── CARTE CTA 4e REALISATION ─── */
.dgc-cta-visual {
  background: #122e55;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px 22px;
  gap: 0;
}
.dgc-cta-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(188,23,47,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.dgc-cta-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  opacity: 0.22;
  z-index: 1;
}
.dgc-cta-content { position: relative; z-index: 1; }
.dgc-cta-h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
}
.dgc-cta-text {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  font-family: 'Manrope', sans-serif;
}
.dgc-cta-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 22px 20px;
}
.dgc-cta-note {
  font-size: 11px !important;
  color: rgba(18,46,85,0.38) !important;
  margin: 0 !important;
  opacity: 1 !important;
  font-style: italic;
}
@media (prefers-reduced-motion: reduce) {
  .dgc-anim-q1, .dgc-anim-q2, .dgc-anim-body, .dgc-anim-img,
  .dgc-reveal, .dgc-reveal-group > * { animation: none; opacity: 1; transform: none; }
}