/* ==========================================================================
   ITL PDP v4 — Design System
   Extracted from programme-pdp.php
   Palette: navy #0b1630 · gold #e8b422 · green #10b981
   ========================================================================== */

/* ── Theme reset (kills Eduma/theme bleed-in) ───────────────────────────── */
.itl-pdp,
.itl-pdp * {
  background-color: unset;
}

/* Re-allow backgrounds we explicitly set */
.itl-hero,
.itl-hero__bg,
.itl-hero__accent,
.itl-hero__form,
.itl-stats,
.itl-stat,
.itl-nav,
.itl-body,
.itl-section,
.itl-presentation,
.itl-dfr-card,
.itl-dfr-card__icon,
.itl-accordion__item summary,
.itl-accordion__item details[open] summary,
.itl-accordion__body,
.itl-org-item,
.itl-debouche,
.itl-debouche__icon,
.itl-prog__item summary,
.itl-prog__item details[open] summary,
.itl-prog__body,
.itl-prog__module,
.itl-tech__pill,
.itl-why__card,
.itl-who__item,
.itl-sidebar-cta,
.itl-sidebar-box,
.itl-sidebar-box__head,
.itl-sidebar-certs,
.itl-sidebar-cert__star,
.itl-tarifs,
.itl-tarifs__head,
.itl-tarif,
.itl-tarif--gold,
.itl-sidebar-dfr,
.itl-partners,
.itl-partners__logo,
.itl-banner,
.itl-banner::before,
.itl-hero__deco,
.itl-admit-badge,
.itl-bullets li::before,
.itl-hero__bullets li::before,
.itl-debouche__salary,
.itl-prog__tag,
.itl-prog__count,
.itl-prog__chevron,
.itl-accordion__chevron,
.itl-section__icon,
.itl-who__item::before,
.itl-nav__cta,
.itl-sidebar-cta::before,
.itl-sidebar-cta__btn--primary,
.itl-sidebar-cta__btn--wa,
.itl-banner__btn--primary,
.itl-banner__btn--wa,
.itl-hero__cta--primary,
.itl-hero__cta--wa,
.itl-hero__cta--pdf,
.itl-form-submit,
.itl-form-notice--ok,
.itl-form-notice--err,
.itl-hero__tag,
.itl-hero__pill,
.itl-hero__pill--gold {
  background-color: revert;
}

.itl-pdp {
  width: 100% !important;
  max-width: none !important;
}

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --itl-navy:      #0b1630;
  --itl-navy2:     #131f3e;
  --itl-gold:      #e8b422;
  --itl-gold-lt:   rgba(232,180,34,.1);
  --itl-green:     #10b981;
  --itl-red:       #ef4444;
  --itl-gray:      #6b7494;
  --itl-light:     #f4f6fb;
  --itl-border:    #e4e8f2;
  --itl-text:      #1e2a4a;
  --itl-muted:     #64748b;
  --itl-r-sm:      8px;
  --itl-r-md:      12px;
  --itl-r-lg:      16px;
  --itl-r-xl:      20px;
  --itl-shadow:    0 2px 12px rgba(11,22,48,.07);
  --itl-shadow-md: 0 4px 24px rgba(11,22,48,.11);
}

.itl-pdp {
  font-family: inherit;
  color: var(--itl-text);
}

.itl-pdp *,
.itl-pdp *::before,
.itl-pdp *::after {
  box-sizing: border-box;
}

.itl-pdp [id] {
  scroll-margin-top: 80px;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════ */
.itl-hero {
  position: relative;
  overflow: hidden;
}

.itl-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--itl-cf) 0%, var(--itl-ct) 100%);
}

.itl-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, transparent 60%);
}

.itl-hero__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px; z-index: 3;
  background: linear-gradient(90deg, transparent 0%, var(--itl-gold) 40%, var(--itl-gold) 60%, transparent 100%);
  opacity: .9;
}

.itl-hero__deco {
  position: absolute;
  right: -120px; top: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  background: radial-gradient(circle at center, rgba(255,255,255,.04) 0%, transparent 70%);
  z-index: 1;
}

.itl-hero__inner {
  position: relative; z-index: 2;
  max-width: 1380px; margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 40px) 28px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}

.itl-hero__content {
  display: flex;
  flex-direction: column; 
  gap: 10px;
}

/* Eyebrow */
.itl-hero__eyebrow {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center; margin-bottom: 24px;
}

.itl-hero__tag {
  font-size: 10px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--itl-gold);
  background: rgba(232,180,34,.12);
  border: 1px solid rgba(232,180,34,.25);
  padding: 3px 10px; border-radius: 100px;
}

.itl-hero__pill {
  font-size: 11px; font-weight: 600;
  padding: 3px 11px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.06);
}

.itl-hero__pill--gold {
  border-color: rgba(232,180,34,.35);
  color: var(--itl-gold);
  background: rgba(232,180,34,.1);
}

/* Title */
.itl-hero__title {
  margin: 0 0 28px;
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -.03em;
}

.itl-hero__tagline {
  margin: 0 0 22px;
  font-size: 15.5px; line-height: 1.7;
  color: rgba(255,255,255,.72); max-width: 540px;
}

/* Key bullets */
.itl-hero__bullets {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}

