:root {
  --hc-bg: #F5F7FB;
  --hc-surface: #FFFFFF;
  --hc-surface-soft: #F9FAFB;
  --hc-border: #E5E7EB;
  --hc-text: #111827;
  --hc-text-muted: #4B5563;
  --hc-primary: #1E40AF;
  --hc-primary-soft: #EEF2FF;
  --hc-primary-hover: #1D3A8A;
  --hc-accent: #10B981;
  --hc-danger: #B91C1C;
  --hc-success: #166534;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--hc-bg);
  color: var(--hc-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--hc-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hc-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER / NAV */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hc-border);
}

.hc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.hc-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hc-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 20% 20%, #60A5FA, var(--hc-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
}

.hc-logo-text-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--hc-primary);
}

.hc-logo-text-baseline {
  font-size: 0.8rem;
  color: var(--hc-text-muted);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

nav a {
  color: var(--hc-text-muted);
  font-weight: 500;
}

nav a:hover {
  color: var(--hc-primary);
}

nav a.hc-nav-active {
  color: var(--hc-primary);
}

/* BUTTONS */

.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.hc-btn-primary {
  background: var(--hc-primary);
  color: #FFFFFF;
  border-color: var(--hc-primary);
}

.hc-btn-primary:hover {
  background: var(--hc-primary-hover);
  border-color: var(--hc-primary-hover);
  text-decoration: none;
}

.hc-btn-outline {
  background: #FFFFFF;
  color: var(--hc-primary);
  border-color: var(--hc-primary);
}

.hc-btn-outline:hover {
  background: var(--hc-primary-soft);
  text-decoration: none;
}

/* LAYOUT SECTIONS */

main {
  padding-bottom: 4rem;
}

.hc-section {
  padding: 4rem 0;
}

.hc-section--soft {
  background: var(--hc-surface);
}

.hc-section--alt {
  background: var(--hc-surface-soft);
}

.hc-section-title {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.hc-section-subtitle {
  font-size: 1rem;
  color: var(--hc-text-muted);
  max-width: 640px;
}

/* HERO */

.hc-hero {
  background: linear-gradient(180deg, var(--hc-primary-soft), #FFFFFF);
  padding: 3.5rem 0 3rem;
}

.hc-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hc-hero-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
  }
}

.hc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #E0ECFF;
  color: #1F2937;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hc-hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.hc-hero-subtitle {
  font-size: 1rem;
  color: var(--hc-text-muted);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.hc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hc-hero-note {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
}

.hc-hero-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  border: 1px solid var(--hc-border);
}

.hc-hero-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hc-hero-card-list {
  font-size: 0.9rem;
  color: var(--hc-text-muted);
  padding-left: 1.1rem;
  margin: 0.5rem 0 0.75rem;
}

