/* ═══════════════════════════════════════════════
   SEELINK GHOST THEME — screen.css v2.0
   Palette : #f05a28 (accent) · #1c1c1c (dark) · #fff (white)
   Fonts   : Playfair Display (headings) · DM Sans (body)
════════════════════════════════════════════════ */

/* ── RESET & TOKENS ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sl-accent:      #f05a28;
  --sl-accent-dark: #c4441a;
  --sl-dark:        #1c1c1c;
  --sl-mid:         #3a3a3a;
  --sl-muted:       #6b6b6b;
  --sl-border:      #e5e5e5;
  --sl-bg:          #f9f9f7;
  --sl-white:       #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);

  --header-h: 72px;
  --max-w:    1200px;
  --max-prose: 760px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--sl-dark);
  background: var(--sl-white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary  { background: var(--sl-accent); color: var(--sl-white); }
.btn--primary:hover { background: var(--sl-accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,90,40,.35); }
.btn--ghost    { background: transparent; color: var(--sl-dark); border-color: var(--sl-border); }
.btn--ghost:hover { border-color: var(--sl-dark); background: var(--sl-bg); }
.btn--outline  { background: transparent; color: var(--sl-accent); border-color: var(--sl-accent); }
.btn--outline:hover { background: var(--sl-accent); color: var(--sl-white); }
.btn--sm       { padding: 8px 18px; font-size: 14px; }
.btn--lg       { padding: 16px 36px; font-size: 16px; }

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sl-border);
  height: var(--header-h);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--sl-dark);
  letter-spacing: -.3px;
}
.site-logo__badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--sl-accent);
  color: var(--sl-white);
  padding: 2px 7px;
  border-radius: 4px;
}
.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  gap: 4px;
  list-style: none;
}
.site-nav__link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--sl-mid);
  transition: all .15s;
}
.site-nav__link:hover,
.site-nav__link--active { color: var(--sl-dark); background: var(--sl-bg); }
.site-header__cta { flex-shrink: 0; }
.site-nav__toggle { display: none; }

/* ── HERO HOMEPAGE ──────────────────────────── */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sl-dark);
  color: var(--sl-white);
}
.hero-home__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(240,90,40,.2);
  color: var(--sl-accent);
  border: 1px solid rgba(240,90,40,.4);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.hero-home__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  max-width: 860px;
}
.hero-home__sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.hero-home__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Orbs décoratifs */
.hero-home__visual { position: absolute; inset: 0; z-index: 1; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.hero-orb--1 { width: 600px; height: 600px; background: var(--sl-accent); right: -100px; top: -100px; }
.hero-orb--2 { width: 400px; height: 400px; background: #ff8c5a; right: 200px; bottom: -50px; opacity: .15; }
.hero-orb--3 { width: 300px; height: 300px; background: #fff; left: 30%; top: 50%; opacity: .04; }

/* ── SECTION SHARED ─────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sl-accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--sl-dark);
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-title { max-width: 700px; margin: 0 auto; }

/* ── MISSION STRIP ──────────────────────────── */
.mission-strip {
  background: var(--sl-bg);
  border-bottom: 1px solid var(--sl-border);
  padding: 56px 0;
}
.mission-strip__claim {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--sl-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.mission-strip__pillars {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.mission-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sl-mid);
}
.mission-pillar__icon { color: var(--sl-accent); font-size: 12px; }

/* ── SECTION SUBTITLE ───────────────────────── */
.section-subtitle {
  font-size: 17px;
  color: var(--sl-muted);
  max-width: 580px;
  margin: 16px auto 0;
  line-height: 1.65;
}

/* ── OFFER CARD EMOJI + BADGE ───────────────── */
.offer-card__emoji { font-size: 36px; line-height: 1; }
.offer-card__tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--sl-accent);
  margin-top: -8px;
}
.offer-card--accent .offer-card__tagline { color: rgba(240,90,40,.9); }
.offer-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(240,90,40,.2);
  color: var(--sl-accent);
  border: 1px solid rgba(240,90,40,.4);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ── POSITIONNEMENT ─────────────────────────── */
.positioning-section {
  padding: 120px 0;
  background: var(--sl-white);
}
.positioning-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.positioning-section__sub {
  font-size: 17px;
  color: var(--sl-muted);
  margin: 20px 0 32px;
  line-height: 1.7;
}
.positioning-badge {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-left: 4px solid var(--sl-accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--sl-dark);
}
.positioning-section__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.not-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--sl-mid);
}
.not-item__x {
  font-size: 18px;
  font-weight: 700;
  color: var(--sl-accent);
  flex-shrink: 0;
}