.itl-hero__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.88); line-height: 1.5;
}

.itl-hero__bullets li::before {
  content: '';
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
  background: rgba(232,180,34,.18) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6L5 8.5L9.5 4' stroke='%23e8b422' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 12px;
  border: 1.5px solid rgba(232,180,34,.45);
  border-radius: 50%;
}

/* Hero CTAs */
.itl-hero__ctas {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.itl-hero__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 14px;
  padding: 13px 22px; border-radius: var(--itl-r-md);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.itl-hero__cta:hover { transform: translateY(-1px); }

.itl-hero__cta--primary {
  background: var(--itl-gold); color: #060d1f;
  box-shadow: 0 4px 16px rgba(232,180,34,.4);
}
.itl-hero__cta--primary:hover { box-shadow: 0 6px 24px rgba(232,180,34,.55); }

.itl-hero__cta--wa {
  background: rgba(37,211,102,.14); color: #25d366;
  border: 1.5px solid rgba(37,211,102,.35);
}

.itl-hero__cta--pdf {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.82);
  border: 1.5px solid rgba(255,255,255,.18);
}

/* ── Hero Form ────────────────────────────────────────────────────────────── */
.itl-hero__form {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--itl-r-xl);
  padding: 26px; position: relative; z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.itl-hero__form-title {
  margin: 0 0 4px; font-size: 17px; font-weight: 800; color: #fff;
}

.itl-hero__form-sub {
  margin: 0 0 18px; font-size: 12px; color: rgba(255,255,255,.45);
}

.itl-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}

.itl-form-field { margin-bottom: 10px; }

.itl-form-field label {
  display: block; font-size: 10.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 5px;
}

.itl-form-field input,
.itl-form-field select {
  width: 100%;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--itl-r-sm);
  padding: 10px 13px; font-size: 13px;
  color: #fff; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}

.itl-form-field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='white' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 34px;
}

.itl-form-field select option { background: #1a2d6e; color: #fff; }

.itl-form-field input:focus,
.itl-form-field select:focus {
  outline: none; border-color: var(--itl-gold);
  box-shadow: 0 0 0 3px rgba(232,180,34,.18);
}

.itl-form-field input::placeholder { color: rgba(255,255,255,.3); }

.itl-form-submit {
  width: 100%; background: var(--itl-gold); color: #060d1f;
  font-weight: 800; font-size: 14px;
  border: none; border-radius: var(--itl-r-sm); padding: 13px;
  cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 14px rgba(232,180,34,.35);
  transition: opacity .15s, transform .15s;
}
.itl-form-submit:hover:not(:disabled) { opacity: .92; transform: translateY(-1px); }
.itl-form-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.itl-form-notice {
  padding: 10px 14px; border-radius: var(--itl-r-sm);
  font-size: 13px; margin-bottom: 12px;
  display: none; line-height: 1.5;
}
.itl-form-notice--ok  { background: rgba(16,185,129,.14); border: 1px solid rgba(16,185,129,.3); color: #34d399; }
.itl-form-notice--err { background: rgba(239,68,68,.14);  border: 1px solid rgba(239,68,68,.3);  color: #f87171; }

.itl-form-secure { margin: 10px 0 0; font-size: 11px; color: rgba(255,255,255,.32); text-align: center; }

/* ══════════════════════════════════════════════════════════════════════════
   STICKY NAV BAR
══════════════════════════════════════════════════════════════════════════ */
.itl-nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--itl-border);
  box-shadow: 0 1px 8px rgba(11,22,48,.06);
}

.itl-nav__inner {
  max-width: 1360px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 24px;
  overflow-x: auto; scrollbar-width: none;
}
.itl-nav__inner::-webkit-scrollbar { display: none; }

.itl-nav__link {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px; font-size: 13px; font-weight: 600;
  color: var(--itl-muted); text-decoration: none;
  white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.itl-nav__link:hover { color: var(--itl-navy); border-color: var(--itl-border); }
.itl-nav__link.active { color: var(--itl-navy); border-color: var(--itl-gold); }

.itl-nav__cta {
  margin-left: auto; flex-shrink: 0;
  padding: 8px 18px; background: var(--itl-gold);
  color: #060d1f; font-weight: 800; font-size: 13px;
  border-radius: var(--itl-r-sm); text-decoration: none;
  white-space: nowrap; transition: opacity .15s;
}
.itl-nav__cta:hover { opacity: .88; }

/* ══════════════════════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════════════════════ */
.itl-stats {
  background: var(--itl-navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.itl-stats__inner {
  max-width: 1220px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.itl-stat {
  padding: 24px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
}
.itl-stat:last-child { border-right: none; }
.itl-stat__icon { font-size: 22px; margin-bottom: 6px; line-height: 1; }
.itl-stat__value { font-size: 14px; font-weight: 900; color: var(--itl-gold); letter-spacing: -.02em; margin-bottom: 3px; }
.itl-stat__label { font-size: 11.5px; color: rgba(255,255,255,.5); line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════════════════
   BODY LAYOUT
══════════════════════════════════════════════════════════════════════════ */
.itl-body {
  max-width: 1380px; margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 40px) 28px;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 44px; align-items: start;
}

.itl-section { margin-bottom: 36px; }
.itl-section:last-child { margin-bottom: 0; }

.itl-section__head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }

.itl-section__icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, var(--itl-cf), var(--itl-ct));
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}

.itl-section__title {
  font-size: 19px; font-weight: 800; color: var(--itl-navy);
  margin: 0; flex: 1; letter-spacing: -.015em;
}

.itl-section__line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, var(--itl-border), transparent);
}

