/* =========================================================
   BOOSTNGO — main.css v2
   Palette : fond blanc cassé, texte brun foncé,
   accents jaune #f3c059 / orange #e25728 / beige-brun #a99886
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE3;
  --brown:       #2C1A0E;
  --brown-mid:   #4A2F1A;
  --brown-light: #7A5C44;
  --brown-muted: #A08060;
  --yellow:      #f3c059;
  --yellow-dark: #d4a030;
  --orange:      #e25728;
  --orange-dark: #c44018;
  --beige:       #a89888;
  --beige-light: #a89888;
  --border:      #E0D5C8;
  --white:       #FDFCFA;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --shadow-sm:   0 2px 8px rgba(44,26,14,.08);
  --shadow-card: 0 4px 24px rgba(44,26,14,.1);
  --shadow-lg:   0 12px 40px rgba(44,26,14,.15);
  --transition:  .22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.75;
  overflow-x: hidden;
}

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

/* =========================================================
   CONTAINER
   ========================================================= */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 5vw; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 900; line-height: 1.1; color: var(--brown); }
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(26px, 3.5vw, 42px); }
h3 { font-size: clamp(16px, 2vw, 20px); }
p  { color: var(--brown-light); font-weight: 300; max-width: 600px; }
em { font-style: italic; color: var(--orange); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
  max-width: 100%;
  white-space: normal;
  flex-wrap: wrap;
}
.eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--orange); }
@media (max-width: 768px) {
  .eyebrow { letter-spacing: 0px; font-size: 10px; }
  .eyebrow::after { display: none; }
  .hero { overflow: hidden; }
  .hero__content { overflow: hidden; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
/* Primary — brun foncé */
.btn--primary { background: #a89888; color: var(--white); border-color: #a89888; }
.btn--primary:hover { background: #8a7a6a; border-color: #8a7a6a; transform: translateY(-1px); }

/* Accent — orange vif */
.btn--accent { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--accent:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }

/* Yellow */
.btn--yellow { background: var(--yellow); color: var(--brown); border-color: var(--yellow); }
.btn--yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

/* Outline */
.btn--outline { background: transparent; color: #a89888; border-color: #a89888; }
.btn--outline:hover { background: rgba(168,152,136,.1); }

.btn--sm  { padding: 9px 20px; font-size: 11px; }
.btn--lg  { padding: 18px 44px; font-size: 14px; }
.btn--full { width: 100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,242,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.nav {
  height: 80px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 64px; width: auto; }

.nav__links { display: flex; gap: 36px; list-style: none; }
.nav__links a {
  font-size: 13px; font-weight: 500; letter-spacing: .6px;
  text-transform: uppercase; color: var(--brown-light);
  text-decoration: none; transition: color var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--orange); }

.nav__burger { display: none; }
main { padding-top: 80px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  display: grid; grid-template-columns: 55% 45%;
  min-height: calc(100vh - 80px);
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
.hero__content {
  padding: 80px 6vw; display: flex; flex-direction: column;
  justify-content: center; gap: 24px;
  border-right: 1px solid var(--border);
}
.hero__desc { font-size: 16px; line-height: 1.9; max-width: 440px; }
.hero__desc strong { font-weight: 600; color: var(--brown); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual { position: relative; overflow: hidden; background: var(--cream-dark); }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

.hero__badge {
  position: absolute; padding: 16px 22px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.hero__badge strong {
  display: block; font-family: var(--font-serif);
  font-size: 28px; font-weight: 900; line-height: 1; margin-bottom: 4px;
}
.hero__badge--light {
  bottom: 36px; left: 32px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--brown-muted);
}
.hero__badge--light strong { color: var(--brown); }
.hero__badge--accent {
  top: 36px; right: 32px;
  background: var(--orange); color: rgba(255,255,255,.85);
}
.hero__badge--accent strong { color: var(--white); }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar { background: var(--brown); padding: 28px 0; }
.stats-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 0 48px; }
.stat-item strong {
  display: block; font-family: var(--font-serif);
  font-size: 32px; font-weight: 900; color: #f3c059; line-height: 1;
}
.stat-item span {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: 6px; display: block;
}
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.3); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 60px 0; }
.section--accent { background: var(--cream-dark); }
.section--dark { background: var(--brown); }
.section--dark h2 { color: var(--white); }
.section--dark .eyebrow { color: rgba(243,192,89,.7); }

.section__header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 56px; gap: 24px;
}

/* =========================================================
   FORMATIONS GRID
   ========================================================= */
.formations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.formations-grid--full { grid-template-columns: 1fr; gap: 48px; }

.formation-card {
  background: var(--white); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: all var(--transition);
  overflow: hidden;
}
.formation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.formation-card__img {
  overflow: hidden; background: var(--cream-dark);
}
.formation-card__img img {
  width: 100%; height: auto; object-fit: contain;
  transition: transform .4s ease;
}
.formation-card:hover .formation-card__img img { transform: scale(1.02); }

.formation-card__body {
  padding: 28px; flex: 1;
  display: flex; flex-direction: column; gap: 12px;
}
.formation-card__tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange);
}
.formation-card__body h2,
.formation-card__body h3 { color: var(--brown); }
.formation-card__body p { font-size: 14px; flex: 1; }

.formation-card__modules {
  background: var(--cream); border-left: 3px solid var(--yellow);
  padding: 16px 20px; margin-top: 8px;
}
.formation-card__modules h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--brown-muted);
  margin-bottom: 10px; font-family: var(--font-sans);
}
.formation-card__modules ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.formation-card__modules li { font-size: 13px; color: var(--brown-light); font-weight: 300; }