.hc-hero-card-footer {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  border-top: 1px solid var(--hc-border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

/* GRID UTILITIES */

.hc-2col {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .hc-2col {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  }
}

.hc-columns-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .hc-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hc-grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .hc-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* BADGES & LISTS */

.hc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: var(--hc-primary-soft);
  color: var(--hc-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hc-pill-small {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: var(--hc-surface-soft);
  color: var(--hc-text-muted);
  font-size: 0.75rem;
}

.hc-list {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0.75rem;
  font-size: 0.95rem;
}

.hc-list li + li {
  margin-top: 0.35rem;
}

/* CARDS */

.hc-card {
  background: var(--hc-surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--hc-border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.hc-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.hc-card-label--before {
  color: var(--hc-danger);
}

.hc-card-label--after {
  color: var(--hc-success);
}

.hc-card-title {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

/* PACKS */

.hc-packs-teaser {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .hc-packs-teaser {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  }
}

.hc-pack-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .hc-pack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hc-pack-card {
  background: var(--hc-surface);
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1.25rem;
  border: 1px solid var(--hc-border);
  font-size: 0.9rem;
  position: relative;
}

.hc-pack-card--highlight {
  border-color: var(--hc-primary);
  box-shadow: 0 16px 30px rgba(30, 64, 175, 0.15);
}

.hc-pack-badge {
  position: absolute;
  top: -0.65rem;
  left: 1.1rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--hc-primary-soft);
  color: var(--hc-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hc-pack-name {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.hc-pack-price {
  font-weight: 600;
  color: var(--hc-primary);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.hc-pack-line {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
}

/* CTA */

.hc-cta {
  background: #E0ECFF;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: left;
}

@media (min-width: 900px) {
  .hc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.hc-cta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.hc-cta p {
  margin: 0 0 1rem;
  color: var(--hc-text);
}

.hc-cta-small {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  margin-top: 0.35rem;
}

/* CONTACT FORM */

.hc-form {
  max-width: 560px;
}

.hc-field {
  margin-bottom: 1rem;
}

.hc-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.hc-field input,
.hc-field textarea,
.hc-field select {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--hc-border);
  font-family: inherit;
  font-size: 0.95rem;
}

.hc-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* FOOTER */

footer {
  border-top: 1px solid var(--hc-border);
  background: var(--hc-surface);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--hc-text-muted);
}

.hc-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.hc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* RESPONSIVE NAV + HERO MOBILE */

/* Bouton burger : caché par défaut (desktop) */
.hc-nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Nav + sections sur mobile */
@media (max-width: 768px) {
  /* NAV MOBILE */
  .hc-nav {
    justify-content: space-between;
    gap: 0.75rem;
  }

  .hc-logo-text-baseline {
    max-width: 12rem;
    font-size: 0.7rem;
  }

  nav ul {
    flex-wrap: nowrap;
  }

  .hc-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
  }

  .hc-nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
    gap: 0.5rem;
  }

  .hc-nav-menu.is-open {
    display: flex;
  }

  .hc-nav-menu li {
    width: 100%;
  }

  .hc-nav-menu a {
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
  }

  .hc-nav-menu .hc-btn {
    width: 100%;
    justify-content: center;
  }

  /* Héros + sections plus compacts sur mobile */
  .hc-hero {
    padding: 2.5rem 0 2rem;
  }

  .hc-hero-title {
    font-size: 1.7rem;
  }

  .hc-hero-subtitle {
    font-size: 0.95rem;
  }

  .hc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hc-hero-actions .hc-btn {
    width: 100%;
    justify-content: center;
  }

  .hc-section {
    padding: 2.5rem 0;
  }

  .hc-section-title {
    font-size: 1.4rem;
  }

  .hc-section-subtitle {
    font-size: 0.95rem;
  }

  .hc-list {
    font-size: 0.9rem;
  }

  .hc-cta {
    text-align: left;
  }
}


/* --- Playbooks détaillés (allplaybooks.html) --- */
.hc-title {
  text-align: center;
  margin-bottom: 1.75rem;
}
.hc-title h1 {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}
.hc-title h2 {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--hc-text-muted);
  margin: 0;
}
.hc-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .hc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hc-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--hc-primary-soft);
  color: var(--hc-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.hc-highlight {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hc-border);
  color: var(--hc-text-muted);
}

/* --- Comparatif des packs --- */
.compare-card {
  margin-top: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--hc-border);
  background: var(--hc-surface);
  padding: 1.1rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
  overflow-x: auto;        /* seulement horizontal si vraiment nécessaire */
}

/* Tableau */
.compare-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

/* Largeur des colonnes : 1ère pour le texte, les autres pour les ✓ */
.compare-card th:first-child,
.compare-card td:first-child {
  width: 40%;
}

.compare-card th:nth-child(2),
.compare-card td:nth-child(2),
.compare-card th:nth-child(3),
.compare-card td:nth-child(3),
.compare-card th:nth-child(4),
.compare-card td:nth-child(4) {
  width: 20%;
}

.compare-card thead th {
  text-align: left;
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid var(--hc-border);
  font-weight: 600;
}

.compare-card thead th:nth-child(2),
.compare-card thead th:nth-child(3),
.compare-card thead th:nth-child(4) {
  text-align: center;
}

/* Corps du tableau */
.compare-card tbody td {
  padding: 0.45rem 0.6rem;
  border-bottom: 1px solid #E0E7FF;
  vertical-align: top;
}

.compare-card tbody tr:last-child td {
  border-bottom: none;
}

/* Colonnes des packs : on centre mais on laisse le texte se couper normalement */
.compare-card tbody td:nth-child(2),
.compare-card tbody td:nth-child(3),
.compare-card tbody td:nth-child(4) {
  text-align: center;
  white-space: normal;     /* IMPORTANT : plus de nowrap = plus de texte coupé */
}

/* Titre + sous-texte de la 1ère colonne */
.feat-name {
  font-weight: 500;
}

.feat-help {
  display: block;
  font-size: 0.78rem;
  color: var(--hc-text-muted);
  margin-top: 0.08rem;
  line-height: 1.4;
}

/* Badges & symboles */
.price-badge {
  display: inline-block;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--hc-primary);
  background: var(--hc-primary-soft);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.check::before {
  content: "✔";
  font-weight: 700;
}

.dash {
  color: var(--hc-text-muted);
}

.partial {
  font-size: 0.8rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: var(--hc-surface-soft);
}

.col-highlight {
  background: #EEF2FF;
}

/* Légende */
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--hc-text-muted);
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Un peu plus compact sur petits écrans */
@media (max-width: 900px) {
  .compare-card table {
    font-size: 0.8rem;
  }
}


.price-badge {
  display: inline-block;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--hc-primary);
  background: var(--hc-primary-soft);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.feat-name {
  font-weight: 500;
}

.feat-help {
  display: block;
  font-size: 0.78rem;
  color: var(--hc-text-muted);
  margin-top: 0.08rem;
}

.check {
  font-weight: 700;
}
.check::before {
  content: "✔";
}

.dash {
  color: var(--hc-text-muted);
}

.partial {
  font-size: 0.8rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: var(--hc-surface-soft);
}

.col-highlight {
  background: #EEF2FF;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--hc-text-muted);
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}


/* --- FAQ (issu de LP Offre) --- */
.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hc-primary);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.section-title {
  font-size: 1.4rem;
  margin: 0;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--hc-text-muted);
  max-width: 280px;
}