/* ── Bullets ──────────────────────────────────────────────────────────────── */
.itl-bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}

.itl-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--itl-text); line-height: 1.6;
}

.itl-bullets li::before {
  content: ''; flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: var(--itl-gold-lt) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='%23e8b422' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 12px;
  border: 1px solid rgba(232,180,34,.3);
}

.itl-bullets--arrow li::before {
  background: #f0f4ff url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6H10M7 3L10 6L7 9' stroke='%234f46e5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 12px;
  border-color: #c7d2fe;
}

.itl-bullets--check li::before {
  background: rgba(16,185,129,.1) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='%2310b981' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 12px;
  border-color: rgba(16,185,129,.3);
}

/* ── Presentation ─────────────────────────────────────────────────────────── */
.itl-presentation {
  font-size: 15.5px; line-height: 1.8; color: var(--itl-text);
  background: #f4f6fb !important; background-color: #f4f6fb !important;
  border-radius: 0 var(--itl-r-md) var(--itl-r-md) 0;
  padding: 20px 22px; margin: 0;
}

/* ── Double diplomation card ──────────────────────────────────────────────── */
.itl-dfr-card {
  background: #fff;
  border: 1.5px solid var(--itl-border);;
  border-radius: var(--itl-r-lg);
  padding: 24px 26px;
  display: flex; gap: 18px; align-items: flex-start;
}

.itl-dfr-card__title { font-size: 15px; font-weight: 800; margin: 0 0 4px; }
.itl-dfr-card__sub   { font-size: 13px; margin: 0 0 14px; line-height: 1.5; }

/* ── Accordion ────────────────────────────────────────────────────────────── */
.itl-accordion { display: flex; flex-direction: column; gap: 6px; }

.itl-accordion__item {
  border: 1px solid var(--itl-border); border-radius: var(--itl-r-md);
  overflow: hidden; box-shadow: var(--itl-shadow);
}

.itl-accordion__item summary {
  padding: 16px 20px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 14.5px; color: var(--itl-navy);
  display: flex; align-items: center; gap: 10px;
  background: #fff; transition: background .15s; user-select: none;
}
.itl-accordion__item summary:hover           { background: var(--itl-light); }
.itl-accordion__item details[open] summary   { background: var(--itl-light); border-bottom: 1px solid var(--itl-border); }

.itl-accordion__chevron {
  margin-left: auto;
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--itl-light) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236b7494' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 12px;
  border-radius: 50%; border: 1px solid var(--itl-border);
  transition: transform .2s;
}
.itl-accordion__item details[open] .itl-accordion__chevron { transform: rotate(180deg); }

.itl-accordion__body { padding: 18px 20px 22px; background: #fafbfe; }

/* ── Org grid ─────────────────────────────────────────────────────────────── */
.itl-org-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }

.itl-org-item {
  background: #fff; border: 1px solid var(--itl-border);
  border-radius: var(--itl-r-sm); padding: 12px 14px;
  display: flex; align-items: flex-start; gap: 10px;
}
.itl-org-item__icon  { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.itl-org-item__label { font-size: 11px; color: var(--itl-muted); margin-bottom: 2px; }
.itl-org-item__val   { font-size: 13px; font-weight: 700; color: var(--itl-navy); line-height: 1.3; }

/* Admission badge */
.itl-admit-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700;
  background: linear-gradient(135deg, var(--itl-cf), var(--itl-ct));
  color: #fff; padding: 5px 12px 5px 8px; border-radius: 100px; margin-bottom: 10px;
}
.itl-admit-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--itl-gold); flex-shrink: 0; }

/* ── Debouches ────────────────────────────────────────────────────────────── */
.itl-debouches { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }

.itl-debouche {
  background: #fff; border: 1px solid var(--itl-border);
  border-radius: var(--itl-r-md); padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: box-shadow .2s, transform .2s; box-shadow: var(--itl-shadow);
}
.itl-debouche:hover { box-shadow: var(--itl-shadow-md); transform: translateY(-2px); }

.itl-debouche__icon {
  font-size: 26px; flex-shrink: 0; line-height: 1;
  background: var(--itl-light); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--itl-r-sm);
}
.itl-debouche__title   { font-size: 13px; font-weight: 700; color: var(--itl-navy); line-height: 1.35; }
.itl-debouche__salary  { font-size: 10px; font-weight: 700; color: var(--itl-gold); background: var(--itl-gold-lt); padding: 2px 8px; border-radius: 100px; display: inline-block; }

/* ── Programme accordion ─────────────────────────────────────────────────── */
.itl-prog { display: flex; flex-direction: column; gap: 6px; }

.itl-prog__item {
  border: 1px solid var(--itl-border); border-radius: var(--itl-r-md);
  overflow: hidden; box-shadow: var(--itl-shadow);
}

.itl-prog__item:last-child .itl-prog__count{
  display: none;
}

