:root {
  --navy: #0e3f63;
  --navy-2: #0a324f;
  --navy-3: #071f32;
  --teal: #1e9c96;
  --teal-dark: #137772;
  --mint: #e8f7f4;
  --cream: #fbf7ef;
  --paper: #fbfcfb;
  --paper-2: #f4f8f7;
  --sand: #eadcc8;
  --line: #dbe7e7;
  --line-strong: #c8d8d8;
  --ink: #102a3d;
  --text: #334a5c;
  --muted: #6a7d8f;
  --white: #fff;
  --success: #167456;
  --danger: #a83c3c;
  --shadow: 0 18px 50px rgba(8, 41, 63, .10);
  --shadow-soft: 0 10px 30px rgba(8, 41, 63, .075);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
strong { color: var(--navy-3); }
h1, h2, h3, p { overflow-wrap: break-word; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 12px;
}
.skip-link:focus { left: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8,41,63,.09);
}
.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand-logo {
  width: 156px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 24px);
  font-size: .93rem;
  color: #385269;
  white-space: nowrap;
}
.main-nav a {
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.main-nav a:hover { color: var(--navy); border-color: var(--teal); }
.main-site-link { color: var(--teal-dark) !important; font-weight: 850; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: -.02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b5a81);
  box-shadow: 0 14px 30px rgba(14,63,99,.20);
}
.btn-primary:hover { box-shadow: 0 20px 42px rgba(14,63,99,.26); }
.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: rgba(8,41,63,.16);
  box-shadow: 0 8px 20px rgba(8,41,63,.06);
}
.btn-light {
  background: #fff;
  color: var(--navy-2);
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
}
.btn-small { min-height: 40px; padding: 0 16px; font-size: .9rem; }
.btn-text {
  font-weight: 850;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(30,156,150,.45);
  text-underline-offset: 5px;
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(40px, 5vw, 70px) 0 clamp(54px, 6vw, 82px);
  background:
    radial-gradient(circle at 12% 20%, rgba(30,156,150,.10), transparent 25%),
    radial-gradient(circle at 92% 6%, rgba(14,63,99,.08), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f8fbfb 54%, #eef8f7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14,63,99,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,63,99,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .72fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.hero-copy { min-width: 0; padding-top: clamp(8px, 2vw, 22px); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-weight: 900;
  font-size: .73rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: #a9e8e4; }
.hero h1,
.section-heading h2,
.split-copy h2,
.final-card h2,
.page-hero h1,
.detail-card h2,
.detail-copy h2,
.finance-card h2,
.official-card h2 {
  font-family: var(--serif);
  color: var(--navy-3);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 680;
  margin: 0;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(2.05rem, 3.45vw, 3.22rem);
}
.hero-subtitle {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.proof-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
  max-width: 780px;
}
.proof-pill {
  min-height: 70px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(8,41,63,.10);
  box-shadow: 0 8px 22px rgba(8,41,63,.045);
}
.proof-pill strong { display: block; font-size: .93rem; line-height: 1.16; }
.proof-pill span { display: block; margin-top: 4px; color: var(--muted); font-size: .81rem; line-height: 1.25; }
.hero-panel {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(190px, .88fr);
  gap: 14px;
  align-items: stretch;
}
.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 26px;
  border: 1px solid rgba(8,41,63,.10);
  box-shadow: var(--shadow-soft);
  background: var(--paper-2);
}
.hero-image img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.hero-image::after {
  content: "En présentiel dans vos locaux";
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  background: rgba(7,31,50,.82);
  color: #fff;
  padding: .58rem .82rem;
  border-radius: 999px;
  font-weight: 850;
  font-size: .84rem;
  backdrop-filter: blur(10px);
}
.mini-proof { display: grid; gap: 12px; }
.mini-proof div {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(8,41,63,.10);
  box-shadow: 0 8px 22px rgba(8,41,63,.045);
}
.mini-proof strong { display: block; font-family: var(--serif); font-size: 1.13rem; line-height: 1.1; }
.mini-proof span { display: block; margin-top: 5px; color: var(--muted); font-size: .9rem; line-height: 1.35; }

/* Form */
.form-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(8,41,63,.13);
  box-shadow: var(--shadow);
}
.form-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--sand));
}
.form-card-header { padding: 24px 24px 8px; }
.form-kicker {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
}
.form-card h2 { font-size: clamp(1.45rem, 1.9vw, 1.82rem); }
.form-card-header p:last-child { margin: 10px 0 0; color: var(--muted); font-size: .94rem; }
.lead-form { display: grid; gap: 13px; padding: 16px 24px 24px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field-group { display: grid; gap: 6px; min-width: 0; }
label { font-weight: 850; font-size: .84rem; color: #253d50; }
label span { color: var(--teal-dark); }
input, select, textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(8,41,63,.16);
  border-radius: 14px;
  background: #fbfdfd;
  color: var(--ink);
  padding: .78rem .9rem;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  appearance: auto;
}
textarea { resize: vertical; min-height: 88px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(30,156,150,.14);
  background: #fff;
}
.field-error { border-color: var(--danger) !important; box-shadow: 0 0 0 4px rgba(168,60,60,.12) !important; }
.btn-submit { width: 100%; margin-top: 3px; }
.btn-submit:disabled { opacity: .72; cursor: wait; }
.form-note, .rgpd-note { margin: 0; color: var(--muted); font-size: .82rem; }
.rgpd-note { color: #7a8790; }
.form-status { min-height: 1.2em; margin: 0; font-size: .88rem; font-weight: 850; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }
.honeypot { position: absolute !important; left: -100vw !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

/* Sections */
.section { padding: clamp(62px, 7vw, 88px) 0; }
.section-tight { padding: clamp(48px, 5vw, 66px) 0; }
.section-soft { background: var(--paper-2); }
.section-deep {
  background:
    radial-gradient(circle at 85% 12%, rgba(30,156,150,.18), transparent 30%),
    linear-gradient(135deg, var(--navy-3), #0b4260);
}
.section-heading { max-width: 710px; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading h2, .split-copy h2 { font-size: clamp(1.66rem, 2.75vw, 2.42rem); }
.section-heading p, .split-copy p { margin: 14px 0 0; color: var(--muted); font-size: clamp(.98rem, 1.08vw, 1.04rem); }
.section-deep .section-heading h2, .section-deep .section-heading p, .final-card h2, .final-card p { color: #f3fbfb; }
.section-deep .section-heading p { color: #c9dde0; }

/* Offers: cleaner rows, less repetitive */
.offer-layout { display: grid; grid-template-columns: .78fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.offer-flow { display: grid; gap: 12px; }
.offer-step {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr);
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(8,41,63,.10);
  box-shadow: 0 8px 24px rgba(8,41,63,.045);
}
.offer-step.accent { background: linear-gradient(135deg, #ffffff, var(--mint)); border-color: rgba(30,156,150,.24); }
.offer-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--navy-3);
  color: #fff;
  font-weight: 900;
}
.offer-step h3 { margin: 0 0 6px; font-family: var(--serif); color: var(--navy-3); font-size: 1.22rem; line-height: 1.15; }
.offer-step p { margin: 0; color: var(--text); }

/* Formation cards */
.formation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.formation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 12px 32px rgba(0,0,0,.11);
}
.formation-card::before {
  content: "";
  position: absolute;
  top: 0; left: 22px; right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(255,255,255,0));
}
.formation-card.feature {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff, #effaf8);
}
.formation-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(30,156,150,.12);
  color: #126762;
  font-size: .76rem;
  font-weight: 900;
}
.chip.dark { background: rgba(8,41,63,.08); color: var(--navy); }
.formation-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 1.28rem; letter-spacing: -.025em; line-height: 1.16; color: var(--navy-3); }
.formation-card p { margin: 0; color: var(--text); font-size: .96rem; }
.formation-card .card-bottom {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.code { font-weight: 900; color: var(--teal); font-size: .85rem; }
.format { font-size: .84rem; color: var(--muted); }
.link-arrow { font-weight: 900; color: var(--navy); white-space: nowrap; }
.link-arrow::after { content: " →"; }

/* Split / features */
.split-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.88fr); gap: clamp(32px, 5vw, 50px); align-items: center; }
.split-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(8,41,63,.10);
  min-height: 390px;
  background: var(--paper);
}
.split-visual img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.feature-list { display: grid; gap: 14px; margin-top: 24px; }
.feature-item { display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 14px; align-items: start; }
.feature-icon { width: 40px; height: 40px; border-radius: 13px; background: var(--mint); color: var(--teal-dark); display: grid; place-items: center; font-weight: 900; }
.feature-item strong { display: block; }
.feature-item span { display: block; color: var(--muted); font-size: .95rem; }

/* Themes */
.themes-board { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; justify-content: center; }
.themes-board span {
  background: #fff;
  border: 1px solid rgba(8,41,63,.10);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8,41,63,.045);
  padding: .62rem .88rem;
  color: #314b60;
  font-weight: 760;
  font-size: .9rem;
}

