/* ============================================================
   GESTIYA — LANDING PAGE V2 A/B TESTING
   Produit : Template Notion Installation IDEL 2026
   Fichier : style.css
   ============================================================ */

/* ============================================================
   1. VARIABLES
   ============================================================ */

:root {
  --idel-v2-navy: #132a63;
  --idel-v2-blue: #1f3c88;
  --idel-v2-blue-soft: #eaf0ff;

  --idel-v2-turquoise: #35aebd;
  --idel-v2-turquoise-dark: #24828d;
  --idel-v2-turquoise-soft: #e8f8fa;

  --idel-v2-text: #162033;
  --idel-v2-muted: #5b6472;
  --idel-v2-light-muted: #7a8494;

  --idel-v2-bg: #f7f9fc;
  --idel-v2-white: #ffffff;
  --idel-v2-border: #e3eaf3;

  --idel-v2-radius: 22px;
  --idel-v2-radius-lg: 34px;

  --idel-v2-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --idel-v2-shadow-soft: 0 14px 38px rgba(15, 23, 42, 0.08);

  --idel-v2-max: 1180px;
}


/* ============================================================
   2. RESET / BASE
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--idel-v2-text);
  background: var(--idel-v2-bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.idel-v2 {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(53, 174, 189, 0.13), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 34%, #ffffff 100%);
}

.idel-v2-container {
  width: min(100% - 32px, var(--idel-v2-max));
  margin-inline: auto;
}


/* ============================================================
   3. HEADER
   ============================================================ */

.idel-v2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 234, 243, 0.9);
}

.idel-v2-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.idel-v2-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.idel-v2-logo img {
  height: 38px;
  width: auto;
}

.idel-v2-menu {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--idel-v2-muted);
  font-size: 14px;
  font-weight: 750;
}

.idel-v2-menu a {
  transition: color 0.18s ease;
}

.idel-v2-menu a:hover {
  color: var(--idel-v2-blue);
}


/* ============================================================
   4. BOUTONS
   ============================================================ */

.idel-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.idel-v2-btn:hover {
  transform: translateY(-2px);
}

.idel-v2-btn-primary {
  background: var(--idel-v2-blue);
  color: var(--idel-v2-white);
  box-shadow: 0 14px 35px rgba(31, 60, 136, 0.24);
}

.idel-v2-btn-primary:hover {
  background: var(--idel-v2-navy);
  box-shadow: var(--idel-v2-shadow);
}

.idel-v2-btn-secondary {
  background: var(--idel-v2-white);
  color: var(--idel-v2-blue);
  border-color: var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow-soft);
}

.idel-v2-btn-secondary:hover {
  border-color: var(--idel-v2-blue);
}

.idel-v2-btn-light {
  background: var(--idel-v2-white);
  color: var(--idel-v2-navy);
  box-shadow: none;
}

.idel-v2-btn-full {
  width: 100%;
}

.idel-v2-header-cta {
  display: none;
  min-height: 44px;
  padding: 13px 20px;
  font-size: 14px;
}


/* ============================================================
   5. HERO
   ============================================================ */

.idel-v2-hero {
  padding: 70px 0 54px;
}

.idel-v2-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.idel-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--idel-v2-turquoise-soft);
  color: var(--idel-v2-turquoise-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.idel-v2-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--idel-v2-navy);
  font-size: clamp(39px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.idel-v2-hero-text {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--idel-v2-muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.58;
}

.idel-v2-hero-proof {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.idel-v2-hero-proof span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--idel-v2-white);
  border: 1px solid var(--idel-v2-border);
  color: var(--idel-v2-navy);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.idel-v2-price-line {
  margin-top: 26px;
}

.idel-v2-price-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--idel-v2-white);
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow-soft);
}

.idel-v2-price-label,
.idel-v2-price-note {
  color: var(--idel-v2-muted);
  font-size: 14px;
  font-weight: 750;
}

.idel-v2-price-box strong {
  color: var(--idel-v2-navy);
  font-size: 31px;
  line-height: 1;
}

.idel-v2-actions {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.idel-v2-microcopy {
  margin: 16px 0 0;
  max-width: 650px;
  color: var(--idel-v2-light-muted);
  font-size: 14px;
}


/* ============================================================
   6. IMAGE HERO
   ============================================================ */

.idel-v2-hero-visual {
  position: relative;
}

.idel-v2-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--idel-v2-radius-lg);
  background: var(--idel-v2-white);
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow);
}

.idel-v2-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.idel-v2-image-frame img {
  width: 100%;
  height: auto;
}