.itl-prog__item summary {
  padding: 15px 18px; cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 12px;
  background: #fff; transition: background .15s; user-select: none;
}
.itl-prog__item summary:hover          { background: var(--itl-light); }
.itl-prog__item details[open] summary  { background: var(--itl-light); border-bottom: 1px solid var(--itl-border); }

.itl-prog__tag {
  font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #7c3aed; background: #f5f3ff; border: 1px solid #ddd6fe;
  padding: 3px 9px; border-radius: 100px; flex-shrink: 0;
}
.itl-prog__sub   { font-size: 14px; font-weight: 700; color: var(--itl-navy); flex: 1; }
.itl-prog__count {
  font-size: 11px; font-weight: 600; color: var(--itl-muted);
  background: var(--itl-light); padding: 2px 9px; border-radius: 100px;
  border: 1px solid var(--itl-border); flex-shrink: 0;
}

.itl-prog__chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--itl-light) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236b7494' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 12px;
  border-radius: 50%; border: 1px solid var(--itl-border); transition: transform .2s;
}
.itl-prog__item details[open] .itl-prog__chevron { transform: rotate(180deg); }

.itl-prog__body { padding: 14px 18px 18px; background: #fafbfe; }

.itl-prog__modules {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}

.itl-prog__module {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--itl-text); line-height: 1.45;
  padding: 8px 12px; background: #fff; border: 1px solid var(--itl-border);
  border-radius: var(--itl-r-sm);
}
.itl-prog__module::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--itl-gold); flex-shrink: 0; }

.itl-prog__tech        { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--itl-border); }
.itl-prog__tech-label  { display: block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--itl-muted); margin-bottom: 8px; }
.itl-prog__tech-pills  { display: flex; flex-wrap: wrap; gap: 6px; }
.itl-prog__tech-pill   { display: inline-flex; align-items: center; gap: 5px; background: #fffbf0; border: 1px solid #e8b422; border-radius: 20px; padding: 3px 10px; font-size: 12px; color: #7a4800; font-weight: 500; }
.itl-prog__tech-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--itl-gold); flex-shrink: 0; }

/* ── Tech strip ───────────────────────────────────────────────────────────── */
.itl-tech__container { margin-top: 48px;margin-bottom: 48px; }
.itl-tech__head      { font-size: 16px; font-weight: normal; color: white; margin-bottom: 20px; }
.itl-tech            { display: flex; flex-wrap: wrap; gap: 8px; }

.itl-tech__pill {
  font-size: 12px; font-weight: 700; color: var(--itl-navy);
  background: #fff; border: 1px solid var(--itl-border);
  padding: 4px 8px; border-radius: 100px; box-shadow: var(--itl-shadow);
  transition: border-color .15s, color .15s;
  display: flex; align-items: center; gap: 6px;
}
.itl-tech__pill--secondary { background: rgba(255,255,255,.30); }
.itl-tech__pill::before    { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--itl-gold); flex-shrink: 0; }
.itl-tech__pill:hover      { border-color: var(--itl-gold); color: #7a4800; }

/* ── Why card grid ────────────────────────────────────────────────────────── */
.itl-why { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }

.itl-why__card {
  background: #fff; border: 1px solid var(--itl-border);
  border-radius: var(--itl-r-md); padding: 18px 16px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--itl-shadow); transition: box-shadow .2s, transform .2s;
}
.itl-why__card:hover     { box-shadow: var(--itl-shadow-md); transform: translateY(-2px); }
.itl-why__card-icon      { font-size: 22px; line-height: 1; }
.itl-why__card-text      { font-size: 13.5px; font-weight: 600; color: var(--itl-navy); line-height: 1.4; }

/* ── Who grid ─────────────────────────────────────────────────────────────── */
.itl-who { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.itl-who__item {
  background: #fff; border: 1px solid var(--itl-border);
  border-radius: var(--itl-r-md); padding: 14px 16px;
  font-size: 13.5px; color: var(--itl-text); line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start; box-shadow: var(--itl-shadow);
}
.itl-who__item::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%;
  flex-shrink: 0; margin-top: 1px;
  background: linear-gradient(135deg, var(--itl-cf), var(--itl-ct))
              url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2.5a2 2 0 1 1 0 4 2 2 0 0 1 0-4zM2 10c0-2.2 1.8-4 4-4s4 1.8 4 4' stroke='white' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 12px;
}

/* ══════════════════════════════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════════════════════════════ */
.itl-sidebar { position: sticky; top: 64px; display: flex; flex-direction: column; gap: 16px; }

.itl-sidebar-cta {
  background: linear-gradient(150deg, var(--itl-navy2), var(--itl-navy));
  border-radius: var(--itl-r-xl); overflow: hidden;
  box-shadow: 0 8px 28px rgba(11,22,48,.22); position: relative;
}
.itl-sidebar-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--itl-gold), #f59e0b);
}

