/* ══════════════════════════════════════════════════════
       site-internet/index.php — Page hub SEO France
       Design system, nav, footer → /assets/css/global.css
    ══════════════════════════════════════════════════════ */

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid #edeae2;
  padding: 12px 24px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--mid);
}
.breadcrumb-inner a {
  color: var(--azure);
  text-decoration: none;
}
.breadcrumb-inner a:hover {
  color: var(--gold);
}
.breadcrumb-sep {
  color: #cbd5e1;
}

/* ─── HERO ─── */
.page-hero {
  background: #fff;
  padding: 92px 24px 84px;
  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%
  );
}
.page-hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 720px;
  height: 720px;
  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;
}
.page-hero-glow2 {
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
@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 310px;
  gap: 60px;
  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.3rem, 4.5vw, 3.8rem);
  color: #000;
  margin-bottom: 24px;
  line-height: 1.1;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero-desc {
  color: #000;
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── STATS BAR ─── */
.page-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}
.phs {
  text-align: center;
  padding: 16px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.phs:last-child {
  border-right: none;
}
.phs-n {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.phs-l {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 5px;
}

/* ─── CTA BOX HERO ─── */
.page-hero-cta-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.page-hero-cta-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero-cta-box h3 {
  font-family: var(--serif);
  color: #000;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.page-hero-cta-box p {
  font-size: 0.83rem;
  color: rgba(0, 0, 0, 0.48);
  margin-bottom: 22px;
  line-height: 1.6;
}
.hero-cta-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.hero-cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.77rem;
  color: rgba(0, 0, 0, 0.45);
}
.hero-cta-badge::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── PROCESS STEPS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-step {
  text-align: center;
  padding: 0 12px;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.process-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.process-body {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── TARIFs ─── */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.tarif-card {
  background: #fff;
  border: 2px solid #e9e5db;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.tarif-card:hover {
  border-color: var(--azure);
  box-shadow: 0 16px 48px rgba(13, 15, 20, 0.09);
}
.tarif-card.featured {
  border-color: var(--gold);
}
.tarif-card.featured::before {
  content: "⭐ Populaire";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}
.tarif-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.tarif-price {
  font-size: 2rem;
  font-family: var(--serif);
  color: var(--azure);
  margin: 12px 0;
  line-height: 1;
}
.tarif-price span {
  font-size: 0.85rem;
  font-family: var(--sans);
  color: var(--mid);
}
.tarif-desc {
  font-size: 0.83rem;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.6;
}
.tarif-list {
  list-style: none;
}
.tarif-list li {
  font-size: 0.85rem;
  color: var(--ink);
  padding: 7px 0;
  border-bottom: 1px solid #ede9df;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.tarif-list li:last-child {
  border-bottom: none;
}
.tarif-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── Card ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: #fff;
  border: 1px solid #e9e5db;
  border-radius: 16px;
  padding: 32px 28px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 56px rgba(13, 15, 20, 0.09);
}
.card-icon {
  font-size: 1.7rem;
  margin-bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.card-body {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.card-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--azure);
  background: var(--mist);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ─── BOUTONS ─── */
.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;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  transition:
    border-color 0.25s,
    background 0.25s;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}
.btn-azure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--azure);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  transition:
    background 0.25s,
    transform 0.2s;
}
.btn-azure:hover {
  background: var(--azure-lt);
  transform: translateY(-2px);
}

/* ─── NAV SECONDAIRE (ancres) ─── */
.page-subnav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #edeae2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.page-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.subnav-link {
  display: inline-block;
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.subnav-link:hover {
  color: var(--azure);
  border-bottom-color: rgba(26, 77, 143, 0.3);
}
.subnav-link.active {
  color: var(--azure);
  border-bottom-color: var(--azure);
}

/* ─── SECTIONS ─── */
.section {
  padding: 92px 24px;
}
.section-white {
  background: #fff;
}
.section-chalk {
  background: var(--chalk);
}
.section-dark {
  background: var(--ink);
}
.section-mist {
  background: var(--mist);
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.14;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-dark .section-title {
  color: #fff;
}
.section-dark .section-label {
  color: var(--gold);
}
.section-lead {
  font-size: 1.05rem;
  color: #000;
  line-height: 1.82;
  max-width: 720px;
  margin-bottom: 36px;
}
.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.62);
}

