/* Version test couleur Orange + bandeaux haut/bas noirs + disponibilité verte douce : base #FF7900 conservée. */
:root {
  --bg: #fff3e8;
  --surface: #ffffff;
  --surface-strong: #ffe2c4;
  --text: #241c15;
  --muted: #705948;
  --primary: #ff7900;
  --primary-dark: #c65300;
  --secondary: #ffb45c;
  --border: #ffd1a6;
  --shadow: 0 22px 60px rgba(80, 42, 0, 0.14);
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.narrow { max-width: 860px; }
.section { padding: 72px 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 14px;
  background: var(--primary);
  color: #241c15;
  z-index: 20;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #000000;
  backdrop-filter: none;
  border-bottom: 1px solid #1f1f1f;
  color: #ffffff;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 210px;
  color: #ffffff;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #241c15;
  font-weight: 800;
}
.brand small {
  display: block;
  color: var(--primary);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.main-nav a,
.header-call {
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}
.main-nav a {
  color: #ffffff;
}
.main-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
.header-call {
  background: var(--primary);
  color: #241c15;
  white-space: nowrap;
}
.header-call:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

.hero {
  padding-top: 84px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 180, 92, 0.26), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(255, 121, 0, 0.22), transparent 34%);
}
.hero-grid,
.payment-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.hero-copy { min-width: 0; }

.hero-intro-media {
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0 0 20px;
}

.hero-title-block { min-width: 0; }

.hero-intro-media h1 {
  max-width: 470px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.25vw, 2.45rem);
  line-height: 1.12;
}

.hero-photo-wrap {
  margin: 0;
  width: clamp(170px, 18vw, 230px);
  justify-self: start;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 18px 45px rgba(80, 42, 0, 0.18);
  background: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2.1rem, 5vw, 4.6rem); max-width: 880px; margin-bottom: 20px; }