/* Official / financing */
.official-layout { display: grid; grid-template-columns: .82fr 1.08fr; gap: clamp(28px, 4vw, 46px); align-items: start; }
.official-proof { display: grid; gap: 18px; }
.qualiopi-image { width: min(260px, 78%); height: auto; object-fit: contain; margin: 0; }
.official-card,
.finance-card,
.detail-card {
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(8,41,63,.10);
  box-shadow: var(--shadow-soft);
}
.official-card { padding: 26px; }
.official-card h2, .finance-card h2 { font-size: clamp(1.55rem, 2.25vw, 2.05rem); }
.official-list { display: grid; gap: 0; margin: 22px 0 0; }
.official-list div {
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(8,41,63,.09);
}
dt { color: var(--muted); font-weight: 850; }
dd { margin: 0; color: var(--navy-3); font-weight: 850; min-width: 0; }
.finance-card { position: relative; overflow: hidden; padding: clamp(26px, 4vw, 40px); background: linear-gradient(135deg, #fff, #f4fbfa); }
.finance-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.finance-card p { color: var(--text); }
.finance-points { display: grid; gap: 12px; margin-top: 22px; }
.finance-points div {
  padding: 16px 0 0;
  border-top: 1px solid rgba(8,41,63,.10);
  background: transparent;
}
.finance-points p { margin: 5px 0 0; color: var(--muted); }

/* Process - clear timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  margin-top: 36px;
  border: 1px solid rgba(8,41,63,.10);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.process-step {
  position: relative;
  padding: 24px 22px;
  background: #fff;
  border-right: 1px solid rgba(8,41,63,.10);
}
.process-step:last-child { border-right: 0; }
.process-step strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--navy);
  color: #fff;
  margin-bottom: 16px;
}
.process-step h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 1.14rem; color: var(--navy-3); }
.process-step p { margin: 0; color: var(--muted); font-size: .93rem; }

/* FAQ */
.faq-grid { max-width: 900px; margin: 32px auto 0; display: grid; gap: 10px; }
details {
  background: #fff;
  border: 1px solid rgba(8,41,63,.10);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 22px rgba(8,41,63,.04);
}
summary {
  cursor: pointer;
  padding: 17px 20px;
  font-weight: 900;
  color: var(--navy-3);
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--teal-dark); font-weight: 900; }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 20px 18px; color: var(--muted); }