/* ── OFFRES ─────────────────────────────────── */
.offers-section {
  padding: 120px 0;
  background: var(--sl-white);
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color .25s;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-card:hover::before { border-color: var(--sl-accent); }

.offer-card--accent {
  background: var(--sl-dark);
  border-color: var(--sl-dark);
  color: var(--sl-white);
}
.offer-card--accent .offer-card__number { color: rgba(255,255,255,.3); }
.offer-card--accent .offer-card__icon  { color: var(--sl-accent); }
.offer-card--accent .offer-card__title { color: var(--sl-white); }
.offer-card--accent .offer-card__desc  { color: rgba(255,255,255,.7); }
.offer-card--accent .offer-card__list  { color: rgba(255,255,255,.7); }
.offer-card--accent .offer-card__list li::before { background: var(--sl-accent); }
.offer-card--accent .offer-card__cta   { color: var(--sl-accent); }
.offer-card--accent:hover::before { border-color: var(--sl-accent); }

.offer-card__number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--sl-border);
}
.offer-card__icon {
  width: 48px;
  height: 48px;
  color: var(--sl-accent);
}
.offer-card__icon svg { width: 100%; height: 100%; }
.offer-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sl-dark);
}
.offer-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--sl-muted);
  flex: 1;
}
.offer-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--sl-muted);
}
.offer-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.offer-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sl-accent);
  flex-shrink: 0;
}
.offer-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sl-accent);
  text-decoration: none;
  transition: gap .2s;
}
.offer-card__cta:hover { gap: 10px; }

/* ── POURQUOI SEELINK ───────────────────────── */
.why-section {
  padding: 120px 0;
  background: var(--sl-bg);
}
.why-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-section__intro {
  font-size: 17px;
  color: var(--sl-muted);
  margin: 24px 0 40px;
  line-height: 1.7;
}
.why-section__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item__icon {
  font-size: 16px;
  color: var(--sl-accent);
  flex-shrink: 0;
  margin-top: 4px;
  width: 28px;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-item p { font-size: 15px; color: var(--sl-muted); line-height: 1.6; }

/* ── CTA HOMEPAGE ───────────────────────────── */
.cta-home {
  padding: 120px 0;
  background: var(--sl-dark);
  color: var(--sl-white);
}
.cta-home__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-home__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.cta-home__sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin-bottom: 48px;
  line-height: 1.6;
}
.cta-home__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-home .btn--primary { background: var(--sl-accent); }
.cta-home .btn--ghost   { color: var(--sl-white); border-color: rgba(255,255,255,.3); }
.cta-home .btn--ghost:hover { border-color: var(--sl-white); background: rgba(255,255,255,.08); }

/* ── BLOG LISTING ───────────────────────────── */
.blog-hero {
  background: var(--sl-dark);
  color: var(--sl-white);
  padding: 80px 0 72px;
}
.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.blog-hero__sub { font-size: 18px; color: rgba(255,255,255,.65); }

.blog-listing { padding: 80px 0; }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.post-card {
  background: var(--sl-white);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card--featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; }

.post-card__image-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--sl-bg); }
.post-card--featured .post-card__image-wrap { aspect-ratio: unset; height: 100%; min-height: 320px; }
.post-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card__image-wrap img { transform: scale(1.04); }

.post-card__body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.post-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl-accent);
  text-decoration: none;
}
.post-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.3; }
.post-card__title a { text-decoration: none; color: var(--sl-dark); transition: color .15s; }
.post-card__title a:hover { color: var(--sl-accent); }
.post-card--featured .post-card__title { font-size: 30px; }
.post-card__excerpt { font-size: 15px; color: var(--sl-muted); line-height: 1.6; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--sl-muted); margin-top: auto; }

.empty-feed { text-align: center; padding: 80px 0; color: var(--sl-muted); }