.formation-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 20px; border-top: 1px solid var(--border);
  gap: 12px; flex-wrap: wrap;
}
.price-main {
  font-family: var(--font-serif); font-size: 28px;
  font-weight: 900; color: var(--brown); display: block;
}
.price-install {
  font-size: 12px; color: var(--brown-muted); font-weight: 400; display: block;
}

/* Large formation card */
.formation-card--large {
  display: grid; grid-template-columns: 1fr 1.4fr;
}
.formation-card--large .formation-card__img { border-right: 1px solid var(--border); }
.formation-card--large .formation-card__img img { height: 100%; object-fit: cover; }

.formations-podia-cta {
  margin-top: 64px; text-align: center;
  padding: 48px; background: var(--cream-dark);
  border: 1px solid var(--border);
}
.formations-podia-cta p {
  font-size: 16px; color: var(--brown-light); margin: 0 auto 24px; max-width: 500px;
}

/* =========================================================
   PAGE HERO
   ========================================================= */
.page-hero {
  padding: 72px 0 56px;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin: 12px 0 16px; }
.page-hero p { font-size: 16px; }

/* =========================================================
   TÉMOIGNAGES
   ========================================================= */
.testimonials .eyebrow { color: var(--yellow); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.testi-card {
  background: var(--brown-mid); padding: 32px 28px;
  border-left: 4px solid var(--yellow);
}
.testi-card__stars { color: var(--yellow); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.testi-card p { font-size: 14px; color: rgba(255,255,255,.7); font-style: italic; font-weight: 300; line-height: 1.8; }
.testi-card footer { margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.35); }

/* =========================================================
   FAQ
   ========================================================= */
.faq__inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}
.faq__left { position: sticky; top: 96px; }
.faq__left p { margin-top: 16px; }
.faq__list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--brown);
  transition: color var(--transition);
}
.faq__question:hover, .faq__item--open .faq__question { color: var(--orange); }
.faq__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream-dark); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange); flex-shrink: 0;
  transition: all var(--transition);
}
.faq__item--open .faq__icon {
  background: var(--orange); color: var(--white); border-color: var(--orange);
  transform: rotate(45deg);
}
.faq__answer { padding: 0 0 20px; }
.faq__answer p {
  font-size: 14px; color: var(--brown-light); line-height: 1.85;
  padding: 16px 20px; background: var(--cream-dark);
  border-left: 3px solid var(--yellow);
}