/* CTA / footer */
.final-cta { background: linear-gradient(135deg, #08304b, #0d5b7d); padding: clamp(54px, 6vw, 72px) 0; }
.final-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 28px; align-items: center; }
.final-card h2 { font-size: clamp(1.7rem, 2.9vw, 2.45rem); }
.final-card p { margin: 13px 0 0; color: #d6ebee; max-width: 780px; }
.site-footer { background: #fff; border-top: 1px solid rgba(8,41,63,.10); color: var(--ink); padding: 46px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .75fr .9fr; gap: clamp(28px, 5vw, 56px); }
.footer-brand img { width: 150px; height: 64px; object-fit: contain; object-position: left center; }
.footer-about p { max-width: 470px; color: var(--muted); }
.site-footer h2 { margin: 0 0 13px; font-size: .92rem; color: var(--navy-3); }
.site-footer a, .footer-button { display: block; margin: 8px 0; color: #30485d; background: transparent; border: 0; padding: 0; text-align: left; cursor: pointer; }
.site-footer a:hover, .footer-button:hover { color: var(--teal-dark); }
.small-muted { color: var(--muted); font-size: .88rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(8,41,63,.10); margin-top: 32px; padding-top: 18px; color: var(--muted); font-size: .85rem; }

/* Cookies */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(8,41,63,.14);
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie { min-height: 40px; padding: 0 16px; }

/* Formation pages */
.page-hero { padding: clamp(38px, 5vw, 56px) 0 clamp(30px, 4vw, 42px); background: linear-gradient(135deg, #fffdf8, #f4fbfb); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,.58fr); gap: clamp(28px, 4vw, 42px); align-items: start; }
.breadcrumbs { font-size: .88rem; color: var(--muted); margin: 0 0 16px; }
.breadcrumbs a { color: var(--teal-dark); font-weight: 850; }
.page-hero h1 { font-size: clamp(1.95rem, 3.3vw, 3rem); max-width: 800px; }
.page-hero-sub { margin: 17px 0 0; color: var(--text); font-size: clamp(1rem, 1.1vw, 1.06rem); max-width: 760px; }
.page-facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 24px; }
.fact { padding: 15px; border-radius: 16px; background: #fff; border: 1px solid rgba(8,41,63,.10); }
.fact span { display: block; color: var(--muted); font-size: .78rem; font-weight: 850; }
.fact strong { display: block; color: var(--navy-3); font-size: .92rem; line-height: 1.25; margin-top: 4px; }
.training-detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 54px); align-items: start; }
.detail-card { padding: 26px; }
.detail-card h2, .detail-copy h2 { font-size: clamp(1.45rem, 2.1vw, 1.92rem); }
.detail-copy p { color: var(--text); }
.bullet-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.bullet-list li { position: relative; padding-left: 26px; color: var(--text); }
.bullet-list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 28px; }
.related-card { padding: 20px; border-radius: 18px; background: #fff; border: 1px solid rgba(8,41,63,.10); box-shadow: 0 8px 22px rgba(8,41,63,.045); }
.related-card h3 { font-size: 1.02rem; margin: 0 0 10px; color: var(--navy-3); }
.related-card a { font-weight: 900; color: var(--teal-dark); }

/* Tablet */
@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .main-nav { display: none; }
  .hero-grid,
  .offer-layout,
  .split-layout,
  .official-layout,
  .finance-grid,
  .page-hero-grid,
  .training-detail-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 0; }
  .form-card { max-width: 720px; width: 100%; }
  .formation-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .formation-card.feature { grid-column: span 1; }
  .proof-line { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .page-facts { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid rgba(8,41,63,.10); }
}

/* Mobile */
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 72px; gap: 12px; }
  .brand-logo { width: 132px; height: 52px; }
  .btn-small { min-height: 38px; padding: 0 13px; font-size: .83rem; }
  .btn-small { max-width: 150px; }
  .hero { padding: 36px 0 46px; }
  .hero-grid { gap: 26px; }
  .hero h1 { font-size: clamp(1.82rem, 9vw, 2.25rem); line-height: 1.09; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .proof-line,
  .form-row,
  .formation-grid,
  .page-facts,
  .related-grid { grid-template-columns: 1fr; }
  .proof-pill { min-height: auto; }
  .hero-panel { grid-template-columns: 1fr; margin-top: 26px; }
  .hero-image, .hero-image img { min-height: 220px; }
  .mini-proof { grid-template-columns: 1fr; }
  .form-card { border-radius: 22px; }
  .form-card-header { padding: 22px 18px 8px; }
  .lead-form { padding: 14px 18px 20px; }
  input, select, textarea { border-radius: 13px; padding: .76rem .84rem; }
  .section { padding: 58px 0; }
  .section-tight { padding: 48px 0; }
  .section-heading.centered { text-align: left; }
  .section-heading h2, .split-copy h2 { font-size: clamp(1.55rem, 7vw, 1.95rem); }
  .offer-step { grid-template-columns: 38px minmax(0,1fr); gap: 13px; padding: 18px; }
  .offer-number { width: 38px; height: 38px; border-radius: 12px; }
  .formation-card { padding: 20px; border-radius: 20px; }
  .formation-card .card-bottom { align-items: flex-start; flex-direction: column; }
  .split-visual, .split-visual img { min-height: 250px; }
  .themes-board { justify-content: flex-start; }
  .themes-board span { border-radius: 14px; font-size: .88rem; }
  .qualiopi-image { width: 210px; }
  .official-list div { grid-template-columns: 1fr; gap: 3px; }
  .finance-card, .official-card, .detail-card { border-radius: 22px; padding: 22px; }
  .process-grid { grid-template-columns: 1fr; border-radius: 20px; }
  .process-step { border-right: 0; border-bottom: 1px solid rgba(8,41,63,.10); }
  .process-step:last-child { border-bottom: 0; }
  .final-card { grid-template-columns: 1fr; }
  .final-card .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { display: grid; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
  .page-hero h1 { font-size: clamp(1.78rem, 8vw, 2.15rem); }
}

/* Small phones */
@media (max-width: 420px) {
  .container { width: min(100% - 24px, 1160px); }
  .brand-logo { width: 118px; height: 48px; }
  .btn-small { padding: 0 11px; font-size: .78rem; max-width: 132px; }
  .btn-small::first-letter { text-transform: uppercase; }
  .hero h1 { font-size: 1.78rem; }
  .proof-line { gap: 8px; }
  .form-card-header, .lead-form { padding-left: 16px; padding-right: 16px; }
  .offer-step { grid-template-columns: 1fr; }
  .feature-item { grid-template-columns: 1fr; }
  .footer-brand img { width: 135px; height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

/* V11 - catalogue section redesigned: clearer, less boxed, fully responsive */
.catalogue-section {
  background:
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
  border-top: 1px solid rgba(8,41,63,.08);
  border-bottom: 1px solid rgba(8,41,63,.08);
}
.catalogue-layout {
  display: grid;
  grid-template-columns: minmax(280px, .46fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}
.catalogue-intro {
  position: sticky;
  top: 108px;
  min-width: 0;
}
.catalogue-intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.58rem, 2.35vw, 2.18rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0;
  color: var(--navy-3);
}
.catalogue-intro p {
  margin: 15px 0 0;
  color: var(--text);
}
.catalogue-note {
  margin: 22px 0 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(8,41,63,.12);
  border-bottom: 1px solid rgba(8,41,63,.12);
}
.catalogue-note strong,
.catalogue-note span {
  display: block;
}
.catalogue-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .94rem;
}
.catalogue-board {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.highlight-training {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: clamp(24px, 3.2vw, 34px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 10%, rgba(30,156,150,.22), transparent 32%),
    linear-gradient(135deg, #0b324f, #0d5a78);
  color: #fff;
  box-shadow: 0 18px 44px rgba(8,41,63,.16);
}
.highlight-training::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
}
.highlight-copy,
.highlight-bottom {
  position: relative;
}
.training-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.20);
  color: #d8fbf7;
  font-size: .76rem;
  font-weight: 900;
}
.highlight-training h3 {
  max-width: 640px;
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2.25vw, 2.08rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  color: #fff;
}
.highlight-training p {
  max-width: 660px;
  margin: 12px 0 0;
  color: #d6eaed;
}
.highlight-bottom {
  display: grid;
  gap: 12px;
  justify-items: end;
  text-align: right;
  min-width: 190px;
}
.highlight-bottom span {
  color: #c6e6e7;
  font-size: .9rem;
}
.highlight-bottom .link-arrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy-2);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.training-group {
  border: 1px solid rgba(8,41,63,.10);
  border-radius: 26px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 12px 30px rgba(8,41,63,.06);
  overflow: hidden;
}
.training-group-head {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  padding: 22px 22px 18px;
  background: linear-gradient(135deg, #fff, #f3faf9);
  border-bottom: 1px solid rgba(8,41,63,.08);
}
.training-group-head > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 950;
}
.training-group-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
  line-height: 1.1;
  color: var(--navy-3);
}
.training-group-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .94rem;
}
.training-list {
  display: grid;
}
.training-list.two-columns {
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.training-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 74px minmax(0,1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 17px 20px;
  border-top: 1px solid rgba(8,41,63,.08);
  background: #fff;
  transition: background .18s ease, transform .18s ease;
}
.training-list.two-columns .training-row:nth-child(1),
.training-list.two-columns .training-row:nth-child(2) { border-top: 0; }
.training-list.two-columns .training-row:nth-child(odd) { border-right: 1px solid rgba(8,41,63,.08); }
.training-row:first-child { border-top: 0; }
.training-row:hover {
  background: #fbfefe;
  transform: translateY(-1px);
}
.row-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(8,41,63,.07);
  color: var(--navy);
  font-size: .73rem;
  font-weight: 950;
  white-space: nowrap;
}
.row-main {
  min-width: 0;
}
.row-main strong,
.row-main em {
  display: block;
}
.row-main strong {
  color: var(--navy-3);
  font-size: .96rem;
  line-height: 1.22;
}
.row-main em {
  margin-top: 3px;
  color: var(--muted);
  font-size: .84rem;
  font-style: normal;
  line-height: 1.25;
}
.row-link {
  color: var(--teal-dark);
  font-size: .86rem;
  font-weight: 950;
  white-space: nowrap;
}

