:root {
  --color-navy: #071b33;
  --color-navy-soft: #102a43;
  --color-teal: #28afb9;
  --color-teal-dark: #1d8e90;
  --color-orange: #f59c22;
  --color-cream: #f7f4ed;
  --color-white: #ffffff;
  --color-text: #172033;
  --color-muted: #627084;
  --color-border: #dce5ea;
  --color-success: #1d9a68;
  --shadow-soft: 0 18px 45px rgba(7, 27, 51, 0.12);
  --shadow-card: 0 10px 25px rgba(16, 42, 67, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --max-width: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #fcfdff 0%, #f6f9fc 38%, #ffffff 100%);
  line-height: 1.65;
}

/* Tarteaucitron est affiché nativement pour la gestion du consentement. */

a {
  color: var(--color-teal-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--color-navy);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 2000;
  background: var(--color-navy);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  left: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 2.4rem));
  margin: 0 auto;
}

main {
  min-height: 60vh;
}

.section {
  padding: 4.8rem 0;
}

.section-cream {
  background: linear-gradient(180deg, #f7f4ed 0%, #fff 100%);
}

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

.section-navy {
  background: radial-gradient(circle at 20% 20%, #173d66 0%, #071b33 55%, #051226 100%);
  color: #f4f8fc;
}

.section-navy h2,
.section-navy h3,
.section-navy p,
.section-navy li {
  color: #f4f8fc;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: "Sora", "Inter Tight", "Avenir Next", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 0.8rem;
  color: var(--color-navy);
}

.section-subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.03rem;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
}

.page-header.scrolled {
  box-shadow: 0 8px 30px rgba(7, 27, 51, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 800;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d9e3ea;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--color-navy-soft);
  font-weight: 650;
  font-size: 0.95rem;
  padding: 0.42rem 0.2rem;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.2rem;
  height: 2px;
  background: var(--color-teal);
  transition: right 0.25s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after {
  right: 0;
}

.nav-desktop .nav-link-blog {
  margin-left: 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 42, 67, 0.2);
  background: #fff;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-desktop .nav-link-blog::after {
  display: none;
}

.nav-desktop .nav-link-blog:hover,
.nav-desktop .nav-link-blog:focus-visible,
.nav-desktop .nav-link-blog[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, var(--color-orange), #e47f00);
  border-color: #d87800;
  box-shadow: 0 10px 24px rgba(228, 127, 0, 0.3);
  transform: translateY(-1px);
}

.credential-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.footer .credential-logos {
  margin: 0;
}

.credential-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 34px;
  padding: 0.28rem 0.45rem;
  border: 1px solid #d7e5eb;
  border-radius: 8px;
  background: #fff;
  color: var(--color-navy-soft);
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(7, 27, 51, 0.04);
}

.credential-logo img {
  width: auto;
  max-width: 92px;
  max-height: 34px;
  object-fit: contain;
}

.credential-logo span {
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
}

.credential-logos-compact {
  gap: 0.5rem;
}

.credential-logos-compact .credential-logo {
  min-height: 30px;
  padding: 0.22rem 0.38rem;
}

.credential-logos-compact .credential-logo img {
  max-width: 68px;
  max-height: 24px;
}

.credential-logos-compact .credential-logo span {
  font-size: 0.68rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  min-height: 2.9rem;
  padding: 0.62rem 1.1rem;
}

.btn:focus-visible,
.button-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.faq-trigger:focus-visible,
.mobile-toggle:focus-visible,
.carousel-btn:focus-visible,
.filter-btn:focus-visible {
  outline: 3px solid rgba(40, 175, 185, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal));
  color: #fff;
  box-shadow: 0 10px 24px rgba(29, 142, 144, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(29, 142, 144, 0.4);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--color-navy);
  border-color: rgba(16, 42, 67, 0.2);
}

.btn-secondary:hover {
  border-color: var(--color-teal-dark);
  color: var(--color-teal-dark);
}

.btn-navy {
  background: var(--color-navy);
  color: #fff;
}

.btn-navy:hover {
  background: #103055;
  color: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.mobile-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--header-height) 1rem auto 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  z-index: 1100;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 0.4rem;
}