.faq-intro {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--hc-text-muted);
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq-item h3 {
  font-size: 0.98rem;
  margin: 0 0 0.25rem;
}

.faq-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--hc-text-muted);
}

/* --- CTA RDV pour les packs --- */
.cta-section {
  padding-top: 2.5rem;
}
.cta-card {
  border-radius: 18px;
  border: 1px solid var(--hc-primary-soft);
  background: linear-gradient(135deg, #EEF2FF, #F9FAFB);
  padding: 1.5rem 1.6rem;
  display: grid;
  gap: 1.3rem;
}
@media (min-width: 900px) {
  .cta-card {
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 2fr);
    align-items: center;
  }
}
.cta-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.cta-card p {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--hc-text-muted);
}
.cta-note {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
}
.rdv-box {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--hc-border);
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}
.rdv-box h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.rdv-box p {
  font-size: 0.9rem;
  margin: 0 0 0.4rem;
  color: var(--hc-text-muted);
}
.rdv-box ul {
  margin: 0 0 0.45rem 1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--hc-text-muted);
}
.rdv-box small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--hc-text-muted);
}

/* Effet accordéon sur le tableau comparatif des packs */
.packs-compare-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.packs-compare-wrapper.open {
  max-height: 2000px; /* suffisant pour le tableau complet */
}
/* === Version mobile du comparatif des packs (cartes) === */

/* Par défaut : caché (desktop) */
.packs-mobile-cards {
  display: none;
}

/* Mobile : on cache le tableau + on affiche les cartes */
@media (max-width: 768px) {
  /* On masque le bouton et le tableau détaillé sur mobile */
  #toggle-compare,
  #packs-compare-wrapper {
    display: none;
  }

  .packs-mobile-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .packs-mobile-card {
    background: var(--hc-surface);
    border-radius: 14px;
    border: 1px solid var(--hc-border);
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    font-size: 0.9rem;
  }

  .packs-mobile-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
  }

  .packs-mobile-card-name {
    font-weight: 600;
  }

  .packs-mobile-card-price {
    font-weight: 600;
    color: var(--hc-primary);
    font-size: 0.9rem;
  }

  .packs-mobile-card ul {
    margin: 0.4rem 0 0;
    padding-left: 1.1rem;
  }

  .packs-mobile-card li {
    margin-bottom: 0.25rem;
  }
}
/* Bouton primaire : même look avant/après clic */
.hc-btn-primary,
.hc-btn-primary:visited {
  color: #ffffff;
  background: var(--hc-primary);
  text-decoration: none;
}

/* Survol : un peu plus foncé, mais texte reste blanc */
.hc-btn-primary:hover {
  background: #1e40af; /* un poil plus foncé que var(--hc-primary) */
  color: #ffffff;
}

/* Focus / active pour accessibilité, sans changement de couleur de texte */
.hc-btn-primary:focus,
.hc-btn-primary:active {
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
  color: #ffffff;
}
.hc-btn-outline,
.hc-btn-outline:visited {
  color: var(--hc-primary);
  text-decoration: none;
}
/* === Landing page "Socle cyber essentiel" === */

.lp-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  }
}

.lp-hero-main {
  max-width: 640px;
}

.lp-hero-note {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--hc-text-muted);
}

.lp-hero-list {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.lp-hero-list li + li {
  margin-top: 0.25rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
}

.lp-hero-disclaimer {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--hc-text-muted);
}

/* Carte à droite du hero */

.lp-hero-card {
  border-radius: 20px;
  border: 1px solid var(--hc-border);
  background: var(--hc-surface);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
}

.lp-hero-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lp-hero-card-subtitle {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  margin-bottom: 0.7rem;
}