h2 { font-size: clamp(1.75rem, 3vw, 2.7rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: var(--muted); max-width: 740px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}
.centered { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
  text-align: center;
}
.btn-primary { background: var(--primary); color: #241c15; }
.btn-primary:hover { background: var(--primary-dark); color: #ffffff; }
.btn-secondary { background: var(--surface); color: var(--primary-dark); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--surface-strong); }
.btn-paypal { width: 100%; background: #ffc439; color: #241c15; }
.btn-full { width: 100%; }

.trust-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.trust-list li {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
}

.offer-card,
.paypal-box,
.step-card,
.reassurance-grid article,
.testimonial-card,
.final-cta-box,
.notice-box,
.cookie-declaration-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.offer-card { padding: 28px; text-align: center; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eaf8ef;
  color: #0f6b3a;
  border: 1px solid #a7ddbb;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(15, 107, 58, 0.10);
}

.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22a45a;
  box-shadow: 0 0 0 4px rgba(34, 164, 90, 0.14);
  flex: 0 0 auto;
}
.offer-duration { font-weight: 800; color: var(--muted); }
.price { margin: 0; color: var(--primary); font-weight: 900; line-height: 1; }
.price span { font-size: clamp(4rem, 8vw, 6rem); }
.offer-note, .small-text, .section-intro { color: var(--muted); }
.section-intro { max-width: 760px; margin-bottom: 26px; }
.small-text { font-size: 0.88rem; }
.phone-big {
  display: block;
  margin-top: 18px;
  color: var(--primary-dark);
  font-size: 1.45rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.payment-highlight { background: var(--surface-strong); }
.paypal-box { padding: 26px; }
.paypal-form { margin-top: 18px; }
.reassurance { font-weight: 800; color: var(--primary-dark); }

.steps-grid,
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.step-card,
.reassurance-grid article { padding: 24px; }
.step-media {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.step-card span {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: #241c15;
  font-weight: 900;
}
.step-image {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 42px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(80, 42, 0, 0.08);
  background: var(--surface-strong);
}
.reassurance-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.reassurance-grid h3 { color: var(--primary); }

.section-testimonials {
  background: #fff1e5;
}

.section-heading.centered {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0.25rem auto 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ffd1a6;
  box-shadow: 0 10px 25px rgba(80, 42, 0, 0.06);
}

.rating-summary strong {
  color: #241c15;
}

.rating-summary span {
  color: #705948;
}

.stars {
  --rating: 5;
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: Arial, sans-serif;
  color: transparent;
  background: linear-gradient(90deg, #f7b500 var(--percent), #ffffff var(--percent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px #f7b500;
  text-shadow: 0 1px 0 rgba(247, 181, 0, 0.08);
}

.testimonial-carousel {
  position: relative;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 32%);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding: 0.3rem 0.15rem 1.3rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #ffe2c4;
}

.testimonial-track::-webkit-scrollbar {
  height: 10px;
}

.testimonial-track::-webkit-scrollbar-track {
  background: #ffe2c4;
  border-radius: 999px;
}

.testimonial-track::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 999px;
}

.testimonial-card {
  min-height: 260px;
  padding: 1.35rem;
  box-shadow: 0 12px 28px rgba(80, 42, 0, 0.08);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.testimonial-title {
  margin: 0 0 0.65rem;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 900;
}

.testimonial-card p {
  margin: 1rem 0;
  font-size: 1.02rem;
  color: #241c15;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 18px;
  color: var(--primary-dark);
  font-weight: 900;
}

.testimonial-card footer span {
  color: #705948;
  font-size: 0.92rem;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid #ffd1a6;
  border-radius: 13px;
  background: #fff;
  color: #241c15;
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(80, 42, 0, 0.06);
}

.carousel-btn:hover {
  background: #ffe2c4;
}

.facebook-link::before { content: "f"; font-weight: 900; margin-right: 6px; }
.instagram-link::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  border-radius: 5px;
  background:
    radial-gradient(circle at 72% 28%, #ffffff 0 1.5px, transparent 2px),
    radial-gradient(circle, transparent 0 3px, #ffffff 3.5px 4.5px, transparent 5px),
    linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  vertical-align: -2px;
}

.split-section { background: #fff; }
.responsive-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.final-cta { padding-top: 32px; }
.final-cta-box { padding: 34px; text-align: center; }

.legal-page h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.legal-page h2 { font-size: 1.45rem; margin-top: 34px; }
.legal-page p { color: var(--muted); }
.notice-box,
.cookie-declaration-placeholder { padding: 18px; margin: 22px 0; box-shadow: none; }

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 30px 0 86px;
  border-top: 1px solid #1f1f1f;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.footer-grid p {
  justify-self: start;
  color: #ffffff;
  margin: 0;
}
.footer-social {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-facebook,
.footer-instagram {
  color: var(--primary);
  text-decoration: none;
  font-weight: 900;
}
.footer-grid nav {
  justify-self: end;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-grid nav a {
  color: #ffffff;
  text-decoration: none;
}
.footer-grid nav a:hover,
.footer-grid nav a:focus {
  color: #ffffff;
  text-decoration: underline;
}
.footer-facebook:hover,
.footer-facebook:focus,
.footer-instagram:hover,
.footer-instagram:focus {
  color: var(--secondary);
  text-decoration: underline;
}

.mobile-sticky-actions {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.12);
}
.mobile-sticky-actions a {
  display: grid;
  place-items: center;
  min-height: 58px;
  text-decoration: none;
  font-weight: 900;
}
.mobile-sticky-actions a:first-child { background: var(--primary); color: #241c15; }
.mobile-sticky-actions a:last-child { background: #ffd1a6; color: #241c15; }

@media (max-width: 920px) {
  .header-inner { align-items: flex-start; padding: 12px 0; }
  .main-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .hero-grid,
  .payment-grid,
  .split-grid { grid-template-columns: 1fr; }
  .trust-list,
  .steps-grid,
  .reassurance-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 58px; }
  .section { padding: 52px 0; }
  .hero { padding-top: 52px; }
  .brand { min-width: auto; }
  .brand small { display: none; }
  .header-call { display: none; }
  .main-nav a { padding: 9px 12px; }
  .hero-actions .btn { width: 100%; }
  .trust-list,
  .steps-grid,
  .reassurance-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .offer-card,
  .paypal-box,
  .step-card,
  .reassurance-grid article,
  .testimonial-card,
  .final-cta-box { padding: 22px; }
  .mobile-sticky-actions { display: grid; }

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

  .footer-grid p,
  .footer-social,
  .footer-grid nav {
    justify-self: center;
  }

  .footer-grid nav {
    justify-content: center;
  }
}

@media (max-width: 920px) {
  .testimonial-track { grid-auto-columns: minmax(260px, 48%); }
}

@media (max-width: 640px) {
  .testimonial-track { grid-auto-columns: minmax(260px, 88%); }
  .carousel-controls { justify-content: center; }
}


/* Bloc d'accroche : photo Carla à gauche + texte à droite */
@media (max-width: 920px) {
  .hero-intro-media {
    grid-template-columns: minmax(155px, 200px) minmax(0, 1fr);
    gap: 20px;
  }

  .hero-photo-wrap {
    width: clamp(155px, 28vw, 200px);
  }

  .hero-intro-media h1 {
    font-size: clamp(1.45rem, 4.2vw, 2.15rem);
  }
}

@media (max-width: 640px) {
  .hero-intro-media {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .hero-photo-wrap {
    width: clamp(160px, 55vw, 220px);
    justify-self: center;
    margin-inline: auto;
  }

  .hero-intro-media h1 {
    max-width: 520px;
    margin-inline: auto;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }
}