.itl-sidebar-cta__body  { padding: 22px 20px;}
.itl-sidebar-cta__title { font-size: 16px; font-weight: 800; color: #fff; margin: 0 0 4px; }
.itl-sidebar-cta__sub   { font-size: 12px; color: rgba(255,255,255,.45); margin: 0 0 16px; }

.itl-sidebar-cta__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 14px; padding: 13px 16px;
  border-radius: var(--itl-r-sm); text-decoration: none;
}
.itl-sidebar-cta__btn:hover        { opacity: .88; }
.itl-sidebar-cta__btn--primary     { background: var(--itl-gold); color: #060d1f; box-shadow: 0 4px 12px rgba(232,180,34,.35); }
.itl-sidebar-cta__btn--wa          { background: rgba(37,211,102,.13); color: #25d366; border: 1.5px solid rgba(37,211,102,.3); }
.itl-sidebar-cta__note             { padding: 0 20px 16px; font-size: 11px; color: rgba(255,255,255,.3); text-align: center; }

.itl-sidebar-box { background: #fff; border: 1px solid var(--itl-border); border-radius: var(--itl-r-lg); overflow: hidden; box-shadow: var(--itl-shadow); }
.itl-sidebar-box__head { padding: 12px 18px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); background: var(--itl-navy); }
.itl-sidebar-box__body { padding: 16px 18px; }

.itl-kv { display: flex; flex-direction: column; gap: 0; }
.itl-kv__row { display: flex; flex-direction: column; padding: 10px 0; border-bottom: 1px solid var(--itl-border); font-size: 13px; }
.itl-kv__row:first-child  { padding-top: 0; }
.itl-kv__row:last-child   { border-bottom: none; padding-bottom: 0; }
.itl-kv__key { color: var(--itl-muted); }
.itl-kv__val { font-weight: 700; color: var(--itl-navy); }

.itl-sidebar-certs      { padding: 14px 18px; display: flex; flex-direction: column; gap: 7px; }
.itl-sidebar-cert       { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--itl-text); line-height: 1.4; }
.itl-sidebar-cert__star {
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  background: var(--itl-gold-lt) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2l1.1 2.3L10 4.7l-2 1.9.5 2.7L6 8.1 3.5 9.3l.5-2.7-2-1.9 2.9-.4z' fill='%23e8b422'/%3E%3C/svg%3E") no-repeat center / 11px;
  border: 1px solid rgba(232,180,34,.25);
}

.itl-tarifs {
  border-radius: var(--itl-r-lg);
  overflow: hidden;
  box-shadow: var(--itl-shadow);
}



.itl-tarif {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid var(--itl-border);
}

.itl-tarif:last-child {
  border-bottom: none;
}

.itl-tarif--gold {
  background: #fffbeb;
}

.itl-tarif__left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.itl-tarif__icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  width: 24px;
  align-self: center;
}

.itl-tarif__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--itl-navy);
  margin-bottom: 2px;
}

.itl-tarif__sub {
  font-size: 11px;
  color: var(--itl-muted);
  line-height: 1.3;
}

.itl-tarif__price {
  font-size: 17px;
  font-weight: 900;
  color: var(--itl-navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.itl-tarif__price em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--itl-muted);
}

.itl-tarif--gold .itl-tarif__price {
  color: #92400e;
}

.itl-tarif--merged {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.itl-tarif__merged-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px 10px;
  border-bottom: 1px solid var(--itl-border);
}

.itl-tarif--gold .itl-tarif__merged-header {
  border-bottom-color: rgba(232, 180, 34, .2);
}

.itl-tarif__tiers {
  display: flex;
  flex-direction: column;
}

/* Single tier row */
.itl-tarif__tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--itl-border);
  transition: background .12s;
}

.itl-tarif--gold .itl-tarif__tier {
  border-bottom-color: rgba(232, 180, 34, .15);
}

.itl-tarif__tier:last-child {
  border-bottom: none;
}

.itl-tarif__tier:hover {
  background: rgba(11, 22, 48, .025);
}

.itl-tarif--gold .itl-tarif__tier:hover {
  background: rgba(232, 180, 34, .06);
}

/* Tier label column */
.itl-tarif__tier-label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  flex: 1;
}

/* M1+M2 / M2 direct badge */
.itl-tarif__tier-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--itl-navy);
  padding: 3px 9px;
  border-radius: 100px;
  line-height: 1;
  white-space: nowrap;
}

.itl-tarif__tier-badge--alt {
  background: #475569;
}

.itl-tarif--gold .itl-tarif__tier-badge {
  background: rgba(146, 64, 14, .75);
}

.itl-tarif--gold .itl-tarif__tier-badge--alt {
  background: rgba(146, 64, 14, .45);
}