/* ── ARTICLE ────────────────────────────────── */
.article-header {
  background: var(--sl-dark);
  color: var(--sl-white);
  padding: 80px 0 56px;
}
.article-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl-accent);
  text-decoration: none;
  margin-bottom: 20px;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: var(--max-prose);
  margin-bottom: 20px;
}
.article-excerpt { font-size: 19px; color: rgba(255,255,255,.7); max-width: var(--max-prose); margin-bottom: 24px; }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.5); }
.article-cover { max-height: 520px; overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  max-width: var(--max-prose);
  padding-top: 64px;
  padding-bottom: 64px;
}
.article-body h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin: 48px 0 16px; }
.article-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.article-body p   { margin-bottom: 24px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 24px; }
.article-body li  { margin-bottom: 8px; }
.article-body a   { color: var(--sl-accent); text-decoration: underline; }
.article-body strong { font-weight: 600; }
.article-body blockquote {
  border-left: 4px solid var(--sl-accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--sl-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 19px;
  font-style: italic;
}

.article-footer { padding: 48px 0; }

/* ── PAGES STATIQUES ────────────────────────── */
.page-header {
  background: var(--sl-bg);
  border-bottom: 1px solid var(--sl-border);
  padding: 64px 0 56px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -.02em;
  max-width: var(--max-prose);
}
.page-excerpt { font-size: 18px; color: var(--sl-muted); margin-top: 16px; max-width: var(--max-prose); }
.page-body {
  max-width: var(--max-prose);
  padding-top: 56px;
  padding-bottom: 80px;
}
.page-body h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin: 48px 0 16px; color: var(--sl-dark); }
.page-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.page-body p   { margin-bottom: 20px; }
.page-body ul, .page-body ol { padding-left: 24px; m
/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (pages offres + contact)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--sl-dark) 0%, #2d2d2d 100%);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240,90,40,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; max-width: 780px; }
.page-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sl-accent);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.page-hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.8);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.page-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   BENEFITS STRIP
═══════════════════════════════════════════════════════════════ */
.benefits-strip {
  background: var(--sl-bg);
  border-bottom: 1px solid var(--sl-border);
  padding: 32px 0;
}
.benefits-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--sl-dark);
  font-weight: 500;
}
.benefit-item__icon { color: var(--sl-accent); font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--sl-accent);
  padding: 56px 0;
}
.stats-strip--dark {
  background: var(--sl-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stats-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.stat-block { text-align: center; color: #fff; }
.stat-block__value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-block__label {
  font-size: 14px;
  opacity: .85;
  line-height: 1.4;
  max-width: 180px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID (cards avec emoji, titre, desc, checks)
═══════════════════════════════════════════════════════════════ */
.services-section {
  padding: 96px 0;
  background: #fff;
}
.services-section:nth-child(even) {
  background: var(--sl-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.services-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: #fff;
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.service-card__emoji {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 15px;
  color: var(--sl-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card--detailed .service-card__desc { margin-bottom: 20px; }

.service-card__checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card__checks li {
  font-size: 14px;
  color: var(--sl-dark);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.4;
}
.service-card__checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sl-accent);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 96px 0;
  background: var(--sl-bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.pricing-card--featured {
  border-color: var(--sl-accent);
  border-width: 2px;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(240,90,40,.15);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sl-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__level {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sl-muted);
  margin-bottom: 8px;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--sl-dark);
  margin-bottom: 12px;
}
.pricing-card__desc {
  font-size: 15px;
  color: var(--sl-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sl-border);
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.pricing-card__features li {
  font-size: 14px;
  color: var(--sl-dark);
  padding: 7px 0 7px 24px;
  position: relative;
  line-height: 1.4;
  border-bottom: 1px solid var(--sl-border);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--sl-accent);
  font-size: 12px;
}
.btn--full { width: 100%; text-align: center; justify-content: center; }
.btn--outline {
  background: transparent;
  border: 2px solid var(--sl-dark);
  color: var(--sl-dark);
}
.btn--outline:hover {
  background: var(--sl-dark);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   APPROACH STEPS
═══════════════════════════════════════════════════════════════ */
.approach-section {
  padding: 96px 0;
  background: var(--sl-bg);
}
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.approach-step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--sl-border);
  align-items: flex-start;
}
.approach-step:last-child { border-bottom: none; }
.approach-step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--sl-accent);
  line-height: 1;
  min-width: 64px;
  opacity: .3;
}
.approach-step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 8px;
}
.approach-step__desc {
  font-size: 15px;
  color: var(--sl-muted);
  line-height: 1.6;
}

/* HORIZONTAL (4-step) */
.approach-steps--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 0;
}
.approach-steps--horizontal .approach-step {
  flex: 1 1 220px;
  flex-direction: column;
  gap: 12px;
  padding: 32px 24px;
  border-bottom: none;
  border-right: 1px solid var(--sl-border);
}
.approach-steps--horizontal .approach-step:last-child { border-right: none; }
.approach-steps--horizontal .approach-step__num {
  font-size: 32px;
  min-width: auto;
  opacity: .6;
}

/* ═══════════════════════════════════════════════════════════════
   THREATS GRID
═══════════════════════════════════════════════════════════════ */
.threats-section {
  padding: 72px 0;
  background: #fff;
}
.threats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.threat-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.threat-card__emoji { font-size: 40px; margin-bottom: 16px; display: block; }
.threat-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 10px;
}
.threat-card__stat {
  font-size: 14px;
  color: var(--sl-muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   COMMITMENTS GRID
═══════════════════════════════════════════════════════════════ */
.commitments-section {
  padding: 96px 0;
  background: #fff;
}
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.commitment-card {
  padding: 32px;
  background: var(--sl-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sl-border);
}
.commitment-card__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--sl-accent);
  opacity: .3;
  line-height: 1;
  margin-bottom: 16px;
}
.commitment-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 12px;
}
.commitment-card__desc {
  font-size: 15px;
  color: var(--sl-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.contact-info-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.contact-info-card__icon { font-size: 28px; margin-bottom: 12px; display: block; }
.contact-info-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sl-muted);
  margin-bottom: 8px;
}
.contact-info-card__value {
  font-size: 15px;
  color: var(--sl-dark);
  line-height: 1.6;
  font-weight: 500;
}
.contact-info-card__value a { color: var(--sl-accent); text-decoration: none; }
.contact-info-card__value a:hover { text-decoration: underline; }
.contact-info-card__value small { font-size: 13px; font-weight: 400; color: var(--sl-muted); }

