/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #0f0a08;
  --bg-card: #1a100c;
  --bg-card-hover: #231510;
  --brown: #3d1f14;
  --brown-light: #6b3322;
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --text: #f5f0eb;
  --text-muted: #9e8c7e;
  --border: rgba(201, 169, 110, 0.15);
  --radius: 16px;
  --nav-h: 88px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  background-image:
    linear-gradient(rgba(8, 4, 3, 0.58), rgba(8, 4, 3, 0.72)),
    url("../images/dearwin-home-bg.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

body.home-page {
  background-image: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}

body.age-gate-open,
body.intro-gate-open {
  overflow: hidden;
}

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.8vw, 2.5rem);
  background: #000;
}

body.intro-gate-open .intro-gate {
  display: flex;
}

.intro-gate-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.98;
}

.intro-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.46) 44%, rgba(0, 0, 0, 0.12) 72%),
    rgba(0, 0, 0, 0.08);
}

.intro-gate-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1500px);
  min-height: min(900px, calc(100vh - 4rem));
  border-radius: 42px;
  overflow: hidden;
  background: #000;
  color: #fff;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.36);
}

.intro-gate-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, #000 43%, rgba(0, 0, 0, 0.76) 58%, rgba(0, 0, 0, 0.18) 78%, rgba(0, 0, 0, 0.02) 100%);
  pointer-events: none;
  z-index: 1;
}

.intro-gate-nav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(120px, 190px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  padding: 2.4rem clamp(1.5rem, 4vw, 4.5rem) 0;
  min-width: 0;
}

.intro-gate-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}

.intro-gate-links {
  justify-self: center;
  display: flex;
  gap: clamp(1rem, 1.6vw, 1.85rem);
  align-items: center;
  min-height: 64px;
  padding: 0 clamp(1.25rem, 2vw, 2.2rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  white-space: nowrap;
  min-width: 0;
}

.intro-gate-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  min-width: 0;
}

.intro-gate-actions button,
.intro-gate-buttons button {
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
}

.intro-login,
.intro-pill {
  min-height: 64px;
  padding: 0 clamp(1rem, 1.5vw, 1.35rem);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  white-space: nowrap;
}

.intro-gate-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(720px, 58%);
  min-height: calc(min(900px, 100vh - 4rem) - 110px);
  padding: 4rem 0 4rem clamp(2.2rem, 7vw, 7rem);
}

.intro-gate-content h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(3.4rem, 5.8vw, 6.3rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

.intro-gate-content p {
  margin: 0 0 4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.74);
}

.intro-gate-buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.8rem;
}

.intro-primary,
.intro-secondary {
  min-height: 78px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
}

.intro-primary {
  position: relative;
  min-width: 315px;
  padding: 0 2.2rem 0 6.7rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.intro-primary span {
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  transform: translateY(-50%);
  color: #000;
  background: #fff;
  font-size: 2.2rem;
}

.intro-secondary {
  min-width: 315px;
  padding: 0 2.4rem;
  background: #fff;
  color: #000;
}

.intro-gate-badges {
  display: flex;
  gap: 2.3rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.8rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

body.age-gate-open .age-gate {
  display: flex;
}

.age-gate-card {
  width: min(100%, 980px);
  border-radius: 42px;
  background: #fff;
  color: #050505;
  padding: clamp(2.3rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5.6rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.age-gate-icon {
  width: clamp(92px, 12vw, 150px);
  height: clamp(92px, 12vw, 150px);
  margin: 0 auto clamp(1.4rem, 3vw, 2.4rem);
  color: #000;
}

.age-gate-icon svg {
  width: 100%;
  height: 100%;
}

.age-gate-card h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 0;
}

.age-gate-copy {
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3.3rem);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.18;
  color: #080808;
}

.age-gate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  width: min(100%, 680px);
  margin: 0 auto 2.4rem;
}

.age-gate-actions button {
  min-height: 78px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
}

.age-gate-confirm {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem 0.9rem 6.4rem;
  color: #000;
  background: #d1d1d1;
}

.age-gate-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: #000;
  font-size: 2.5rem;
  font-weight: 400;
}

.age-gate-deny {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  color: #fff;
  background: #ff120d;
}

.age-gate-deny span:first-child {
  font-size: 1.35rem;
}

.age-gate-legal {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.35vw, 1.3rem);
  line-height: 1.22;
  color: #191919;
}

@media (max-width: 720px) {
  .intro-gate {
    padding: 0.85rem;
  }

  .intro-gate-shell {
    min-height: calc(100vh - 1.7rem);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  }

  .intro-gate-nav {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .intro-gate-links {
    display: none;
  }

  .intro-gate-actions {
    justify-content: flex-start;
  }

  .intro-gate-content {
    width: 100%;
    min-height: auto;
    padding: 4rem 1.5rem 2rem;
  }

  .intro-gate-buttons,
  .intro-gate-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }

  .intro-primary,
  .intro-secondary {
    min-width: 0;
  }

  .age-gate-card {
    border-radius: 30px;
  }

  .age-gate-actions {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--brown);
  border-radius: 3px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(2.5rem, 5.5vw, 5rem);
  background:
    linear-gradient(90deg, rgba(23, 6, 3, 0.58), rgba(95, 40, 24, 0.34), rgba(16, 5, 3, 0.54)),
    rgba(20, 8, 5, 0.34);
  backdrop-filter: blur(22px) saturate(115%);
  -webkit-backdrop-filter: blur(22px) saturate(115%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--text);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
  letter-spacing: 0;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn-inscription {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  transition: background 0.2s;
}
.btn-inscription:hover {
  background: rgba(255, 255, 255, 0.24);
}

.btn-participer {
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  transition: background 0.2s;
}
.btn-participer:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.3);
}

.mobile-nav-panel {
  display: none;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.hero-home {
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 4, 3, 0.78) 0%,
      rgba(8, 4, 3, 0.4) 48%,
      rgba(8, 4, 3, 0.6) 100%
    ),
    url("../images/dearwin-home-bg.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(80, 30, 15, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.hero-title-group {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--text);
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===========================
   CARDS GRID
=========================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: rgba(15, 9, 6, 0.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  background: rgba(20, 12, 8, 0.65);
  border-color: rgba(201, 169, 110, 0.38);
}

.card-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.mobile-card-heading {
  display: none;
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 10, 8, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
}

.card-body {
  position: relative;
  min-height: 168px;
  padding: 1rem;
  background:
    radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.3), transparent 10%),
    linear-gradient(135deg, rgba(170, 180, 205, 0.46), rgba(76, 64, 59, 0.58));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.card-action-art {
  display: none;
}

