:root {
  --black: #050606;
  --black-soft: #0b0d0d;
  --card: #101313;
  --gold: #d6a84b;
  --gold-light: #f0cf82;
  --white: #f6f5f1;
  --muted: #9c9d9b;
  --line: rgba(214, 168, 75, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 75% 20%, rgba(214, 168, 75, 0.08), transparent 30%),
    var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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


/* HEADER */

.header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 6, 0.88);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 13px;
  display: block;
}

.brand-name {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 2px;
}

.brand-tagline {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  gap: 36px;
  color: #c5c5c3;
  font-size: 12px;
  letter-spacing: 1px;
}

.nav a:hover {
  color: var(--gold-light);
}


/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  background: linear-gradient(135deg, #b98228, #f0cf82, #bd872d);
  color: #080808;
  font-weight: 900;
  font-size: 13px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(214, 168, 75, 0.15);
  transition: 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 45px rgba(214, 168, 75, 0.25);
}

.button-small {
  min-height: 43px;
  padding: 0 20px;
  font-size: 11px;
}


/* HERO */

.hero {
  min-height: calc(100vh - 90px);
  height: calc(100vh - 90px);
  min-height: 690px;
  max-height: 820px;

  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 28px;

  padding: 44px 5vw 44px 8vw;

  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 48%,
      rgba(214, 168, 75, 0.12),
      transparent 29%
    ),
    linear-gradient(
      90deg,
      #050606 0%,
      #050606 54%,
      #090a0a 100%
    );
  z-index: 0;
  pointer-events: none;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-content {
  align-self: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(58px, 6.7vw, 106px);
  line-height: 0.88;
  letter-spacing: -4px;
  font-weight: 950;
  max-width: 780px;
}

.hero h1 span,
.intro h2 span,
.cta h2 span {
  color: var(--gold-light);
}

.hero-text {
  max-width: 600px;
  color: #b5b6b3;
  font-size: 17px;
  margin: 32px 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.availability {
  color: #8e8f8d;
  font-size: 12px;
}


/* REAL PHONE */

.hero-visual {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 1vw;
}

.phone {
  border: 1px solid rgba(240, 207, 130, 0.55);
  background: #080909;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(214, 168, 75, 0.08);
}

.real-phone {
  width: min(330px, 30vw);
  max-height: calc(100% - 10px);
  padding: 9px;
  border-radius: 42px;
  transform: rotate(3deg);
  transform-origin: center;
  margin-left: auto;
  margin-right: 0;
}

.phone-top {
  width: 88px;
  height: 20px;
  background: #050505;
  border-radius: 20px;
  margin: 4px auto -17px;
  position: relative;
  z-index: 5;
}

.real-screen {
  overflow: hidden;
  border-radius: 34px;
  background: #000;
}

.real-screen img {
  display: block;
  width: 100%;
  height: auto;
}


/* INTRO */

.intro {
  padding: 110px 8vw 60px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.intro h2,
.cta h2 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -2px;
}

.intro > p:last-child {
  max-width: 700px;
  margin: 28px auto 0;
  color: var(--muted);
}


/* UNIVERSES */

.univers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 42px 6vw 120px;
}

.universe-card {
  min-height: 390px;
  border: 1px solid rgba(214, 168, 75, 0.20);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background-color: #0b0d0d;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.012);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.universe-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 207, 130, 0.48);
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.38),
    0 0 44px rgba(214, 168, 75, 0.05);
}

.universe-musculation {
  background-image: url("assets/images/univers-musculation.png");
  background-position: center 45%;
}

.universe-cardio {
  background-image: url("assets/images/univers-cardio.png");
  background-position: center 42%;
}

.universe-eat {
  background-image: url("assets/images/univers-eat.png");
  background-position: center 48%;
}

.universe-progress {
  background-image: url("assets/images/univers-progress.png");
  background-position: center 45%;
}

