html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #000000;
  --bg-card: #16181a;
  --bg-card-2: #1c1e20;
  --bg-light: #eff1f3;
  --ink: #ffffff;
  --ink-soft: #b7b9bc;
  --muted: #8a8d90;
  --yellow: #f5c518;
  --yellow-soft: rgba(245, 197, 24, 0.12);
  --green: #2ecc71;
  --red: #e0524b;
  --line: rgba(255, 255, 255, 0.1);
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Rubik";
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 5.5%;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:active {
  transform: scale(0.98);
}
.btn-yellow {
  background-color: #ffd700;
  color: #000000;
  border: 2px solid #ffd700;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.btn-yellow:hover {
  background: #ffd633;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 199, 0, 0.25);
}

/* ---------- nav ---------- */
.nav {
  background: #000;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
}
.logo {
  position: relative;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.18em;
  background: linear-gradient(
    180deg,
    #fff6d8 0%,
    #e8c25a 35%,
    #b8860b 60%,
    #8a6105 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 10px;
}
.logo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #b8860b 35%,
    #ffe9a8 50%,
    #b8860b 65%,
    transparent 100%
  );
  box-shadow: 0 0 8px 1px rgba(255, 220, 130, 0.6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  color: var(--ink-soft);
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ---------- hero ---------- */
.hero {
  background: #000;
  padding: 70px 0 90px;
}
.hero h1 {
  font-size: 48px;
  max-width: 1300px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 20px;
  font-weight: 600;
  color: #adadaf;
  max-width: 760px;
  margin-bottom: 4px;
  line-height: 1.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2.07fr 1fr;
  gap: 32px;
  margin-top: 56px;
  align-items: center;
}
.hero-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--yellow-soft);
  border: 2px solid var(--yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--yellow);
}

.membership-card {
  background: #121212;
  border: 4px solid #1e1e1e;
  border-radius: 26px;
  padding: 1.75rem;
  padding: 2.5rem;
}
.membership-card h3 {
  font-size: 19px;
  margin-bottom: 16px;
  white-space: nowrap;
  font-weight: 800;
}
.membership-group {
  margin-bottom: 12px;
}
.membership-group h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.membership-group ul {
  list-style: none;
}
.membership-group li {
  font-size: 15px;
  padding: 2px 0;
  display: flex;
  gap: 8px;
}
.membership-group li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 700;
}
.membership-card .btn {
  width: 100%;
  margin-top: 18px;
  padding: 12px 28px;
}