/* Form */
.contact-form-section {
  max-width: 680px;
  margin: 0 auto 72px;
}
.contact-form-section__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 8px;
}
.contact-form-section__sub {
  font-size: 16px;
  color: var(--sl-muted);
  margin-bottom: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__field label { font-size: 14px; font-weight: 600; color: var(--sl-dark); }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 12px 16px;
  border: 1px solid var(--sl-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--sl-dark);
  background: #fff;
  transition: border-color .2s;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--sl-accent);
}
.contact-form__field textarea { resize: vertical; }
.contact-form__consent label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.contact-form__consent input[type=checkbox] { margin-top: 3px; accent-color: var(--sl-accent); }
.contact-form__consent span { font-size: 14px; color: var(--sl-muted); line-height: 1.5; }

/* RDV */
.rdv-section {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--sl-bg);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--sl-border);
}
.rdv-section__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 12px;
}
.rdv-section__sub {
  font-size: 16px;
  color: var(--sl-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* CTA contact info */
.cta-home__contact {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}
.cta-home__contact a { color: var(--sl-accent); text-decoration: none; }
.cta-home__contact a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — nouveaux composants
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .threats-grid { grid-template-columns: repeat(2, 1fr); }
  .commitments-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps--horizontal { flex-direction: column; }
  .approach-steps--horizontal .approach-step { border-right: none; border-bottom: 1px solid var(--sl-border); }
  .approach-steps--horizontal .approach-step:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .threats-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .page-hero { padding: 64px 0 56px; }
  .benefits-strip__list { flex-direction: column; gap: 12px; }
}

/* ── KOENIG EDITOR REQUIRED CLASSES ────────────── */
.kg-width-wide { margin-left: calc(50% - 50vw + 2rem); margin-right: calc(50% - 50vw + 2rem); }
.kg-width-full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.kg-width-wide img, .kg-width-full img { width: 100%; }/* ══ FOOTER ════════════════════════════════════════ */
.site-footer {
  background: var(--sl-dark);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
  font-size: 15px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
}
.site-footer__tagline {
  font-size: 14px;
  color: var(--sl-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.site-footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.site-footer__col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.site-footer__link {
  display: block;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color .15s;
}
.site-footer__link:hover { color: var(--sl-accent); }
.site-footer__link--badge {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.site-footer__link--badge:hover { color: var(--sl-accent); }
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.site-footer__copy { margin: 0; }
.site-footer__legal { display: flex; gap: 8px; align-items: center; }
.site-footer__legal a { color: rgba(255,255,255,.35); text-decoration: none; }
.site-footer__legal a:hover { color: var(--sl-accent); }
@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── RESET & TOKENS ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sl-accent:      #f05a28;
  --sl-accent-dark: #c4441a;
  --sl-dark:        #1c1c1c;
  --sl-mid:         #3a3a3a;
  --sl-muted:       #6b6b6b;
  --sl-border:      #e5e5e5;
  --sl-bg:          #f9f9f7;
  --sl-white:       #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);

  --header-h: 72px;
  --max-w:    1200px;
  --max-prose: 760px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--sl-dark);
  background: var(--sl-white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary  { background: var(--sl-accent); color: var(--sl-white); }
.btn--primary:hover { background: var(--sl-accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,90,40,.35); }
.btn--ghost    { background: transparent; color: var(--sl-dark); border-color: var(--sl-border); }
.btn--ghost:hover { border-color: var(--sl-dark); background: var(--sl-bg); }
.btn--outline  { background: transparent; color: var(--sl-accent); border-color: var(--sl-accent); }
.btn--outline:hover { background: var(--sl-accent); color: var(--sl-white); }
.btn--sm       { padding: 8px 18px; font-size: 14px; }
.btn--lg       { padding: 16px 36px; font-size: 16px; }

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sl-border);
  height: var(--header-h);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--sl-dark);
  letter-spacing: -.3px;
}
.site-logo__badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--sl-accent);
  color: var(--sl-white);
  padding: 2px 7px;
  border-radius: 4px;
}
.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  gap: 4px;
  list-style: none;
}
.site-nav__link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--sl-mid);
  transition: all .15s;
}
.site-nav__link:hover,
.site-nav__link--active { color: var(--sl-dark); background: var(--sl-bg); }
.site-header__cta { flex-shrink: 0; }
.site-nav__toggle { display: none; }

