:root {
  --bg: #faf9f6;
  --bg-card: #ffffff;
  --bg-card-2: #f1efe9;
  --chip-dark: #0d0d0d;
  --text: #0d0d0d;
  --text-secondary: #4a4a4a;
  --text-on-dark: #e5e5e5;
  --border: #e0e0e0;
  --accent: #ffd700;
  --accent-ink: #0d0d0d;
  --radius: 14px;
  --maxw: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0;
}
.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 14px 18px;
    font-size: 14.5px;
    gap: 6px;
  }
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    box-shadow 0.18s ease;
}
.btn-primary:hover,
.btn-primary:active {
  transform: translateY(-2px);
  opacity: 0.92;
  box-shadow:
    0 0 0 3px rgba(255, 215, 0, 0.45),
    0 10px 24px rgba(13, 13, 13, 0.18);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.btn-ghost:hover,
.btn-ghost:active {
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(13, 13, 13, 0.1);
}
.btn-ghost:hover {
  border-color: var(--text-secondary);
}
section {
  padding: 88px 0;
}
@media (max-width: 720px) {
  section {
    padding: 56px 0;
  } 
}
.alt-tint {
  background: var(--bg-card);
}

/* ---------- ICONS (inline SVG, currentColor) ---------- */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.nav-logo {
  font-weight: 900;
  font-size: 19px;
  color: var(--text);
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .mark {
  color: #ff4d4d;
  font-size: 16px;
}
.nav-logo span {
  color: var(--text);
}
.nav .btn-primary {
  padding: 11px 22px;
  font-size: 14px;
}

/* ---------- HERO ---------- */
.hero {
  background: radial-gradient(
    120% 140% at 15% -10%,
    rgba(255, 215, 0, 0.1) 0%,
    var(--bg) 55%
  );
  padding: 28px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-tag {
  font-size: 13px;
  font-weight: 700;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
  color: var(--text-secondary);
}
.hero-grid {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--text);
  background: var(--accent);
  padding: 2px 10px;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.word-cycle {
  display: inline-grid;
  vertical-align: baseline;
  overflow: hidden;
}
.word-cycle .wc-item {
  grid-area: 1/1;
  opacity: 0;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.word-cycle .wc-launch {
  animation-name: wcLaunch;
}
.word-cycle .wc-scale {
  animation-name: wcScale;
}
@keyframes wcLaunch {
  0%,
  42% {
    opacity: 1;
    transform: translateY(0);
  }
  50%,
  92% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wcScale {
  0%,
  42% {
    opacity: 0;
    transform: translateY(10px);
  }
  50%,
  92% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
.word-cycle-static {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .word-cycle {
    display: none;
  }
  .word-cycle-static {
    display: inline;
  }
}
.hero p.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 24px auto 32px;
  max-width: 56ch;
}
.hero p.lede strong {
  color: var(--text);
  font-weight: 800;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.hero-note {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* Ascent signature graphic — grayscale rising to yellow: the climb toward action */
.ascent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

/* ---------- COACH + EVENT INFO (hero) ---------- */
.hero-showcase {
  margin-top: 32px;
  margin-bottom: 28px;
}
.coach-hero-card {
  position: relative;
  max-width: 420px;
  margin: 0 auto 50px;
  padding: 16px 0 40px;
}
.chc-ring {
  position: relative;
  width: 82%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chc-photo-wrap {
  position: relative;
  width: 91%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg);
}
.chc-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.chc-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 14px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 6px 16px rgba(13, 13, 13, 0.1);
  white-space: nowrap;
}
.chc-badge-tl {
  top: 10%;
  left: -8%;
}
.chc-badge-tr {
  top: 10%;
  right: -8%;
}
.chc-badge-bl {
  bottom: 14%;
  left: -10%;
}
.chc-badge-br {
  bottom: 14%;
  right: -10%;
}
@media (max-width: 420px) {
  .chc-badge {
    font-size: 9.5px;
    padding: 6px 9px;
  }
  .chc-badge-tl,
  .chc-badge-tr {
    top: 6%;
  }
  .chc-badge-tl {
    left: -4%;
  }
  .chc-badge-tr {
    right: -4%;
  }
  .chc-badge-bl {
    left: -6%;
  }
  .chc-badge-br {
    right: -6%;
  }
}
.chc-name-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: var(--chip-dark);
  border-radius: 14px;
  padding: 12px 22px 14px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(13, 13, 13, 0.2);
}
.chc-name-card h3 {
  font-size: 15px;
  font-weight: 900;
  color: var(--accent);
  margin: 0;
  letter-spacing: 0.01em;
}
.chc-name-card p {
  font-size: 11px;
  color: var(--text-on-dark);
  font-weight: 600;
  line-height: 1.4;
  margin: 2px 0 0;
}
.event-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: 400px) {
  .event-info-grid {
    gap: 8px;
  }
}
.event-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: 400px) {
  .event-info-grid {
    gap: 8px;
  }
}
.info-card {
  background: var(--chip-dark);
  border: 1.5px solid var(--accent);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
}
.info-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.info-value {
  font-size: 13.5px;
  font-weight: 900;
  color: var(--text-on-dark);
  margin-top: 4px;
  line-height: 1.3;
}
@media (max-width: 400px) {
  .info-value {
    font-size: 11.5px;
  }
  .info-card {
    padding: 9px 6px;
  }
}
.hero-reserve-btn {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  padding: 16px 20px;
  font-size: 15.5px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.limited-time-note {
  text-align: center;
  color: #ff4d4d;
  font-weight: 800;
  font-size: 12px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ascent-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 180px;
  margin-bottom: 22px;
}
.ascent-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14px;
}
.ascent-bar span {
  font-size: 12px;
  font-weight: 900;
  color: var(--chip-dark);
}
.ab1 span {
  color: var(--text);
}
.ab2 span {
  color: var(--text-on-dark);
}
.ab1 {
  height: 42%;
  background: var(--border);
}
.ab2 {
  height: 70%;
  background: var(--text-secondary);
}
.ab3 {
  height: 100%;
  background: var(--accent);
}

.ascent-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.ascent-caption {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.ascent-caption strong {
  color: var(--text);
}

.countdown-strip {
  margin-top: 36px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.countdown-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.fomo-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.countdown-nums {
  display: flex;
  gap: 10px;
}
.cd-unit {
  text-align: center;
}
.cd-unit .n {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  background: var(--chip-dark);
  border: 1px solid var(--chip-dark);
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 48px;
  display: block;
}
.cd-unit .l {
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  font-weight: 700;
}

.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 28px 24px;
  gap: 20px;
}
.stat .num {
  font-weight: 900;
  font-size: 32px;
  color: var(--text);
}
.stat .lab {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ---------- SECTION HEADERS ---------- */
.sec-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 900;
  margin-top: 12px;
  color: var(--text);
}
.sec-head p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 14px;
  line-height: 1.6;
}

/* ---------- PAIN SECTION ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.pain-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
}

/* ---------- POSITIVE MIRROR ---------- */
.mirror-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .mirror-grid {
    grid-template-columns: 1fr;
  }
}
.mirror-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.mirror-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pain-card h4 {
  font-size: 17.5px;
  font-weight: 700;
  margin-top: 14px;
  line-height: 1.35;
  color: var(--text);
}
.pain-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
}

/* ---------- AGENDA ---------- */
.agenda-day {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.agenda-day:hover,
.agenda-day:active {
  border-color: var(--accent);
  box-shadow:
    0 0 0 2px rgba(255, 215, 0, 0.5),
    0 10px 28px rgba(13, 13, 13, 0.1);
}
@media (max-width: 800px) {
  .agenda-day {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}
.agenda-meta .ascent-bars {
  height: 70px;
  margin-bottom: 16px;
}
.agenda-meta .daytag {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}
.agenda-meta h3 {
  font-size: 24px;
  margin-top: 6px;
  font-weight: 900;
  color: var(--text);
}
.agenda-meta .pillar {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
  margin-top: 6px;
}
.agenda-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
@media (max-width: 560px) {
  .agenda-list {
    grid-template-columns: 1fr;
  }
}
.agenda-list li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 26px;
  position: relative;
  color: var(--text);
}
.agenda-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--accent);
}
.agenda-bonus {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.agenda-bonus b {
  color: var(--text);
}
.badge-live {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---------- BONUSES ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}
.bonus-card {
  border: 1px solid rgba(255, 215, 0, 0.55);
  border-top: 5px solid var(--accent);
  background: linear-gradient(
    180deg,
    rgba(255, 215, 0, 0.1) 0%,
    var(--bg-card) 130px
  );
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.bonus-card:hover,
.bonus-card:active {
  border-color: var(--accent);
  box-shadow:
    0 0 0 2px rgba(255, 215, 0, 0.5),
    0 10px 28px rgba(13, 13, 13, 0.1);
}
.bonus-card .lock {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--accent-ink);
  background: var(--accent);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus-card .lock svg {
  width: 16px;
  height: 16px;
}
.bonus-card .daytag {
  display: inline-block;
  font-size: 11px;
  color: var(--accent-ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
}
.bonus-card h4 {
  font-size: 19px;
  margin-top: 12px;
  font-weight: 900;
  color: var(--text);
  padding-right: 24px;
}
.bonus-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.bonus-card li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 9px 0;
  border-top: 1px solid var(--border);
}
.bonus-card li:first-child {
  border-top: none;
}
.bonus-card .value {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}
.bonus-card .bonus-extra {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--text-secondary);
}
.grand-surprise {
  margin-top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 22px 26px;
  text-align: center;
  box-shadow:
    0 0 0 2px rgba(255, 215, 0, 0.35),
    0 8px 20px rgba(13, 13, 13, 0.08);
}
.grand-surprise .gs-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.grand-surprise p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.fomo {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.fomo b {
  color: var(--text);
}

/* ---------- VALUE STACK ---------- */
.value-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}
@media (max-width: 640px) {
  .value-box {
    padding: 30px 24px;
  }
}
.value-rows {
  margin: 32px 0;
  border-top: 1px solid var(--border);
}
.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
}
.value-row .label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.value-row .num {
  font-weight: 900;
  color: var(--text);
  font-size: 14px;
  width: 22px;
  flex-shrink: 0;
}
.value-row .amt {
  color: var(--text-secondary);
  white-space: nowrap;
  font-weight: 700;
}
.value-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 22px;
}
.value-total .lab {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
}
.value-total .amt {
  font-size: 26px;
  color: var(--text);
  font-weight: 900;
}
.price-callout {
  margin-top: 30px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.price-callout .was {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: line-through;
}
.price-callout .now {
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  margin: 4px 0;
}
.price-callout .now span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-secondary);
}
.price-callout p.roi {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 10px;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- FORMATS ---------- */
.format-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  row-gap: 16px;
}
.format-list .fmt-item {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  padding: 0 22px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.format-list .fmt-divider {
  color: var(--border);
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 480px) {
  .format-list {
    flex-direction: column;
    row-gap: 12px;
  }
  .format-list .fmt-divider {
    display: none;
  }
}

/* ---------- FIT ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}
.fit-card {
  border-radius: 18px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.fit-card h4 {
  font-size: 19px;
  margin-bottom: 16px;
  font-weight: 900;
  color: var(--text);
}
.fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fit-card li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  padding: 9px 0;
  color: var(--text-secondary);
  align-items: flex-start;
}
.fit-card li .icon {
  margin-top: 2px;
}
.fit-yes .icon {
  color: var(--text);
}
.fit-no .icon {
  color: var(--text-secondary);
}

/* ---------- MENTOR ---------- */
.mentor {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) {
  .mentor {
    grid-template-columns: 1fr;
  }
}
.mentor-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mentor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.mentor-badge {
  font-size: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 700;
  color: var(--text-secondary);
}
.mentor h3 {
  font-size: 30px;
  font-weight: 900;
  color: var(--text);
}
.mentor p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 14px;
}
.mentor p strong {
  color: var(--text);
  font-weight: 800;
}
.mentor-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text);
  text-align: center;
  margin-bottom: 36px;
}