.card-action-link {
  position: absolute;
  inset: 0.75rem;
  z-index: 5;
  border-radius: 18px;
}

.card-body
  > :not(.card-action-art):not(.card-action-link):not(.card-timer-row):not(
    .card-info-row
  ) {
  display: none;
}

/* Timer */
.card-timer-row {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 48%;
  min-height: 70px;
  padding: 0.45rem 0.55rem 0.55rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-timer-label {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.82);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}
.card-timer-label svg {
  width: 8px;
  height: 8px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  justify-content: space-between;
}

.countdown-block {
  display: flex;
  align-items: flex-end;
  gap: 0.04rem;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.cd-num {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.3vw, 2rem);
  line-height: 1;
  color: var(--text);
  min-width: 2ch;
  text-align: center;
}

.cd-label {
  font-size: 0.42rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: lowercase;
  padding-bottom: 0.12rem;
}

.countdown-sep {
  font-size: clamp(0.9rem, 1.8vw, 1.45rem);
  color: rgba(255, 255, 255, 0.5);
  align-self: center;
  padding: 0;
}

.card-body .card-info-row {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 35%;
}

/* Info row */
.card-info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.card-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.card-info-label {
  font-size: 0.54rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.card-info-value {
  margin-left: 0.18rem;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

/* Progress bar */
.card-progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.card-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brown-light), var(--gold));
  border-radius: 999px;
  transition: width 0.5s ease;
}

/* Bouton acheter */
.btn-acheter {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 58px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
  width: auto;
  overflow: hidden;
}
.btn-acheter:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.4);
}

.btn-acheter .btn-arrow {
  position: absolute;
  left: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #061b2e;
  color: #fff;
  border-radius: 50%;
  font-size: 1.45rem;
  flex-shrink: 0;
  transition:
    transform 0.42s cubic-bezier(0.2, 0.85, 0.2, 1),
    background 0.2s ease;
}

.btn-acheter:hover .btn-arrow {
  transform: translateX(12px);
}

.btn-acheter.is-arrow-flying .btn-arrow {
  transform: translateX(calc(100% + 220px));
}

.btn-acheter.is-arrow-flying .btn-arrow {
  background: #000;
}

.card-body > .btn-acheter {
  display: flex !important;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  width: min(calc(100% - 5rem), 1280px);
  max-width: 1280px;
  min-height: 650px;
  margin: 5rem auto;
  padding: clamp(3rem, 5vw, 5rem);
  align-items: stretch;
  background: rgba(28, 9, 4, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: -36px;
  z-index: -2;
  background-image: url("../images/cta-glass-bg.png");
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.84) saturate(1.12);
  transform: scale(1.02);
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 44% 22%, rgba(255, 230, 214, 0.24), transparent 24%),
    linear-gradient(90deg, rgba(35, 9, 4, 0.56) 0%, rgba(126, 55, 25, 0.2) 52%, rgba(18, 5, 3, 0.14) 100%),
    rgba(28, 8, 4, 0.16);
}

.cta-left {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  backdrop-filter: blur(11px) saturate(112%);
  -webkit-backdrop-filter: blur(11px) saturate(112%);
}

.cta-dots {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
}
.dot {
  width: 32px;
  height: 32px;
  margin-left: -12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}
.dot:first-child {
  margin-left: 0;
}
.dot.active {
  background: var(--text);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
}

.cta-brand {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 11vw, 10rem);
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 2.2rem;
  letter-spacing: 0.02em;
}

.cta-desc {
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.28;
  max-width: 560px;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 4.5rem;
}

.btn-acheter-cta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-width: 300px;
  background: rgba(35, 12, 6, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s;
}
.btn-acheter-cta:hover {
  background: rgba(201, 169, 110, 0.12);
}

.btn-acheter-cta .btn-arrow {
  position: static;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 2rem;
  flex-shrink: 0;
  transition:
    transform 0.28s ease,
    background 0.2s ease;
}

.btn-acheter-cta:hover .btn-arrow,
.btn-acheter-cta.is-arrow-flying .btn-arrow {
  transform: translateX(16px);
  background: #061b2e;
}

.btn-reglement {
  font-size: 1.05rem;
  font-weight: 600;
  color: #16100d;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 1.25rem 2.5rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-reglement:hover {
  background: rgba(255, 255, 255, 0.13);
}

.cta-mention {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
}

/* CTA RIGHT */
.cta-right {
  position: relative;
  min-width: 0;
}

.cta-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(37, 8, 4, 0.2)),
    url("../images/dearwin-home-bg.png");
  background-size: cover;
  background-position: 92% center;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.cta-image {
  display: none;
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.55);
  border-radius: var(--radius);
}

.cta-arrow-icon {
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  right: auto;
  font-size: 4.5rem;
  color: var(--text);
  z-index: 2;
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
}

.cta-newsletter {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 3rem;
  width: 100%;
  width: auto;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0;
  text-align: center;
}

.cta-newsletter h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: #fff;
}

.cta-newsletter > p {
  font-size: clamp(1rem, 1.25vw, 1.45rem);
  color: rgba(255, 255, 255, 0.94);
  margin: 0 auto 2rem;
  line-height: 1.18;
  max-width: 430px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 1.6rem;
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 1 370px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 1.15rem 1.8rem;
  min-width: 0;
}

.newsletter-input-group svg {
  color: #111;
  flex-shrink: 0;
}

.newsletter-input-group input {
  background: transparent;
  border: none;
  outline: none;
  color: #17120f;
  font-family: var(--font-body);
  font-size: 1.15rem;
  width: 100%;
}
.newsletter-input-group input::placeholder {
  color: rgba(20, 15, 12, 0.82);
}

.btn-newsletter {
  display: none;
}
.btn-newsletter:hover {
  background: var(--gold-light);
}