/* ── HERO HOMEPAGE ──────────────────────────── */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sl-dark);
  color: var(--sl-white);
}
.hero-home__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(240,90,40,.2);
  color: var(--sl-accent);
  border: 1px solid rgba(240,90,40,.4);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.hero-home__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  max-width: 860px;
}
.hero-home__sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.hero-home__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Orbs décoratifs */
.hero-home__visual { position: absolute; inset: 0; z-index: 1; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.hero-orb--1 { width: 600px; height: 600px; background: var(--sl-accent); right: -100px; top: -100px; }
.hero-orb--2 { width: 400px; height: 400px; background: #ff8c5a; right: 200px; bottom: -50px; opacity: .15; }
.hero-orb--3 { width: 300px; height: 300px; background: #fff; left: 30%; top: 50%; opacity: .04; }

/* ── SECTION SHARED ─────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sl-accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--sl-dark);
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header .section-title { max-width: 700px; margin: 0 auto; }

/* ── MISSION STRIP ──────────────────────────── */
.mission-strip {
  background: var(--sl-bg);
  border-bottom: 1px solid var(--sl-border);
  padding: 56px 0;
}
.mission-strip__claim {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--sl-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.mission-strip__pillars {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.mission-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sl-mid);
}
.mission-pillar__icon { color: var(--sl-accent); font-size: 12px; }

/* ── SECTION SUBTITLE ───────────────────────── */
.section-subtitle {
  font-size: 17px;
  color: var(--sl-muted);
  max-width: 580px;
  margin: 16px auto 0;
  line-height: 1.65;
}

/* ── OFFER CARD EMOJI + BADGE ───────────────── */
.offer-card__emoji { font-size: 36px; line-height: 1; }
.offer-card__tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--sl-accent);
  margin-top: -8px;
}
.offer-card--accent .offer-card__tagline { color: rgba(240,90,40,.9); }
.offer-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(240,90,40,.2);
  color: var(--sl-accent);
  border: 1px solid rgba(240,90,40,.4);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ── POSITIONNEMENT ─────────────────────────── */
.positioning-section {
  padding: 120px 0;
  background: var(--sl-white);
}
.positioning-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.positioning-section__sub {
  font-size: 17px;
  color: var(--sl-muted);
  margin: 20px 0 32px;
  line-height: 1.7;
}
.positioning-badge {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-left: 4px solid var(--sl-accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--sl-dark);
}
.positioning-section__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.not-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--sl-mid);
}
.not-item__x {
  font-size: 18px;
  font-weight: 700;
  color: var(--sl-accent);
  flex-shrink: 0;
}