.lp-hero-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.lp-hero-steps li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.lp-hero-step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--hc-primary-soft);
  background: var(--hc-surface-soft);
  color: var(--hc-primary);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  flex-shrink: 0;
  font-weight: 600;
}

/* Bloc "socle 90 jours" */

.lp-socle-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .lp-socle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-socle-card {
  border-radius: 16px;
  border: 1px solid var(--hc-border);
  background: var(--hc-surface);
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lp-socle-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.lp-socle-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hc-text-muted);
  margin-bottom: 0.1rem;
}

.lp-socle-card .hc-list {
  font-size: 0.88rem;
}

.lp-socle-footer {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px dashed var(--hc-border);
  font-size: 0.8rem;
  color: var(--hc-text-muted);
}

/* Bloc secteurs */

.lp-sectors-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 900px) {
  .lp-sectors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-sector-card {
  border-radius: 16px;
  border: 1px dashed var(--hc-border);
  background: var(--hc-surface);
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.lp-sector-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.lp-sector-card p {
  font-size: 0.85rem;
}

.lp-sector-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hc-text-muted);
  margin-bottom: 0.1rem;
}

.lp-sector-link {
  display: inline-flex;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--hc-primary);
  text-decoration: none;
  font-weight: 500;
}

.lp-sector-link::after {
  content: " →";
}

.lp-sector-link:hover {
  text-decoration: underline;
}

/* Ajustements responsive */

@media (max-width: 720px) {
  .lp-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* === LP Offre & packs === */

.lp-offre-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .lp-offre-hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  }
}

.lp-offre-hero-main {
  max-width: 640px;
}

.lp-offre-hero-note {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--hc-text-muted);
}

.lp-offre-hero-list {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.lp-offre-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
}

.lp-offre-hero-disclaimer {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--hc-text-muted);
}

/* Carte "premier échange" */

.lp-offre-hero-card {
  border-radius: 20px;
  border: 1px solid var(--hc-border);
  background: var(--hc-surface);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
}

.lp-offre-hero-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lp-offre-hero-card-subtitle {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  margin-bottom: 0.7rem;
}

.lp-offre-hero-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.lp-offre-hero-steps li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.lp-offre-hero-step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--hc-primary-soft);
  background: var(--hc-surface-soft);
  color: var(--hc-primary);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  flex-shrink: 0;
  font-weight: 600;
}

.lp-offre-hero-card-line {
  margin-top: 0.7rem;
  padding-top: 0.55rem;
  border-top: 1px dashed var(--hc-border);
  font-size: 0.84rem;
}

/* Panneaux de section */

.lp-offre-panel {
  border-radius: 16px;
  border: 1px solid var(--hc-border);
  background: var(--hc-surface);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.lp-offre-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.lp-offre-section-sub {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  max-width: 260px;
  font-style: italic;
}

.lp-offre-text {
  font-size: 0.9rem;
  color: var(--hc-text);
}

/* Grilles internes */

.lp-offre-split-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.6rem;
}

@media (min-width: 900px) {
  .lp-offre-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lp-offre-block-title {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

/* Pricing */

.lp-offre-pricing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

@media (min-width: 900px) {
  .lp-offre-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-offre-pricing-card {
  border-radius: 16px;
  border: 1px solid var(--hc-border);
  background: var(--hc-surface);
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
}

.lp-offre-pricing-card--highlight {
  border-color: var(--hc-primary);
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.25);
}

.lp-offre-pricing-head {
  text-align: center;
  margin-bottom: 0.35rem;
}

.lp-offre-pack-name {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-offre-pack-price {
  margin-top: 0.08rem;
  font-size: 0.84rem;
  color: var(--hc-text-muted);
}

.lp-offre-pricing-desc {
  font-size: 0.84rem;
  color: var(--hc-text-muted);
}

.lp-offre-pack-bottom {
  margin-top: auto;
  padding-top: 0.45rem;
  border-top: 1px dashed var(--hc-border);
  font-size: 0.85rem;
}

.lp-offre-pack-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--hc-border);
  background: var(--hc-surface-soft);
  color: var(--hc-primary);
  text-decoration: none;
}

.lp-offre-pack-cta::after {
  content: "→";
}

.lp-offre-pack-cta:hover {
  border-color: var(--hc-primary);
}

/* Badge "le plus choisi" */

.lp-offre-highlight-pill {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  padding: 0.12rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--hc-success, #16a34a);
  background: var(--hc-success-soft, #dcfce7);
  color: var(--hc-success, #16a34a);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.lp-offre-highlight-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--hc-success, #16a34a);
}

/* Notes & responsive */

.lp-offre-note {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: var(--hc-text-muted);
}

@media (max-width: 720px) {
  .lp-offre-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-offre-section-header {
    flex-direction: column;
  }
}

