/* ══════════════════════════════════════════════════════
       solutions.php — Design Premium v2
       Design system, nav, footer → /assets/css/global.css
    ══════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.page-hero {
  background: #fff;
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 90% 90% at 50% 50%,
    black 0%,
    transparent 100%
  );
}
/* Second glow doré bas-gauche */
.page-hero-glow2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 77, 143, 0.5) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: "";
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: #000;
  margin-bottom: 20px;
}
.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.page-hero h2 {
  font-size: clamp(1.25rem, 4.5vw, 2rem);
  color: #000;
  margin-bottom: 20px;
  margin-top: 20px;
}
.page-hero h2 em {
  color: var(--gold);
  font-style: italic;
}
.page-hero-desc {
  color: #000;
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #e8b84b);
  color: var(--ink);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.55);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  color: #000;
  backdrop-filter: blur(8px);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  font-size: 0.92rem;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* Stats hero — barre unifiée */
.page-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.phs {
  text-align: center;
  padding: 16px 28px;
}
.phs:last-child {
  border-right: none;
}
.phs-n {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.phs-l {
  font-size: 0.75rem;
  color: var(--mid);
  margin-top: 4px;
}

/* Carte audit droite */
.page-hero-cta-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-cta-box::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
}
.page-hero-cta-box img {
  width: 450px;
  display: block;
  border-radius: 14px;
}
.page-hero-cta-box h3 {
  font-family: var(--serif);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
}
.page-hero-cta-box p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.43);
  margin-bottom: 22px;
  line-height: 1.6;
  position: relative;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.icon-container .img-icon {
  width: 75px;
  height: 75px;
  opacity: 0.8;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--gold);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.icon-container .img-wordpress {
  top: 20px;
  left: 20px;
}
.icon-container .img-email {
  top: 20px;
  right: 20px;
}
.icon-container .img-erp {
  bottom: -38px;
  left: 32px;
}
.icon-container .img-secure {
  bottom: -23px;
  right: 17px;
}
.icon-container .img-office {
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}
.icon-container .img-domain {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}
.icon-container .img-social {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-cta-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.hero-cta-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-cta-badge .hcb-check {
  color: var(--gold);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid #edeae2;
  padding: 11px 24px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--mid);
}
.breadcrumb-inner a {
  color: var(--azure);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover {
  color: var(--gold);
}
.breadcrumb-sep {
  color: #d1d5db;
}

/* ─── NAV ANCRES (sticky) ─── */
.sol-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e9e5db;
  padding: 0 24px;
  position: sticky;
  top: 64px;
  z-index: 90;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.sol-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.sol-nav-inner::-webkit-scrollbar {
  display: none;
}
.snav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 14px 15px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 2.5px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.snav-link:hover {
  color: var(--azure);
  border-bottom-color: rgba(26, 77, 143, 0.3);
}
.snav-link.active {
  color: var(--azure);
  border-bottom-color: var(--azure);
}

/* ─── SECTIONS ─── */
.sol-section {
  padding: 96px 24px;
  scroll-margin-top: 128px;
}
.sol-section.bg-white {
  background: #fff;
}
.sol-section.bg-chalk {
  background: var(--chalk);
}
.sol-section.dark {
  background: var(--ink);
}

.sol-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sol-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: start;
}
.sol-grid.reverse {
  direction: rtl;
}
.sol-grid.reverse > * {
  direction: ltr;
}

.sol-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mist);
  color: var(--azure);
  border: 1px solid rgba(26, 77, 143, 0.12);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.sol-section.dark .sol-tag {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-lt);
  border-color: rgba(201, 168, 76, 0.2);
}

.sol-h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.sol-h2 em {
  color: var(--gold);
  font-style: italic;
}
.sol-h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 14px;
  line-height: 1.18;
}
.sol-h3 em {
  color: var(--gold);
  font-style: italic;
}
.sol-h4 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 12px;
}
.sol-h4 em {
  color: var(--gold);
  font-style: italic;
}

.sol-lead {
  font-size: 1.08rem;
  color: #000;
  line-height: 1.85;
  margin-bottom: 22px;
}
.sol-section.dark .sol-lead {
  color: rgba(255, 255, 255, 0.72);
}

.sol-body {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.88;
  margin-bottom: 20px;
}
.sol-section.dark .sol-body {
  color: rgba(255, 255, 255, 0.48);
}

/* ─── Checklist premium ─── */
.sol-checklist {
  list-style: none;
  margin-bottom: 28px;
}
.sol-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid #ede9df;
}
.sol-checklist li:last-child {
  border-bottom: none;
}
.sol-checklist .ck {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: gap 0.25s;
}
.sol-link:hover {
  gap: 14px;
}

/* Tech pills */
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.pill {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #374151;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.pill:hover {
  border-color: var(--gold);
  color: var(--ink);
}
.sol-section.dark .pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