/* ─── GRILLE 2 COLONNES ─── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.grid-2.reverse {
  direction: rtl;
}
.grid-2.reverse > * {
  direction: ltr;
}

/* ─── CHECKLIST ─── */
.checklist {
  list-style: none;
  margin-bottom: 28px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 9px 0;
  border-bottom: 1px solid #ede9df;
}
.checklist li:last-child {
  border-bottom: none;
}
.checklist .ck {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: linear-gradient(135deg, var(--gold), #e8b84b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 900;
  color: var(--ink);
}
.section-dark .checklist li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

/* ─── OFFRES CARDS ─── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.offer-card {
  background: #fff;
  border: 1px solid #e9e5db;
  border-radius: 16px;
  padding: 32px 24px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.offer-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 56px rgba(13, 15, 20, 0.1);
}
.offer-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.18);
}
.offer-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.offer-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.offer-body {
  font-size: 0.85rem;
  color: #000;
  line-height: 1.75;
  margin-bottom: 18px;
}
.offer-price {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.offer-price small {
  font-size: 0.85rem;
  color: #0c0c0c;
  font-family: var(--sans);
}
.offer-features {
  list-style: none;
  margin-bottom: 24px;
}
.offer-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid #f3f0e8;
  color: var(--ink);
}
.offer-features li:last-child {
  border-bottom: none;
}
.offer-features .ok {
  color: #22c55e;
  font-size: 0.75rem;
}
.offer-features .no {
  color: #d1d5db;
  font-size: 0.75rem;
}
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  transition:
    color 0.2s,
    gap 0.2s,
    border-color 0.2s;
}
.offer-link:hover {
  color: var(--gold);
  gap: 10px;
  border-color: var(--gold);
}

/* ─── KPI BAND ─── */
.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: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.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.08);
  transform: translateY(-4px);
}
.kpi-n {
  font-family: var(--serif);
  font-size: 3rem;
  color: #000;
  line-height: 1;
}
.kpi-n span {
  color: var(--gold);
}
.kpi-l {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 8px;
}

/* ─── PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    rgba(201, 168, 76, 0.1) 100%
  );
  z-index: 0;
}
.ps {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.ps-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px var(--chalk);
}
.ps-title {
  font-family: var(--serif);
  font-size: 0.93rem;
  margin-bottom: 7px;
  color: var(--ink);
}
.ps-desc {
  font-size: 0.78rem;
  color: #000;
  line-height: 1.65;
}

/* ─── VISUAL IMAGE ─── */
.sol-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
  height: 420px;
}
.sol-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sol-visual:hover img {
  transform: scale(1.05);
}
.sol-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 15, 20, 0.4) 0%,
    transparent 50%
  );
}
.sol-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(13, 15, 20, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
}

.sol-visual-fit {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}
.sol-visual-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sol-visual-fit:hover img {
  transform: scale(1.05);
}
.sol-visual-fit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 15, 20, 0.4) 0%,
    transparent 50%
  );
}

/* ─── TECH PILLS ─── */
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pill {
  background: var(--mist);
  border: 1px solid #d8e4f3;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--azure);
}

/* ─── SECTEURS ─── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.sector-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 28px 24px;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
a.sector-card {
  text-decoration: none;
}
.sector-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
}
.sector-icon {
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sector-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: #000;
  margin-bottom: 8px;
}
.sector-body {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.7;
}

/* ─── SEO CHECKLIST ─── */
.seo-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.seo-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #e9e5db;
  border-radius: 12px;
  padding: 20px 18px;
}
.seo-check-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.seo-check-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.seo-check-body {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── SECTEURS D'ACTIVITÉ ─── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.sector-card {
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 22px 20px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.sector-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.sector-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}
.sector-card-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #000;
  margin-bottom: 6px;
}
.sector-card-body {
  font-size: 0.82rem;
  color: #0c0c0c;
  line-height: 1.6;
}