/* ---------- BRANDS ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .brand-grid {
    gap: 12px;
  }
}
.brand-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
  max-width: 418px;
  margin: 0 auto;
  width: 100%;
}
.brand-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
}
.brand-card .photo {
  width: 100%;
  line-height: 0;
}
.brand-card .photo img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-card .body {
  padding: 22px 24px 26px;
}
@media (max-width: 520px) {
  .brand-card .body {
    padding: 14px 14px 16px;
  }
}
.brand-card .tag {
  font-size: 11.5px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media (max-width: 520px) {
  .brand-card .tag {
    font-size: 10px;
  }
}
.brand-card h4 {
  font-size: 21px;
  margin-top: 10px;
  font-weight: 900;
  color: var(--text);
}
@media (max-width: 520px) {
  .brand-card h4 {
    font-size: 16px;
    margin-top: 6px;
  }
}
.brand-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
}
@media (max-width: 520px) {
  .brand-card p {
    font-size: 12px;
    margin-top: 6px;
    line-height: 1.5;
  }
}
.brand-card .by {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  margin-top: 14px;
}
@media (max-width: 520px) {
  .brand-card .by {
    font-size: 10.5px;
    margin-top: 8px;
  }
}

/* ---------- TESTIMONIALS ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .testi-grid {
    gap: 12px;
  }
}
.testi-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
  max-width: 378px;
  margin: 0 auto;
  width: 100%;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
@media (max-width: 520px) {
  .testi-card {
    padding: 16px;
  }
}
.testi-card:hover {
  border-color: var(--text-secondary);
}
.testi-card.highlighted {
  border-color: var(--accent);
  box-shadow:
    0 0 0 2px rgba(255, 215, 0, 0.55),
    0 8px 20px rgba(13, 13, 13, 0.1);
  transform: translateY(-2px);
}
.stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
}
@media (max-width: 520px) {
  .stars {
    font-size: 12px;
  }
}
.testi-card p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 14px 0 18px;
  color: var(--text);
}
@media (max-width: 520px) {
  .testi-card p {
    font-size: 12px;
    line-height: 1.5;
    margin: 8px 0 12px;
  }
}
.testi-who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
@media (max-width: 520px) {
  .testi-avatar {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
}
.testi-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}
@media (max-width: 520px) {
  .testi-name {
    font-size: 11px;
  }
}
.testi-loc {
  font-size: 12px;
  color: var(--text-secondary);
}
@media (max-width: 520px) {
  .testi-loc {
    font-size: 10px;
  }
}

/* ---------- REGISTER ---------- */
.register {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px;
}
@media (max-width: 640px) {
  .register {
    padding: 32px 22px;
  }
}
.register-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
}
@media (max-width: 820px) {
  .register-grid {
    grid-template-columns: 1fr;
  }
}
.register h3 {
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
}
.register ul {
  list-style: none;
  margin: 22px 0;
  padding: 0;
}
.register li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}
.register li:first-child {
  border-top: none;
}
.register li .icon {
  color: var(--text);
  margin-top: 2px;
}
.reg-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
}
.reg-card .total {
  font-size: 13px;
  color: var(--text-secondary);
}
.reg-card .reg-datetime {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  margin-top: 4px;
}
.reg-card .price {
  font-size: 44px;
  font-weight: 900;
  margin: 6px 0 18px;
  color: var(--text);
}
.reg-card .price .was {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 10px;
  vertical-align: middle;
}
.reg-secure {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
}
.faq-q .plus {
  font-size: 22px;
  color: var(--text);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  font-weight: 400;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 22px;
  margin: 0;
  max-width: 72ch;
}

