/* Base neutre – aucun design */

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

body {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
}

/* Structure */

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.header-logo img {
  height: 34px;   /* ajuste selon ton fichier */
  width: auto;
  display: block;
}

/* Nav centrée */
.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  opacity: 0.95;
}

.header-nav a:hover {
  opacity: 1;
}

/* CTA à droite */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #2d86c9;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header-cta span {
  font-size: 18px;
  margin-top: -1px;
}

/* Responsive simple */
@media (max-width: 900px) {
  .header-nav {
    display: none; /* on fera le burger après */
  }
}

.section {
}

/* =========================
   TYPOGRAPHIE — BASE
========================= */

html {
  font-size: 16px; /* base = 1rem */
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;        /* 16px */
  line-height: 1.6;
  font-weight: 400;
  color: #111;
}

/* Titres */

h1 {
  font-size: 3rem;       /* 48px */
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2.25rem;    /* 36px */
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.75rem;    /* 28px */
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.5em;
}

h4 {
  font-size: 1.375rem;   /* 22px */
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.5em;
}

h5 {
  font-size: 1.125rem;   /* 18px */
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.5em;
}

h6 {
  font-size: 1rem;       /* 16px */
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.5em;
}

/* Texte courant */

p {
  font-size: 1rem;       /* 16px */
  line-height: 1.6;
  margin-bottom: 1em;
}

/* Petits textes */

.small {
  font-size: 0.875rem;   /* 14px */
  line-height: 1.5;
}

/* Liens */

a {
  color: inherit;
  text-decoration: none;
}





/* SECTION 1 : HERO */

.section-1.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;

  background-image: url("assets/hero-1.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-content {
  max-width: 650px;
  color: #fff;
}

.hero-title {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 200;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 620px;
  margin-bottom: 22px;
}

/* Bouton noir + pastille flèche */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.hero-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

/* Liste points avec check */
.hero-points {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 8px;
  max-width: 260px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 6px 10px;
}

.hero-points .check {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .section-1.hero {
    min-height: 520px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-inner {
    padding: 60px 20px;
  }
}


/* SECTION 2 */

.section-2 {
  background: #fff;
}

.s2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px 80px;
}

.s2-top {
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 70px;
  margin-bottom: 70px;
}

.s2-text p {
  font-size: 34px;
  line-height: 1.18;
  font-weight: 700;
  color: #111;
  max-width: 520px;
}

.s2-text .muted {
  color: #8b8b8b;
  font-weight: 600;
}

.s2-text strong {
  font-weight: 600;
}

/* Rectangle arrondi (image) */
.s2-media {
  height: 240px;
  border-radius: 26px;
  background: #cfcfc4; /* placeholder */
  /* Quand tu as l'image :
  background-image: url("assets/section2.jpg");
  background-size: cover;
  background-position: center;
  */
}

/* Stats */
.s2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}

.stat-line {
  height: 3px;
  width: 100%;
  background: #f5d000;
  margin-bottom: 18px;
}

.stat-value {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  line-height: 1.35;
  color: #7a7a7a;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1100px) {
  .s2-top {
    grid-template-columns: 1fr;
  }

  .s2-media {
    width: 100%;
    max-width: 560px;
  }

  .s2-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .s2-inner {
    padding: 60px 18px 60px;
  }

  .s2-text p {
    font-size: 26px;
  }

  .s2-stats {
    grid-template-columns: 1fr;
  }
}


/* Animation stats */

.stat {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* État visible */
.stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Petit décalage progressif (effet cascade) */
.stat:nth-child(1) { transition-delay: 0s; }
.stat:nth-child(2) { transition-delay: 0.1s; }
.stat:nth-child(3) { transition-delay: 0.2s; }
.stat:nth-child(4) { transition-delay: 0.3s; }



/* SECTION 3 */

.section-3 {
  background: #f5f5f2;
}

.s3-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}

.s3-title {
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* Slider wrapper */
.s3-slider {
  position: relative;
}

/* Track */
.s3-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 22px; /* même arrondi que la card */
}

/* Slide */
.s3-slide {
  flex: 0 0 100%;
  transform: translateX(0);
}

/* Animation de glisse (on l’applique au track) */
.s3-track.is-animating {
  transition: transform 0.5s ease;
}

/* Card */
.s3-card {
  background: #fff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  padding: 50px;
  align-items: center;
  min-height: 520px;
}

/* Visuel */
.s3-visual {
  background: #f7f7f4;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Contenu */
.s3-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 8px;
}

.s3-header h3 {
  font-size: 30px;
  font-weight: 800;
}

.s3-price {
  font-size: 26px;
  font-weight: 800;
  color: #4caf50;
}

.s3-intro {
  font-size: 16px;
  margin-bottom: 22px;
}

.s3-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.s3-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
}

.s3-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4caf50;
  font-weight: 700;
}

.s3-footer {
  font-size: 15px;
  margin-bottom: 26px;
}

.s3-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}

/* Arrows */
.s3-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.s3-prev { left: -26px; }
.s3-next { right: -26px; }

/* Dots */
.s3-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
}

.dot.is-active {
  background: rgba(0,0,0,0.75);
}

/* Responsive */
@media (max-width: 1000px) {
  .s3-card {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 26px;
    min-height: auto;
  }
  .s3-prev, .s3-next {
    display: none; /* on garde les dots */
  }
}


/* AVIS CLIENTS */

.reviews {
  background: #fff;
}

