/* Base landing */
.call-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.call-popup.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-popup-box {
  position: relative;
  z-index: 1;
  width: min(92%, 520px);
  margin: 50vh auto 0;
  transform: translateY(-50%);
  background: var(--main-white);
  color: var(--main-black);
  border-radius: 18px;
  padding: 32px 26px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.call-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.call-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--main-black);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.call-popup-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--main-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.call-popup-box h3 {
  margin: 0 0 18px 0;
  font-family: var(--title-font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.call-popup-box p {
  margin: 0 0 16px 0;
  padding: 0;
}

.call-popup-phone {
  display: inline-block;
  margin: 8px 0 18px;
  font-family: var(--title-font);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--main-black);
}

.call-popup-note {
  color: var(--second-dark);
}

.call-popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 10px;
  background: var(--main-green);
  color: var(--main-black);
  font-weight: 700;
  text-decoration: none;
}

body.popup-open {
  overflow: hidden;
}

.landing-page {
  width: 100%;
  font-size: var(--fs-14);
}

.landing-section {
  max-width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}

.landing-kicker,
.landing-kicker2 {
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-kicker {
  color: var(--main-green);
}

.landing-kicker2 {
  color: var(--main-black);
}

.landing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.landing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.landing-card {
  background: var(--main-white);
  border: var(--b-line);
  border-radius: var(--radius-card);
  box-shadow: var(--bs-img);
  padding: 15px;
}

.landing-card p {
  padding: 0;
}

.landing-section-image {
  display: block;
  width: 90%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* HERO */
.landing-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)),
    url("./ressources/PARRALAX_CoachingRomainFroment.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--main-white);
  overflow: hidden;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.289);
  z-index: 2;
}

.landing-hero-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.landing-hero-content {
  position: relative;
  z-index: 3;
  width: min(68%, 1040px);
  margin-left: 6%;
  padding: 24px 40px 0 0;
}

.landing-title {
  font-family: var(--title-font);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.03;
}

.landing-hero .pb {
  margin: 0 0 24px 0;
}

.landing-intro {
  max-width: 680px;
  margin: 0 0 14px 0;
  padding: 0;
  line-height: 1.55;
}

.landing-hero-points {
  margin: 0 0 18px 0;
  padding-left: 18px;
}

.landing-hero-points li {
  margin-bottom: 6px;
}

.landing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px 0;
}

.landing-secondary-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  padding: 10px 16px;
  border: 1px solid var(--main-white);
  border-radius: var(--radius-card);
  color: var(--main-white);
  font-weight: 500;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.landing-secondary-cta:hover {
  background: var(--main-white);
  color: var(--main-black);
  transform: translateY(-2px);
}

.landing-hero-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(34vw, 560px);
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.landing-hero-image {
  display: block;
  z-index: 1;
  width: auto;
  height: 95%;
  max-width: none;
}

.landing-hero-badge {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 170px;
  height: 170px;
  padding: 5px;
  border-radius: 50%;
  background: var(--main-black);
  color: var(--main-white);
  box-shadow:
    inset 0 0 0 5px #0f0f0f,
    inset 0 0 0 8px rgba(255, 255, 255, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.28);
  z-index: 3;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing-hero-badge strong,
.landing-hero-badge span {
  text-align: center;
  display: block;
  font-size: 0.82rem;
  line-height: 1.3;
}

.landing-hero-badge strong {
  font-size: var(--fs-30);
  font-family: var(--title-font);
  margin-bottom: 4px;
}

/* Problems */
.landing-problems {
  background: linear-gradient(
    180deg,
    var(--second-ligth) 0%,
    var(--main-white) 100%
  );
  max-width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

/* Split sections */
.landing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.landing-split-content,
.landing-split-media {
  min-width: 0;
}

.landing-split-media {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: visible;
}

.landing-check-list {
  margin: 30px 0;
  display: grid;
}

/* Sections image + texte : 40 / 60 */
#offre .landing-split,
.landing-coach-proof .landing-split {
  grid-template-columns: 40% 60%;
  gap: 36px;
  align-items: center;
}

#offre .landing-section-image,
.landing-coach-proof .landing-coach-image {
  width: 100%;
}

/* Benefits */
.landing-benefit-card {
  position: relative;
  padding-top: 65px;
}

.landing-benefit-icon {
  position: absolute;
  top: 20px;
  left: 25px;
  font-family: var(--title-font);
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--third-dark);
}

/* Method */
.landing-steps {
  max-width: 900px;
  margin: 40px auto 0 auto;
  display: grid;
  gap: 24px;
}

.landing-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--main-white);
  border: var(--b-line);
  border-radius: var(--radius-card);
  box-shadow: var(--bs-img);
  padding: 25px;
}