/* =========================================================
   CTA CONTACT
   ========================================================= */
.cta-contact { background: var(--yellow); border-top: 1px solid var(--yellow-dark); }
.cta-contact__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-contact h2 { color: var(--brown); font-size: clamp(22px, 3vw, 34px); margin-bottom: 8px; }
.cta-contact p { color: var(--brown-mid); max-width: 460px; }
.cta-contact__actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
.cta-contact .btn--primary { background: var(--brown); border-color: var(--brown); }
.cta-contact .btn--outline { border-color: var(--brown); color: var(--brown); }
.cta-contact .btn--outline:hover { background: rgba(44,26,14,.08); }

/* =========================================================
   INSTAGRAM SECTION
   ========================================================= */
.insta-section { background: var(--cream-dark); border-top: 1px solid var(--border); }

/* =========================================================
   À PROPOS
   ========================================================= */
.about-hero {
  display: grid; grid-template-columns: 45% 55%;
  min-height: calc(100vh - 80px);
}
.about-hero__photo { overflow: hidden; background: var(--cream-dark); }
.about-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-hero__content {
  padding: 80px 6vw; display: flex; flex-direction: column;
  justify-content: center; gap: 20px;
  border-left: 1px solid var(--border);
}
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-list li { font-size: 15px; color: var(--brown-light); font-weight: 300; }
.about-stats {
  display: flex; gap: 32px; margin-top: 8px;
  padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.about-stat { text-align: center; }
.about-stat strong {
  display: block; font-family: var(--font-serif);
  font-size: 28px; font-weight: 900; color: var(--orange);
}
.about-stat span { font-size: 11px; color: var(--brown-muted); text-transform: uppercase; letter-spacing: 1px; }
.about-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.about-values { background: var(--cream-dark); border-top: 1px solid var(--border); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white); padding: 36px 28px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.value-card__icon { font-size: 28px; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 13px; line-height: 1.7; max-width: none; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  padding: 32px; display: flex; flex-direction: column; gap: 12px;
  transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.contact-card__icon { font-size: 28px; }
.contact-card h3 { margin-bottom: 4px; }
.contact-card p { font-size: 14px; max-width: none; }
.contact-faq h2 { margin-bottom: 8px; }
.contact-faq > p { font-size: 15px; }

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.will-animate {
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.will-animate.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--cream); border-top: 2px solid #a89888; padding: 64px 0 28px; }
.footer__grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer__brand p {
  font-size: 13px; color: var(--brown-light);
  line-height: 1.8; font-weight: 300; margin-top: 14px; max-width: 260px;
}
.footer__logo { height: 64px; width: auto; margin-bottom: 4px; display: block; }
.footer__insta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: #a89888; text-decoration: none;
  margin-top: 16px; transition: color var(--transition);
}
.footer__insta:hover { color: var(--orange); }

.footer__col h3 {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #a89888;
  margin-bottom: 16px; font-family: var(--font-sans);
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 13px; color: var(--brown-light); text-decoration: none;
  font-weight: 300; transition: color var(--transition);
}
.footer__col a:hover { color: var(--orange); }
.footer__col p {
  font-size: 13px; color: var(--brown-light); font-weight: 300;
  line-height: 1.7; margin-bottom: 14px; max-width: none;
}
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: #a89888; font-weight: 300;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__content { border-right: none; border-bottom: 1px solid var(--border); padding: 60px 5vw; }
  .hero__visual { min-height: 60vw; }
  .formations-grid { grid-template-columns: repeat(2, 1fr); }
  .formation-card--large { grid-template-columns: 1fr; }
  .formation-card--large .formation-card__img { border-right: none; border-bottom: 1px solid var(--border); }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__photo { min-height: 60vw; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__left { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-contact__inner { flex-direction: column; }
}
@media (max-width: 768px) {
  .formations-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: 0; }
  .stat-item { padding: 16px 24px; }
  .stat-divider { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .section__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .nav__burger span { display: block; width: 22px; height: 2px; background: var(--brown); }
  .nav__links {
    position: fixed; top: 80px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 8px 0; display: none;
  }
  .nav__links--open { display: flex; }
  .nav__links a { padding: 14px 5vw; }
}

/* =========================================================
   FORMATION ROW — layout horizontal sur une seule page
   ========================================================= */
.formations-list {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  margin-bottom: 48px;
}
.formation-row {
  display: grid; grid-template-columns: 320px 1fr;
  background: var(--white); transition: all var(--transition);
}
.formation-row:nth-child(even) { direction: rtl; }
.formation-row:nth-child(even) > * { direction: ltr; }
.formation-row:hover { box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.formation-row__img {
  overflow: hidden; background: var(--cream-dark);
  aspect-ratio: 4/3;
}
.formation-row__img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.formation-row:hover .formation-row__img img { transform: scale(1.02); }
.formation-row__body {
  padding: 40px 48px; display: flex; flex-direction: column; gap: 14px;
}
.formation-row__modules {
  background: var(--cream); border-left: 3px solid var(--yellow);
  padding: 16px 20px;
}
.formation-row__modules strong {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--brown-muted);
  display: block; margin-bottom: 10px;
}
.formation-row__modules ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.formation-row__modules li { font-size: 13px; color: var(--brown-light); font-weight: 300; }
.formation-row__modules li span { font-weight: 600; color: var(--brown); }

@media (max-width: 768px) {
  .formation-row { grid-template-columns: 1fr; direction: ltr; }
  .formation-row:nth-child(even) { direction: ltr; }
  .formation-row__img { max-height: 260px; }
  .formation-row__img img { object-fit: cover; }
  .formation-row__body { padding: 28px; }
}

/* =========================================================
   FORMES DECORATIVES — orange uniquement
   ========================================================= */

/* Hero — cercle derriere la photo */
.hero__visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .12;
  z-index: 0;
}
.hero__visual::after {
  content: '';
  position: absolute;
  bottom: 60px; left: -30px;
  width: 120px; height: 120px;
  background: var(--yellow);
  opacity: .25;
  z-index: 0;
}
.hero__visual img { position: relative; z-index: 1; }
.hero__badge { z-index: 2; }

/* Stats bar — trait orange */
.stats-bar { border-top: 4px solid var(--orange); }

/* Section formations — trait lateral orange */
.formations-home { position: relative; }
.formations-home::before {
  content: '';
  position: absolute;
  left: 0; top: 80px; bottom: 80px;
  width: 4px;
  background: linear-gradient(to bottom, var(--orange), var(--yellow));
}

/* Formation row — accent orange sur hover */
.formation-row { border-left: 4px solid transparent; transition: border-color var(--transition), box-shadow var(--transition); }
.formation-row:hover { border-left-color: var(--orange); }

/* Testi cards — accent jaune */
.testi-card { border-left: 4px solid var(--yellow); }

/* Value cards — trait orange en haut */
.value-card { border-top: 4px solid var(--orange); }

/* =========================================================
   DIGITAL BANNER
   ========================================================= */
.digital-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-left: 6px solid var(--orange);
  padding: 40px 48px;
  margin-top: 0;
}
.digital-banner__text h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin: 10px 0 10px;
  color: var(--brown);
}
.digital-banner__text p {
  font-size: 14px; color: var(--brown-light); max-width: 480px;
}

