/* ============================================================
   Hobetu — Design tokens (from the Hobetu design system)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Brand greens */
  --green-900: #0C2422;
  --green-800: #123332;
  --green-700: #234A4F;
  --green-600: #315251;
  --green-500: #4A6B6A;
  --green-300: #8AA3A1;

  /* Brand coral */
  --coral-600: #DD7E5F;
  --coral-500: #EF9C82;
  --coral-300: #FFD9BE;
  --coral-100: #F9EEE7;

  /* Warm neutrals */
  --sand-400: #D3BAA4;
  --white: #FFFFFF;

  /* Fonts */
  --font-display: 'Quattrocento', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Radii & shadows */
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;
  --shadow-coral: 0 12px 40px rgba(239, 156, 130, .35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--green-900);
  font-family: var(--font-sans);
}

img { max-width: 100%; }

::placeholder { color: rgba(18, 51, 50, .38); }

a { -webkit-tap-highlight-color: transparent; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

.dot {
  display: inline-block;
  width: .14em;
  height: .14em;
  background: var(--coral-500);
  border-radius: 2px;
  vertical-align: baseline;
  margin-left: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 18px;
}
.eyebrow--muted { color: #DD7E5F; }
.eyebrow__rule {
  width: 32px;
  height: 2px;
  background: var(--coral-500);
  flex-shrink: 0;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 56px;
  background: rgba(18, 51, 50, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--coral-500);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 3px;
  letter-spacing: -.01em;
}
.wordmark .dot { margin-left: 2px; transform: translateY(-1px); }

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  color: rgba(249, 238, 231, .72);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color .14s ease;
}
.main-nav a:hover { color: var(--coral-100); }

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background .14s ease;
}
.btn--primary {
  padding: 15px 32px;
  background: var(--coral-500);
  color: var(--green-800);
  font-size: 15px;
}
.btn--primary:hover { background: var(--coral-600); }
.btn--nav {
  padding: 10px 24px;
  background: var(--coral-500);
  color: var(--green-800);
  font-size: 14px;
}
.btn--nav:hover { background: var(--coral-600); }
.btn--outline {
  padding: 13px 28px;
  border: 2px solid rgba(249, 238, 231, .3);
  color: var(--coral-100);
  font-weight: 500;
  font-size: 15px;
  background: transparent;
}
.btn--outline:hover { border-color: rgba(249, 238, 231, .65); }
.btn--submit {
  padding: 14px 36px;
  background: var(--coral-500);
  color: var(--green-800);
  font-size: 15px;
  letter-spacing: .01em;
}
.btn--submit:hover:not(:disabled) { background: var(--coral-600); }
.btn--submit:disabled { cursor: not-allowed; opacity: .7; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--coral-100);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: var(--green-800);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url(../assets/photo-meeting.png) right center/cover no-repeat;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(18, 51, 50, .98) 0%, rgba(18, 51, 50, .88) 48%, rgba(18, 51, 50, .25) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  padding: 100px 0;
}
.hero__content { max-width: 680px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 62px;
  line-height: 1.06;
  color: var(--white);
  margin: 0 0 26px;
  text-wrap: pretty;
}
.hero p.lead {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(249, 238, 231, .75);
  margin: 0 0 44px;
  max-width: 520px;
  text-wrap: pretty;
}
.hero p.lead strong { color: var(--coral-100); font-weight: 700; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SECTION HEADINGS (shared) ── */
h2.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  line-height: 1.08;
  margin: 0 0 14px;
  max-width: 680px;
  text-wrap: pretty;
}
p.section-lead {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 52px;
  text-wrap: pretty;
}

/* ── KPI BAND ── */
.kpi-band {
  background: var(--green-700);
  padding: 72px 0;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpi__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--coral-500);
}
.kpi__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--coral-100);
}

/* ── ENJEUX ── */
.section-cream { background: var(--coral-100); padding: 100px 0; }
.section-title--dark { color: var(--green-800); }
.section-lead--dark { color: var(--green-600); }