.idel-v2-floating-card {
  display: none;
  position: absolute;
  z-index: 2;
  max-width: 230px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow-soft);
  backdrop-filter: blur(16px);
}

.idel-v2-floating-card strong {
  display: block;
  color: var(--idel-v2-navy);
  font-size: 15px;
}

.idel-v2-floating-card span {
  display: block;
  margin-top: 2px;
  color: var(--idel-v2-muted);
  font-size: 13px;
  line-height: 1.35;
}

.idel-v2-floating-card-one {
  top: 22px;
  left: -18px;
}

.idel-v2-floating-card-two {
  right: -18px;
  bottom: 28px;
}


/* ============================================================
   7. BARRE DE RÉASSURANCE
   ============================================================ */

.idel-v2-trust {
  padding: 12px 0 54px;
}

.idel-v2-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.idel-v2-trust-grid div {
  padding: 18px;
  border-radius: 18px;
  background: var(--idel-v2-white);
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow-soft);
}

.idel-v2-trust-grid strong {
  display: block;
  color: var(--idel-v2-navy);
  font-size: 15px;
}

.idel-v2-trust-grid span {
  display: block;
  margin-top: 4px;
  color: var(--idel-v2-muted);
  font-size: 14px;
}


/* ============================================================
   8. SECTIONS GÉNÉRALES
   ============================================================ */

.idel-v2-section {
  padding: 82px 0;
}

.idel-v2-section-white {
  background: var(--idel-v2-white);
}

.idel-v2-section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.idel-v2-section-kicker {
  margin: 0 0 10px;
  color: var(--idel-v2-turquoise-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idel-v2-section h2,
.idel-v2-section-heading h2,
.idel-v2-offer h2,
.idel-v2-final h2 {
  margin: 0;
  color: var(--idel-v2-navy);
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.idel-v2-section-heading p {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--idel-v2-muted);
  font-size: 18px;
}

.idel-v2-large-text {
  margin: 18px 0 0;
  color: var(--idel-v2-muted);
  font-size: 18px;
}


/* ============================================================
   9. SECTION PROBLÈME — CARTES PREMIUM
   Couleurs : #001840 et #32A1AE
   ============================================================ */

.idel-v2-problem-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.idel-v2-problem-heading {
  max-width: 920px;
  margin: 0 auto 54px;
  text-align: center;
}

.idel-v2-problem-heading .idel-v2-section-kicker {
  color: #32A1AE;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idel-v2-problem-heading h2 {
  margin: 0 0 18px;
  color: #001840;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.idel-v2-problem-heading p {
  margin: 0 auto;
  max-width: 860px;
  color: #5e6b7a;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.idel-v2-problem-grid,
.idel-v2-problem-grid-pro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.idel-v2-problem-card {
  position: relative;
  padding: 34px 30px 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(0, 24, 64, 0.08);
  box-shadow: 0 16px 40px rgba(0, 24, 64, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.idel-v2-problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #001840 0%, #32A1AE 100%);
}

.idel-v2-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 24, 64, 0.12);
  border-color: rgba(50, 161, 174, 0.22);
}

.idel-v2-problem-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(50, 161, 174, 0.12);
  color: #001840;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.idel-v2-problem-card h3 {
  margin: 0 0 14px;
  color: #001840;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.idel-v2-problem-card p {
  margin: 0;
  color: #5e6b7a;
  font-size: 18px;
  line-height: 1.7;
}

/* Garder le style des autres cartes de la page */
.idel-v2-feature-card {
  padding: 26px;
  border-radius: var(--idel-v2-radius);
  background: var(--idel-v2-white);
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow-soft);
}

.idel-v2-feature-card h3,
.idel-v2-steps h3,
.idel-v2-compare-card h3 {
  margin: 0 0 10px;
  color: var(--idel-v2-navy);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.idel-v2-feature-card p,
.idel-v2-steps p {
  margin: 0;
  color: var(--idel-v2-muted);
}

/* Desktop */
@media (min-width: 860px) {
  .idel-v2-problem-grid,
  .idel-v2-problem-grid-pro {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .idel-v2-problem-card {
    min-height: 280px;
  }
}

/* Tablette */
@media (min-width: 600px) and (max-width: 859px) {
  .idel-v2-problem-grid,
  .idel-v2-problem-grid-pro {
    grid-template-columns: 1fr 1fr;
  }

  .idel-v2-problem-card:last-child {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 599px) {
  .idel-v2-problem-heading {
    margin-bottom: 34px;
  }

  .idel-v2-problem-card {
    padding: 26px 22px 24px;
    border-radius: 22px;
  }

  .idel-v2-problem-card h3 {
    font-size: 24px;
  }

  .idel-v2-problem-card p {
    font-size: 16px;
  }

  .idel-v2-problem-badge {
    font-size: 12px;
    padding: 9px 14px;
  }
}

/* ============================================================
   10. SECTION SOLUTION
   ============================================================ */

.idel-v2-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.idel-v2-check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.idel-v2-check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--idel-v2-muted);
  font-weight: 650;
}

.idel-v2-check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--idel-v2-turquoise-soft);
  color: var(--idel-v2-turquoise-dark);
  font-weight: 950;
  font-size: 13px;
}