/* ---------- FINAL CTA / FOOTER ---------- */
.final-cta {
  text-align: center;
}
.final-cta h2 {
  color: var(--text);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 44px);
}
.final-cta p {
  color: var(--text-secondary);
  font-size: 16.5px;
  max-width: 600px;
  margin: 20px auto 34px;
  line-height: 1.7;
}
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  font-size: 13px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-link {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.foot-link:hover {
  color: var(--accent);
}
.foot-tag {
  color: var(--text-secondary);
}

/* ---------- COMPARE TABLE ---------- */
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-card);
}
@media (max-width: 640px) {
  .compare-table {
    grid-template-columns: 1fr;
  }
}
.compare-col {
  padding: 32px 28px;
}
.compare-old {
  background: var(--bg-card-2);
}
.compare-new {
  border-left: 1px solid var(--border);
}
@media (max-width: 640px) {
  .compare-new {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}
.compare-col h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 900;
  margin-bottom: 20px;
}
.compare-old h4 {
  color: var(--text-secondary);
}
.compare-new h4 {
  color: var(--text);
}
.compare-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 0;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
}
.compare-row:first-of-type {
  border-top: none;
}
.compare-row .icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-old .compare-row .icon {
  color: var(--text-secondary);
}
.compare-new .compare-row .icon {
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 50%;
  padding: 3px;
  width: 16px;
  height: 16px;
  box-sizing: content-box;
}