/* =========================================================
   CONTACT GRID fix
   ========================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-faq h3 { font-size: 22px; margin-bottom: 6px; }

@media (max-width: 768px) {
  .digital-banner { flex-direction: column; padding: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION MON HISTOIRE
   ========================================================= */
.histoire { background: var(--cream-dark); border-top: 1px solid var(--border); }
.histoire__inner {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 80px; align-items: start;
}
.histoire__visual { position: sticky; top: 96px; }
.histoire__visual img {
  width: 100%; height: auto; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.histoire__badge {
  background: var(--orange); color: var(--white);
  padding: 16px 22px; margin-top: -4px;
}
.histoire__badge strong {
  display: block; font-family: var(--font-serif);
  font-size: 20px; font-weight: 900; line-height: 1;
}
.histoire__badge span {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; opacity: .8;
}
.histoire__content { padding: 8px 0; }
.histoire__text {
  display: flex; flex-direction: column; gap: 16px; margin-top: 24px;
}
.histoire__text p {
  font-size: 15px; color: var(--brown-light); line-height: 1.9; max-width: none;
}
.histoire__quote {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700; font-style: italic;
  color: var(--brown); line-height: 1.5;
  border-left: 4px solid var(--orange);
  padding: 20px 28px;
  background: var(--white);
  margin-top: 8px;
}

/* =========================================================
   FORMATION ROW — ideal tagline
   ========================================================= */
.formation-row__ideal {
  font-size: 13px; color: var(--orange);
  font-weight: 600; letter-spacing: .3px;
  padding: 10px 14px;
  background: rgba(226,87,40,.07);
  border-left: 3px solid var(--orange);
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form {
  display: flex; flex-direction: column; gap: 12px; margin-top: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); background: var(--cream);
  font-family: var(--font-sans); font-size: 14px; font-weight: 300;
  color: var(--brown); outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--brown-muted); }