.idel-v2-solution-panel {
  padding: 18px;
  border-radius: var(--idel-v2-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(53, 174, 189, 0.18), transparent 20rem),
    linear-gradient(135deg, var(--idel-v2-blue-soft), #ffffff);
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow);
}

.idel-v2-dashboard-mini {
  overflow: hidden;
  border-radius: 24px;
  background: var(--idel-v2-white);
  border: 1px solid var(--idel-v2-border);
}

.idel-v2-dashboard-header {
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--idel-v2-navy);
}

.idel-v2-dashboard-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--idel-v2-turquoise);
}

.idel-v2-dashboard-header span:nth-child(2) {
  background: var(--idel-v2-blue-soft);
}

.idel-v2-dashboard-header span:nth-child(3) {
  background: #ffffff;
}

.idel-v2-dashboard-body {
  padding: 24px;
}

.idel-v2-dashboard-label {
  margin: 0 0 18px;
  color: var(--idel-v2-navy);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.idel-v2-dashboard-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.idel-v2-dashboard-cards div {
  padding: 16px;
  border-radius: 17px;
  background: var(--idel-v2-bg);
  border: 1px solid var(--idel-v2-border);
}

.idel-v2-dashboard-cards strong {
  display: block;
  color: var(--idel-v2-navy);
  font-size: 15px;
}

.idel-v2-dashboard-cards span {
  display: block;
  margin-top: 4px;
  color: var(--idel-v2-muted);
  font-size: 14px;
}

.idel-v2-progress {
  margin-top: 18px;
  height: 10px;
  border-radius: 999px;
  background: var(--idel-v2-blue-soft);
  overflow: hidden;
}

.idel-v2-progress span {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: var(--idel-v2-turquoise);
}

.idel-v2-dashboard-note {
  margin: 16px 0 0;
  color: var(--idel-v2-muted);
  font-size: 14px;
}


/* ============================================================
   11. FEATURES / CONTENU INCLUS
   ============================================================ */

.idel-v2-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.idel-v2-feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--idel-v2-turquoise-soft);
  color: var(--idel-v2-turquoise-dark);
  font-weight: 950;
  font-size: 20px;
}


/* ============================================================
   12. COMPARAISON AVANT / APRÈS
   ============================================================ */

.idel-v2-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.idel-v2-compare-card {
  padding: 30px;
  border-radius: var(--idel-v2-radius-lg);
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow-soft);
}

.idel-v2-compare-muted {
  background: #ffffff;
}

.idel-v2-compare-strong {
  background:
    radial-gradient(circle at top right, rgba(53, 174, 189, 0.26), transparent 20rem),
    linear-gradient(135deg, var(--idel-v2-navy), var(--idel-v2-blue));
  color: #ffffff;
}

.idel-v2-compare-label {
  margin: 0 0 10px;
  color: var(--idel-v2-turquoise-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idel-v2-compare-strong .idel-v2-compare-label,
.idel-v2-compare-strong h3 {
  color: #ffffff;
}

.idel-v2-compare-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.idel-v2-compare-card li {
  display: flex;
  gap: 10px;
  color: var(--idel-v2-muted);
}

.idel-v2-compare-card li::before {
  content: "•";
  color: var(--idel-v2-turquoise);
  font-weight: 950;
}

.idel-v2-compare-strong li {
  color: rgba(255, 255, 255, 0.9);
}


/* ============================================================
   13. ÉTAPES D’UTILISATION
   ============================================================ */

.idel-v2-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.idel-v2-steps article {
  padding: 28px;
  border-radius: var(--idel-v2-radius);
  background: var(--idel-v2-white);
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow-soft);
}

.idel-v2-steps span {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--idel-v2-blue);
  color: #ffffff;
  font-weight: 950;
}


/* ============================================================
   14. OFFRE / PRIX
   ============================================================ */

.idel-v2-offer-section {
  background:
    radial-gradient(circle at top right, rgba(53, 174, 189, 0.14), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.idel-v2-offer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: var(--idel-v2-radius-lg);
  background: #ffffff;
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow);
}