/* ─── KPI cards ─── */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.kpi-card {
  background: var(--chalk);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--gold);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26, 77, 143, 0.1);
}
.kpi-card .kn {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: #000;
  line-height: 1;
}
.kpi-card .kl {
  font-size: 0.73rem;
  color: #000;
  margin-top: 7px;
  line-height: 1.4;
}
.sol-section.dark .kpi-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
}
.sol-section.dark .kpi-card .kn {
  color: var(--gold-lt);
}
.sol-section.dark .kpi-card .kl {
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Lien CTA inline ─── */
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  transition:
    gap 0.25s,
    color 0.2s,
    border-color 0.2s;
  margin-top: 24px;
  padding: 10px 0;
  border-bottom: 1.5px solid rgba(26, 77, 143, 0.2);
}
.sol-link:hover {
  gap: 16px;
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.sol-section.dark .sol-link {
  color: var(--gold);
  border-bottom-color: rgba(201, 168, 76, 0.25);
}
.sol-section.dark .sol-link:hover {
  border-bottom-color: var(--gold);
}

/* ─── VISUEL ─── */
.sol-visual {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}
.sol-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sol-visual:hover img {
  transform: scale(1.05);
}
/* overlay dégradé bas */
.sol-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(13, 15, 20, 0.4) 0%,
    transparent 55%
  );
}
.sol-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--ink);
  color: var(--gold);
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 1rem;
}

/* Carte comparaison (email pro) */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
/* ─── COMPARE CARDS ─── */
.cmp-card {
  border-radius: 14px;
  padding: 24px 20px;
  border: 1.5px solid #e4e0d8;
  background: #fff;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.cmp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.cmp-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.15);
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.06) 0%, #fff 60%);
}
.cmp-logo {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cmp-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.cmp-price {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.cmp-list {
  list-style: none;
}
.cmp-list li {
  font-size: 0.79rem;
  color: var(--mid);
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.cmp-list li::before {
  content: "✓";
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}

/* ─── TOOLS GRID ─── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.tool-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    transform 0.35s;
}
.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
  background: radial-gradient(
    circle at top left,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 60%
  );
}
.tool-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
}
.tool-card:hover::before {
  opacity: 1;
}
.tool-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.tool-name {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 10px;
}
.tool-body {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
}
.tool-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-lt);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ─── CYBER GRID ─── */
.cyber-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.cyber-card {
  background: #fff;
  border: 1px solid #edeae2;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.cyber-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(13, 15, 20, 0.09);
  border-color: rgba(201, 168, 76, 0.3);
}
.cyber-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.cyber-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #000;
}
.cyber-body {
  font-size: 0.82rem;
  color: #000;
  line-height: 1.68;
}

/* ─── PRÉSENCE DIGITALE ─── */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.pres-card {
  background: #fff;
  border: 1px solid #ede9df;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.pres-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}
.pres-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.pres-name {
  font-family: var(--serif);
  font-size: 0.98rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.pres-body {
  font-size: 0.76rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── KPI BAND GLOBAL ─── */
.kpi-band {
  background: #fff;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.kpi-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.kpi-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kpi-band-item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition:
    background 0.3s,
    transform 0.3s;
}
.kpi-band-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}
.kpi-band .kn {
  font-family: var(--serif);
  font-size: 3rem;
  color: #000;
  line-height: 1;
}
.kpi-band .kn span {
  color: #000;
}
.kpi-band .kl {
  font-size: 0.75rem;
  color: #000;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── FAQ ─── */
.faq-section {
  background: #fff;
  padding: 100px 24px;
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e4e0d8;
}
.faq-item:first-of-type {
  border-top: 1px solid #e4e0d8;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: #000;
  gap: 16px;
}
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
  border: 1.5px solid var(--gold);
  background: rgba(201, 168, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  transition:
    transform 0.35s,
    background 0.2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(201, 168, 76, 0.15);
}
.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: #000;
  line-height: 1.85;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--chalk);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 65%
  );
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #000;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.cta-band h2 em {
  color: #000;
  font-style: italic;
}
.cta-band p {
  color: rgba(0, 0, 0, 0.58);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ─── INTRO ÉDITORIALE ─── */
.intro-section {
  background: #fff;
  padding: 80px 24px;
}
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.13;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}

/* ─── MAILLAGE INTERNE ─── */
.internal-links-bar {
  background: #fff;
  border-top: 1px solid #e4e0d8;
  padding: 28px 24px;
}
.internal-links-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.internal-links-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.internal-link {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(26, 77, 143, 0.15);
  background: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.internal-link:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-cta-box {
    display: none;
  }
  .sol-grid,
  .sol-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 44px;
  }
  .sol-visual img {
    height: 320px;
  }
  .intro-inner {
    grid-template-columns: 1fr;
  }
  .compare-cards {
    grid-template-columns: 1fr;
  }
  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cyber-grid {
    grid-template-columns: 1fr;
  }
  .presence-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-band-inner {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .presence-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-band-inner {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero-stats {
    width: 100%;
  }
  .phs {
    padding: 14px 16px;
    flex: 1;
  }
  .kpi-row {
    grid-template-columns: 1fr;
  }
  .sol-visual img {
    height: 260px;
  }
  .cyber-grid {
    grid-template-columns: 1fr;
  }
}