.enjeux-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card-issue {
  background: var(--white);
  border: 1px solid rgba(18, 51, 50, .10);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 6px rgba(18, 51, 50, .08);
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
}
.card-issue::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--coral-500);
}
.card-issue__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--coral-500);
  line-height: 1;
  margin-bottom: 14px;
}
.card-issue h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-800);
  margin: 0 0 10px;
}
.card-issue p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--green-600);
  margin: 0;
  text-wrap: pretty;
}

/* ── OFFRE ── */
.section-dark { background: var(--green-800); padding: 100px 0; }
.section-title--light { color: var(--white); }
.section-lead--light { color: rgba(249, 238, 231, .65); }

.offre-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.offre-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: 3px solid var(--coral-500);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.offre-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 16px;
}
.offre-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 14px;
}
.offre-card__when {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(249, 238, 231, .58);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.offre-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.offre-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(249, 238, 231, .78);
  line-height: 1.5;
}
.offre-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--coral-500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.offre-highlight {
  background: rgba(239, 156, 130, .09);
  border: 1px solid rgba(239, 156, 130, .25);
  border-top: 3px solid var(--coral-500);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.offre-highlight__big {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--coral-500);
  line-height: 1;
}
.offre-highlight__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--coral-100);
  line-height: 1.4;
}
.offre-highlight__desc {
  font-size: 14px;
  color: rgba(249, 238, 231, .6);
  line-height: 1.55;
  text-wrap: pretty;
}
.offre-highlight__badge {
  margin-top: 12px;
  background: rgba(239, 156, 130, .18);
  border: 1.5px solid rgba(239, 156, 130, .45);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
}
.offre-highlight__badge-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--coral-500);
  line-height: 1;
}
.offre-highlight__badge-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral-100);
  margin-top: 4px;
}

/* ── BÉNÉFICES ── */
.benefices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefices-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefice {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.benefice__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral-500);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-800);
  margin-top: 2px;
}
.benefice h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--green-800);
  margin: 0 0 5px;
}
.benefice p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--green-600);
  margin: 0;
  text-wrap: pretty;
}

.benefices-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.panel-dark {
  background: var(--green-800);
  border-radius: 18px;
  padding: 36px;
  color: var(--coral-100);
}
.panel-dark__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 18px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.badge--neutral { background: rgba(18, 51, 50, .08); color: var(--green-700); }
.badge--positive { background: rgba(74, 107, 106, .16); color: var(--green-600); }

.panel-coral {
  background: var(--coral-500);
  border-radius: 18px;
  padding: 36px;
  color: var(--green-800);
}
.panel-coral__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.panel-coral p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
  text-wrap: pretty;
}

/* ── APPROCHE ── */
.section-darkest { background: var(--green-900); padding: 96px 0; }

.approche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.approche-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-left: 3px solid var(--coral-500);
  border-radius: 0 14px 14px 0;
  padding: 32px 36px;
}
.approche-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
}
.approche-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(249, 238, 231, .65);
  margin: 0;
  text-wrap: pretty;
}

/* ── MÉTHODE ── */
.methode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.methode-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(249, 238, 231, .65);
  margin: 0;
  text-wrap: pretty;
}
.methode-steps { display: flex; flex-direction: column; gap: 0; }
.methode-step {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.methode-step:first-child { padding-top: 0; }
.methode-step:last-child { border-bottom: none; padding-bottom: 0; }
.methode-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral-500);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-800);
}
.methode-step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
}
.methode-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(249, 238, 231, .62);
  margin: 0;
  text-wrap: pretty;
}