.idel-v2-offer-content p {
  margin: 18px 0 0;
  color: var(--idel-v2-muted);
  font-size: 18px;
}

.idel-v2-offer-card {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(53, 174, 189, 0.2), transparent 18rem),
    var(--idel-v2-bg);
  border: 1px solid var(--idel-v2-border);
  text-align: center;
}

.idel-v2-offer-label {
  margin: 0;
  color: var(--idel-v2-turquoise-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idel-v2-offer-price {
  margin-top: 8px;
  color: var(--idel-v2-navy);
  font-size: 62px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.idel-v2-offer-note,
.idel-v2-secure-note {
  color: var(--idel-v2-muted);
  font-size: 14px;
}

.idel-v2-secure-note {
  margin: 14px 0 0;
}


/* ============================================================
   15. FAQ
   ============================================================ */

.idel-v2-faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.idel-v2-faq details {
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--idel-v2-white);
  border: 1px solid var(--idel-v2-border);
  box-shadow: var(--idel-v2-shadow-soft);
}

.idel-v2-faq summary {
  cursor: pointer;
  color: var(--idel-v2-navy);
  font-weight: 900;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.idel-v2-faq summary::-webkit-details-marker {
  display: none;
}

.idel-v2-faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--idel-v2-blue-soft);
  color: var(--idel-v2-blue);
}

.idel-v2-faq details[open] summary::after {
  content: "–";
}

.idel-v2-faq p {
  margin: 12px 0 0;
  color: var(--idel-v2-muted);
}


/* ============================================================
   16. CTA FINAL
   ============================================================ */

.idel-v2-final {
  padding: 76px 0;
  background:
    radial-gradient(circle at top right, rgba(53, 174, 189, 0.35), transparent 24rem),
    linear-gradient(135deg, var(--idel-v2-navy), var(--idel-v2-blue));
  color: #ffffff;
  text-align: center;
}

.idel-v2-final h2 {
  max-width: 860px;
  margin-inline: auto;
  color: #ffffff;
}

.idel-v2-final p {
  max-width: 720px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}


/* ============================================================
   17. FOOTER
   ============================================================ */

.idel-v2-footer {
  padding: 26px 0 88px;
  background: var(--idel-v2-navy);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.idel-v2-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.idel-v2-footer p {
  margin: 0;
  font-size: 14px;
}

.idel-v2-footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.idel-v2-footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}


/* ============================================================
   18. CTA MOBILE FIXE
   ============================================================ */

.idel-v2-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: block;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--idel-v2-border);
  box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}

.idel-v2-mobile-cta a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--idel-v2-blue);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(31, 60, 136, 0.24);
}


/* ============================================================
   19. RESPONSIVE TABLETTE
   ============================================================ */

@media (min-width: 640px) {
  .idel-v2-actions {
    flex-direction: row;
    align-items: center;
  }

  .idel-v2-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .idel-v2-dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .idel-v2-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   20. RESPONSIVE DESKTOP
   ============================================================ */

@media (min-width: 860px) {
  .idel-v2-header-cta {
    display: inline-flex;
  }

  .idel-v2-menu {
    display: flex;
  }

  .idel-v2-hero {
    padding: 94px 0 64px;
  }

  .idel-v2-hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 58px;
  }

  .idel-v2-floating-card {
    display: block;
  }

  .idel-v2-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .idel-v2-problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .idel-v2-split {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .idel-v2-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .idel-v2-compare {
    grid-template-columns: 1fr 1fr;
  }

  .idel-v2-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .idel-v2-offer {
    grid-template-columns: 1.25fr 0.75fr;
    padding: 42px;
  }

  .idel-v2-footer {
    padding-bottom: 28px;
  }

  .idel-v2-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .idel-v2-mobile-cta {
    display: none;
  }
}


/* ============================================================
   21. RESPONSIVE MOBILE
   ============================================================ */

@media (max-width: 520px) {
  .idel-v2-container {
    width: min(100% - 24px, var(--idel-v2-max));
  }

  .idel-v2-header {
    position: static;
  }

  .idel-v2-nav {
    min-height: 64px;
  }

  .idel-v2-logo img {
    height: 34px;
  }

  .idel-v2-hero {
    padding: 42px 0 38px;
  }

  .idel-v2-hero h1 {
    font-size: clamp(36px, 12vw, 46px);
  }

  .idel-v2-hero-text {
    font-size: 17px;
  }

  .idel-v2-price-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    border-radius: 22px;
  }

  .idel-v2-btn {
    width: 100%;
  }

  .idel-v2-section {
    padding: 62px 0;
  }

  .idel-v2-card,
  .idel-v2-feature-card,
  .idel-v2-steps article,
  .idel-v2-compare-card,
  .idel-v2-offer-card {
    padding: 22px;
  }

  .idel-v2-offer {
    padding: 20px;
  }

  .idel-v2-faq details {
    padding: 18px;
  }
}