.contact-card__note {
  margin-top: 10px; font-size: 12px; color: var(--brown-muted); max-width: none;
}
.contact-card__note a { color: var(--orange); text-decoration: underline; }

@media (max-width: 1024px) {
  .histoire__inner { grid-template-columns: 1fr; gap: 40px; }
  .histoire__visual { position: static; max-width: 420px; }
}

/* =========================================================
   BUREAU SECTION
   ========================================================= */
.bureau-section { border-top: 1px solid var(--border); }
.bureau__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.bureau__img { overflow: hidden; }
.bureau__img img {
  width: 100%; height: auto; object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform .4s ease;
}
.bureau__img:hover img { transform: scale(1.02); }
.bureau__content { display: flex; flex-direction: column; gap: 20px; }
.bureau__content p { font-size: 15px; line-height: 1.9; max-width: none; }

/* =========================================================
   TESTIMONIALS SLIDER
   ========================================================= */
.testimonials .container {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto auto;
  gap: 48px 64px;
  align-items: center;
}
.testimonials .eyebrow { grid-column: 1; }
.testimonials h2 { grid-column: 1; margin-top: -32px; }
.testi-slider {
  grid-column: 1;
  position: relative;
  min-height: 220px;
}
.testi-slide {
  display: none;
  background: var(--brown-mid);
  border-left: 4px solid var(--yellow);
  padding: 36px 40px;
  animation: fadeIn .4s ease;
}
.testi-slide.active { display: block; }
.testi-slide .testi-card__stars {
  color: var(--yellow); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; display: block;
}
.testi-slide p {
  font-size: 16px; color: rgba(255,255,255,.8);
  font-style: italic; line-height: 1.85; margin-bottom: 20px; max-width: none;
}
.testi-slide footer {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--yellow);
}

.testi-controls {
  grid-column: 1;
  display: flex; align-items: center; gap: 16px;
  margin-top: -16px;
}
.testi-prev, .testi-next {
  width: 44px; height: 44px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--brown); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); flex-shrink: 0;
}
.testi-prev:hover, .testi-next:hover {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.testi-dots { display: flex; gap: 8px; flex-wrap: wrap; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25); border: none; cursor: pointer;
  transition: all var(--transition);
}
.testi-dot.active { background: var(--yellow); transform: scale(1.3); }

.testi-photo {
  grid-column: 2; grid-row: 1 / 4;
  align-self: stretch;
}
.testi-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center;
}

@media (max-width: 1024px) {
  .bureau__inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials .container { grid-template-columns: 1fr; }
  .testi-photo { grid-column: 1; grid-row: auto; max-height: 300px; }
  .testi-photo img { object-fit: cover; height: 300px; }
}