/* ---------- MENTOR STATS ---------- */
.social-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
@media (max-width: 500px) {
  .social-stats {
    gap: 36px;
  }
}
.social-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.social-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.social-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
}
@media (max-width: 500px) {
  .social-icon {
    width: 32px;
    height: 32px;
  }
  .social-num {
    font-size: 18px;
  }
}

/* ---------- STICKY BOTTOM BAR ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--chip-dark);
  box-shadow: 0 -8px 28px rgba(13, 13, 13, 0.28);
  padding-bottom: env(safe-area-inset-bottom);
  overflow: hidden;
}
.sticky-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% 100%;
  animation: shimmer 3.5s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.sticky-cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sticky-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sticky-price-now {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.sticky-price-was {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: line-through;
}
.sticky-price-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-on-dark);
  white-space: nowrap;
}
.sticky-price-sub b {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.sticky-btn {
  padding: 15px 28px;
  font-size: 16.5px;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
  animation: stickyPulse 2.4s ease-in-out infinite;
}
@keyframes stickyPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 215, 0, 0);
  }
}
body {
  padding-bottom: 88px;
  overflow-x: hidden;
}
@media (max-width: 600px) {
  .sticky-cta-inner {
    padding: 11px 14px;
    gap: 10px;
  }
  .sticky-price-now {
    font-size: 21px;
  }
  .sticky-price-was {
    font-size: 13px;
  }
  .sticky-price-sub {
    font-size: 10px;
  }
  .sticky-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
  body {
    padding-bottom: 76px;
  }
}
@media (max-width: 400px) {
  .sticky-price-was {
    font-size: 11px;
  }
  .sticky-btn {
    padding: 11px 15px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta::before {
    animation: none;
  }
  .sticky-btn {
    animation: none;
  }
}

.inline-cta {
  text-align: center;
  margin-top: 44px;
}
.inline-cta p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-weight: 600;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  z-index: 200;
}

/* ---------- PRESS MARQUEE ---------- */
.press {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}
.press-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  padding: 0 44px;
  white-space: nowrap;
}
.marquee-item img {
  height: 30px;
  width: auto;
}
.marquee-item.sep {
  color: var(--border);
  padding: 0;
  font-weight: 400;
  font-size: 20px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- ACHIEVEMENT BADGE + BAR GROW ---------- */
.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-card-2);
  margin-bottom: 14px;
  opacity: 0.55;
  transform: translateY(6px);
  transition: all 0.4s ease;
}
.stage-badge.unlocked {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--accent);
  color: var(--accent-ink);
  background: var(--accent);
}
.grow-init .ascent-bar {
  transform-origin: bottom;
  transform: scaleY(0);
  opacity: 0.4;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.6s ease;
}
.grow-init.in-view .ascent-bar {
  transform: scaleY(1);
  opacity: 1;
}
.grow-init .ascent-bar:nth-child(1) {
  transition-delay: 0s;
}
.grow-init .ascent-bar:nth-child(2) {
  transition-delay: 0.12s;
}
.grow-init .ascent-bar:nth-child(3) {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .grow-init .ascent-bar {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* ---------- TRUSTPILOT ---------- */
.tp-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 34px;
}
.tp-score {
  font-size: 44px;
  font-weight: 900;
  color: var(--text);
}
.tp-meta {
  text-align: left;
}
.tp-meta .stars {
  display: block;
  margin-bottom: 4px;
}
.tp-meta .lab {
  font-size: 13px;
  color: var(--text-secondary);
}
.tp-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .tp-badge {
    font-size: 9px;
    padding: 4px 8px;
  }
}
.testi-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.verified {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .verified {
    font-size: 9px;
  }
}