.mobile-panel a {
  text-decoration: none;
  font-weight: 650;
  color: var(--color-navy-soft);
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
}

.mobile-panel a:hover,
.mobile-panel a[aria-current="page"] {
  background: var(--color-cream);
  color: var(--color-navy);
}

.mobile-panel .nav-link-blog {
  margin-top: 0.5rem;
  border: 1px solid rgba(16, 42, 67, 0.2);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  text-align: center;
  background: #fff;
}

.mobile-panel .nav-link-blog:hover,
.mobile-panel .nav-link-blog:focus-visible,
.mobile-panel .nav-link-blog[aria-current="page"] {
  color: #fff;
  border-color: #d87800;
  background: linear-gradient(135deg, var(--color-orange), #e47f00);
}

.hero {
  padding-top: 4.6rem;
  position: relative;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(760px, 72vw);
  aspect-ratio: 1;
  right: -15%;
  top: -40%;
  background: radial-gradient(circle, rgba(40, 175, 185, 0.26) 0%, rgba(40, 175, 185, 0.02) 62%, transparent 68%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 2.3rem;
  align-items: center;
  grid-template-columns: 1.07fr 0.93fr;
}

.hero h1,
.page-hero h1 {
  font-family: "Sora", "Inter Tight", "Avenir Next", system-ui, sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
  color: var(--color-navy);
}

.hero p,
.page-hero p {
  color: var(--color-muted);
  font-size: 1.08rem;
  margin: 0 0 1.25rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #eef6fb;
  color: var(--color-navy-soft);
  border: 1px solid #d3e7f4;
  font-size: 0.8rem;
  font-weight: 650;
}

.cta-inline {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.microcopy {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: transparent;
  padding: 0;
  min-height: 420px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  min-height: 395px;
}

.hero-method-badge {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  background: rgba(7, 27, 51, 0.88);
  color: #f4fbff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.8rem 1rem;
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 700;
  max-width: 290px;
}

.hero-floating-cards {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  gap: 0.45rem;
  width: min(210px, 46%);
}

.floating-card {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: rgba(9, 34, 54, 0.75);
  backdrop-filter: blur(6px);
  color: #f7fbff;
  padding: 0.55rem 0.65rem;
  box-shadow: 0 10px 25px rgba(6, 20, 36, 0.26);
}

.floating-card strong {
  display: block;
  font-size: 0.95rem;
}

.floating-card span {
  font-size: 0.76rem;
  opacity: 0.95;
}

.proof-grid,
.cards-grid,
.audience-grid,
.offers-grid,
.stats-grid,
.article-grid,
.faq-grid,
.profile-grid {
  display: grid;
  gap: 1rem;
}

.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.proof-card,
.card,
.offer-card,
.audience-card,
.method-step,
.profile-card,
.testimonial-card,
.faq-item,
.blog-card,
.info-card,
.pillars-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}

.proof-card strong {
  font-size: 1.2rem;
  color: var(--color-navy);
}

.proof-card p {
  margin: 0.5rem 0 0;
  font-size: 0.94rem;
  color: var(--color-muted);
}

.contrast-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.before-after {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid var(--color-border);
}

.before-after h3 {
  margin-top: 0;
  font-size: 1.1rem;
  font-family: "Sora", "Inter Tight", system-ui, sans-serif;
}

.before {
  background: #fef3ef;
  border-color: #f7d8cc;
}

.after {
  background: #eff9f8;
  border-color: #ccebea;
}

.before-after ul {
  margin: 0;
  padding-left: 1.1rem;
}

.before-after li {
  margin: 0.42rem 0;
}

.comparison-slider {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  aspect-ratio: 16 / 9;
}

.comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--comparison-position, 54%)) 0 0);
}

.comparison-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position, 54%);
  width: 0;
  transform: translateX(-1px);
  border-left: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(7, 27, 51, 0.25);
  pointer-events: none;
}

.comparison-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #071b33 0%, #1d8e90 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(7, 27, 51, 0.28);
}