/* ── OFFRES ─────────────────────────────────── */
.offers-section {
  padding: 120px 0;
  background: var(--sl-white);
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color .25s;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-card:hover::before { border-color: var(--sl-accent); }

.offer-card--accent {
  background: var(--sl-dark);
  border-color: var(--sl-dark);
  color: var(--sl-white);
}
.offer-card--accent .offer-card__number { color: rgba(255,255,255,.3); }
.offer-card--accent .offer-card__icon  { color: var(--sl-accent); }
.offer-card--accent .offer-card__title { color: var(--sl-white); }
.offer-card--accent .offer-card__desc  { color: rgba(255,255,255,.7); }
.offer-card--accent .offer-card__list  { color: rgba(255,255,255,.7); }
.offer-card--accent .offer-card__list li::before { background: var(--sl-accent); }
.offer-card--accent .offer-card__cta   { color: var(--sl-accent); }
.offer-card--accent:hover::before { border-color: var(--sl-accent); }

.offer-card__number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--sl-border);
}
.offer-card__icon {
  width: 48px;
  height: 48px;
  color: var(--sl-accent);
}
.offer-card__icon svg { width: 100%; height: 100%; }
.offer-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sl-dark);
}
.offer-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--sl-muted);
  flex: 1;
}
.offer-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--sl-muted);
}
.offer-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.offer-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sl-accent);
  flex-shrink: 0;
}
.offer-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sl-accent);
  text-decoration: none;
  transition: gap .2s;
}
.offer-card__cta:hover { gap: 10px; }

/* ── POURQUOI SEELINK ───────────────────────── */
.why-section {
  padding: 120px 0;
  background: var(--sl-bg);
}
.why-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-section__intro {
  font-size: 17px;
  color: var(--sl-muted);
  margin: 24px 0 40px;
  line-height: 1.7;
}
.why-section__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item__icon {
  font-size: 16px;
  color: var(--sl-accent);
  flex-shrink: 0;
  margin-top: 4px;
  width: 28px;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-item p { font-size: 15px; color: var(--sl-muted); line-height: 1.6; }

/* ── CTA HOMEPAGE ───────────────────────────── */
.cta-home {
  padding: 120px 0;
  background: var(--sl-dark);
  color: var(--sl-white);
}
.cta-home__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-home__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.cta-home__sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin-bottom: 48px;
  line-height: 1.6;
}
.cta-home__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-home .btn--primary { background: var(--sl-accent); }
.cta-home .btn--ghost   { color: var(--sl-white); border-color: rgba(255,255,255,.3); }
.cta-home .btn--ghost:hover { border-color: var(--sl-white); background: rgba(255,255,255,.08); }

/* ── BLOG LISTING ───────────────────────────── */
.blog-hero {
  background: var(--sl-dark);
  color: var(--sl-white);
  padding: 80px 0 72px;
}
.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.blog-hero__sub { font-size: 18px; color: rgba(255,255,255,.65); }

.blog-listing { padding: 80px 0; }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.post-card {
  background: var(--sl-white);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card--featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; }

.post-card__image-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--sl-bg); }
.post-card--featured .post-card__image-wrap { aspect-ratio: unset; height: 100%; min-height: 320px; }
.post-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card__image-wrap img { transform: scale(1.04); }

.post-card__body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.post-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl-accent);
  text-decoration: none;
}
.post-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.3; }
.post-card__title a { text-decoration: none; color: var(--sl-dark); transition: color .15s; }
.post-card__title a:hover { color: var(--sl-accent); }
.post-card--featured .post-card__title { font-size: 30px; }
.post-card__excerpt { font-size: 15px; color: var(--sl-muted); line-height: 1.6; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--sl-muted); margin-top: auto; }