.landing-step p {
  padding: 0;
}

.landing-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--main-black);
  color: var(--main-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--title-font);
  font-size: var(--fs-20);
  font-weight: 700;
}

/* Coach proof */
.landing-coach-image {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  object-fit: cover;
  object-position: 68% center;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.landing-simple-list {
  margin-top: 20px;
}

.landing-simple-list li {
  padding-bottom: 10px;
}

/* Testimonials */
.landing-testimonials {
  background:
    linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.5)),
    url("./ressources/PARRALAX_CoachingRomainFroment.webp");
  background-position: center;
  background-size: cover;
  max-width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  color: var(--main-white);
}

.landing-testimonials .landing-card {
  border: 1px solid rgba(245, 245, 244, 0.22);
  color: var(--main-black);
  box-shadow: none;
  backdrop-filter: blur(2px);
}

.landing-testimonial-text {
  padding: 0;
  margin-bottom: 18px;
  font-style: italic;
}

.landing-testimonial-author {
  display: block;
  font-weight: 500;
  opacity: 0.9;
}

.landing-testimonial-note {
  text-align: center;
  margin-top: 25px;
  opacity: 0.85;
}

/* FAQ */
.landing-faq-list {
  max-width: 900px;
  margin: 40px auto 60px auto;
  display: grid;
  gap: 15px;
}

.landing-faq-item {
  border: var(--b-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--main-white);
  box-shadow: var(--bs-img);
}

.landing-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: var(--fs-16);
  font-weight: 500;
}

.landing-faq-question span {
  font-size: var(--fs-24);
  line-height: 1;
  margin-left: 15px;
}

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

.landing-faq-answer p {
  padding: 0 25px 25px 25px;
}

.landing-faq-item.open .landing-faq-answer {
  max-height: 400px;
}

/* TARIFS / CTA */
.landing-alt-cta {
  max-width: 88%;
  padding-top: 30px;
  padding-bottom: 120px;
}

.landing-alt-cta-box {
  position: relative;
  overflow: hidden;
  max-width: 77%;
  margin: 0 auto;
  padding: 64px;
  border-radius: 24px;
  text-align: center;
  color: var(--main-white);
  background: var(--bg-chevron);
  border: 1px solid rgba(245, 245, 244, 0.12);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-alt-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(112, 253, 42, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.04),
      transparent 28%
    );
  pointer-events: none;
}

.landing-alt-cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.025) 35%,
    transparent 70%
  );
  pointer-events: none;
}

.landing-alt-cta-box > * {
  position: relative;
  z-index: 1;
}

.landing-alt-cta-box .title-2 {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--main-white);
  line-height: 1.08;
}

.landing-alt-cta-box .tl:first-of-type {
  margin-top: 0;
  margin-bottom: 30px;
}

.landing-cta-content {
  margin-top: 40px;
}

.landing-cta-content .tl.strong {
  font-weight: 700;
  letter-spacing: 1.3px;
}

.landing-price {
  margin: 20px 0;
  padding: 0;
  text-align: center;
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--main-white);
}

.landing-price + .tl {
  margin-top: 0;
  /* margin-bottom: 30px; */
}

.landing-alt-cta #appel + .tl {
  margin-top: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.landing-alt-cta #appel + .tl small {
  font-size: inherit;
  opacity: 1;
}

.landing-alt-cta .link,
.landing-alt-cta a.link,
.landing-alt-cta button.link,
.landing-alt-cta #appel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 18px 30px;
  margin-top: 20px;
  border: none;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #70fd2a 0%, #8cff57 100%);
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow:
    0 16px 34px rgba(112, 253, 42, 0.2),
    0 6px 14px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.landing-alt-cta .link:hover,
.landing-alt-cta a.link:hover,
.landing-alt-cta button.link:hover,
.landing-alt-cta #appel:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 42px rgba(112, 253, 42, 0.26),
    0 10px 22px rgba(0, 0, 0, 0.16);
  filter: brightness(1.02);
}