/* "Parcours complet · 2 ans" */
.itl-tarif__tier-desc {
  font-size: 11px;
  color: var(--itl-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.itl-tarifs__head {
  background: var(--itl-navy);
  padding: 12px 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.itl-sidebar-dfr {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #86efac;
  border-radius: var(--itl-r-lg);
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(16, 185, 129, .08);
}

.itl-sidebar-dfr__flag {
  font-size: 28px;
  margin-bottom: 6px;
}

.itl-sidebar-dfr__title {
  font-size: 13px;
  font-weight: 800;
  color: #065f46;
  margin: 0 0 3px;
}

.itl-sidebar-dfr__sub {
  font-size: 11.5px;
  color: #16a34a;
  margin: 0;
  line-height: 1.4;
}
/* ══════════════════════════════════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════════════════════════════════ */
.itl-partners {
  background: var(--itl-light);
  border-top: 1px solid var(--itl-border); border-bottom: 1px solid var(--itl-border);
  padding: 36px 0;
}
.itl-partners__inner  { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.itl-partners__title  { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--itl-muted); text-align: center; margin: 0 0 22px; }
.itl-partners__logos  { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.itl-partners__logo {
  font-size: 12.5px; font-weight: 700; color: var(--itl-muted);
  background: #fff; border: 1px solid var(--itl-border);
  padding: 10px 18px; border-radius: var(--itl-r-sm); box-shadow: var(--itl-shadow);
  transition: border-color .15s, color .15s;
}
.itl-partners__logo:hover { border-color: var(--itl-gold); color: var(--itl-navy); }

/* Logo image variant */
.itl-partners__logos--with-images { gap: clamp(24px, 4vw, 48px); align-items: center; }
.itl-partners__logo-link {
  display: inline-flex; align-items: center; text-decoration: none;
  padding: 12px 16px; border-radius: var(--itl-r-sm);
  transition: background .2s, transform .15s;
}
.itl-partners__logo-link:hover { background: #fff; transform: translateY(-2px); }
.itl-partners__logo-img {
  height: 52px; width: auto; max-width: 150px;
  object-fit: contain;
  transition: transform .25s;          /* full colour — no grayscale filter */
}
.itl-partners__logo-link:hover .itl-partners__logo-img { transform: scale(1.05); }

/* One-row auto-scrolling carousel (uses theme .itl-marquee engine) */
.itl-partners__marquee { width: 100%; }
.itl-partners__marquee .itl-partners__logo-link { padding: 8px 6px; }

/* ══════════════════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════════════════ */
.itl-banner {
  background: linear-gradient(135deg, var(--itl-cf) 0%, var(--itl-ct) 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.itl-banner::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}
.itl-banner__inner { max-width: 760px; margin: 0 auto; padding: 0 28px; text-align: center; position: relative; z-index: 1; }
.itl-banner__title { margin: 0 0 10px; font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: #fff; line-height: 1.12; letter-spacing: -.025em; }
.itl-banner__sub   { margin: 0 0 28px; font-size: 15.5px; color: rgba(255,255,255,.68); line-height: 1.6; }
.itl-banner__btns  { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.itl-banner__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 14px; padding: 14px 28px;
  border-radius: var(--itl-r-md); text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.itl-banner__btn:hover         { transform: translateY(-1px); }
.itl-banner__btn--primary      { background: var(--itl-gold); color: #060d1f; box-shadow: 0 4px 16px rgba(232,180,34,.4); }
.itl-banner__btn--wa           { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }


/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Comprehensive mobile-first UX
   Breakpoints: 960 · 768 · 640 · 480 · 380
══════════════════════════════════════════════════════════════════════════ */

/* ── Floating mobile CTA bar (hidden on desktop) ────────────────────────── */
/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile UX overhaul
   Strategy: compact hero, hidden form, stats strip, bottom-drawer form
   Breakpoints: 960 · 768 · 640 · 480 · 380
══════════════════════════════════════════════════════════════════════════ */

/* ── Floating bar + bottom-drawer: hidden on desktop ────────────────────── */
.itl-mobile-cta-bar  { display: none; }
.itl-drawer-backdrop { display: none; }
.itl-drawer          { display: none; }

/* ════════════════════ 960px — Tablet: single-column layout ═════════════ */
@media (max-width: 960px) {

  .itl-body {
    grid-template-columns: 1fr;
    gap: 0; padding: 0;
  }

  .itl-main    { padding: 24px 20px 0; }
  .itl-sidebar { position: static; padding: 0 20px 32px; }

  .itl-who      { grid-template-columns: 1fr; }
  .itl-org-grid { grid-template-columns: 1fr; }

  .itl-nav__inner { padding: 0 12px; gap: 0; }
  .itl-nav__link  { padding: 13px 12px; font-size: 12px; }
}

/* ════════════════════ 768px — Tablet ══════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero: single col, tighter padding */
  .itl-hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 16px 28px;
  }

  .itl-hero__title   { font-size: clamp(24px, 6.5vw, 36px); }
  .itl-hero__tagline { font-size: 14px; }

  /* CTAs stack full-width */
  .itl-hero__ctas { flex-direction: column; gap: 10px; }
  .itl-hero__cta  { width: 100%; justify-content: center; padding: 14px 20px; min-height: 50px; }

  .itl-tech { gap: 6px; }
  .itl-tech__pill { font-size: 11px; padding: 3px 7px; }

  /* Form still visible at tablet — just compact */
  .itl-hero__form       { padding: 20px 16px; }
  .itl-form-row         { grid-template-columns: 1fr; }
  .itl-hero__form-title { font-size: 15px; }

  /* Stats: 2-col */
  .itl-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .itl-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 18px 12px;
  }
  .itl-stat:nth-last-child(-n+2) { border-bottom: none; }

  .itl-nav__link  { font-size: 11.5px; padding: 12px 10px; }
  .itl-nav__cta   { padding: 7px 12px; font-size: 12px; margin-left: auto; }

  .itl-section__icon  { width: 32px; height: 32px; font-size: 15px; border-radius: 8px; }
  .itl-section__title { font-size: 17px; }
}

/* ════════════════════ 640px — Phone: drawer pattern kicks in ═══════════ */
@media (max-width: 640px) {

  /* ── Hero: compact, form hidden from flow ────────────────────────────── */
  .itl-hero__inner {
    grid-template-columns: 1fr;
    padding: 28px 16px 24px;
    gap: 0;
  }

  /* Hide form from page flow — lives in drawer instead */
  .itl-hero__form { display: none; }

  /* Hide tech pills (too much vertical space on mobile) */
  .itl-tech__container { display: none; }

  .itl-hero__title {
    font-size: clamp(22px, 7vw, 30px);
    letter-spacing: -.02em;
    margin-bottom: 10px;
  }

  /* Tagline: shorter on mobile */
  .itl-hero__tagline { font-size: 13.5px; margin-bottom: 18px; }

  /* Keep only 2 hero CTAs visible (primary + WA); hide PDF */
  .itl-hero__ctas     { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .itl-hero__cta      { flex: 1 1 auto; justify-content: center; padding: 12px 14px; min-height: 46px; font-size: 13px; }
  .itl-hero__cta--pdf { display: none; }

  /* Eyebrow pills */
  .itl-hero__eyebrow { gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }

  /* Hero bullets: hide (saves space, shown in content sections) */
  .itl-hero__bullets { display: none; }

  /* ── Stats: horizontal scroll strip ─────────────────────────────────── */
  .itl-stats__inner {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: unset;
    padding: 0 16px;
    gap: 0;
  }
  .itl-stats__inner::-webkit-scrollbar { display: none; }

  .itl-stat {
    flex: 0 0 auto;
    min-width: 130px;
    padding: 16px 14px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: none !important;
    text-align: center;
  }
  .itl-stat:last-child { border-right: none; }
  .itl-stat__icon  { font-size: 18px; }
  .itl-stat__value { font-size: 12.5px; }
  .itl-stat__label { font-size: 10px; }

  /* ── Nav: emoji-only ─────────────────────────────────────────────────── */
  .itl-nav__link-text { display: none; }
  .itl-nav__inner     { padding: 0 8px; justify-content: space-around; }
  .itl-nav__link      { padding: 12px 10px; font-size: 18px; border-bottom-width: 3px; flex: 1; justify-content: center; }
  .itl-nav__cta       { display: none; }

  /* ── Body ────────────────────────────────────────────────────────────── */
  .itl-main    { padding: 20px 16px 0; }
  .itl-sidebar { padding: 0 16px 24px; }
  .itl-section { margin-bottom: 28px; }

  .itl-presentation { font-size: 14px; padding: 16px 14px; }

  /* Accordion */
  .itl-accordion__item summary { padding: 14px 16px; min-height: 54px; font-size: 14px; }
  .itl-accordion__body { padding: 16px; }

  /* Debouches */
  .itl-debouches    { grid-template-columns: 1fr; gap: 8px; }
  .itl-debouche     { padding: 12px 14px; }
  .itl-debouche__icon  { width: 38px; height: 38px; font-size: 22px; }
  .itl-debouche__title { font-size: 12.5px; }

  /* Programme accordion */
  .itl-prog__item summary { position: relative;padding: 14px 14px; min-height: 54px; flex-wrap: wrap; gap: 6px; row-gap: 4px; }
  .itl-prog__sub    { font-size: 13px; flex-basis: 100%; order: 2; }
  .itl-prog__tag    { order: 1; }
  .itl-prog__count  { order: 3; }
  .itl-prog__chevron {  align-self: flex-start; position: absolute; right: 14px; }
  .itl-prog__body   { padding: 12px 14px 16px; }
  .itl-prog__module { font-size: 13px; padding: 7px 10px; }

  /* Why */
  .itl-why       { grid-template-columns: 1fr 1fr; gap: 8px; }
  .itl-why__card {flex-direction: column; padding: 14px 12px; gap: 6px; }
  .itl-why__card-icon { font-size: 20px; }
  .itl-why__card-text { font-size: 12.5px; }

  /* Sidebar */
  .itl-sidebar-cta__body { padding: 18px 16px; }
  .itl-sidebar-cta__btn  { padding: 14px 16px; font-size: 14px; min-height: 52px; }
  .itl-sidebar-cta__note { padding: 0 16px 14px; font-size: 10.5px; }


  /* Partners */
  .itl-partners         { padding: 24px 0; }
  .itl-partners__inner  { padding: 0 16px; }
  .itl-partners__logos  { gap: 8px; }
  .itl-partners__logo   { font-size: 11.5px; padding: 8px 14px; }
  .itl-partners__logos--with-images { gap: 16px; }
  .itl-partners__logo-img { height: 40px; max-width: 110px; }

  /* Banner */
  .itl-banner        { padding: 40px 0 calc(40px + 76px); }
  .itl-banner__inner { padding: 0 16px; }
  .itl-banner__title { font-size: clamp(20px, 5.5vw, 28px); }
  .itl-banner__sub   { font-size: 14px; margin-bottom: 20px; }
  .itl-banner__btns  { flex-direction: column; gap: 8px; }
  .itl-banner__btn   { width: 100%; justify-content: center; padding: 14px 20px; min-height: 52px; }

  /* kv rows */
  .itl-kv__row { flex-direction: column; gap: 2px; padding: 10px 0; }
  .itl-kv__key { font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; }
  .itl-kv__val { font-size: 14px; }

  /* DFR card */
  .itl-dfr-card { flex-direction: column; gap: 12px; padding: 18px 16px; }

  /* Push content above fixed bar */
  .itl-pdp { padding-bottom: 76px; }

  /* ── Floating CTA bar ────────────────────────────────────────────────── */
  .itl-mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(11,22,48,.97);
    backdrop-filter: blur(16px) saturate(1.5);
    border-top: 1px solid rgba(255,255,255,.1);
    gap: 10px;
    align-items: center;
  }

  .itl-mobile-cta-bar__btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 13.5px; font-weight: 800;
    padding: 13px 12px; min-height: 48px;
    border-radius: var(--itl-r-sm);
    text-decoration: none;
    transition: opacity .15s, transform .12s;
    border: none; cursor: pointer; font-family: inherit;
  }
  .itl-mobile-cta-bar__btn:active { transform: scale(.97); }
  .itl-mobile-cta-bar__btn--primary {
    background: var(--itl-gold); color: #060d1f;
    box-shadow: 0 0 20px rgba(232,180,34,.35);
  }
  .itl-mobile-cta-bar__btn--wa {
    flex: 0 0 48px; padding: 0;
    background: rgba(37,211,102,.14); color: #25d366;
    border: 1.5px solid rgba(37,211,102,.35);
    font-size: 20px; border-radius: var(--itl-r-sm);
  }

  /* ── Bottom-drawer backdrop ──────────────────────────────────────────── */
  .itl-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 299;
    background: rgba(6,13,31,.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .itl-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: all;
  }

  /* ── Bottom drawer ───────────────────────────────────────────────────── */
  .itl-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    max-height: 92dvh;
    background: #0f1c3d;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,.45);
    transform: translateY(100%);
    transition: transform .38s cubic-bezier(.32,.72,0,1);
    will-change: transform;
    overflow: hidden;
  }
  .itl-drawer.is-open {
    transform: translateY(0);
  }

  /* Drag handle */
  .itl-drawer__handle {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 12px 0 6px;
    cursor: grab;
    touch-action: none;
  }
  .itl-drawer__handle::after {
    content: '';
    width: 36px; height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.2);
  }

  /* Drawer header */
  .itl-drawer__header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 20px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .itl-drawer__title {
    font-size: 16px; font-weight: 800; color: #fff; margin: 0;
  }
  .itl-drawer__sub {
    font-size: 11px; color: rgba(255,255,255,.4); margin: 2px 0 0;
  }
  .itl-drawer__close {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: none;
    color: rgba(255,255,255,.6); font-size: 16px;
    cursor: pointer; flex-shrink: 0;
    transition: background .15s, color .15s;
  }
  .itl-drawer__close:hover { background: rgba(255,255,255,.14); color: #fff; }

  /* Drawer scrollable body */
  .itl-drawer__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 18px 20px calc(20px + env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }

  /* Form inside drawer: inherit the existing .itl-form-* styles */
  .itl-drawer__body .itl-form-field input,
  .itl-drawer__body .itl-form-field select {
    font-size: 16px; /* prevent iOS zoom */
    padding: 12px 13px;
  }
  .itl-drawer__body .itl-form-row { grid-template-columns: 1fr; }
  .itl-drawer__body .itl-form-submit {
    font-size: 15px; padding: 15px; min-height: 52px;
    margin-top: 4px;
  }
  .itl-drawer__body .itl-form-secure {
    font-size: 11px; margin-top: 10px;
  }
  .itl-drawer__body .itl-hero__form-title { display: none; } /* shown in drawer header */
  .itl-drawer__body .itl-hero__form-sub   { display: none; }
}

/* ════════════════════ 480px — Small phone ══════════════════════════════ */
@media (max-width: 480px) {

  .itl-hero__title { font-size: clamp(20px, 7vw, 26px); }

  /* Stats strip: narrower pills */
  .itl-stat { min-width: 110px; padding: 14px 10px; }
  .itl-stat__value { font-size: 12px; }

  .itl-why { grid-template-columns: 1fr; }

  .itl-sidebar-box__head { font-size: 9px; padding: 10px 14px; }
  .itl-sidebar-box__body { padding: 12px 14px; }
  .itl-sidebar-certs     { padding: 12px 14px; }
  .itl-tarifs__head      { font-size: 9px; }
  .itl-sidebar-dfr       { padding: 14px; }
  .itl-sidebar-dfr__flag  { font-size: 24px; }
  .itl-sidebar-dfr__title { font-size: 12px; }
}

/* ════════════════════ 380px — Very small phone ══════════════════════════ */
@media (max-width: 380px) {

  .itl-hero__inner { padding: 22px 14px 18px; }
  .itl-main  { padding: 16px 14px 0; }
  .itl-sidebar { padding: 0 14px 20px; }

  .itl-hero__ctas { gap: 6px; }
  .itl-hero__cta  { font-size: 12.5px; padding: 11px 12px; }

  .itl-why { grid-template-columns: 1fr; }

  .itl-prog__item summary { position: relative;padding: 12px; }
  .itl-prog__body         { padding: 10px 12px 14px; }

  .itl-mobile-cta-bar { padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); }
  .itl-mobile-cta-bar__btn { font-size: 12.5px; min-height: 46px; }
}