/* V11 - neutral white Qualiopi / financement section */
.official-section {
  background: #fff;
  border-top: 1px solid rgba(8,41,63,.08);
  border-bottom: 1px solid rgba(8,41,63,.08);
}
.official-section .official-layout {
  align-items: center;
}
.official-section .official-proof {
  gap: 22px;
}
.official-section .qualiopi-image {
  width: min(260px, 70%);
  margin: 0;
  filter: none;
}
.official-section .official-card,
.official-section .finance-card {
  background: #fff;
  box-shadow: none;
  border-color: rgba(8,41,63,.12);
}
.official-section .finance-card {
  background: #fff;
}

@media (max-width: 1100px) {
  .catalogue-layout { grid-template-columns: 1fr; }
  .catalogue-intro { position: static; max-width: 760px; }
  .training-list.two-columns { grid-template-columns: 1fr; }
  .training-list.two-columns .training-row { border-right: 0 !important; }
  .training-list.two-columns .training-row:nth-child(2) { border-top: 1px solid rgba(8,41,63,.08); }
}

@media (max-width: 720px) {
  .catalogue-layout { gap: 24px; }
  .highlight-training {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 24px 20px;
  }
  .highlight-bottom {
    justify-items: start;
    text-align: left;
    min-width: 0;
  }
  .training-group { border-radius: 22px; }
  .training-group-head {
    grid-template-columns: 38px minmax(0,1fr);
    gap: 12px;
    padding: 18px;
  }
  .training-group-head > span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .training-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 16px 18px;
  }
  .row-code { justify-self: start; }
  .row-link { margin-top: 2px; }
  .official-section .qualiopi-image { width: min(220px, 72%); }
}