/* ─── TABLE COMPARATIVE ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e9e5db;
}
.compare-table th {
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
}
.compare-table th:first-child {
  border-radius: 0;
}
.compare-table td {
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--ink);
  border-bottom: 1px solid #ede9df;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:hover td {
  background: var(--mist);
}
.compare-table .check {
  color: var(--gold);
  font-weight: 700;
}
.compare-table .cross {
  color: var(--rouge);
}

/* ─── TARIFS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  border: 1.5px solid #e9e5db;
  border-radius: 18px;
  padding: 38px 30px;
  background: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(13, 15, 20, 0.1);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.2);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
}
.pricing-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.pricing-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--azure);
  margin-bottom: 6px;
}
.pricing-price small {
  font-size: 1rem;
  color: var(--mid);
  font-family: var(--sans);
}
.pricing-desc {
  font-size: 0.83rem;
  color: #000;
  margin-bottom: 24px;
  line-height: 1.65;
}
.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  padding: 7px 0;
  border-bottom: 1px solid #f3f0e8;
  color: var(--ink);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features .pf-ok {
  color: #22c55e;
}
.pricing-features .pf-no {
  color: #d1d5db;
}

/* ─── TÉMOIGNAGES ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.testi-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 26px;
}
.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 0.87rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.85rem;
  color: #000;
  font-weight: 600;
}
.testi-role {
  font-size: 0.74rem;
  color: rgba(0, 0, 0, 0.7);
}

/* ─── FAQ ─── */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 56px;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.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.05rem;
  color: #000;
  gap: 16px;
}
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s;
}
.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.82;
}
.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: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  color: #000;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.cta-band h2 em {
  color: var(--gold);
  font-style: italic;
}
.cta-band p {
  color: rgba(0, 0, 0, 0.7);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-reassure {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-reassure span {
  color: #0c0c0c;
  font-size: 0.82rem;
}

/* ─── VILLES ─── */
.villes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 36px;
}
.ville-tag {
  background: #fff;
  border: 1px solid #e9e5db;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--azure);
  text-align: center;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.ville-tag:hover {
  background: var(--mist);
  border-color: var(--azure);
}
.ville-tag.primary {
  background: var(--azure);
  color: #fff;
  border-color: var(--azure);
}

/* ─── PAGES LIÉES ─── */
.related-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.related-card {
  background: #fff;
  border: 1px solid #e9e5db;
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  display: block;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(13, 15, 20, 0.08);
  border-color: var(--azure);
}
.related-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.related-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.related-card-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
}
.related-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 14px;
}

/* ─── INTERNAL LINKS ─── */
.internal-links-bar {
  background: #fff;
  border-top: 1px solid #edeae2;
  padding: 24px;
}
.internal-links-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.internal-links-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.internal-link {
  font-size: 0.83rem;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(26, 77, 143, 0.15);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.internal-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .villes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-cta-box {
    display: none;
  }
  .grid-2,
  .grid-2.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .kpi-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .process-steps::before {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sectors-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related-pages {
    grid-template-columns: 1fr 1fr;
  }
  .sol-visual {
    height: 340px;
  }
}
@media (max-width: 640px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .kpi-band-inner {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .related-pages {
    grid-template-columns: 1fr;
  }
  .villes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-hero-stats {
    width: 100%;
  }
  .page-hero-stats .phs {
    flex: 1;
    padding: 14px 12px;
  }
  .sol-visual {
    height: 260px;
  }
}
@media (max-width: 1024px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-cta-box {
    max-width: 480px;
  }
  .grid-2,
  .grid-2.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .process-steps::before {
    display: none;
  }
  .tarifs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .villes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .seo-check-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sol-visual {
    height: 320px;
  }
}
@media (max-width: 640px) {
  .cards-grid,
  .tarifs-grid,
  .testi-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .villes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .seo-check-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-stats {
    flex-wrap: wrap;
    width: 100%;
  }
  .kpi-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