.newsletter-mention {
  font-size: clamp(1rem, 1.2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.93);
  margin: 0 auto;
  line-height: 1.2;
  max-width: 460px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 5rem), 1440px);
  max-width: 1440px;
  min-height: 520px;
  margin: 5rem auto 2.5rem;
  padding: clamp(4rem, 5.5vw, 5rem);
  background: rgba(48, 18, 10, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 36px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.footer::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -2;
  background-image: url("../images/cta-glass-bg.png");
  background-size: cover;
  background-position: center 48%;
  filter: blur(13px) brightness(0.86) saturate(1.1);
  transform: scale(1.04);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(42, 12, 5, 0.5), rgba(151, 72, 34, 0.18) 48%, rgba(4, 3, 3, 0.54)),
    rgba(35, 10, 5, 0.2);
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1.35fr 1.35fr 0.9fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  display: block;
  margin-bottom: 2rem;
  color: #fff;
}

.footer-brand p {
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.25;
  margin-bottom: 2rem;
}
.footer-legal-small {
  font-size: clamp(0.95rem, 1.1vw, 1.2rem) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  margin-top: 0 !important;
}

.footer-col h4 {
  font-size: clamp(1.15rem, 1.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}
.footer-col ul li a {
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--text);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: none;
  padding: 0;
  max-width: none;
  margin: 4.5rem auto 0;
}
.footer-bottom p {
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.footer-watermark {
  position: absolute;
  left: 12%;
  right: auto;
  bottom: -11%;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(7rem, 19vw, 18rem);
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.02em;
  padding-bottom: 0;
  opacity: 0.52;
  transform: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero-home {
    background-position: 58% center;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .cta-section {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 1.25rem;
  }
  .hero-home {
    background-image:
      linear-gradient(
        180deg,
        rgba(8, 4, 3, 0.9) 0%,
        rgba(8, 4, 3, 0.52) 42%,
        rgba(8, 4, 3, 0.76) 100%
      ),
      url("../images/dearwin-home-bg.png");
    background-position: 56% top;
  }
  .hero-content {
    padding: 2.5rem 1.25rem 4rem;
  }
  .hero-title-group {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-section {
    padding: 3rem 1.25rem 4rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.25rem 2rem;
  }
}

@media (max-width: 640px) {
  .mobile-nav-panel {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 82px);
    left: 16px;
    right: 16px;
    z-index: 99;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    background: rgba(12, 7, 5, 0.86);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  body.mobile-menu-open .mobile-nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-nav-panel a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
  }

  .mobile-nav-panel a:nth-last-child(1) {
    grid-column: 1 / -1;
    color: #111;
    background: rgba(255, 255, 255, 0.92);
  }

  .navbar .btn-participer.mobile-menu-toggle {
    width: 28px;
    height: 22px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(#fff, #fff) 0 0 / 100% 2px no-repeat,
      linear-gradient(#fff, #fff) 0 50% / 100% 2px no-repeat,
      linear-gradient(#fff, #fff) 0 100% / 100% 2px no-repeat;
    color: transparent;
    font-size: 0;
  }

  body.mobile-menu-open .navbar .btn-participer.mobile-menu-toggle {
    background:
      linear-gradient(#fff, #fff) 50% 50% / 100% 2px no-repeat,
      linear-gradient(#fff, #fff) 50% 50% / 100% 2px no-repeat;
    transform: rotate(45deg);
  }

  body.mobile-menu-open .navbar .btn-participer.mobile-menu-toggle::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transform: rotate(90deg);
  }

  body.home-page {
    background: #120704;
    color: #fff;
    overflow-x: hidden;
  }

  .navbar {
    top: env(safe-area-inset-top, 0);
    height: 104px;
    padding: 0 16px;
    background: linear-gradient(180deg, rgba(18, 7, 4, 0.78), rgba(18, 7, 4, 0));
    border-bottom: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-logo {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 50%;
    color: transparent;
    font-size: 0;
    display: grid;
    place-items: center;
  }

  .nav-logo::before {
    content: "‹";
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.8rem;
    line-height: 0.8;
    transform: translateX(-1px);
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 12px;
  }

  .btn-inscription {
    width: 25px;
    height: 25px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #111;
    background: #fff;
    border: 0;
    font-size: 0;
  }

  .btn-inscription::before {
    content: "⌘";
    color: #111;
    font-size: 0.86rem;
    line-height: 1;
  }

  .btn-inscription span {
    display: none;
  }

  .hero-home {
    display: block;
    min-height: auto;
    padding: 0;
    background: #120704;
  }

  .hero-home .hero-bg,
  .hero-home .hero-title-group {
    display: none;
  }

  .hero-content {
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .cards-grid {
    display: block;
  }

  .card {
    position: relative;
    min-height: 100svh;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #190905;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .card:hover {
    transform: none;
  }

  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(22, 7, 4, 0.88) 0%, rgba(22, 7, 4, 0.08) 32%, rgba(16, 5, 3, 0.12) 62%, rgba(16, 5, 3, 0.9) 100%),
      radial-gradient(circle at 50% 9%, rgba(255, 255, 255, 0.12), transparent 20%);
    pointer-events: none;
  }

  .card-image {
    position: absolute;
    inset: 0;
    height: auto;
    z-index: 0;
    background-size: cover;
    background-position: center bottom;
  }

  .card:nth-child(1) .card-image {
    background-position: 50% 66%;
  }

  .card:nth-child(2) .card-image {
    background-position: 50% 62%;
  }

  .card:nth-child(3) .card-image {
    background-position: 50% 63%;
  }

  .mobile-card-heading {
    position: absolute;
    top: 15svh;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
  }

  .mobile-card-brand {
    font-family: var(--font-display);
    font-size: clamp(6.8rem, 26vw, 8.9rem);
    line-height: 0.84;
    color: #fff;
    letter-spacing: 0.02em;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  }

  .mobile-card-tagline {
    margin-top: 1.2rem;
    font-size: clamp(1.78rem, 7.1vw, 2.35rem);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.42);
  }

  .card-badge {
    top: 43svh;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    padding: 0.26rem 0.72rem;
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  }

  .card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    min-height: 240px;
    padding: 16px;
    border-radius: 34px 34px 0 0;
    background:
      radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.2), transparent 14%),
      linear-gradient(135deg, rgba(75, 74, 74, 0.96), rgba(37, 35, 35, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 0;
  }

  .card-body > .card-progress-bar {
    display: none !important;
  }

  .card-timer-row {
    top: 18px;
    left: 16px;
    width: calc(58% - 18px);
    min-height: 102px;
    border-radius: 10px;
    padding: 0.5rem 0.62rem 0.72rem;
    background: rgba(0, 0, 0, 0.92);
  }

  .card-timer-label {
    font-size: 0.58rem;
  }

  .countdown {
    justify-content: flex-start;
    gap: 0.08rem;
  }

  .cd-num {
    font-size: clamp(2.2rem, 10.5vw, 3.05rem);
  }

  .cd-label {
    font-size: 0.45rem;
  }

  .countdown-sep {
    font-size: 1.5rem;
  }

  .card-body .card-info-row {
    top: 18px;
    right: 16px;
    width: calc(38% - 18px);
    gap: 0.65rem;
  }

  .card-info-item {
    min-height: 42px;
    padding: 0.3rem 0.42rem;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.45);
  }

  .card-info-label,
  .card-info-value {
    font-size: 0.55rem;
  }

  .btn-acheter {
    left: 16px;
    right: 16px;
    bottom: 40px;
    min-height: 66px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(13, 13, 13, 0.58);
    border-color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
  }

  .btn-acheter .btn-arrow {
    left: 0.45rem;
    width: 58px;
    height: 58px;
    background: #000;
    font-size: 2rem;
  }

  .cta-section {
    display: block;
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 15svh 32px 0;
    border: 0;
    border-radius: 0;
    background: rgba(73, 25, 13, 0.55);
    box-shadow: none;
  }

  .cta-section::before {
    inset: 0;
    background-image: url("../images/cta-glass-bg.png");
    background-size: cover;
    background-position: 50% center;
    filter: blur(7px) brightness(0.76);
    transform: scale(1.04);
  }

  .cta-section::after {
    background: linear-gradient(180deg, rgba(79, 28, 15, 0.42), rgba(67, 22, 12, 0.1) 50%, rgba(54, 15, 8, 0.18));
  }

  .cta-dots {
    margin: 0 0 0.6rem;
  }

  .dot {
    width: 18px;
    height: 18px;
    margin-left: -6px;
  }

  .cta-title {
    font-size: clamp(1.55rem, 7.1vw, 2rem);
    line-height: 1.18;
    margin-bottom: 1rem;
  }

  .cta-brand {
    font-size: clamp(5rem, 22vw, 6.8rem);
    margin-bottom: 1.2rem;
  }

  .cta-desc {
    max-width: 330px;
    margin-bottom: 2.1rem;
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .cta-buttons {
    gap: 1.7rem;
    margin-bottom: 0;
  }

  .btn-acheter-cta {
    min-width: 0;
    width: 162px;
    min-height: 50px;
    padding: 0.4rem 0.8rem 0.4rem 0.4rem;
    gap: 0.8rem;
    font-size: 0.7rem;
    background: rgba(22, 8, 4, 0.62);
  }

  .btn-acheter-cta .btn-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.55rem;
  }

  .btn-reglement {
    padding: 1rem 1.4rem;
    font-size: 0.72rem;
    color: #17110d;
  }

  .cta-mention {
    display: none;
  }

  .cta-right {
    margin: 9svh -32px 0;
  }

  .cta-image-wrapper {
    min-height: 38svh;
    height: 38svh;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(55, 15, 8, 0), rgba(55, 15, 8, 0.15)),
      url("../images/cta-glass-bg.png");
    background-size: cover;
    background-position: 45% center;
  }

  .cta-arrow-icon {
    display: none;
  }

  .cta-newsletter {
    position: absolute;
    inset: auto 28px 7svh;
    text-align: center;
    color: #fff;
  }

  .cta-newsletter h3 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
  }

  .cta-newsletter p {
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .newsletter-input-group {
    width: min(100%, 245px);
    margin: 0.85rem auto 0;
    min-height: 43px;
    padding: 0 1rem;
    border-radius: 999px;
    background: #fff;
  }

  .newsletter-input-group input {
    font-size: 0.72rem;
  }

  .btn-newsletter {
    display: none;
  }

  .newsletter-mention {
    margin: 0.9rem auto 0;
    max-width: 270px;
  }

  .footer {
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 14svh 26px 24px;
    border: 0;
    border-radius: 0;
    background: rgba(70, 25, 14, 0.64);
    box-shadow: none;
  }

  .footer::before {
    inset: 0;
    background-image: url("../images/cta-glass-bg.png");
    background-size: cover;
    background-position: 49% center;
    filter: blur(8px) brightness(0.76);
    transform: scale(1.05);
  }

  .footer::after {
    background:
      linear-gradient(180deg, rgba(66, 21, 12, 0.44), rgba(66, 21, 12, 0.12) 52%, rgba(30, 9, 5, 0.22)),
      rgba(45, 12, 6, 0.1);
  }

  .footer-inner {
    display: block;
    padding: 0;
  }

  .footer-logo {
    font-size: clamp(4.2rem, 18vw, 5.8rem);
    line-height: 0.9;
    margin-bottom: 1.8rem;
  }

  .footer-brand p {
    max-width: 330px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .footer-legal-small {
    margin: 1.2rem 0 !important;
    font-size: 0.95rem !important;
  }

  .footer-col {
    margin-top: 1.2rem;
  }

  .footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .footer-col ul {
    gap: 0.6rem;
  }

  .footer-col ul li a {
    font-size: 0.86rem;
  }

  .footer-bottom {
    margin-top: 2.4rem;
  }

  .footer-bottom p {
    text-align: left;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .footer-watermark {
    display: block;
    position: absolute;
    right: -34px;
    bottom: 28px;
    left: auto;
    z-index: 1;
    width: min(64vw, 255px);
    height: min(48vh, 315px);
    padding: 0;
    pointer-events: none;
    background: url("../images/footer-gifts-mobile.png") center bottom / contain no-repeat;
    color: transparent;
    font-size: 0;
    line-height: 0;
    opacity: 1;
    transform: none;
  }
}

/* ===========================
   NAV ACTIVE
=========================== */
.nav-links a.nav-active {
  color: rgba(35, 29, 26, 0.92);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  padding: 0.48rem 0.95rem;
}

/* ===========================
   PAGE CONCEPT — HERO
=========================== */
.concept-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) 2.5rem 4rem;
  overflow: hidden;
}

.concept-hero-bg {
  display: none;
}

.concept-hero-inner {
  position: relative;
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(380px, 0.98fr);
  column-gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5.6rem);
  background:
    linear-gradient(90deg, rgba(35, 12, 7, 0.7), rgba(189, 103, 48, 0.34) 55%, rgba(10, 6, 5, 0.62)),
    rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1.5px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.concept-hero-left {
  position: relative;
  z-index: 2;
  max-width: 690px;
  text-align: center;
  transform: translateX(-1.6rem);
}

.concept-hero-logo {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  display: block;
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
}

.concept-hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.15rem, 3.85vw, 4rem);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 1.75rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.concept-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.22;
  max-width: 620px;
  margin: 0 auto;
}
.concept-hero-desc strong {
  color: var(--text);
}