.empty-feed { text-align: center; padding: 80px 0; color: var(--sl-muted); }

/* ── ARTICLE ────────────────────────────────── */
.article-header {
  background: var(--sl-dark);
  color: var(--sl-white);
  padding: 80px 0 56px;
}
.article-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl-accent);
  text-decoration: none;
  margin-bottom: 20px;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: var(--max-prose);
  margin-bottom: 20px;
}
.article-excerpt { font-size: 19px; color: rgba(255,255,255,.7); max-width: var(--max-prose); margin-bottom: 24px; }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.5); }
.article-cover { max-height: 520px; overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  max-width: var(--max-prose);
  padding-top: 64px;
  padding-bottom: 64px;
}
.article-body h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin: 48px 0 16px; }
.article-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.article-body p   { margin-bottom: 24px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 24px; }
.article-body li  { margin-bottom: 8px; }
.article-body a   { color: var(--sl-accent); text-decoration: underline; }
.article-body strong { font-weight: 600; }
.article-body blockquote {
  border-left: 4px solid var(--sl-accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--sl-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 19px;
  font-style: italic;
}

.article-footer { padding: 48px 0; }

/* ── PAGES STATIQUES ────────────────────────── */
.page-header {
  background: var(--sl-bg);
  border-bottom: 1px solid var(--sl-border);
  padding: 64px 0 56px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -.02em;
  max-width: var(--max-prose);
}
.page-excerpt { font-size: 18px; color: var(--sl-muted); margin-top: 16px; max-width: var(--max-prose); }
.page-body {
  max-width: var(--max-prose);
  padding-top: 56px;
  padding-bottom: 80px;
}
.page-body h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin: 48px 0 16px; color: var(--sl-dark); }
.page-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.page-body p   { margin-bottom: 20px; }
.page-body ul, .page-body ol { padding-left: 24px; m
/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (pages offres + contact)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--sl-dark) 0%, #2d2d2d 100%);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240,90,40,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; max-width: 780px; }
.page-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sl-accent);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.page-hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.8);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.page-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   BENEFITS STRIP
═══════════════════════════════════════════════════════════════ */
.benefits-strip {
  background: var(--sl-bg);
  border-bottom: 1px solid var(--sl-border);
  padding: 32px 0;
}
.benefits-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--sl-dark);
  font-weight: 500;
}
.benefit-item__icon { color: var(--sl-accent); font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--sl-accent);
  padding: 56px 0;
}
.stats-strip--dark {
  background: var(--sl-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stats-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.stat-block { text-align: center; color: #fff; }
.stat-block__value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-block__label {
  font-size: 14px;
  opacity: .85;
  line-height: 1.4;
  max-width: 180px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID (cards avec emoji, titre, desc, checks)
═══════════════════════════════════════════════════════════════ */
.services-section {
  padding: 96px 0;
  background: #fff;
}
.services-section:nth-child(even) {
  background: var(--sl-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.services-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: #fff;
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.service-card__emoji {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 15px;
  color: var(--sl-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card--detailed .service-card__desc { margin-bottom: 20px; }

.service-card__checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card__checks li {
  font-size: 14px;
  color: var(--sl-dark);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.4;
}
.service-card__checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sl-accent);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 96px 0;
  background: var(--sl-bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.pricing-card--featured {
  border-color: var(--sl-accent);
  border-width: 2px;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(240,90,40,.15);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sl-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__level {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sl-muted);
  margin-bottom: 8px;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--sl-dark);
  margin-bottom: 12px;
}
.pricing-card__desc {
  font-size: 15px;
  color: var(--sl-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sl-border);
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.pricing-card__features li {
  font-size: 14px;
  color: var(--sl-dark);
  padding: 7px 0 7px 24px;
  position: relative;
  line-height: 1.4;
  border-bottom: 1px solid var(--sl-border);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--sl-accent);
  font-size: 12px;
}
.btn--full { width: 100%; text-align: center; justify-content: center; }
.btn--outline {
  background: transparent;
  border: 2px solid var(--sl-dark);
  color: var(--sl-dark);
}
.btn--outline:hover {
  background: var(--sl-dark);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   APPROACH STEPS
═══════════════════════════════════════════════════════════════ */
.approach-section {
  padding: 96px 0;
  background: var(--sl-bg);
}
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.approach-step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--sl-border);
  align-items: flex-start;
}
.approach-step:last-child { border-bottom: none; }
.approach-step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--sl-accent);
  line-height: 1;
  min-width: 64px;
  opacity: .3;
}
.approach-step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 8px;
}
.approach-step__desc {
  font-size: 15px;
  color: var(--sl-muted);
  line-height: 1.6;
}

/* HORIZONTAL (4-step) */
.approach-steps--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 0;
}
.approach-steps--horizontal .approach-step {
  flex: 1 1 220px;
  flex-direction: column;
  gap: 12px;
  padding: 32px 24px;
  border-bottom: none;
  border-right: 1px solid var(--sl-border);
}
.approach-steps--horizontal .approach-step:last-child { border-right: none; }
.approach-steps--horizontal .approach-step__num {
  font-size: 32px;
  min-width: auto;
  opacity: .6;
}

/* ═══════════════════════════════════════════════════════════════
   THREATS GRID
═══════════════════════════════════════════════════════════════ */
.threats-section {
  padding: 72px 0;
  background: #fff;
}
.threats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.threat-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.threat-card__emoji { font-size: 40px; margin-bottom: 16px; display: block; }
.threat-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 10px;
}
.threat-card__stat {
  font-size: 14px;
  color: var(--sl-muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   COMMITMENTS GRID
═══════════════════════════════════════════════════════════════ */
.commitments-section {
  padding: 96px 0;
  background: #fff;
}
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.commitment-card {
  padding: 32px;
  background: var(--sl-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sl-border);
}
.commitment-card__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--sl-accent);
  opacity: .3;
  line-height: 1;
  margin-bottom: 16px;
}
.commitment-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 12px;
}
.commitment-card__desc {
  font-size: 15px;
  color: var(--sl-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.contact-info-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.contact-info-card__icon { font-size: 28px; margin-bottom: 12px; display: block; }
.contact-info-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sl-muted);
  margin-bottom: 8px;
}
.contact-info-card__value {
  font-size: 15px;
  color: var(--sl-dark);
  line-height: 1.6;
  font-weight: 500;
}
.contact-info-card__value a { color: var(--sl-accent); text-decoration: none; }
.contact-info-card__value a:hover { text-decoration: underline; }
.contact-info-card__value small { font-size: 13px; font-weight: 400; color: var(--sl-muted); }