.comparison-label {
  position: absolute;
  top: 0.9rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  background: rgba(7, 27, 51, 0.82);
  color: #f7fbff;
  display: grid;
  gap: 0.1rem;
  z-index: 2;
  pointer-events: none;
}

.comparison-label strong {
  font-size: 0.86rem;
}

.comparison-label small {
  font-size: 0.74rem;
}

.comparison-label-before {
  left: 0.9rem;
}

.comparison-label-after {
  right: 0.9rem;
}

.comparison-captions {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  border-radius: 10px;
  background: rgba(7, 27, 51, 0.74);
  color: #f7fbff;
  padding: 0.55rem 0.75rem;
  z-index: 2;
}

.comparison-captions ul {
  margin: 0;
  padding-left: 1rem;
}

.comparison-captions li {
  margin: 0.2rem 0;
  font-size: 0.8rem;
}

.comparison-control {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.comparison-control input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0.01;
  cursor: ew-resize;
}

.usecase-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.usecase-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: linear-gradient(165deg, #ffffff 0%, #f4f9fc 100%);
  box-shadow: var(--shadow-card);
  padding: 1rem;
}

.usecase-card h3 {
  margin: 0 0 0.5rem;
  color: var(--color-navy);
  font-size: 1.02rem;
}

.usecase-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.offers-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.offer-card {
  --offer-accent: var(--color-teal-dark);
  --offer-soft: #eef8fa;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
}

body[data-offer],
.offer-card[data-offer] {
  --offer-accent: var(--color-teal-dark);
  --offer-soft: #eef8fa;
}

body[data-offer="ia-entreprise"],
.offer-card[data-offer="ia-entreprise"] {
  --offer-accent: #0e6f79;
  --offer-soft: #e8f6f8;
}

body[data-offer="chatgpt-entreprise"],
.offer-card[data-offer="chatgpt-entreprise"] {
  --offer-accent: #1f5f8b;
  --offer-soft: #eaf3fb;
}

body[data-offer="ia-independants"],
.offer-card[data-offer="ia-independants"] {
  --offer-accent: #b45f06;
  --offer-soft: #fff3e4;
}

body[data-offer="ia-managers"],
.offer-card[data-offer="ia-managers"] {
  --offer-accent: #245a73;
  --offer-soft: #edf6f9;
}

body[data-offer="ia-rh"],
.offer-card[data-offer="ia-rh"] {
  --offer-accent: #1f6f55;
  --offer-soft: #eaf7f1;
}

body[data-offer="ia-cse"],
.offer-card[data-offer="ia-cse"] {
  --offer-accent: #7a5a12;
  --offer-soft: #fbf5dc;
}

body[data-offer="strategie-echecs"],
.offer-card[data-offer="strategie-echecs"] {
  --offer-accent: #0f2c45;
  --offer-soft: #edf3f7;
}

body[data-offer="prompt-engineering"],
.offer-card[data-offer="prompt-engineering"] {
  --offer-accent: #176d82;
  --offer-soft: #e7f7fa;
}

body[data-offer="ia-audiovisuel"],
.offer-card[data-offer="ia-audiovisuel"] {
  --offer-accent: #9a4f12;
  --offer-soft: #fff0e7;
}

body[data-offer="vibecoding"],
.offer-card[data-offer="vibecoding"] {
  --offer-accent: #195f6a;
  --offer-soft: #e8f7f8;
}