.concept-hero-media {
  position: relative;
  z-index: 1;
  min-height: 360px;
  height: min(32vw, 450px);
  margin: 0;
  padding: clamp(1rem, 2vw, 1.7rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 7, 0.34);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  border: 1.5px solid rgba(255, 255, 255, 0.62);
  border-radius: 0 34px 34px 0;
  overflow: hidden;
}

.concept-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
}

/* Stack de cartes */
.concept-card-stack {
  display: none;
}

.concept-card-back,
.concept-card-front {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.concept-card-back {
  width: 65%;
  height: 80%;
  top: 0;
  right: 0;
  transform: rotate(3deg);
}

.concept-card-front {
  width: 68%;
  height: 85%;
  bottom: 0;
  left: 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.concept-card-back img,
.concept-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.concept-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}

.concept-gift {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.9) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ===========================
   PAGE CONCEPT — ÉTAPES
=========================== */
.etapes-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 2.5rem;
}

.etapes-bg {
  display: none;
}

.etapes-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.etapes-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.etapes-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.etapes-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.etapes-desc strong {
  color: var(--text);
}

.etapes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.etape-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.etape-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 110, 0.3);
}

.etape-num-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 80px;
}

.etape-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.etape-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--text);
}

.etape-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.etape-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.etapes-arrow {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 768px) {
  .concept-hero-inner {
    grid-template-columns: 1fr;
  }
  .concept-card-stack {
    height: 280px;
  }
}