/* ── FONDATEUR ── */
.fondateur-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.fondateur-portrait { position: relative; }
.fondateur-portrait__frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand-400);
}
.fondateur-portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fondateur-portrait__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--coral-500);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: var(--shadow-coral);
}
.fondateur-portrait__badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}
.fondateur-portrait__badge-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(18, 51, 50, .7);
  margin-top: 4px;
}
.fondateur-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  line-height: 1.08;
  color: var(--green-800);
  margin: 0 0 6px;
}
.fondateur-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--coral-500);
  margin: 0 0 24px;
  letter-spacing: .02em;
}
.fondateur-body p.body-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--green-600);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.philosophy-panel {
  background: var(--green-800);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 32px;
}
.philosophy-panel__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 16px;
}
.philosophy-panel__quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--coral-100);
  margin: 0 0 10px;
  font-style: italic;
}
.philosophy-panel__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(249, 238, 231, .65);
  margin: 0;
  text-wrap: pretty;
}

/* ── CONTACT ── */
.contact-wrap { max-width: 820px; margin: 0 auto; }
.contact-head { text-align: center; margin-bottom: 56px; }
.contact-head .eyebrow { justify-content: center; gap: 16px; }
.contact-head .eyebrow__rule { width: 24px; }
.contact-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.07;
  color: var(--white);
  margin: 0 0 18px;
}
.contact-head p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(249, 238, 231, .65);
  max-width: 440px;
  margin: 0 auto;
  text-wrap: pretty;
}

.contact-panel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral-100);
  letter-spacing: .04em;
}
.form-field label .req { color: var(--coral-500); }
.form-field input,
.form-field textarea {
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  color: var(--green-800);
  outline: none;
  width: 100%;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--coral-500);
  box-shadow: 0 0 0 3px rgba(239, 156, 130, .22);
}
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  flex-wrap: wrap;
  gap: 12px;
}
.form-footer__note { font-size: 13px; color: rgba(249, 238, 231, .35); }
.form-error {
  font-size: 13.5px;
  color: var(--coral-500);
  margin: -8px 0 0;
}

.contact-success {
  background: rgba(239, 156, 130, .08);
  border: 1px solid rgba(239, 156, 130, .2);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
}
.contact-success__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(239, 156, 130, .15);
  border: 2px solid var(--coral-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--coral-500);
  font-weight: 700;
}
.contact-success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--white);
  margin: 0 0 14px;
}
.contact-success p {
  font-size: 17px;
  color: rgba(249, 238, 231, .65);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.65;
}

[hidden] { display: none !important; }

/* ── FOOTER ── */
.site-footer { background: var(--green-900); padding: 72px 0 40px; }
.footer-grid {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--coral-500);
  line-height: 1;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(249, 238, 231, .55);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a,
.footer-links a {
  color: rgba(249, 238, 231, .5);
  text-decoration: none;
  font-size: 15px;
  transition: color .14s ease;
}
.footer-contacts a:hover,
.footer-links a:hover { color: var(--coral-100); }
.footer-col-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-expertise {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: rgba(249, 238, 231, .5);
  line-height: 1.5;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(249, 238, 231, .25);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .container { padding-left: 32px; padding-right: 32px; }
  .site-header { padding: 16px 32px; }
  .hero__inner { padding: 72px 0; }
  .hero h1 { font-size: 44px; }
  .kpi-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
  .enjeux-grid { grid-template-columns: 1fr; }
  .offre-grid { grid-template-columns: repeat(2, 1fr); }
  .benefices-grid,
  .methode-grid,
  .fondateur-grid { grid-template-columns: 1fr; gap: 48px; }
  .fondateur-portrait { max-width: 360px; margin: 0 auto; }
  .approche-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .site-header { padding: 14px 20px; }
  .main-nav {
    position: fixed;
    inset: 65px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(18, 51, 50, .99);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 8px 20px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .06); font-size: 16px; }
  .main-nav .btn--nav { margin-top: 14px; text-align: center; }
  .nav-toggle { display: block; }

  .hero { min-height: auto; }
  .hero h1 { font-size: 34px; }
  .hero p.lead { font-size: 17px; }

  h2.section-title { font-size: 32px; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .offre-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-panel { padding: 36px 24px; }
  .contact-head h2 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; }
}