.reviews-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 110px 24px 90px;
}

.reviews-slider {
  position: relative;
  outline: none;
}

.reviews-track {
  display: flex;
  overflow: hidden;
}

.reviews-track.is-animating {
  transition: transform 0.5s ease;
}

.review-slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 40px;
}

.review-stars {
  font-size: 18px;
  letter-spacing: 4px;
  color: #f5d000;
  margin-bottom: 30px;
}

.review-text {
  font-size: 38px;
  line-height: 1.18;
  font-weight: 700;
  color: #111;
  margin-bottom: 22px;
}

.review-author {
  font-size: 16px;
  font-weight: 600;
  color: #7a7a7a;
}

/* Flèches */
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #cfcfcf;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.reviews-prev { left: -10px; }
.reviews-next { right: -10px; }

.reviews-arrow:hover {
  color: #a9a9a9;
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 45px;
}

.reviews-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: #d9d9d9;
  cursor: pointer;
}

.reviews-dot.is-active {
  background: #bfbfbf;
}

/* Responsive */
@media (max-width: 900px) {
  .review-text {
    font-size: 26px;
  }

  .review-slide {
    padding: 0 18px;
  }

  .reviews-prev, .reviews-next {
    display: none; /* mobile : dots + swipe si tu veux après */
  }
}


/* SECTION 5 — SCROLL PIN + STEPS */

.section-5.about-scroll {
  background: #2f3a46;
  color: #fff;
}

/* donne de la “longueur” au scroll : 3 paragraphes => 300vh */
.about-scroll-inner {
  height: 300vh;
  position: relative;
}

/* ce bloc reste collé à l’écran pendant le scroll */
.about-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.about-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 80px;
  align-items: center;
}

/* zone texte : 1 seul paragraphe visible */
.about-steps {
  position: relative;
  min-height: 260px; /* évite les sauts */
}

.about-step {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  margin: 0;

  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.about-step.is-active {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
  pointer-events: auto;
}

.about-photo {
  border-radius: 18px;
  overflow: hidden;
  will-change: transform;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-step {
    font-size: 22px;
  }

  .about-photo {
    max-width: 520px;
  }
}

/* SECTION 6 — WHATSAPP */

.section-6.whatsapp {
  background: #000;
  color: #fff;
}

.whatsapp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 260px 1fr 380px;
  gap: 70px;
  align-items: center;
}

.whatsapp-avatar {
  width: 240px;
  height: 240px;
  border-radius: 999px;
  overflow: hidden;
}

.whatsapp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.whatsapp-text h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
  color: rgba(255,255,255,0.9);
}

.whatsapp-card {
  display: flex;
  justify-content: flex-end;
}

.whatsapp-card-link {
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.whatsapp-card-link img {
  display: block;
  width: 320px;
  height: auto;
}

/* Responsive */
@media (max-width: 1000px) {
  .whatsapp-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    justify-items: center;
  }

  .whatsapp-card {
    justify-content: center;
  }

  .whatsapp-avatar {
    width: 190px;
    height: 190px;
  }

  .whatsapp-text h2 {
    font-size: 26px;
  }
}



/* FAQ */


.faq {
  background: #fff;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a9a9a;
  display: block;
  margin-bottom: 10px;
}

.faq-header h2 {
  font-size: 40px;
  font-weight: 800;
}

/* Liste */

.faq-list {
  border-top: 1px solid #e6e6e6;
}

.faq-item {
  border-bottom: 1px solid #e6e6e6;
}

/* Question */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  width: 28px;
  height: 28px;
  border: 2px solid #111;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Réponse */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}


.faq-answer p {
  padding: 0 0 26px;
  font-size: 16px;
  line-height: 1.7;
	color: #000;
}

.faq-answer p strong {
  font-weight: 600;
  color: #09467E;
}

/* État ouvert */

.faq-item.is-open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.is-open .faq-icon {
  content: "−";
}

/* Responsive */

@media (max-width: 700px) {
  .faq-header h2 {
    font-size: 30px;
  }

  .faq-question {
    font-size: 17px;
  }
}



/* CTA FINAL (jaune) */

.cta-final {
  background: #f5d000;
  padding: 90px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-kicker {
  font-size: 80px;
	font-family: "Anton", sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
}

.cta-title {
  font-size: 40px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.cta-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  opacity: 0.9;
  margin-bottom: 26px;
}

/* bouton noir + pastille flèche */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.cta-arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

/* FOOTER */

.footer {
  background: #000;
  color: #fff;
/*  max-width: 1200px; */
  margin: 0 auto;
  padding: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 620px;
}

.footer-logo {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}

.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

.footer-note strong {
  color: #fff;
}

/* partenaires droite */
.footer-partners {
  display: grid;
  gap: 26px;
  text-align: right;
  min-width: 220px;
}

.partner-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.partner-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

/* séparation */
.footer-sep {
  height: 2px;
  background: rgba(255,255,255,0.22);
  margin: 40px 0 24px;
}

/* liens bas */
.footer-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.9);
}

/* Responsive */
@media (max-width: 900px) {
  .cta-kicker { font-size: 44px; }
  .cta-title { font-size: 30px; }

  .footer-top {
    flex-direction: column;
    text-align: left;
  }

  .footer-partners {
    text-align: left;
  }

  .footer-bottom {
    justify-content: flex-start;
    gap: 18px;
  }
}


.section-10 {
  background: #f5d000;
  padding: 0 24px 24px;
}