/* ===========================
   PAGE CONCOURS — CONFIANCE
=========================== */
.confiance-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 2.5rem 5rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.confiance-bg {
  display: none;
}

.confiance-inner {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.confiance-header {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.confiance-title-big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  color: var(--text);
}

.confiance-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: 0.02em;
}

.confiance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.confiance-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.confiance-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 169, 110, 0.35);
}

.confiance-card-body h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.confiance-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.confiance-card-icon {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.confiance-card-icon svg {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 10px;
  color: var(--text);
}

@media (max-width: 900px) {
  .confiance-grid {
    grid-template-columns: 1fr;
  }
  .confiance-header {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ===========================
   PAGE TRANSPARENCE
=========================== */
.transp-hero {
  padding: calc(var(--nav-h) + 4rem) 2.5rem 5rem;
}

.transp-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.transp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  text-align: center;
  color: var(--text);
  margin-bottom: 2.5rem;
}

/* Watermark DEARWIN with photo overlay */
.transp-watermark-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: clamp(130px, 16vw, 210px);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
}

.transp-watermark-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.transp-watermark-photo {
  position: absolute;
  inset: 0;
}
.transp-watermark-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.7);
}

.transp-watermark-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
  letter-spacing: 0.04em;
  mix-blend-mode: overlay;
}

.page-watermark-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* Intro line */
.transp-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.8rem;
  margin-bottom: 2.5rem;
}

.transp-intro-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--text);
  white-space: nowrap;
  padding-top: 2px;
}

.transp-intro-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 3 cards grid */
.transp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.transp-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.transp-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 169, 110, 0.3);
}

.transp-card-body h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.transp-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.transp-card-icon {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.transp-card-icon svg {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 10px;
  color: var(--text);
}

@media (max-width: 900px) {
  .transp-grid {
    grid-template-columns: 1fr;
  }
  .transp-intro {
    flex-direction: column;
    gap: 0.5rem;
  }
  .transp-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
}

/* ===========================
   PAGE CONFIANCE
=========================== */
.conf-hero {
  padding: calc(var(--nav-h) + 4rem) 2.5rem 5rem;
}

.conf-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.conf-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  text-align: center;
  color: var(--text);
  margin-bottom: 2.5rem;
}

/* Watermark (same pattern as Transparence) */
.conf-watermark-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: clamp(130px, 16vw, 210px);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
}
.conf-watermark-photo {
  position: absolute;
  inset: 0;
}
.conf-watermark-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.6);
}
.conf-watermark-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.14);
  letter-spacing: 0.04em;
  mix-blend-mode: overlay;
}

.conf-separator {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* 4 cards — smaller, 4 columns */
.conf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.conf-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.conf-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 169, 110, 0.3);
}
.conf-card h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.7rem;
}
.conf-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stats row */
.conf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.conf-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.conf-stat-val {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--text);
}

.conf-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .conf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .conf-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .conf-grid {
    grid-template-columns: 1fr;
  }
  .conf-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   PAGE FAQ
=========================== */
.faq-hero {
  padding: calc(var(--nav-h) + 4rem) 2.5rem 5rem;
}

.faq-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

/* Watermark */
.faq-watermark-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: clamp(130px, 16vw, 210px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
}
.faq-watermark-photo {
  position: absolute;
  inset: 0;
}
.faq-watermark-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.6);
}
.faq-watermark-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.13);
  letter-spacing: 0.04em;
  mix-blend-mode: overlay;
}
.faq-watermark-brand {
  position: absolute;
  z-index: 3;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
}