.landing-alt-cta .link:focus-visible,
.landing-alt-cta a.link:focus-visible,
.landing-alt-cta button.link:focus-visible,
.landing-alt-cta #appel:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.28);
  outline-offset: 4px;
}

/* Responsive */
@media (max-width: 1100px) {
  .landing-section {
    max-width: 90%;
  }

  .landing-problems,
  .landing-testimonials {
    padding-left: 5%;
    padding-right: 5%;
  }

  .landing-hero-content {
    width: 90%;
    margin-left: 5%;
    padding-right: 220px;
  }

  .landing-hero-card {
    width: min(46vw, 620px);
  }

  .landing-hero-image {
    height: 75%;
  }

  .landing-split {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  #offre .landing-split,
  .landing-coach-proof .landing-split {
    grid-template-columns: 40% 60%;
    gap: 36px;
  }

  .landing-split-content,
  .landing-split-media {
    width: 100%;
  }

  .landing-section-image,
  .landing-coach-image {
    width: 85%;
    margin: 0 auto;
  }
}

@media (max-width: 945px) {
  .landing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .call-popup {
    display: none;
    padding: 20px;
  }

  .call-popup.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .call-popup-box {
    width: 100%;
    max-width: 420px;
    margin: 0;
    transform: none;
    padding: 28px 20px 24px;
    border-radius: 16px;
  }

  .call-popup-phone {
    font-size: 1.8rem;
  }

  .call-popup-cta {
    width: 100%;
    min-width: 100%;
  }

  .landing-section {
    max-width: 90%;
    padding: 70px 0;
  }

  .landing-grid-3,
  .landing-grid-4 {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
  }

  .landing-card,
  .landing-benefit-card,
  .landing-testimonials .landing-card {
    width: 80%;
    margin: 0 auto;
  }

  .landing-benefit-card {
    padding: 22px;
  }

  .landing-benefit-icon {
    position: static;
    display: block;
    margin: 0 0 10px 0;
    font-size: 2.8rem;
    line-height: 1;
    text-align: left;
  }

  .landing-benefit-card .title-3 {
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  .landing-steps {
    width: 88%;
    margin: 40px auto 0;
  }

  .landing-step {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .landing-step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-hero-inner {
    min-height: auto;
    padding: 90px 0 40px 0;
  }

  .landing-hero-content {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .landing-hero-card {
    display: none;
  }

  .landing-secondary-cta {
    width: 100%;
    min-width: 100%;
  }

  .landing-split,
  #offre .landing-split,
  .landing-coach-proof .landing-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .landing-split-media {
    justify-content: center;
  }

  .landing-section-image,
  .landing-coach-image {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .landing-alt-cta {
    padding-bottom: 80px;
  }

  .landing-alt-cta-box {
    padding: 38px 22px;
    border-radius: var(--radius-card);
  }

  .landing-alt-cta .link,
  .landing-alt-cta a.link,
  .landing-alt-cta button.link,
  .landing-alt-cta #appel {
    width: 100%;
    min-width: 100%;
  }

  .landing-price {
    font-size: clamp(4rem, 6vw, 5.5rem);
    margin: 20px 0;
  }
}

@media (max-width: 470px) {
  .landing-card,
  .landing-benefit-card,
  .landing-testimonials .landing-card {
    width: 88%;
    padding: 18px;
  }

  .landing-step {
    width: 100%;
    padding: 18px;
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .landing-step-number {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .landing-benefit-card {
    padding: 20px;
  }

  .landing-benefit-icon {
    position: static;
    display: block;
    margin: 0 0 8px 0;
    font-size: 2.4rem;
    line-height: 1;
    text-align: left;
  }

  .landing-benefit-card .title-3 {
    margin: 0 0 14px 0;
    line-height: 1.2;
  }

  .landing-faq-question {
    padding: 16px 18px;
  }

  .landing-steps {
    width: 92%;
  }

  .landing-faq-answer p {
    padding: 0 18px 18px 18px;
  }

  .landing-alt-cta-box {
    padding: 30px 18px;
  }

  .landing-section-image,
  .landing-coach-image {
    width: 90%;
  }

  .landing-title {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    line-height: 1.05;
  }
}