/* =========================================================
   AVIS SLIDER - glissement gauche/droite
   ========================================================= */
.avis-slider-wrapper {
  max-width: 640px; margin: 48px auto 0;
  overflow: hidden;
}
.avis-slider {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.avis-slide {
  flex: 0 0 100%;
  min-width: 100%;
  text-align: center;
  padding: 0 8px;
}
.avis-stars {
  color: var(--yellow); font-size: 22px; letter-spacing: 4px;
  margin-bottom: 16px; display: block;
}
.avis-slide img {
  width: 100%; height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44,26,14,.15);
}
.avis-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 24px;
}
.avis-prev, .avis-next {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--white); border: 1px solid var(--border);
  color: var(--brown); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.avis-prev:hover, .avis-next:hover {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.avis-dots { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.avis-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--beige); border: none; cursor: pointer;
  transition: all var(--transition);
}
.avis-dot.active { background: var(--orange); transform: scale(1.3); }

/* Override testimonials layout */
.testimonials .container { display: block; }
.testimonials h2 { margin-bottom: 0; }

/* =========================================================
   BUREAU SECTION
   ========================================================= */
.bureau-section { border-top: 1px solid var(--border); }
.bureau__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.bureau__img { overflow: hidden; }
.bureau__img img { width: 100%; height: auto; box-shadow: var(--shadow-lg); }
.bureau__content { display: flex; flex-direction: column; gap: 20px; }
.bureau__content p { font-size: 15px; line-height: 1.9; max-width: none; }

@media (max-width: 768px) {
  .bureau__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Swiss flag */
.swiss-flag {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin: 0 3px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  display: inline-block;
}

/* Hero badge stacked */
.hero__badge--sub {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.hero__badge--sub strong {
  display: block; font-family: var(--font-serif);
  font-size: 22px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 4px;
}
.hero__badge--sub span { color: var(--brown-muted); }
/* Remove the orange accent badge (now stacked) */
.hero__badge--accent { display: none; }

/* =========================================================
   SEO CONTENT SECTION
   ========================================================= */
.seo-content { background: var(--cream-dark); border-top: 1px solid var(--border); }
.seo-content__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.seo-content__block { display: flex; flex-direction: column; gap: 0; }
.seo-content__block h2 { font-size: clamp(20px, 2.5vw, 28px); }
.seo-content__block p {
  font-size: 14px; line-height: 1.9; color: var(--brown-light);
  max-width: none;
}
.seo-content__stats {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 8px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.seo-content__stats div { display: flex; flex-direction: column; gap: 4px; }
.seo-content__stats strong {
  font-family: var(--font-serif); font-size: 22px;
  font-weight: 900; color: var(--orange);
}
.seo-content__stats span {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--brown-muted); font-weight: 600;
}
@media (max-width: 768px) {
  .seo-content__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* SEO block spacing */
.seo-content__block .eyebrow { margin-bottom: 10px; }
.seo-content__block h2 { margin-bottom: 28px; }
.seo-content__block p { margin-bottom: 20px; }
.seo-content__inner { column-gap: 80px; }

/* =========================================================
   MOBILE — hero et stats
   ========================================================= */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; width: 100%; }
  .hero {
    display: block !important;
    width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  .hero__content {
    width: 100% !important;
    padding: 32px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .hero__content h1 { font-size: 28px !important; letter-spacing: 0 !important; }
  .hero__content .eyebrow { letter-spacing: 0 !important; font-size: 10px !important; }
  .hero__content p { font-size: 14px; }
  .hero__visual { width: 100% !important; display: block; }
  .hero__visual img { width: 100% !important; height: auto !important; }
  .hero__badge { display: none !important; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn {
    white-space: normal !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 11px !important;
  }
  .stats-bar__inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    justify-items: center;
  }
  .stat-divider { display: none !important; }
  .stat-item { padding: 8px 0 !important; }
}