/* ============================================================
   IMAGE REMPLACE SECTION SOLUTION — LP V2
   ============================================================ */

.idel-v2-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.idel-v2-solution-text {
  max-width: 620px;
}

.idel-v2-solution-image-panel {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  justify-self: center;
}

.idel-v2-solution-image {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  border: 1px solid #e3eaf3;
  background: #ffffff;
}

/* Desktop : texte à gauche, image à droite */
@media (min-width: 860px) {
  .idel-v2-split {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 58px;
  }

  .idel-v2-solution-image-panel {
    justify-self: end;
  }
}

/* Mobile / tablette : image sous le texte */
@media (max-width: 859px) {
  .idel-v2-solution-text {
    max-width: 100%;
  }

  .idel-v2-solution-image {
    max-width: 100%;
    border-radius: 22px;
  }
}
/* ============================================================
   FOOTER LÉGAL + POPUPS — VERSION CLOUDFLARE
   ============================================================ */

:root {
  --primary: #1f3c88;
  --primary-dark: #132a63;
  --primary-soft: #eaf0ff;
  --accent: #35aebd;
  --accent-dark: #24828d;
  --surface: #f7f9fc;
  --text: #162033;
  --muted: #5b6472;
  --border: #e3eaf3;
  --white: #ffffff;
  --max-width: 1180px;
}

/* Footer légal */

.idel-lp-footer-legal {
  padding: 24px 0;
  background: var(--primary-dark);
  color: var(--primary-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.idel-lp-footer-legal-inner {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.idel-lp-footer-brand {
  margin: 0;
  font-size: 14px;
  color: var(--primary-soft);
}

.idel-lp-footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}

.idel-lp-modal-link {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--primary-soft);
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.idel-lp-modal-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Popups */

.idel-lp-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.idel-lp-modal.is-open {
  display: flex;
}

.idel-lp-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
}

.idel-lp-modal-box {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  max-height: 86vh;
  overflow-y: auto;
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
  border: 1px solid var(--border);
}

.idel-lp-modal-box-large {
  width: min(100%, 780px);
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.idel-lp-modal-box h2 {
  margin: 0 0 16px;
  color: var(--primary-dark);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.idel-lp-modal-scroll-content {
  overflow-y: auto;
  max-height: 58vh;
  padding-right: 12px;
  margin-top: 8px;
}

.idel-lp-modal-scroll-content h3 {
  margin: 22px 0 8px;
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1.3;
}

.idel-lp-modal-scroll-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.idel-lp-modal-scroll-content ul {
  margin: 0 0 16px 20px;
  padding: 0;
  color: var(--muted);
}

.idel-lp-modal-scroll-content li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.idel-lp-modal-scroll-content strong {
  color: var(--primary-dark);
}

/* Scroll popup */

.idel-lp-modal-scroll-content::-webkit-scrollbar {
  width: 8px;
}

.idel-lp-modal-scroll-content::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 999px;
}

.idel-lp-modal-scroll-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 999px;
}

.idel-lp-modal-scroll-content::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Boutons popup */

.idel-lp-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary-dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.idel-lp-modal-close:hover {
  background: var(--primary-soft);
}

.idel-lp-modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.idel-lp-modal-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  text-decoration: none;
}

.idel-lp-modal-button-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

body.idel-lp-modal-open {
  overflow: hidden;
}

/* Contact popup */

.idel-lp-contact-form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.idel-lp-contact-form button,
.idel-lp-contact-form a {
  margin-top: 4px;
  width: fit-content;
}

/* Responsive footer + popups */

@media (max-width: 640px) {
  .idel-lp-footer-legal-inner {
    justify-content: center;
    text-align: center;
  }

  .idel-lp-footer-links {
    justify-content: center;
  }

  .idel-lp-modal {
    padding: 16px;
  }

  .idel-lp-modal-box,
  .idel-lp-modal-box-large {
    max-height: 90vh;
    padding: 28px 20px 22px;
    border-radius: 20px;
  }

  .idel-lp-modal-scroll-content {
    max-height: 62vh;
  }

  .idel-lp-modal-actions {
    flex-direction: column;
  }

  .idel-lp-modal-button-secondary {
    width: 100%;
  }

  .idel-lp-contact-form button,
  .idel-lp-contact-form a {
    width: 100%;
  }
}