.universe-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 6, 0.98) 0%,
      rgba(5, 6, 6, 0.86) 34%,
      rgba(5, 6, 6, 0.47) 64%,
      rgba(5, 6, 6, 0.16) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 6, 6, 0.92) 0%,
      rgba(5, 6, 6, 0.18) 55%,
      rgba(5, 6, 6, 0.12) 100%
    );
}

/* Cardio + Progression : éclaircissement très léger uniquement */
.universe-cardio .universe-overlay,
.universe-progress .universe-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 6, 0.94) 0%,
      rgba(5, 6, 6, 0.79) 34%,
      rgba(5, 6, 6, 0.39) 64%,
      rgba(5, 6, 6, 0.10) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 6, 6, 0.87) 0%,
      rgba(5, 6, 6, 0.13) 55%,
      rgba(5, 6, 6, 0.08) 100%
    );
}

.universe-content {
  position: relative;
  z-index: 2;
  width: min(65%, 520px);
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.universe-topline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
}

.universe-topline span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 168, 75, 0.32);
  border-radius: 50%;
  background: rgba(5, 6, 6, 0.55);
  letter-spacing: 0;
  color: var(--gold-light);
}

.universe-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 0.98;
  letter-spacing: -1px;
  text-wrap: balance;
}

.universe-card p {
  max-width: 500px;
  color: #b6b7b4;
  font-size: 14px;
  line-height: 1.65;
}



/* WHY FORJEA */

.why {
  padding: 105px 6vw 115px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 15%, rgba(214, 168, 75, 0.06), transparent 34%),
    #050606;
}

.why-heading {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.why-heading h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -2px;
}

.why-heading h2 span {
  color: var(--gold-light);
}

.why-heading > p:last-child {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.why-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(214, 168, 75, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
  position: relative;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 207, 130, 0.38);
  background:
    linear-gradient(145deg, rgba(214,168,75,0.055), rgba(255,255,255,0.008));
}

.why-index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid rgba(214, 168, 75, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
}

.why-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 950px) {
  .why {
    padding-top: 85px;
    padding-bottom: 95px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
  }

  .why-index {
    margin-bottom: 28px;
  }
}


/* CTA */

.cta {
  padding: 130px 8vw;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(
      circle at center,
      rgba(214, 168, 75, 0.08),
      transparent 40%
    );
}

.cta .button {
  margin-top: 38px;
}


/* FOOTER */

footer {
  min-height: 120px;
  padding: 35px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: #888;
  font-size: 11px;
}

footer strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  letter-spacing: 2px;
}

footer span {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a:hover {
  color: var(--gold-light);
}


/* RESPONSIVE */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    padding-left: 5vw;
    padding-right: 4vw;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 90px);
  }

  .real-phone {
    width: min(300px, 31vw);
  }
}