.faq-separator {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* 2-col layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--text);
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--gold-light);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 4px;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.1rem;
}
.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Down arrow */
.faq-down-arrow {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.faq-down-arrow svg {
  width: 32px;
  height: 32px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===========================
   PAGE PARTICIPER — SPLIT
=========================== */
body.product-page {
  background: #0d0d0d;
}

.part-layout {
  --part-bg-size: auto 130%;
  --part-bg-position: 68% center;
  position: relative;
  display: grid;
  grid-template-columns: minmax(470px, 39%) 1fr;
  gap: 1.1rem;
  width: min(calc(100% - 3.5rem), 1460px);
  min-height: calc(100vh - 2rem);
  margin: 1rem auto 0;
  padding: calc(var(--nav-h) + 0.9rem) 1.35rem 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 42px;
  background-image:
    linear-gradient(90deg, rgba(247, 246, 248, 0.96) 0%, rgba(235, 232, 236, 0.74) 38%, rgba(255, 255, 255, 0.02) 43%, rgba(255, 255, 255, 0.03) 100%),
    var(--product-bg);
  background-size: cover, var(--part-bg-size);
  background-position: center, var(--part-bg-position);
  background-repeat: no-repeat, no-repeat;
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.11),
    0 30px 90px rgba(0, 0, 0, 0.58);
}

.part-layout-lot-1 {
  --part-bg-size: auto 132%;
  --part-bg-position: 70% 52%;
}

.part-layout-lot-2 {
  --part-bg-size: auto 124%;
  --part-bg-position: 69% 48%;
}

.part-layout-lot-3 {
  --part-bg-size: auto 122%;
  --part-bg-position: 98% 50%;
}

/* ── Panneau gauche ── */
.part-form-panel {
  background:
    linear-gradient(100deg, rgba(250, 250, 250, 0.9), rgba(232, 229, 230, 0.73) 68%, rgba(30, 20, 18, 0.28)),
    rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(20px) saturate(122%);
  -webkit-backdrop-filter: blur(20px) saturate(122%);
  border: 1.5px solid rgba(255, 255, 255, 0.76);
  border-radius: 38px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  padding: clamp(1.5rem, 2.3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
  overflow-y: auto;
  color: #111;
}

/* Countdown */
.part-countdown-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.part-cd-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}

.part-countdown {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.55vw, 0.5rem);
}
.part-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #303030, #101010);
  border-radius: 8px;
  padding: 0.85rem clamp(0.8rem, 1.1vw, 1rem);
  min-width: clamp(82px, 7.2vw, 104px);
  min-height: 106px;
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.18);
}
.part-cd-num {
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6vw, 6.8rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0;
}
.part-cd-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 2px;
}
.part-cd-sep {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(0, 0, 0, 0.28);
  line-height: 1;
  padding-bottom: 0.5rem;
}

/* Badges */
.part-badges {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.part-badge {
  flex: 1;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 7px;
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.13);
  font-size: 0.95rem;
  color: #151515;
  text-align: center;
}
.part-badge strong {
  color: #151515;
}

/* Quantité */
.part-qty-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
}
.part-qty-label {
  font-size: 1.2rem;
  color: #141414;
}
.part-qty-controls {
  position: absolute;
  top: 0.95rem;
  right: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.part-qty-btn {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: none;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.part-qty-btn:hover {
  background: #2c2024;
}
.part-qty-val {
  font-family: var(--font-body);
  font-size: 1.2rem;
  min-width: 2ch;
  text-align: center;
  color: #111;
}
.part-qty-presets {
  display: flex;
  gap: 1rem;
}
.part-preset {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.12);
  color: #111;
  font-size: 1.08rem;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.part-preset.active,
.part-preset:hover {
  background: #34242b;
  color: #fff;
  border-color: #34242b;
}

/* Chances */
.part-chances {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
}
.part-chances-label {
  font-size: 1.05rem;
  color: #111;
}
.part-chances-bar {
  height: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  overflow: hidden;
}
.part-chances-fill {
  height: 100%;
  background: #fff;
  border-radius: 999px;
  transition: width 0.3s;
}

/* Total */
.part-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 7px;
  padding: 0.45rem 0 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.28);
}
.part-total-label {
  font-size: 1.05rem;
  color: #111;
}
.part-total-val {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 0.9;
  color: #000;
}

/* CTA button */
.part-cta-btn {
  display: flex;
  align-items: center;
  gap: 4.2rem;
  background: rgba(8, 8, 8, 0.25);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.6rem 1.7rem 0.6rem 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  width: 100%;
  justify-content: flex-start;
  transition: opacity 0.2s;
}
.part-cta-btn:hover {
  opacity: 0.88;
}
.part-cta-arrow {
  width: 78px;
  height: 78px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
}

/* ── Panneau droit : image ── */
.part-image-panel {
  position: sticky;
  top: calc(var(--nav-h) + 0.9rem);
  min-height: calc(100vh - var(--nav-h) - 2.25rem);
  background: transparent;
  border-radius: 30px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.1rem 2.3rem;
  overflow: hidden;
}

.part-back-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s;
}
.part-back-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}
.part-back-btn svg {
  width: 18px;
  height: 18px;
}

.part-image-brand {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 0.85;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  text-align: left;
  margin: 0 2rem 38vh 0;
}