/* ---------- trustpilot strip ---------- */
.trust-strip {
  background: var(--bg-light);
  color: #111;
  padding: 56px 0;
}
.trust-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}
.trustpilot-logo-img {
  height: 90px;
  width: auto;
  margin-bottom: 4px;
}
.trust-header .excellent {
  font-size: 26px;
  font-weight: 800;
}
.trust-stars {
  display: flex;
  gap: 3px;
}
.trust-stars span {
  width: 26px;
  height: 26px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.trust-based {
  font-size: 13px;
  color: #555;
  text-decoration: underline;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-review {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  font-size: 13px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.trust-review:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #00b67a;
}
.trust-review .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.trust-review .stars span {
  width: 18px;
  height: 18px;
  background: #00b67a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}
.trust-review .name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.trust-review .name {
  font-weight: 700;
  font-size: 14px;
  color: #636363;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}
.trust-review .date {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}
.trust-review .title {
  font-weight: 700;
  margin-bottom: 8px;
}
.trust-review .body {
  color: #555;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- problem section ---------- */
.problem {
  background: #000;
  padding: 70px 0;
}
.problem-head {
  text-align: center;
  margin-bottom: 114px;
}
.problem-head h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.problem-head p {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1rem;
}

.stuck-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.stuck-grid h3 {
  font-size: 30px;
  margin-bottom: 24px;
}
.stuck-grid p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 16px;
}
.stuck-grid strong {
  color: var(--ink);
}

.chart-card {
  position: relative;
}
.chart-label-pass {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.chart-label-fail {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
}

/* ---------- death loop ---------- */
.deathloop-quote {
  text-align: center;
  font-size: clamp(22px, 2.6vw, 24px);
  font-weight: 800;
  max-width: 920px;
  margin: 0 auto 70px;
  line-height: 1.3;
}
.deathloop-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.deathloop-grid h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
.deathloop-grid p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.deathloop-grid strong {
  color: var(--ink);
}
.loop-card {
}

/* ---------- human bias ---------- */
.bias-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.bias-grid h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
.bias-grid p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.bias-grid ul {
  margin: 16px 0;
  padding-left: 20px;
  color: var(--ink-soft);
}
.bias-grid li {
  margin-bottom: 8px;
}
.bias-card {
}

/* ---------- 4 step plan ---------- */
.plan {
  background: #121212;
  padding: 70px 0;
  text-align: center;
}
.plan h2 {
  font-size: clamp(28px, 3.6vw, 36px);
  margin-bottom: 14px;
}
.plan-sub {
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 56px;
  font-size: 17px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.plan-card {
  border: 1.5px solid var(--yellow);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
}
.plan-icon {
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.plan-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.plan-icon svg {
  width: 32px;
  height: 60px;
}
.plan-card h4 {
  color: #ffd700;
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.plan-card .lead {
  font-weight: 700;
  margin-bottom: 17px;
  font-size: 15px;
}
.plan-card ul {
  list-style: none;
}
.plan-card li {
  font-size: 16px;
  color: #ffffff;
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
  text-align: left;
}
.plan-card li::before {
  content: "➤";
  color: var(--yellow);
  flex-shrink: 0;
}

/* ---------- now vs could be ---------- */
.compare {
  background: #000;
  padding: 70px 0;
}
.compare-quote {
  text-align: center;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  margin-bottom: 70px;
}
.compare-quote .hl {
  color: var(--yellow);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.compare-grid h3 {
  font-size: 26px;
  margin-bottom: 24px;
}
.compare-grid ul {
  list-style: none;
  margin-bottom: 24px;
  margin-left: 30px;
}
.compare-grid li {
  color: var(--ink-soft);
  font-size: 16px;
  padding: 9px 0;
  display: flex;
  gap: 12px;
}
.compare-grid li::before {
  content: "•";
  color: var(--ink-soft);
}
.compare-grid p.final {
  font-weight: 700;
  font-size: 17px;
}

/* ---------- curriculum (light section) ---------- */
.curriculum {
  background: var(--bg-light);
  color: #111;
  padding: 90px 0;
}
.curriculum .wrap {
  max-width: 1100px;
}
.curriculum-head {
  text-align: center;
  margin-bottom: 56px;
}
.curriculum-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 10px;
}
.curriculum-head h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  color: #111;
  margin-bottom: 12px;
}
.curriculum-head p {
  color: #555;
  font-size: 16px;
}

.phase-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 24px;
}
.phase-tag {
  color: #888;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.phase-card h3 {
  font-size: 24px;
  color: #111;
  margin-bottom: 14px;
}
.phase-card p {
  color: #444;
  margin-bottom: 14px;
}
.phase-tags {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.02em;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .wrap {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hero-grid,
  .stuck-grid,
  .deathloop-grid,
  .bias-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .plan-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

.diagram-img {
  width: 100%;
  display: block;
  margin-bottom: 50px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #1e1e1e;
}

.outcomes {
  background: #f2f3f4;
  padding: 90px 0;
}
.outcomes h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: black;
}
.outcomes-list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto 56px;
}
.outcomes-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: grey;
  font-size: 17px;
  line-height: 1.5;
}
.outcomes-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}
.outcomes-list strong {
  color: black;
  font-weight: 700;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome-card {
  background: #121212;
  border: 3px solid rgb(88, 88, 88);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.outcome-label {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

.curriculum > .wrap > .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 32px;
}

.plan > .wrap > .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.modules {
  background: #f2f3f4;
  color: #111;
}
.modules-head {
  background: #121212;
  padding: 32px 24px;
  text-align: center;
}
.modules-head h2 {
  color: #ffffff;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 8px;
}
.modules-head p {
  color: var(--ink-soft);
  font-size: 16px;
}
.modules .wrap {
  padding: 90px 5%;
}
.module-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 90px;
}
.module-row:last-child {
  margin-bottom: 0;
}
.module-row-reverse .module-img {
  order: 2;
}
.module-img img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.module-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 12px;
}
.module-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.module-text p {
  color: #595959;
  margin-bottom: 20px;
  line-height: 1.6;
}
.module-text ul {
  list-style: none;
}
.module-text li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #595959;
}
.module-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}
@media (max-width: 800px) {
  .module-row,
  .module-row-reverse {
    grid-template-columns: 1fr;
  }
  .module-row-reverse .module-img {
    order: 0;
    margin: 40px 0;
  }
}

.stories {
  background: var(--bg-light);
  padding: 90px 0;
}
.stories-head {
  text-align: center;
  margin-bottom: 56px;
  color: black;
}
.stories-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 14px;
}
.stories-head p {
  color: #555;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.story-card {
  background: #222323;
  border: 3px solid #1e1e1e;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: stretch;
  max-height: 370px;
}
.story-content {
  padding: 28px 28px 28px 0;
}
.story-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.story-img {
  width: 240px;
  height: 100%;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-img-double {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 420px;
  background: #0a0a0a;
  border-radius: 10px;
  padding: 6px;
}
.story-img-double img {
  border-radius: 8px;
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  object-fit: contain;
  display: block;
}
.story-name {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
}
.story-title {
  color: var(--yellow);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.story-text {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
}
@media (max-width: 800px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

.story-img-contain {
  object-fit: contain !important;
  background: #121212;
}

.story-card-wide {
  grid-template-columns: 320px 1fr !important;
}
.story-card-wide .story-img {
  width: 320px !important;
}

.offer {
  background: #000;
  padding: 90px 0;
}
.offer-head {
  text-align: center;
  margin-bottom: 56px;
}
.offer-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 14px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.offer-head p {
  color: var(--ink-soft);
  font-size: 17px;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.offer-card {
  background: #121212;
  border: 3px solid #1e1e1e;
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.offer-card-highlight {
  border-color: var(--yellow);
  position: relative;
}
.offer-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.offer-price {
  font-size: 38px;
  font-weight: 800;
}
.offer-sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 24px;
}
.offer-list {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.offer-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}
.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}
.offer-btn {
  width: 100%;
  text-align: center;
  display: block;
}
@media (max-width: 700px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.faq {
  background: #000;
  padding: 90px 0;
}
.faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.faq-head .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.faq-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: #121212;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--yellow);
  font-size: 18px;
  font-weight: 400;
  margin-left: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #2a2a2a;
  background: #161616;
  transition: transform 0.3s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
}
.faq-item[open] summary::after {
  content: "+";
  transform: rotate(45deg);
  background: var(--yellow);
  border-color: var(--yellow);
  color: #1a1505;
}
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}
.faq-item[open] .faq-content {
  grid-template-rows: 1fr;
}
.faq-content p {
  overflow: hidden;
  min-height: 0;
  color: var(--ink-soft);
  margin: 0;
  padding-top: 14px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.25s ease 0.05s;
}
.faq-item[open] .faq-content p {
  opacity: 1;
}
.faq-cta {
  text-align: center;
  margin-top: 48px;
}
.faq-cta p {
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-size: 16px;
}
.faq-link {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: underline;
  font-size: 16px;
}
.faq-link:hover {
  color: var(--yellow-bright, #ffd633);
}

.vid-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 3px solid #f5c518;
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.25);
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
}
.vid-wrap {
  cursor: default;
}
.vid-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.vid-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}
.vid-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border: none;
  border-radius: 14px;
  background: rgba(245, 197, 24, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.vid-play-overlay:hover {
  background: #f5c518;
  transform: translate(-50%, -50%) scale(1.08);
}
.vid-wrap.is-playing .vid-poster {
  opacity: 0;
  pointer-events: none;
}
.vid-iframe-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.vid-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.faq-cta-card {
  max-width: 540px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-card-2);
  border: 1px dashed rgba(245, 197, 24, 0.35);
  border-radius: 16px;
  padding: 22px 26px;
  text-align: left;
}
.faq-cta-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.faq-cta-text {
  flex: 1;
}
.faq-cta-label {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 4px;
}
.faq-cta-card .faq-link {
  font-size: 16px;
  display: inline-block;
}
@media (max-width: 600px) {
  .faq-cta-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

.site-footer {
  background: #000;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand {
  max-width: 420px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.footer-logo-text span {
  color: var(--yellow);
}
.footer-desc {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 14px;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-email:hover {
  color: #ffe14d;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
}
.footer-social-icon:hover {
  background: var(--yellow-soft);
  transform: translateY(-2px);
}
.footer-payments-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.footer-payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 320px;
}
.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0 6px;
}
.pay-badge svg {
  display: block;
  max-width: 100%;
  max-height: 60%;
}
.pay-badge-dark {
  background: #fff;
  color: #1a1f71;
  border: 1px solid #1a1f71;
}
.pay-badge-blue {
  background: #2566af;
  color: #fff;
}
.pay-badge-light {
  background: #fff;
  color: #1a1f71;
  border: 1px solid var(--line);
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 24px 24px;
}
.footer-copyright {
  color: var(--ink-soft);
  font-size: 14px;
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-payments-grid {
    max-width: 100%;
  }
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1420px;
  margin: 0 auto;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-legal-links a:hover {
  color: var(--yellow);
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-right a {
  font-size: 14px;
}
.nav-right .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.footer-logo-row {
  justify-content: flex-start;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 480px) {
  .nav .wrap {
    padding: 0 12px;
  }
  .nav-right .btn {
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 8px;
  }
  .nav-right a:not(.btn) {
    display: none;
  }
  .nav-right {
    gap: 8px;
  }
}

/* ================================================
   RESPONSIVE MOBILE UNIQUEMENT — max 480px
   Desktop intact, aucune modification globale
   ================================================ */
@media (max-width: 480px) {
  /* NAV */
  .nav .wrap {
    height: auto;
    padding: 10px 16px;
  }
  .logo-img {
    height: 48px;
  }
  .nav-right {
    gap: 8px;
    align-items: center;
  }
  .nav-right > a:not(.btn) {
    display: none;
  }
  .nav-right .btn {
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 8px;
  }
  .offer-head h2 {
    font-size: 30px;
  }
  .offer-pro-title {
    font-size: 30px;
  }

  /* HERO */
  .hero {
    padding: 20px 0 28px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  .hero-sub {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .membership-card {
    display: none;
  }

  /* GLOBAL */
  .wrap {
    padding: 0 16px;
  }
  h2 {
    font-size: 30px;
  }
  p {
    font-size: 17px;
  }
}

/* Burger menu */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.nav-mobile-menu {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
}
.nav-mobile-menu a {
  display: block;
  color: #adadaf;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
  text-decoration: none;
}
@media (max-width: 480px) {
  .nav-burger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .btn.btn-yellow {
    padding: 7px 10px;
    font-size: 10.5px;
  }
}

@media (max-width: 480px) {
  .vid-play-overlay {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .membership-card {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-video,
  .membership-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .hero .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trust-strip {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .trustpilot-logo-img {
    width: 80px;
  }
  .trust-header .excellent {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .trustpilot-logo-img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .trustpilot-logo-img {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .trustpilot-logo-img {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .trustpilot-logo-img {
    width: 260px;
  }
}

@media (max-width: 480px) {
  .trust-based {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .stories-head h2 {
    font-size: 1.5rem;
  }
  .stories-head p {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .stories-head h2 {
    font-size: 1.9rem;
  }
  .stories-head p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .story-card {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .story-content {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .story-card img {
    height: 240px;
    object-position: center top;
  }
  .story-content {
    padding: 16px !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .story-img {
    width: 100%;
    height: auto;
  }
  .story-img img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
  .story-card-wide {
    grid-template-columns: 1fr;
  }
  .story-card-wide .story-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 480px) {
  .story-card-wide {
    grid-template-columns: 1fr !important;
  }
  .story-card-wide .story-img {
    width: 100% !important;
  }
  .story-card-wide .story-content {
    display: block !important;
    padding: 16px !important;
  }
  .bias-grid {
    margin-bottom: 2px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .story-img img {
    height: 280px;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 480px) {
  .story-img img {
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .diagram-img {
    height: 280px;
    width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .diagram-img {
    height: auto;
  }
}

@media (max-width: 480px) {
  .nav-right .btn.btn-yellow {
    padding: 6px 10px;
    font-size: 10px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .plan .btn,
  .curriculum .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  .curriculum-head h2 {
    font-size: 30px;
  }
}

/* === Stack images Plateforme — VERSION FINALE === */
.stack-imgs {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: visible;
}
.stack-imgs img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.06);
}
.stack-back-left {
  width: 78%;
  top: 120px;
  left: -20px;
  transform: rotate(-6deg);
  opacity: 1;
  z-index: 1;
}
.stack-back-right {
  width: 78%;
  top: 120px;
  right: -20px;
  transform: rotate(5deg);
  opacity: 1;
  z-index: 2;
}
.stack-front {
  width: 88%;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 1;
}

/* === RDV Stack — UNIQUE ET FINAL === */
.rdv-stack {
  position: relative;
  width: 100%;
  padding-bottom: 95%;
  height: 0;
}
.rdv-stack img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(244, 199, 15, 0.2);
}
.rdv-front {
  width: 90%;
  top: 0;
  left: 0;
  z-index: 1;
  transform: rotate(0deg);
}
.rdv-back {
  width: 70%;
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: rotate(3deg);
}

/* === Stack Plateforme — MOBILE FIX sans toucher desktop === */
@media (max-width: 800px) {
  .stack-imgs {
    height: 420px;
  }
  .stack-back-left {
    top: 80px;
  }
  .stack-back-right {
    top: 80px;
  }
  .stack-front {
    top: 160px;
  }
}

/* === RDV2 REMONTER === */
.rdv-back {
  bottom: 8%;
}

/* === RDV2 GAUCHE === */
.rdv-back {
  right: 2%;
}

@media (max-width: 800px) {
  .module-row {
    margin-bottom: 40px;
    gap: 50px;
  }
}

/* === Stack Plateforme — IMAGES DERRIERE DESKTOP === */
.stack-back-left {
  top: 80px;
}
.stack-back-right {
  top: 80px;
}
.stack-front {
  top: 180px;
}

/* === Stack Plateforme — IMAGES DERRIERE VISIBLE === */
.stack-back-left {
  top: 40px;
  left: -60px;
  width: 82%;
}
.stack-back-right {
  top: 40px;
  right: -60px;
  width: 82%;
}
.stack-front {
  top: 140px;
}

/* === Stack Plateforme — RETOUR BONNE VERSION === */
.stack-back-left {
  top: 120px;
  left: -20px;
  width: 78%;
}
.stack-back-right {
  top: 120px;
  right: -20px;
  width: 78%;
}
.stack-front {
  top: 220px;
  width: 88%;
}

/* === Stack Plateforme — AJUST === */
.stack-back-left {
  left: -40px;
}
.stack-back-right {
  right: -40px;
}

/* === Stack Journal — REMONTER === */
.stack-back-right {
  top: 80px;
}

/* === Stack Dashboard — REMONTER === */
.stack-back-left {
  top: 105px;
}

/* === Stack — DESKTOP ONLY === */
@media (min-width: 801px) {
  .stack-back-left {
    top: 105px;
    left: -40px;
    width: 78%;
  }
  .stack-back-right {
    top: 80px;
    right: -40px;
    width: 78%;
  }
  .stack-front {
    top: 220px;
    width: 88%;
  }
}

/* === Stack — MOBILE COTES === */
@media (max-width: 800px) {
  .stack-back-left {
    left: 0;
    width: 65%;
  }
  .stack-back-right {
    right: 0;
    width: 65%;
  }
  .stack-front {
    width: 80%;
  }
}

/* === Stack — MOBILE COMPLET === */
@media (max-width: 800px) {
  .stack-back-left {
    left: 0;
    width: 65%;
    top: 60px;
  }
  .stack-back-right {
    right: 0;
    width: 65%;
    top: 60px;
  }
  .stack-front {
    width: 80%;
    top: 130px;
  }
}

/* === Stack Journal mobile — DROITE === */
@media (max-width: 800px) {
  .stack-back-right {
    transform: rotate(4deg);
  }
}

/* === Stack Journal mobile — DECALE DROITE === */
@media (max-width: 800px) {
  .stack-back-right {
    right: -15px;
  }
}

/* === Stack Journal mobile — PENCHE GAUCHE === */
@media (max-width: 800px) {
  .stack-back-right {
    transform: rotate(-4deg);
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    transform: rotate(6deg);
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    transform: rotate(9deg);
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    top: 80px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    top: 40px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    right: -25px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    top: 70px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    top: 55px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    right: -35px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    right: -50px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    top: 65px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    right: -55px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    right: -20px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    right: -10px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    top: 72px;
  }
}

@media (max-width: 800px) {
  .stack-back-right {
    transform: rotate(7deg);
  }
}

.stack-imgs img {
  border: 1px solid rgba(244, 199, 15, 0.2);
}

@media (min-width: 801px) {
  .stack-back-left {
    left: -55px;
  }
}

.rdv-back {
  transform: rotate(2deg);
}

.rdv-back {
  transform: rotate(4deg);
}

.rdv-back {
  bottom: 5%;
}

.rdv-back {
  bottom: 2%;
}

.rdv-back {
  transform: rotate(2deg);
}

.rdv-back {
  right: 5%;
}

@media (max-width: 480px) {
  .stack-back-left {
    transform: rotate(3deg);
  }
  .stack-back-right {
    transform: rotate(-3deg);
  }
}

@media (max-width: 480px) {
  .stack-back-left {
    transform: rotate(2deg);
  }
  .stack-back-right {
    transform: rotate(-2deg);
  }
}

@media (max-width: 480px) {
  .stack-back-right {
    top: 55px;
  }
}

@media (max-width: 480px) {
  .stack-back-left {
    top: 30px;
  }
}

@media (max-width: 480px) {
  .stack-back-left {
    top: 10px !important;
  }
}

@media (max-width: 480px) {
  .stack-back-left {
    top: 0px !important;
  }
}

@media (max-width: 480px) {
  .stack-imgs {
    margin-top: 20px;
    margin-bottom: -70px;
  }
}

.rdv-back {
  right: 3%;
}

.rdv-back {
  right: 1%;
}

.rdv-back {
  transform: rotate(3deg);
}

@media (min-width: 801px) {
  .stack-front {
    top: 180px;
  }
}

@media (min-width: 801px) {
  .stack-front {
    top: 140px;
  }
}

@media (min-width: 801px) {
  .stack-back-left {
    left: -30px;
  }
}

@media (min-width: 801px) {
  .stack-back-right {
    top: 100px;
  }
}

@media (min-width: 801px) {
  .stack-back-right {
    top: 120px;
  }
}

@media (min-width: 801px) {
  .stack-back-right {
    top: 180px;
  }
}

@media (min-width: 801px) {
  .stack-back-right {
    top: 260px;
  }
}

.stack-back-right {
  z-index: 4;
}

@media (min-width: 801px) {
  .stack-back-right {
    top: 350px;
  }
}

@media (min-width: 801px) {
  .stack-back-right {
    top: 300px;
  }
}

@media (min-width: 801px) {
  .stack-front {
    left: 55%;
  }
}

@media (max-width: 480px) {
  .compare {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .compare-quote {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .compare-grid li {
    font-size: 17px;
  }
}

.offer-pro-title {
  font-size: 30px;
}

.offer-pro-tagline {
  font-size: 16px;
}

.offer-pro-tagline {
  font-size: 16px !important;
}

.offer-pro-badge {
  font-size: 14px !important;
  padding: 9px 20px !important;
}