/* Form */
.contact-form-section {
  max-width: 680px;
  margin: 0 auto 72px;
}
.contact-form-section__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 8px;
}
.contact-form-section__sub {
  font-size: 16px;
  color: var(--sl-muted);
  margin-bottom: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__field label { font-size: 14px; font-weight: 600; color: var(--sl-dark); }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 12px 16px;
  border: 1px solid var(--sl-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--sl-dark);
  background: #fff;
  transition: border-color .2s;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--sl-accent);
}
.contact-form__field textarea { resize: vertical; }
.contact-form__consent label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.contact-form__consent input[type=checkbox] { margin-top: 3px; accent-color: var(--sl-accent); }
.contact-form__consent span { font-size: 14px; color: var(--sl-muted); line-height: 1.5; }

/* RDV */
.rdv-section {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--sl-bg);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--sl-border);
}
.rdv-section__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--sl-dark);
  margin-bottom: 12px;
}
.rdv-section__sub {
  font-size: 16px;
  color: var(--sl-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* CTA contact info */
.cta-home__contact {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}
.cta-home__contact a { color: var(--sl-accent); text-decoration: none; }
.cta-home__contact a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — nouveaux composants
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .threats-grid { grid-template-columns: repeat(2, 1fr); }
  .commitments-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps--horizontal { flex-direction: column; }
  .approach-steps--horizontal .approach-step { border-right: none; border-bottom: 1px solid var(--sl-border); }
  .approach-steps--horizontal .approach-step:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .threats-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .page-hero { padding: 64px 0 56px; }
  .benefits-strip__list { flex-direction: column; gap: 12px; }
}

/* ── KOENIG EDITOR REQUIRED CLASSES ────────────── */
.kg-width-wide { margin-left: calc(50% - 50vw + 2rem); margin-right: calc(50% - 50vw + 2rem); }
.kg-width-full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.kg-width-wide img, .kg-width-full img { width: 100%; }