.part-image-brand span {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

@media (max-width: 900px) {
  .part-layout {
    grid-template-columns: 1fr;
    width: min(calc(100% - 1rem), 760px);
    padding: calc(var(--nav-h) + 0.75rem) 0.75rem 0.75rem;
    border-radius: 28px;
  }
  .part-image-panel {
    min-height: 260px;
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  body.product-page {
    background: #000;
    color: #fff;
    overflow-x: hidden;
  }

  .part-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 104px 0 2rem;
    border: 0;
    border-radius: 0;
    background: #000;
    box-shadow: none;
    overflow: visible;
  }

  .part-form-panel {
    display: contents;
  }

  .part-countdown-wrap {
    order: 1;
    gap: 0;
    background: #101010;
  }

  .part-cd-label {
    display: none;
  }

  .part-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    min-height: 106px;
    background: #101010;
  }

  .part-cd-sep {
    display: none;
  }

  .part-cd-block {
    position: relative;
    min-width: 0;
    min-height: 106px;
    padding: 27px 0 8px;
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(38, 38, 38, 0.96), rgba(9, 9, 9, 0.98)),
      radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.18), transparent 52%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 -18px 24px rgba(0, 0, 0, 0.34);
  }

  .part-cd-block::before {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.62rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
  }

  .part-cd-block:nth-of-type(1)::before {
    content: "DAYS";
  }

  .part-cd-block:nth-of-type(2)::before {
    content: "HOURS";
  }

  .part-cd-block:nth-of-type(3)::before {
    content: "MINUTES";
  }

  .part-cd-block:nth-of-type(4)::before {
    content: "SECONDS";
  }

  .part-cd-num {
    font-size: clamp(3.25rem, 14vw, 4.75rem);
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  }

  .part-cd-sub {
    display: none;
  }

  .part-image-panel {
    order: 2;
    position: relative;
    top: auto;
    min-height: 330px;
    height: 42svh;
    padding: 0;
    border-radius: 0;
    background-image: var(--product-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: none;
  }

  .part-layout-lot-1 .part-image-panel {
    background-position: 50% 45%;
  }

  .part-layout-lot-2 .part-image-panel {
    background-position: 52% 55%;
  }

  .part-layout-lot-3 .part-image-panel {
    background-position: 55% 48%;
  }

  .part-back-btn {
    display: none;
  }

  .part-image-brand {
    position: absolute;
    left: 50px;
    bottom: 16px;
    align-self: auto;
    margin: 0;
    color: #fff;
    font-size: clamp(3.2rem, 13vw, 4.9rem);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.58);
  }

  .part-image-brand span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.28rem;
  }

  .part-badges {
    order: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.15rem 50px 0;
    background: #000;
  }

  .part-badge {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
    font-size: 0.78rem;
    text-align: left;
  }

  .part-badge strong {
    color: #fff;
  }

  .part-chances {
    order: 4;
    gap: 0.8rem;
    padding: 1.15rem 50px 0;
    border: 0;
    border-radius: 0;
    background: #000;
  }

  .part-chances-label {
    color: #fff;
    font-size: 0.9rem;
  }

  .part-chances-bar {
    height: 10px;
    border: 0;
    background: rgba(255, 255, 255, 0.48);
  }

  .part-chances-fill {
    background: #fff;
  }

  .part-qty-section {
    order: 5;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.05rem 1rem;
    padding: 1.45rem 50px 1.35rem;
    border: 0;
    border-radius: 0;
    background: #000;
  }

  .part-qty-label {
    align-self: center;
    color: #fff;
    font-size: 0.92rem;
  }

  .part-qty-controls {
    position: static;
    gap: 1.2rem;
  }

  .part-qty-btn {
    width: 58px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 1.35rem;
  }

  .part-qty-val {
    display: none;
  }

  .part-qty-presets {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }

  .part-preset {
    min-height: 34px;
    padding: 0.45rem 0.4rem;
    border: 0;
    border-radius: 5px;
    background: #5f5f5f;
    box-shadow: none;
    color: #fff;
    font-size: 0.88rem;
  }

  .part-preset.active,
  .part-preset:hover {
    background: #7d7d7d;
    color: #fff;
    border: 0;
  }

  .part-total-row {
    display: none;
  }

  .part-form {
    order: 6;
    padding: 0 20px 2rem;
    background: #000;
  }

  .part-cta-btn {
    gap: 1.55rem;
    min-height: 66px;
    padding: 0.36rem 1rem 0.36rem 0.36rem;
    border-color: rgba(255, 255, 255, 0.86);
    background: linear-gradient(90deg, #0d0d0d, #222 72%, #1b1b1b);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.96rem;
    justify-content: flex-start;
  }

  .part-cta-arrow {
    width: 58px;
    height: 58px;
    font-size: 2rem;
  }
}

/* ===========================
   MODALE QUESTION COMPÉTENCE
=========================== */
.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(9px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.quiz-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.quiz-overlay.quiz-overlay-game {
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1rem, 3vw, 2.35rem);
  padding-left: clamp(26rem, 42vw, 45rem);
}

.quiz-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  max-width: 700px;
  width: 100%;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.25s;
  color: #111;
}

.quiz-modal[hidden] {
  display: none !important;
}

#quiz-screen {
  width: min(58vw, 900px);
  max-width: 900px;
  max-height: min(78vh, 760px);
  margin-left: auto;
  overflow-y: auto;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, #3c3a3a 0%, #262424 55%, #353333 100%);
  color: #fff;
  padding: clamp(1rem, 2.2vw, 1.65rem) clamp(2.75rem, 4.2vw, 5.15rem)
    clamp(1.2rem, 2vw, 1.9rem);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}
.quiz-overlay.open .quiz-modal {
  transform: translateY(0);
}

.quiz-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.quiz-close:hover {
  background: #f0f0f0;
}

#quiz-screen .quiz-close {
  top: clamp(1.05rem, 1.7vw, 1.45rem);
  right: clamp(1.05rem, 1.7vw, 1.45rem);
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 1.35rem;
}

#quiz-screen .quiz-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.quiz-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  text-align: center;
  color: #111;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

#quiz-screen .quiz-title {
  color: #fff;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin: 0 3.25rem 0.9rem;
  white-space: nowrap;
}

.quiz-enonce {
  text-align: center;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 480px;
  margin-inline: auto;
}

#quiz-screen .quiz-enonce {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.18;
  max-width: 620px;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.quiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

#quiz-screen .quiz-grid {
  max-width: 756px;
  margin-inline: auto;
  margin-bottom: clamp(1rem, 1.7vw, 1.45rem);
  gap: clamp(0.5rem, 0.95vw, 0.85rem) clamp(0.6rem, 1.05vw, 0.95rem);
}

.quiz-img-btn {
  position: relative;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
  padding: 0;
  aspect-ratio: 1;
  transition:
    border-color 0.2s,
    transform 0.15s;
}
.quiz-img-btn:hover {
  transform: scale(1.02);
  border-color: #bbb;
}

#quiz-screen .quiz-img-btn {
  border: 0;
  border-radius: 0;
  aspect-ratio: 1.14 / 1;
  background: #f7f7f5;
  box-shadow: none;
}

#quiz-screen .quiz-img-btn:hover {
  transform: none;
  outline: 4px solid rgba(255, 255, 255, 0.7);
  outline-offset: -4px;
}

.quiz-img-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2);
  transition: filter 0.2s;
}

#quiz-screen .quiz-img-btn img {
  filter: none;
  object-fit: cover;
}

.quiz-img-btn.correct {
  border-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}
.quiz-img-btn.wrong {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.quiz-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#quiz-screen .quiz-img-label {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  opacity: 0;
  padding: 0;
}

.quiz-hint {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

#quiz-screen .quiz-hint {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.88rem, 1.7vw, 1.02rem);
  margin: 0;
}

@media (max-width: 540px) {
  .quiz-modal {
    padding: 2rem 1.2rem 1.5rem;
  }
  .quiz-grid {
    gap: 0.5rem;
  }
  #quiz-screen {
    border-radius: 28px;
    padding: 2.4rem 1rem 1.5rem;
  }
  #quiz-screen .quiz-title {
    margin-inline: 2rem;
  }
  #quiz-screen .quiz-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .quiz-overlay.quiz-overlay-game {
    justify-content: center;
    padding: 1rem;
  }
  #quiz-screen {
    width: 100%;
    max-height: calc(100vh - 2rem);
    margin-left: 0;
  }
  #quiz-screen .quiz-title {
    white-space: normal;
  }
}