/* V12 - conversion clarity and cleaner UI */
.header-inner { min-height: 76px; }
.brand-logo { width: 142px; height: 54px; object-fit: contain; object-position: left center; }
.hero-v12 { padding-top: clamp(34px, 4.6vw, 62px); }
.hero-v12 .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, .62fr); gap: clamp(30px, 4.4vw, 56px); }
.hero-v12 .hero h1, .hero-v12 h1 { font-size: clamp(2rem, 3.1vw, 3.05rem); max-width: 820px; }
.quick-choice { margin-top: 26px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.78); border: 1px solid rgba(8,41,63,.10); box-shadow: 0 10px 26px rgba(8,41,63,.055); max-width: 840px; }
.quick-choice p { margin: 0 0 12px; color: var(--navy-3); font-weight: 900; }
.quick-choice div { display: flex; flex-wrap: wrap; gap: 10px; }
.quick-choice button { min-height: 38px; border: 1px solid rgba(8,41,63,.12); background: #fff; color: var(--navy); border-radius: 999px; padding: 0 14px; font-weight: 850; box-shadow: 0 6px 14px rgba(8,41,63,.04); }
.quick-choice button:hover { border-color: rgba(30,156,150,.45); background: #f8fffd; }
.trust-strip { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.trust-strip span { display: inline-flex; align-items: center; min-height: 32px; border-radius: 999px; background: rgba(14,63,99,.065); color: #29475d; font-size: .84rem; font-weight: 800; padding: 0 12px; }
.form-card-sticky { position: sticky; top: 96px; }
label small { color: var(--muted); font-weight: 700; }
.section-paths { background: #fff; }
.path-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 34px; }
.path-card { position: relative; min-width: 0; padding: 24px; border-radius: 24px; border: 1px solid rgba(8,41,63,.10); background: #fff; box-shadow: 0 10px 28px rgba(8,41,63,.05); display: flex; flex-direction: column; }
.path-card-large { grid-row: span 2; background: linear-gradient(135deg, #fff, #f0faf8); border-color: rgba(30,156,150,.22); }
.path-index { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 14px; background: var(--mint); color: var(--teal-dark); font-weight: 950; margin-bottom: 18px; }
.path-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.16rem, 1.7vw, 1.55rem); line-height: 1.08; color: var(--navy-3); letter-spacing: -.02em; }
.path-card p { margin: 12px 0 0; color: var(--text); }
.path-card ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }
.path-card a { margin-top: auto; padding-top: 18px; color: var(--teal-dark); font-weight: 950; }
.path-card a::after { content: " →"; }
.catalogue-section-v12 { background: linear-gradient(180deg, #fbfcfb 0%, #fff 100%); border-top: 1px solid rgba(8,41,63,.08); border-bottom: 1px solid rgba(8,41,63,.08); }
.catalogue-v12-layout { display: grid; grid-template-columns: minmax(260px,.38fr) minmax(0,1fr); gap: clamp(28px,5vw,58px); align-items: start; }
.catalogue-v12-intro { position: sticky; top: 100px; }
.catalogue-v12-intro h2, .official-v12-main h2 { font-family: var(--serif); font-size: clamp(1.58rem,2.45vw,2.25rem); line-height: 1.08; letter-spacing: -.035em; margin: 0; color: var(--navy-3); }
.catalogue-v12-intro p, .official-v12-main p { color: var(--text); }
.roi-note { margin: 20px 0; padding: 18px 0; border-top: 1px solid rgba(8,41,63,.12); border-bottom: 1px solid rgba(8,41,63,.12); }
.roi-note strong, .roi-note span { display:block; }
.roi-note span { margin-top: 5px; color: var(--muted); font-size: .94rem; }
.catalogue-v12-board { display: grid; gap: 16px; }
.formation-category { border: 1px solid rgba(8,41,63,.10); border-radius: 24px; overflow: hidden; background: #fff; box-shadow: 0 12px 30px rgba(8,41,63,.05); }
.formation-category > h3 { margin:0; padding: 18px 20px; font-family: var(--serif); color: var(--navy-3); background: linear-gradient(135deg,#fff,#f3faf9); border-bottom: 1px solid rgba(8,41,63,.08); font-size: 1.28rem; }
.formation-lines { display: grid; }
.formation-lines.two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.formation-line { min-width:0; display:grid; grid-template-columns: auto minmax(0,1fr); column-gap: 12px; row-gap: 2px; align-items:start; padding: 17px 20px; background:#fff; border:0; border-top: 1px solid rgba(8,41,63,.08); color: inherit; text-align:left; cursor:pointer; }
a.formation-line { text-decoration:none; }
.formation-line:hover { background:#fbfefe; }
.formation-lines.two .formation-line:nth-child(odd) { border-right: 1px solid rgba(8,41,63,.08); }
.formation-lines.two .formation-line:nth-child(1), .formation-lines.two .formation-line:nth-child(2) { border-top: 0; }
.formation-line span { grid-row: span 2; display:inline-flex; align-items:center; justify-content:center; min-width:58px; min-height:28px; padding:0 9px; border-radius:999px; background:rgba(8,41,63,.07); color:var(--navy); font-size:.72rem; font-weight:950; white-space:nowrap; }
.formation-line strong { color: var(--navy-3); line-height:1.18; }
.formation-line em { color: var(--muted); font-style:normal; font-size:.86rem; line-height:1.25; }
.formation-line.is-featured { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:24px; align-items:center; border-radius:28px; padding:28px; border:1px solid rgba(30,156,150,.24); background:linear-gradient(135deg,#0b324f,#0d5a78); color:#fff; box-shadow:0 18px 44px rgba(8,41,63,.14); }
.formation-line.is-featured h3 { margin:10px 0 0; font-family:var(--serif); font-size:clamp(1.38rem,2vw,1.92rem); color:#fff; line-height:1.08; }
.formation-line.is-featured p { margin:10px 0 0; color:#d6ebee; max-width: 680px; }
.formation-line.is-featured a { color:var(--navy-2); background:#fff; border-radius:999px; padding:11px 16px; font-weight:950; white-space:nowrap; }
.line-badge { display:inline-flex; align-items:center; min-height:28px; border-radius:999px; padding:0 10px; background:rgba(255,255,255,.16); color:#d8fbf7; font-weight:900; font-size:.76rem; }
.official-section-v12 { background:#fff; }
.official-v12-layout { display:grid; grid-template-columns: minmax(0,1fr) minmax(300px,.46fr); gap:clamp(26px,4vw,48px); align-items:center; }
.official-links-panel { margin-top:22px; display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:10px; }
.official-links-panel a { padding:15px; border-radius:18px; background:#f7fbfb; border:1px solid rgba(8,41,63,.10); font-weight:900; color:var(--navy); }
.official-v12-proof { border:1px solid rgba(8,41,63,.10); border-radius:26px; padding:24px; background:#fff; box-shadow:0 10px 28px rgba(8,41,63,.045); }
.official-v12-proof .qualiopi-image { width:min(240px,75%); margin-bottom:22px; }
.official-list.compact div { grid-template-columns: 1fr; gap:3px; }
.mobile-sticky-cta { display:none; }
@media (max-width: 1100px) {
  .hero-v12 .hero-grid, .catalogue-v12-layout, .official-v12-layout { grid-template-columns:1fr; }
  .form-card-sticky, .catalogue-v12-intro { position:static; }
  .path-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .path-card-large { grid-row:auto; grid-column:span 2; }
  .official-links-panel { grid-template-columns:1fr; }
}
@media (max-width: 720px) {
  .brand-logo { width:124px; height:48px; }
  .path-grid { grid-template-columns:1fr; }
  .path-card-large { grid-column:auto; }
  .quick-choice { padding:15px; border-radius:18px; }
  .quick-choice div { display:grid; grid-template-columns:1fr; }
  .quick-choice button { width:100%; justify-content:center; }
  .trust-strip span { width:100%; justify-content:center; }
  .formation-line.is-featured { grid-template-columns:1fr; border-radius:22px; padding:22px; }
  .formation-line.is-featured a { justify-self:start; }
  .formation-lines.two { grid-template-columns:1fr; }
  .formation-lines.two .formation-line { border-right:0 !important; }
  .formation-lines.two .formation-line:nth-child(2) { border-top:1px solid rgba(8,41,63,.08); }
  .formation-line { grid-template-columns:1fr; gap:7px; padding:16px 18px; }
  .formation-line span { grid-row:auto; justify-self:start; }
  .official-v12-proof .qualiopi-image { width:min(220px,80%); }
  .mobile-sticky-cta { display:block; position:fixed; left:12px; right:12px; bottom:12px; z-index:70; }
  .mobile-sticky-cta .btn { width:100%; box-shadow:0 16px 36px rgba(14,63,99,.28); }
  .cookie-banner { bottom:76px; }
  body { padding-bottom:70px; }
}

/* V13 — section thématiques plus lisible, sans nuage de pastilles */
.themes-section-v13 {
  background:
    radial-gradient(circle at 0 0, rgba(20, 184, 166, .08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  border-top: 1px solid rgba(8, 41, 63, .07);
  border-bottom: 1px solid rgba(8, 41, 63, .07);
}
.themes-v13-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .48fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 46px);
}
.themes-v13-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: .96;
  letter-spacing: -.055em;
  max-width: 760px;
  margin: 0;
  color: var(--navy-3);
}
.themes-v13-head > p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.72;
}
.themes-v13-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr) minmax(0, .92fr);
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}
.theme-family-v13 {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(8, 41, 63, .10);
  border-radius: 28px;
  padding: clamp(20px, 2.2vw, 28px);
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 48px rgba(8, 41, 63, .055);
  overflow: hidden;
}
.theme-family-v13::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0e4a6b, #1bb7a6, rgba(27,183,166,.15));
}
.theme-family-featured {
  background: linear-gradient(135deg, #ffffff 0%, #f5fbfa 100%);
}
.theme-family-quiet {
  background: linear-gradient(135deg, #ffffff 0%, #fbf7ef 100%);
}
.theme-family-top {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}
.theme-index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #eef8f7;
  color: var(--teal-dark, #0f766e);
  font-weight: 950;
  font-size: .82rem;
  letter-spacing: .08em;
}
.theme-family-v13 h3 {
  margin: 1px 0 7px;
  color: var(--navy-3);
  font-size: clamp(1.1rem, 1.35vw, 1.32rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.theme-family-v13 p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.58;
}
.theme-list-v13 {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.theme-row-v13 {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(8, 41, 63, .08);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  padding: 15px 16px;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.theme-row-v13 strong,
.theme-row-v13 span {
  display: block;
}
.theme-row-v13 strong {
  color: var(--navy-3);
  font-size: .98rem;
  line-height: 1.2;
  letter-spacing: -.012em;
}
.theme-row-v13 span {
  margin-top: 5px;
  color: var(--text);
  font-size: .88rem;
  line-height: 1.48;
}
.theme-row-v13:hover,
.theme-row-v13:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, .42);
  box-shadow: 0 14px 34px rgba(8, 41, 63, .085);
  background: #fff;
  outline: none;
}
.themes-v13-cta {
  margin-top: clamp(18px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 26px;
  border: 1px solid rgba(8, 41, 63, .10);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(8, 41, 63, .05);
}
.themes-v13-cta strong,
.themes-v13-cta span {
  display: block;
}
.themes-v13-cta strong {
  color: var(--navy-3);
  font-size: 1.05rem;
  line-height: 1.2;
}
.themes-v13-cta span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 760px;
}
@media (max-width: 1040px) {
  .themes-v13-head,
  .themes-v13-grid {
    grid-template-columns: 1fr;
  }
  .themes-v13-head {
    align-items: start;
  }
  .theme-family-v13 {
    border-radius: 24px;
  }
}
@media (max-width: 720px) {
  .themes-section-v13 {
    background: #fff;
  }
  .themes-v13-head {
    gap: 14px;
    margin-bottom: 22px;
  }
  .themes-v13-head h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }
  .theme-family-top {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .theme-index {
    width: auto;
    height: auto;
    min-width: 44px;
    justify-self: start;
    padding: 9px 12px;
    border-radius: 999px;
  }
  .theme-row-v13 {
    padding: 14px;
    border-radius: 16px;
  }
  .themes-v13-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .themes-v13-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