@media (max-width: 950px) {
  .nav {
    display: none;
  }

  .header {
    padding: 0 5vw;
  }

  .header > .button {
    display: none;
  }

  .hero {
    height: auto;
    max-height: none;
    min-height: auto;

    grid-template-columns: 1fr;
    padding: 80px 5vw 70px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(52px, 14vw, 85px);
    letter-spacing: -3px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .hero-visual {
    justify-content: center;
    height: auto;
    margin-top: 55px;
    padding-right: 0;
  }

  .real-phone {
    width: min(320px, 72vw);
    max-height: none;
    margin: 0;
  }

  .univers {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .brand-name {
    font-size: 19px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .univers {
    grid-template-columns: 1fr;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* FINAL HERO POLISH — desktop */
@media (min-width: 951px) {
  .hero-visual {
    transform: translateY(-18px);
  }

  .real-phone {
    width: min(292px, 62vw);
  }
}

/* HERO FINAL LOCK — alignement + vraie capture sans fausse encoche */
.phone-top {
  display: none;
}

@media (min-width: 951px) {
  .hero-visual {
    transform: translate(-34px, -18px);
  }
}

/* HERO VALIDÉ — téléphone +5 %, position conservée */
@media (min-width: 951px) {
  .real-phone {
    width: min(307px, 65vw);
  }
}

/* FINITION CADRE TÉLÉPHONE — bas propre et contour homogène */
.real-phone {
  padding: 9px 9px 12px;
  border: 1px solid rgba(240, 207, 130, 0.58);
  border-radius: 46px 46px 50px 50px;
  overflow: hidden;
}

.real-screen {
  border-radius: 37px 37px 40px 40px;
}



/* UNIVERS PREMIUM — responsive */
@media (max-width: 950px) {
  .univers {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 30px;
  }

  .universe-card {
    min-height: 360px;
  }

  .universe-content {
    width: min(72%, 560px);
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .univers {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .universe-card {
    min-height: 410px;
    background-position: 62% center;
  }

  .universe-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(5, 6, 6, 0.98) 0%,
        rgba(5, 6, 6, 0.82) 40%,
        rgba(5, 6, 6, 0.18) 78%,
        rgba(5, 6, 6, 0.10) 100%
      );
  }

  .universe-content {
    width: 100%;
    min-height: 410px;
    padding: 26px;
    justify-content: flex-end;
  }

  .universe-card h3 {
    font-size: 29px;
  }
}


/* WHY FORJEA — pictogrammes premium */
.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.why-card-top .why-index {
  margin-bottom: 0;
}

.why-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold);
  opacity: 0.78;
  transition: color .28s ease, opacity .28s ease, transform .28s ease;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card:hover .why-icon {
  color: var(--gold-light);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 950px) {
  .why-card-top { margin-bottom: 28px; }
}


/* CTA FINAL */

.cta {
  padding: 120px 6vw 115px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(214, 168, 75, 0.11), transparent 31%),
    linear-gradient(180deg, #070808 0%, #050606 100%);
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 1px;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 75, 0.22), transparent);
  pointer-events: none;
}

.cta::before {
  left: -120px;
}

.cta::after {
  right: -120px;
}

.cta-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 0.94;
  letter-spacing: -2.5px;
}

.cta-text {
  max-width: 680px;
  margin: 28px auto 0;
  color: #a9aaa7;
  font-size: 15px;
  line-height: 1.75;
}

.cta-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.cta-main-button {
  min-width: 245px;
  cursor: default;
}

.cta-instagram {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(214, 168, 75, 0.30);
  transition: 0.25s ease;
}

.cta-instagram:hover {
  color: #fff0bd;
  border-color: rgba(240, 207, 130, 0.72);
}


/* FOOTER FINAL */

.footer {
  min-height: 165px;
  padding: 34px 6vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  border-top: none;
  color: #838481;
  font-size: 11px;
  background: #030404;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: cover;
  border-radius: 11px;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  letter-spacing: 2px;
}

.footer-brand span {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 2px;
}

.footer-center {
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-note {
  margin-top: 12px;
  color: #666865;
  font-size: 10px;
}

.footer-legal {
  text-align: right;
}

.footer-legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 12px;
}

.footer-legal a {
  color: #777976;
}

.footer-legal .is-disabled {
  cursor: default;
  opacity: 0.62;
}

.footer-legal p {
  color: #666865;
  font-size: 10px;
}

@media (max-width: 950px) {
  .cta {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-legal {
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-note {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* CTA INSTAGRAM — version icône */
.cta-instagram {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 4px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  border-bottom: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.instagram-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(214, 168, 75, 0.10));
}

.cta-instagram:hover {
  color: #fff0bd;
  transform: translateY(-1px);
}


/* CTA VERROUILLÉ — Google Play + Instagram parfaitement centrés */
.cta-actions {
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.cta-main-button,
.cta-instagram {
  margin-left: auto;
  margin-right: auto;
}

.cta-instagram {
  min-height: 34px;
}

/* =========================================================
   FORJEA — POLISH MOBILE FINAL
   Desktop inchangé. Ajustements uniquement <= 600 px.
   ========================================================= */

@media (max-width: 600px) {

  /* HERO : un peu moins de vide sans changer sa structure */
  .hero {
    padding-top: 64px;
    padding-bottom: 46px;
  }

  .hero-visual {
    margin-top: 42px;
  }

  /* INTRO : rapproche la section du téléphone */
  .intro {
    padding: 76px 6vw 44px;
  }

  .intro h2 {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 0.94;
    letter-spacing: -1.5px;
  }

  .intro > p:last-child {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.65;
  }

  /* UNIVERS : moins d'espace après les 4 cartes */
  .univers {
    gap: 14px;
    padding-top: 28px;
    padding-bottom: 78px;
  }

  .universe-card {
    min-height: 390px;
  }

  .universe-content {
    min-height: 390px;
    padding: 24px;
  }

  .universe-card h3 {
    font-size: 27px;
    line-height: 0.98;
  }

  .universe-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* POURQUOI FORJEA : section plus compacte */
  .why {
    padding: 76px 5vw 80px;
  }

  .why-heading {
    margin-bottom: 42px;
  }

  .why-heading h2 {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 0.94;
    letter-spacing: -1.5px;
  }

  .why-heading > p:last-child {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.65;
  }

  .why-grid {
    gap: 14px;
  }

  .why-card {
    padding: 24px;
  }

  .why-card-top {
    margin-bottom: 24px;
  }

  .why-card h3 {
    font-size: 19px;
    line-height: 1.15;
  }

  .why-card p {
    font-size: 13px;
    line-height: 1.65;
  }

  /* CTA : titre moins massif et section moins haute */
  .cta {
    padding: 78px 5vw 80px;
  }

  .cta h2 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 0.94;
    letter-spacing: -1.6px;
  }

  .cta-text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.65;
  }

  .cta-actions {
    margin-top: 30px;
    gap: 12px;
  }

  .cta-main-button {
    min-width: 225px;
  }

  /* FOOTER : meilleure lisibilité réelle sur smartphone */
  .footer {
    gap: 26px;
    padding: 38px 6vw 40px;
    font-size: 12px;
  }

  .footer-logo {
    width: 46px;
    height: 46px;
  }

  .footer-brand strong {
    font-size: 20px;
  }

  .footer-brand span {
    font-size: 8px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-note {
    max-width: 300px;
    font-size: 11px;
    line-height: 1.55;
  }

  .footer-legal-links {
    gap: 14px;
  }

  .footer-legal a,
  .footer-legal p {
    font-size: 11px;
    line-height: 1.5;
  }
    .univers {
    padding-bottom: 52px;
  }

  .why {
    padding-top: 52px;
  }
  .cta {
  padding-top: 58px;
}
}
/* =========================================================
   PAGES LÉGALES — FORJEA
   ========================================================= */

.legal-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.10), transparent 32%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
  color: #f5f5f5;
}

.legal-wrapper {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-header {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.legal-back {
  display: inline-block;
  margin-bottom: 38px;
  color: #c9a35f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.legal-back:hover {
  opacity: 0.72;
}

.legal-kicker {
  margin: 0 0 12px;
  color: #c9a35f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.legal-header h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.legal-updated {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.legal-content {
  padding-top: 42px;
}

.legal-content h2 {
  margin: 54px 0 18px;
  color: #f4e5c2;
  font-size: 24px;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 30px 0 12px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.8;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content strong {
  color: #ffffff;
}

.legal-content a {
  color: #d7b66f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: #f0d798;
}

@media (max-width: 600px) {
  .legal-wrapper {
    width: min(100% - 28px, 920px);
    padding: 42px 0 68px;
  }

  .legal-header {
    padding-bottom: 28px;
  }

  .legal-back {
    margin-bottom: 30px;
  }

  .legal-content {
    padding-top: 30px;
  }

  .legal-content h2 {
    margin-top: 42px;
    font-size: 21px;
  }

  .legal-content h3 {
    font-size: 17px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
    line-height: 1.75;
  }
}