/* ---------- VIDEO TESTIMONIALS ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .video-grid {
    gap: 12px;
  }
}
.video-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
}
.video-thumb {
  position: relative;
  background: var(--bg-card-2);
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.32);
  transition: background 0.2s ease;
}
.video-thumb:hover::after {
  background: rgba(13, 13, 13, 0.12);
}
.video-thumb .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
  z-index: 2;
}
@media (max-width: 520px) {
  .video-thumb .play {
    width: 38px;
    height: 38px;
  }
}
.video-thumb:hover .play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-info {
  padding: 16px 18px;
}
@media (max-width: 520px) {
  .video-info {
    padding: 10px 12px;
  }
}
.video-info .name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
@media (max-width: 520px) {
  .video-info .name {
    font-size: 12px;
  }
}
.video-info .role {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.video-info .watch-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 520px) {
  .video-info .watch-link {
    font-size: 10.5px;
    margin-top: 4px;
  }
}
.video-info .watch-link:hover {
  text-decoration: underline;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
} 

/*Footer css*/

/* =========================================================
   PRO FOODPRENEUR — FINAL FOOTER
   Paste this at the VERY BOTTOM of home.css
   ========================================================= */

footer {
  width: 100% !important;
  background: var(--chip-dark) !important;
  color: var(--text-on-dark) !important;
  border-top: 1px solid #2a2a2a !important;
  padding: 64px 0 0 !important;
  margin: 0 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
}