.offer-card-header {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.offer-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  border: 1px solid #d7e7ed;
  background: linear-gradient(145deg, #ffffff 0%, var(--offer-soft) 100%);
  color: var(--offer-accent);
  box-shadow: 0 8px 18px rgba(7, 27, 51, 0.07);
}

.offer-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-mark-large {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  color: var(--offer-accent);
}

.offer-mark-large svg {
  width: 43px;
  height: 43px;
  stroke-width: 2.15;
}

.offer-hero-heading {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  max-width: 980px;
}

.offer-card h3 {
  margin: 0;
  font-size: 1.14rem;
  color: var(--color-navy);
  font-family: "Sora", "Inter Tight", system-ui, sans-serif;
}

.offer-meta {
  font-size: 0.87rem;
  color: var(--color-muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tags span {
  background: #f3f8fb;
  border: 1px solid #d7e9f2;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 650;
  color: #1b4d65;
}

.link-arrow {
  margin-top: auto;
  color: var(--color-teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.link-arrow:hover {
  color: var(--color-navy);
}

.method-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.method-timeline .method-step {
  border: 1px solid #cde1ea;
}

.method-timeline {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.method-step {
  position: relative;
  overflow: hidden;
}

.method-step::after {
  content: "";
  position: absolute;
  top: -32px;
  right: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(40, 175, 185, 0.1);
}

.method-outcomes {
  margin-top: 1rem;
}

.step-number {
  display: inline-flex;
  width: 2.15rem;
  height: 2.15rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-navy);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.audience-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.audience-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.audience-card p {
  margin: 0 0 0.8rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.profile-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.profile-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: start;
}

.profile-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.profile-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 1.08rem;
}

.profile-card .role {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0.2rem 0 0.5rem;
}

.profile-card .location {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1b5768;
  margin: 0 0 0.4rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-navy-soft);
}

.testimonial-meta {
  margin-top: auto;
  font-size: 0.83rem;
  color: var(--color-muted);
}

.rating {
  color: #d68517;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.reviews-live {
  border: 1px solid #c8dbe4;
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, #ffffff 0%, #f3f9fc 100%);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

.reviews-live-summary {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0.85rem;
}

.reviews-live-kpi {
  border: 1px solid #d7e6ee;
  border-radius: 14px;
  background: #fff;
  padding: 0.72rem 0.8rem;
}

.reviews-live-kpi span {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.reviews-live-kpi small {
  color: #516a7f;
  font-size: 0.8rem;
}

.visual-carousel {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1rem;
}

.visual-carousel-track {
  display: grid;
  gap: 0.8rem;
}

.visual-slide {
  border: 1px solid #dce7ee;
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(160deg, #ffffff 0%, #f6fafc 100%);
  display: none;
}

.visual-slide h3 {
  margin: 0 0 0.45rem;
  color: var(--color-navy);
}

.visual-slide p {
  margin: 0;
  color: var(--color-muted);
}

.visual-slide.is-active {
  display: block;
}

.testimonial-card.visual-slide.is-active {
  display: flex;
}

.visual-carousel-controls {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

.carousel-btn {
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  color: var(--color-navy-soft);
  font-weight: 700;
  cursor: pointer;
}

.carousel-btn:hover {
  border-color: var(--color-teal-dark);
  color: var(--color-teal-dark);
}

.resources-grid,
.article-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.07rem;
}

.blog-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.blog-cover {
  margin: -1.2rem -1.2rem 0;
  border-bottom: 1px solid #d9e8f1;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-cover img {
  width: 100%;
  height: clamp(150px, 16vw, 190px);
  object-fit: cover;
}

.blog-meta {
  font-size: 0.8rem !important;
  color: #4b647d !important;
  font-weight: 600;
}

.category-pill {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  border: 1px solid #cce6ec;
  background: #f2fbfd;
  font-size: 0.74rem;
  font-weight: 700;
  color: #1b7078;
}

.final-cta,
.cta-box {
  border: 1px solid #c6dbe2;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #ffffff 0%, #f0f8fa 100%);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}

.conversion-strip {
  border: 1px solid #cfe2ea;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, #ffffff 0%, #f5fbfd 100%);
  box-shadow: var(--shadow-card);
  padding: 1.4rem;
}

.conversion-strip h2 {
  margin: 0 0 0.45rem;
  color: var(--color-navy);
}

.conversion-strip>p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.conversion-card {
  border: 1px solid #d8e8ee;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.conversion-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 1.01rem;
}

.conversion-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.final-cta h2,
.cta-box h2,
.cta-box h3 {
  margin-top: 0;
  color: var(--color-navy);
  font-family: "Sora", "Inter Tight", system-ui, sans-serif;
}

.page-hero {
  padding-top: 3rem;
  padding-bottom: 2.2rem;
}

.page-hero .hero-grid {
  grid-template-columns: 1fr;
}

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.86rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: #8da2b2;
}

.list-check,
.content-list {
  margin: 0;
  padding-left: 1.15rem;
}

.list-check li,
.content-list li {
  margin: 0.45rem 0;
}

.list-check li::marker {
  color: var(--color-teal-dark);
}

.offer-layout {
  display: grid;
  gap: 1rem;
}

.offer-layout section {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1.35rem;
}

.offer-layout h2 {
  margin-top: 0;
  color: var(--color-navy);
  font-size: 1.38rem;
}

.module-card {
  border: 1px solid #d5e7ed;
  border-radius: 12px;
  padding: 1rem;
  background: #f9fcfe;
}

.module-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.03rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 1.05rem;
  color: var(--color-navy-soft);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-trigger .icon {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-trigger .icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 1.05rem 1rem;
  color: var(--color-muted);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.filter-btn {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-navy-soft);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-weight: 650;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-card,
.form-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 650;
  color: var(--color-navy-soft);
  font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #cad9e4;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  background: #fff;
}

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

.form-consent {
  display: flex;
  align-items: start;
  gap: 0.6rem;
  font-size: 0.89rem;
  color: var(--color-muted);
}

.form-error {
  color: #b74226;
  font-size: 0.8rem;
  min-height: 1.05rem;
}

.form-success {
  background: #e8f8f0;
  border: 1px solid #b6e5ce;
  color: #176f4a;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  font-size: 0.86rem;
  margin-top: 0.8rem;
}

.app-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.app-nav a {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.4rem 0.74rem;
  text-decoration: none;
  color: var(--color-navy-soft);
  font-weight: 650;
  background: #fff;
}

.app-nav a:hover {
  border-color: var(--color-teal-dark);
  color: var(--color-teal-dark);
}

.app-search {
  display: block;
  font-weight: 700;
  color: var(--color-navy-soft);
}

.app-search-input {
  width: 100%;
  border: 1px solid #cad9e4;
  border-radius: 12px;
  padding: 0.72rem 0.86rem;
  background: #fff;
}

.app-grid {
  display: grid;
  gap: 1rem;
}

.resource-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1rem;
}

.resource-card h2,
.resource-card h3 {
  margin-top: 0;
  color: var(--color-navy);
}

.prompt-code {
  margin: 0 0 0.8rem;
  border: 1px solid #d4e4ee;
  border-radius: 12px;
  background: #f7fbfe;
  padding: 0.9rem;
  white-space: pre-wrap;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #1d3853;
}

.article {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 1.6rem;
}

.article h2,
.article h3 {
  font-family: "Sora", "Inter Tight", system-ui, sans-serif;
  color: var(--color-navy);
}

.article h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.article h3 {
  margin-top: 1.4rem;
  font-size: 1.17rem;
}

.article p {
  color: #2c4058;
}

.article aside {
  border-left: 4px solid var(--color-teal);
  background: #eff9fb;
  border-radius: 12px;
  padding: 0.95rem 1rem;
  margin: 1rem 0;
}

.summary-box {
  border: 1px solid #d2e6ec;
  background: #f7fcff;
  border-radius: 14px;
  padding: 1rem;
}

.summary-box h2 {
  margin-top: 0;
}

.summary-box ol {
  margin: 0;
  padding-left: 1rem;
}

.summary-box li {
  margin: 0.32rem 0;
}

.summary-box a {
  color: var(--color-navy-soft);
  text-decoration: none;
  font-weight: 650;
}

.summary-box a:hover {
  text-decoration: underline;
  color: var(--color-teal-dark);
}

.article-cta {
  margin-top: 2rem;
}

.article-meta-block {
  margin-top: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}


.article-author {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.article-author img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  object-fit: cover;
}

.article-author-name {
  margin: 0;
  font-weight: 800;
  color: var(--color-navy);
}

.article-author-role {
  margin: 0.15rem 0 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.article-published {
  margin: 0.25rem 0 0;
  color: #28566a;
  font-size: 0.84rem;
  font-weight: 700;
}

.duo-photo {
  margin: 0 0 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.duo-photo img {
  width: 100%;
  display: block;
}

.duo-photo figcaption {
  margin: 0;
  padding: 0.75rem 1rem 0.95rem;
  font-size: 0.92rem;
  color: #4f657b;
}

.article-cover {
  margin: 1.1rem 0 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.article-cover img {
  width: 100%;
  height: clamp(170px, 21vw, 245px);
  object-fit: cover;
}

.imported-article> :first-child {
  margin-top: 0;
}

.imported-article img {
  border-radius: 12px;
  border: 1px solid var(--color-border);
  margin: 1rem 0;
}

.imported-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  overflow-x: auto;
  display: block;
}

.imported-article th,
.imported-article td {
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.7rem;
  text-align: left;
}

.imported-article code {
  background: #eef5fb;
  border: 1px solid #d4e2ec;
  border-radius: 8px;
  padding: 0.1rem 0.32rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, monospace;
}

.legal-content {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1.35rem;
}

.legal-content h2,
.legal-content h3 {
  color: var(--color-navy);
}

.legal-content p,
.legal-content li {
  color: #31485f;
}

.footer {
  margin-top: 4rem;
  background: #06192d;
  color: #d8e5f0;
  padding: 2.6rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.35fr repeat(4, 1fr);
}

.footer h3,
.footer h4 {
  margin-top: 0;
  color: #fff;
}

.footer a {
  color: #c6d9e8;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer .credential-logos {
  margin-top: 0.9rem;
}

.footer .credential-logo {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  color: #f4f8fb;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-meta {
  margin-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  font-size: 0.84rem;
  color: #9fb3c3;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-manage-btn {
  appearance: none;
  border: 0;
  background: none;
  color: #c6d9e8;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.cookie-manage-btn:hover,
.cookie-manage-btn:focus-visible {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: grid;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(7, 27, 51, 0.96);
  box-shadow: 0 20px 50px rgba(7, 27, 51, 0.35);
  padding: 1rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content p {
  margin: 0;
  color: #e6eff7;
}

.cookie-banner__content p strong {
  color: #ffffff;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.cookie-banner__actions .btn {
  min-height: 40px;
}

.cookie-banner__actions .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}

.cookie-banner__actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-banner__link {
  color: #ffdcae;
  font-weight: 650;
  text-decoration: none;
}

.cookie-banner__link:hover,
.cookie-banner__link:focus-visible {
  text-decoration: underline;
}

#tarteaucitronAlertBig,
#tarteaucitronAlertSmall,
#tarteaucitronIcon {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {

  .nav-desktop,
  .header-actions .desktop-only {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-floating-cards {
    position: static;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0.7rem;
  }

  .hero-method-badge {
    position: static;
    display: block;
    margin-top: 0.7rem;
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .reviews-live-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 3.6rem 0;
  }

  .container {
    width: min(var(--max-width), calc(100% - 1.4rem));
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-floating-cards {
    position: static;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.7rem;
  }

  .hero-method-badge {
    position: static;
    display: block;
    margin-top: 0.7rem;
    max-width: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .offer-card-header {
    grid-template-columns: 40px 1fr;
    gap: 0.65rem;
  }

  .offer-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .offer-mark svg {
    width: 26px;
    height: 26px;
  }

  .offer-hero-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .offer-mark-large {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .offer-mark-large svg {
    width: 34px;
    height: 34px;
  }

  .credential-logos {
    gap: 0.4rem;
  }

  .credential-logo {
    max-width: 100%;
  }

  .credential-logo span {
    font-size: 0.68rem;
  }

  .final-cta,
  .cta-box,
  .article,
  .legal-content {
    padding: 1.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
  }

  .cookie-banner {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.85rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions .btn,
  .cookie-banner__link {
    width: 100%;
    text-align: center;
  }

  .comparison-slider {
    min-height: 250px;
    aspect-ratio: 4 / 3;
  }

  .visual-carousel-controls {
    justify-content: stretch;
  }

  .carousel-btn {
    flex: 1;
    text-align: center;
  }

  .comparison-captions li {
    font-size: 0.76rem;
  }

  .comparison-label small {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-floating-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