/* ===========================
   QUIZ — RÉSULTAT (bonne/mauvaise réponse)
=========================== */
.quiz-result-modal {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
  align-items: stretch;
  width: min(calc(100vw - 2rem), 1240px);
  max-width: 1240px;
  min-height: min(48vw, 520px);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  color: #050505;
  text-align: center;
  padding: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.quiz-close-dark {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.quiz-close-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.quiz-result-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 5vw, 5.5rem);
  background: #fff;
}

.quiz-result-visual {
  position: relative;
  min-height: 100%;
  background-image:
    linear-gradient(90deg, rgba(75, 32, 20, 0.12), rgba(20, 8, 4, 0.18)),
    url("../images/quiz-side-bg.png");
  background-size: cover;
  background-position: 72% center;
}

.quiz-result-visual .quiz-close-dark {
  top: 1.35rem;
  right: 1.35rem;
  width: 44px;
  height: 44px;
  border-color: #fff;
  color: #fff;
  background: rgba(0, 0, 0, 0.05);
  font-size: 1.35rem;
}

.quiz-result-visual .quiz-close-dark:hover {
  background: rgba(0, 0, 0, 0.2);
}

.quiz-result-arrow {
  position: absolute;
  top: 3.1rem;
  left: 3rem;
  color: #fff;
  font-size: clamp(4rem, 5vw, 5.8rem);
  line-height: 1;
  font-weight: 300;
}

.quiz-result-title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 5.5vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  margin-bottom: clamp(3rem, 5.2vw, 5rem);
  color: #050505;
}
.quiz-result-modal .quiz-result-title.wrong {
  color: #050505;
}
.quiz-result-modal .quiz-result-title.correct {
  color: #050505;
}

.quiz-result-modal.is-correct .quiz-result-title {
  margin-bottom: clamp(2.1rem, 4vw, 4rem);
}

.quiz-result-text {
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  line-height: 1.18;
  color: #050505;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  max-width: 760px;
  margin-inline: auto;
}

.quiz-result-modal.is-correct .quiz-result-text {
  max-width: 620px;
  margin-bottom: 0;
}

.quiz-result-tries {
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  font-weight: 400;
  color: #050505;
  margin-bottom: clamp(2rem, 4vw, 4.2rem);
}

.quiz-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  width: min(100%, 520px);
  min-height: 76px;
  background: #a4a4a4;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.8rem 2rem 0.8rem 6.9rem;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.4vw, 1.55rem);
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.quiz-action-btn:hover {
  background: #969696;
  transform: translateY(-1px);
}

.quiz-action-btn .part-cta-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translateY(-50%);
  background: #000;
  font-size: 2.6rem;
}

@media (max-width: 760px) {
  .quiz-result-modal {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
  .quiz-result-visual {
    min-height: 260px;
    order: -1;
  }
  .quiz-result-copy {
    padding: 2.2rem 1.2rem 2.6rem;
  }
  .quiz-result-title {
    margin-bottom: 2rem;
  }
  .quiz-result-text,
  .quiz-result-tries {
    margin-bottom: 1.8rem;
  }
}

/* ===========================
   QUIZ — FORMULAIRE D'ACHAT
=========================== */
.quiz-purchase-modal {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
  align-items: stretch;
  width: min(calc(100vw - 2rem), 1260px);
  max-width: 1260px;
  height: min(72vh, 690px);
  min-height: 560px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  color: #050505;
  padding: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.quiz-purchase-copy {
  min-width: 0;
  height: 100%;
  overflow-y: auto;
  padding: clamp(2.6rem, 4.6vw, 4.7rem) clamp(2rem, 4.8vw, 5rem)
    clamp(2.4rem, 4vw, 4.2rem);
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: #050505 #d8d8d8;
}

.quiz-purchase-copy::-webkit-scrollbar {
  width: 16px;
}

.quiz-purchase-copy::-webkit-scrollbar-track {
  background: #d8d8d8;
  border-radius: 999px;
}

.quiz-purchase-copy::-webkit-scrollbar-thumb {
  background: #050505;
  border-radius: 999px;
}

.quiz-purchase-visual {
  position: relative;
  min-height: 100%;
  background-image:
    linear-gradient(90deg, rgba(75, 32, 20, 0.12), rgba(20, 8, 4, 0.18)),
    url("../images/quiz-side-bg.png");
  background-size: cover;
  background-position: 72% center;
}

.quiz-purchase-visual .quiz-close-dark {
  top: 1.35rem;
  right: 1.35rem;
  width: 44px;
  height: 44px;
  border-color: #fff;
  color: #fff;
  background: rgba(0, 0, 0, 0.05);
  font-size: 1.35rem;
}

.quiz-purchase-visual .quiz-close-dark:hover {
  background: rgba(0, 0, 0, 0.2);
}

.quiz-purchase-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #050505;
  margin-bottom: 1.45rem;
}

.quiz-purchase-sub {
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
  line-height: 1.12;
  color: #050505;
  margin-bottom: clamp(2rem, 3vw, 2.8rem);
}

.pf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.3rem, 4vw, 5rem);
}

.pf-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: clamp(1.65rem, 2.6vw, 2.5rem);
}

.pf-label {
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
  font-weight: 400;
  color: #050505;
  letter-spacing: 0;
}

.pf-input {
  width: 100%;
  min-height: 64px;
  background: #fbfbfb;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #050505;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.pf-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.pf-input:focus {
  border-color: #050505;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.pf-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  color: #050505;
  padding: 0;
  border-top: none;
  margin: 0 0 clamp(1.2rem, 2.4vw, 2rem);
}

.pf-confirm-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  width: min(100%, 520px);
  min-height: 76px;
  margin-inline: auto;
  background: #a4a4a4;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.8rem 2rem 0.8rem 6.9rem;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.4vw, 1.55rem);
  font-weight: 600;
  cursor: pointer;
  margin-top: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.pf-confirm-btn:hover {
  background: #969696;
  transform: translateY(-1px);
}

.pf-confirm-btn .part-cta-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translateY(-50%);
  background: #000;
  font-size: 2.6rem;
}

@media (max-width: 540px) {
  .pf-row {
    grid-template-columns: 1fr;
  }
  .quiz-purchase-modal {
    grid-template-columns: 1fr;
    height: auto;
    max-height: calc(100vh - 2rem);
    min-height: 0;
    overflow-y: auto;
  }
  .quiz-purchase-copy {
    height: auto;
    overflow: visible;
    padding: 2.2rem 1.2rem 2.8rem;
  }
  .quiz-purchase-visual {
    min-height: 260px;
    order: -1;
  }
}