/* ---------- MAIN FOOTER WRAPPER ---------- */

footer .wrap,
footer .pf-footer-wrap {
  width: 100% !important;
  max-width: var(--maxw) !important;

  margin: 0 auto !important;

  padding: 0 24px !important;

  display: grid !important;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(180px, 0.8fr)
    minmax(240px, 1.2fr) !important;

  gap: clamp(30px, 5vw, 70px) !important;

  align-items: start !important;

  box-sizing: border-box !important;
}


/* =========================================================
   BRAND
   ========================================================= */

footer .pf-footer-brand {
  min-width: 0 !important;
  max-width: 360px !important;
}

footer .pf-footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;

  color: #ffffff !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: clamp(21px, 2vw, 25px) !important;
  font-weight: 900 !important;

  line-height: 1.2 !important;
  text-decoration: none !important;
}

footer .pf-footer-logo:hover {
  color: #ffffff !important;
}

footer .pf-footer-mark {
  color: var(--accent) !important;
  font-size: 17px !important;
  flex-shrink: 0 !important;
}

footer .pf-footer-logo span {
  color: #ffffff !important;
}


/* ---------- BRAND DESCRIPTION ---------- */

footer .pf-footer-brand p {
  margin: 18px 0 0 !important;

  max-width: 340px !important;

  color: #b5b5b5 !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;

  line-height: 1.7 !important;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

footer .pf-footer-column {
  min-width: 0 !important;
}

footer .pf-footer-column h3 {
  margin: 0 0 10px !important;

  color: var(--accent) !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: clamp(18px, 2vw, 21px) !important;
  font-weight: 900 !important;

  line-height: 1.25 !important;
}


/* ---------- CONTACT LINKS ---------- */

footer .pf-footer-column a {
  display: inline-block !important;

  max-width: 100% !important;

  color: #ffffff !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;

  line-height: 1.6 !important;

  text-decoration: none !important;

  overflow-wrap: anywhere !important;
}

footer .pf-footer-column a:hover {
  color: var(--accent) !important;
}

footer .pf-footer-heading {
  margin-top: 26px !important;
}


/* =========================================================
   ADDRESS
   ========================================================= */

footer .pf-footer-address {
  min-width: 0 !important;
}

footer .pf-footer-address p {
  margin: 0 !important;

  color: #ffffff !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;

  line-height: 1.65 !important;

  overflow-wrap: anywhere !important;
}


/* =========================================================
   LEGAL LINKS
   ========================================================= */

footer .pf-footer-links {
  display: flex !important;

  align-items: center !important;
  flex-wrap: wrap !important;

  gap: 6px 9px !important;

  margin-top: 20px !important;
}

footer .pf-footer-links a {
  display: inline-block !important;

  color: #b5b5b5 !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;

  line-height: 1.5 !important;

  text-decoration: none !important;
}

footer .pf-footer-links a:hover {
  color: var(--accent) !important;
}

footer .pf-footer-links span {
  color: #666666 !important;
  font-size: 12px !important;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

footer .pf-footer-bottom {
  width: 100% !important;
  max-width: var(--maxw) !important;

  margin: 52px auto 0 !important;

  padding: 22px 24px !important;

  border-top: 1px solid #2a2a2a !important;

  text-align: center !important;

  box-sizing: border-box !important;
}

footer .pf-footer-bottom p {
  margin: 0 !important;

  color: #999999 !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 400 !important;

  line-height: 1.6 !important;
}


/* =========================================================
   PROTECTION AGAINST OLD HOME.CSS FOOTER CLASSES
   ========================================================= */

footer .nav-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;

  color: #ffffff !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;

  text-decoration: none !important;
}

footer .nav-logo .mark {
  color: var(--accent) !important;
}

footer .nav-logo span {
  color: #ffffff !important;
}

footer .foot-right {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

footer .foot-tag {
  color: #999999 !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 12.5px !important;
}


/* =========================================================
   TABLET — 1024px
   ========================================================= */

@media (max-width: 1024px) {

  footer {
    padding-top: 54px !important;
  }

  footer .wrap,
  footer .pf-footer-wrap {
    grid-template-columns: 1fr 1fr !important;
    gap: 38px !important;
  }

  footer .pf-footer-brand {
    max-width: 420px !important;
  }

  footer .pf-footer-address {
    grid-column: 1 / -1 !important;
  }
}


/* =========================================================
   TABLET — 768px
   ========================================================= */

@media (max-width: 768px) {

  footer {
    padding-top: 48px !important;
  }

  footer .wrap,
  footer .pf-footer-wrap {
    grid-template-columns: 1fr 1fr !important;

    gap: 34px 26px !important;

    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  footer .pf-footer-brand {
    grid-column: 1 / -1 !important;
    max-width: 600px !important;
  }

  footer .pf-footer-address {
    grid-column: 1 / -1 !important;
  }
}


/* =========================================================
   MOBILE — 600px
   ========================================================= */

@media (max-width: 600px) {

  footer {
    padding-top: 42px !important;
  }

  footer .wrap,
  footer .pf-footer-wrap {
    display: grid !important;

    grid-template-columns: 1fr !important;

    gap: 30px !important;

    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  footer .pf-footer-brand,
  footer .pf-footer-address {
    grid-column: auto !important;
    max-width: none !important;
  }

  footer .pf-footer-logo {
    font-size: 22px !important;
  }

  footer .pf-footer-brand p {
    max-width: 100% !important;

    margin-top: 14px !important;

    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  footer .pf-footer-column h3 {
    font-size: 19px !important;
  }

  footer .pf-footer-column a,
  footer .pf-footer-address p {
    font-size: 13px !important;
  }

  footer .pf-footer-links {
    margin-top: 18px !important;
    gap: 7px 8px !important;
  }

  footer .pf-footer-bottom {
    margin-top: 36px !important;
    padding: 20px !important;
  }
}


/* =========================================================
   SMALL MOBILE — 400px
   ========================================================= */

@media (max-width: 400px) {

  footer {
    padding-top: 36px !important;
  }

  footer .wrap,
  footer .pf-footer-wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;

    gap: 26px !important;
  }

  footer .pf-footer-logo,
  footer .nav-logo {
    font-size: 20px !important;
  }

  footer .pf-footer-mark {
    font-size: 15px !important;
  }

  footer .pf-footer-brand p {
    font-size: 12.5px !important;
  }

  footer .pf-footer-column h3 {
    font-size: 17px !important;
  }

  footer .pf-footer-column a,
  footer .pf-footer-address p {
    font-size: 12.5px !important;
  }

  footer .pf-footer-links a {
    font-size: 11.5px !important;
  }

  footer .pf-footer-bottom {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  footer .pf-footer-bottom p,
  footer .foot-tag {
    font-size: 11px !important;
  }
}


/* =========================================================
   VERY SMALL — 320px
   ========================================================= */

@media (max-width: 320px) {

  footer .wrap,
  footer .pf-footer-wrap {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  footer .pf-footer-links {
    display: block !important;
  }

  footer .pf-footer-links a {
    display: inline !important;
  }

  footer .pf-footer-links span {
    margin: 0 3px !important;
  }

  footer .pf-footer-bottom {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* =========================================================
   LEGAL PAGES
   Shared by Privacy Policy + Terms & Conditions
   Uses existing home.css theme
   ========================================================= */


/* ---------- LEGAL PAGE HEADER ---------- */

.legal-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}

.legal-hero .sec-head {
  margin-bottom: 0;
}


/* ---------- LEGAL CONTENT ---------- */

.legal-content {
  width: 100%;
  max-width: 820px;

  margin: 0 auto;

  padding: 56px 0 72px;
}


/* ---------- INDIVIDUAL LEGAL BLOCK ---------- */

.legal-block {
  margin: 0 0 42px;
}

.legal-block:last-child {
  margin-bottom: 0;
}


/* ---------- LEGAL HEADINGS ---------- */

.legal-block h2 {
  margin: 0 0 16px;

  color: var(--text);

  font-size: clamp(23px, 3vw, 30px);
  font-weight: 900;

  line-height: 1.25;
}

.legal-block h3 {
  margin: 26px 0 8px;

  color: var(--text);

  font-size: 17px;
  font-weight: 900;

  line-height: 1.4;
}


/* ---------- LEGAL TEXT ---------- */

.legal-block p {
  margin: 0 0 16px;

  color: var(--text-secondary);

  font-size: 15.5px;
  line-height: 1.75;
}

.legal-block p:last-child {
  margin-bottom: 0;
}


/* ---------- LEGAL LISTS ---------- */

.legal-block ul {
  margin: 14px 0 18px;
  padding-left: 22px;
}

.legal-block li {
  margin: 0 0 8px;

  color: var(--text-secondary);

  font-size: 15px;
  line-height: 1.7;
}

.legal-block li:last-child {
  margin-bottom: 0;
}


/* ---------- LEGAL LINKS ---------- */

.legal-block a {
  color: var(--text);

  font-weight: 700;

  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;

  overflow-wrap: anywhere;
}

.legal-block a:hover {
  color: var(--accent-ink);
  background: var(--accent);
  text-decoration: none;
}


/* ---------- INTRO ---------- */

.legal-intro {
  margin-bottom: 44px;

  padding: 24px 26px;

  background: var(--bg-card);

  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);

  border-radius: var(--radius);
}

.legal-intro p {
  margin: 0;

  color: var(--text);

  font-size: 16px;
  line-height: 1.75;
}


/* ---------- CONTACT / INFORMATION CARD ---------- */

.legal-contact {
  margin-top: 22px;

  padding: 24px 26px;

  background: var(--bg-card-2);

  border: 1px solid var(--border);

  border-radius: var(--radius);
}


/* ---------- IMPORTANT NOTICE / CONSENT ---------- */

.legal-notice {
  margin-top: 48px;

  padding: 26px;

  background: var(--bg-card);

  border: 1px solid var(--accent);

  border-radius: var(--radius);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 820px) {

  .legal-hero {
    padding: 48px 0 36px;
  }

  .legal-content {
    padding: 48px 0 64px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .legal-hero {
    padding: 42px 0 32px;
  }

  .legal-content {
    padding: 40px 0 56px;
  }

  .legal-block {
    margin-bottom: 34px;
  }

  .legal-block h2 {
    font-size: 22px;
  }

  .legal-block h3 {
    font-size: 16px;
  }

  .legal-block p {
    font-size: 14px;
    line-height: 1.7;
  }

  .legal-block li {
    font-size: 14px;
    line-height: 1.65;
  }

  .legal-intro {
    margin-bottom: 36px;
    padding: 20px;
  }

  .legal-intro p {
    font-size: 14px;
  }

  .legal-contact {
    padding: 20px;
  }

  .legal-notice {
    margin-top: 40px;
    padding: 20px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .legal-hero {
    padding: 36px 0 28px;
  }

  .legal-content {
    padding: 34px 0 48px;
  }

  .legal-block {
    margin-bottom: 30px;
  }

  .legal-block h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .legal-block h3 {
    font-size: 15px;
  }

  .legal-block p,
  .legal-block li {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .legal-block ul {
    padding-left: 20px;
  }

  .legal-intro,
  .legal-contact,
  .legal-notice {
    padding: 18px 16px;
  }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 320px) {

  .legal-content {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .legal-block {
    margin-bottom: 28px;
  }

}
