/* ─── Reset & base ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

ul.bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

ul.bullets li {
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
}

::selection {
  background: #fff;
  color: #000;
}

/* ─── Typography helpers ────────────────────────────────────────────────── */
.upper {
  text-transform: uppercase;
}

.track-wide {
  letter-spacing: 0.2em;
}

.track-wider {
  letter-spacing: 0.3em;
}

.track-widest {
  letter-spacing: 0.4em;
}

.font-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.font-light {
  font-weight: 300;
}

/* ─── Utilities ─────────────────────────────────────────────────────────── */
.max-w-page {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.px-page {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .px-page {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.border-b-dim {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.border-t-dim {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── Fade-up on scroll ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Navbar ────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: 1920px;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 0 3rem;
  }
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .nav-logo {
    height: 32px;
  }
}

.nav-back-link {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
  transition: color 0.3s;
}

.nav-back-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
  .nav-back-link {
    display: flex;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav-right {
    display: flex;
  }
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  padding: 8px 20px;
  transition: background 0.2s;
}

.nav-login:hover {
  background: #e8e8e8;
}

.nav-powered {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
}

.nav-powered-by {
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.3);
}

.nav-zeux {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.nav-powered:hover .nav-zeux {
  color: #fff;
}

.nav-mobile-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-mobile-right {
    display: none;
  }
}

.hamburger {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 4px;
}

.hamburger svg {
  display: block;
}

/* Mobile menu overlay */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  gap: 2rem;
}

.mobile-nav-link {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: #999;
}

.mobile-nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.mobile-nav-back:hover {
  color: #fff;
}

.mobile-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 80px;
}

@media (min-width: 768px) {
  .breadcrumb {
    padding: 1.25rem 3rem;
  }
}

.breadcrumb a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 12px;
}

.breadcrumb-current {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
#hero {
  padding-top: 112px;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  #hero {
    min-height: 100vh;
    justify-content: flex-end;
    padding-top: 128px;
  }
}

.hero-h1 {
  font-size: clamp(13vw, 13vw, 9vw);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  user-select: none;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-h1 {
    font-size: 9vw;
  }
}

@media (min-width: 1024px) {
  .hero-h1 {
    font-size: 8.5vw;
  }
}

.hero-sub-wrap {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-sub-wrap {
    margin-top: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 40rem;
  text-align: center;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.avatar-stack {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
}

.avatar {
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  user-select: none;
}

@media (min-width: 640px) {
  .avatar {
    width: 36px;
    height: 36px;
    font-size: 9px;
  }
}

@media (min-width: 768px) {
  .avatar {
    width: 40px;
    height: 40px;
  }
}

.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.star {
  width: 13px;
  height: 13px;
}

.star-full {
  color: #f59e0b;
  fill: #f59e0b;
}

.star-partial {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
}

.star-partial .bg {
  color: rgba(255, 255, 255, 0.2);
  fill: rgba(255, 255, 255, 0.2);
}

.star-partial .fg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 80%;
}

.star-partial .fg svg {
  color: #f59e0b;
  fill: #f59e0b;
}

.rating-text {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.rating-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* ─── VIDEO + CTA ───────────────────────────────────────────────────────── */
#video-cta {
  padding: 0 1rem 4rem;
}

@media (min-width: 768px) {
  #video-cta {
    padding: 0 3rem 7rem;
  }
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .video-thumb {
    aspect-ratio: 16/7;
  }
}

.video-thumb img,
.video-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.55); */
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-thumb:hover img {
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.5s;
}

.video-thumb:hover .video-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, border-color 0.4s;
  z-index: 2;
}

@media (min-width: 768px) {
  .play-btn {
    width: 80px;
    height: 80px;
  }
}

.video-thumb:hover .play-btn {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}

.video-label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.label-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.price-old {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 300;
}

.price-new {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

@media (min-width: 768px) {
  .price-new {
    font-size: 2.5rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .btn-primary {
    font-size: 14px;
    padding: 20px 40px;
  }
}

.btn-primary:hover {
  background: #e8e8e8;
}

.btn-primary.black {
  background: #000;
  color: #fff;
}

.btn-primary.black:hover {
  background: #111;
}

.cta-meta {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-top: 4px;
}

/* ─── TICKER ────────────────────────────────────────────────────────────── */
#ticker-section {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2.5rem 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  #ticker-section {
    padding: 3.5rem 0;
  }
}

.ticker-heading {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  max-width: 48rem;
  margin: 0 auto 1.75rem;
  padding: 0 1rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .ticker-heading {
    font-size: 1.5rem;
  }
}

.ticker-row {
  position: relative;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.ticker-row:last-of-type {
  margin-bottom: 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: ticker-left 28s linear infinite;
}

.ticker-track.right {
  animation: ticker-right 32s linear infinite;
}

@media (min-width: 768px) {
  .ticker-track {
    gap: 3.5rem;
  }
}

@keyframes ticker-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes ticker-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.ticker-word {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  user-select: none;
  cursor: default;
  transition: color 0.3s;
}

.ticker-word:hover {
  color: rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .ticker-word {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ticker-word {
    font-size: 1.875rem;
  }
}

.ticker-fade-l,
.ticker-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) {

  .ticker-fade-l,
  .ticker-fade-r {
    width: 10rem;
  }
}

.ticker-fade-l {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.ticker-fade-r {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────────────── */
#testimonials {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-head {
  padding: 4rem 1rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .testimonials-head {
    padding: 4rem 3rem 0.5rem;
  }
}

.testimonials-head h2 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* Desktop 3-up slider */
.testimonials-desktop {
  display: none;
  padding: 3.5rem 1rem 2.5rem;
}

@media (min-width: 768px) {
  .testimonials-desktop {
    display: block;
    padding: 3.5rem 3rem 2.5rem;
  }
}

.testimonials-track-wrap {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  flex-shrink: 0;
  padding: 0 12px;
}

.testimonial-card:first-child {
  padding-left: 0;
}

.testimonial-card:last-child {
  padding-right: 0;
}

.testimonial-inner {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.4s;
}

@media (min-width: 1024px) {
  .testimonial-inner {
    padding: 2.5rem;
  }
}

.testimonial-inner:hover {
  background: rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar span {
  font-size: 14px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
}

.testimonial-quote {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
  flex: 1;
}

@media (min-width: 1024px) {
  .testimonial-quote {
    font-size: 1.25rem;
  }
}

.testimonial-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.testimonial-role {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.t-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.t-dot {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  width: 16px;
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.t-dot.active {
  width: 32px;
  background: rgba(255, 255, 255, 0.6);
}

.t-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.3);
}

.t-arrows {
  display: flex;
  gap: 8px;
}

.t-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.t-arrow:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.t-arrow:disabled {
  opacity: 0.2;
  cursor: default;
}

/* Mobile spotlight */
.testimonials-mobile {
  display: block;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .testimonials-mobile {
    display: none;
  }
}

.mobile-spotlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.mobile-avatar-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-avatar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mobile-avatar-circle span {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
}

.mobile-quote-wrap {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-quote p {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  transition: opacity 0.4s, transform 0.4s;
}

.mobile-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.mobile-role-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.mobile-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-progress-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 180px;
}

@media (max-width: 568px) {
  .mobile-progress-dots {
    display: none;
  }
}

.mprog-dot {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.mprog-fill {
  position: absolute;
  inset-y: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  width: 0%;
  transition: width 0.1s linear;
}

.mprog-dot.past::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}

.m-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.m-arrow:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ─── LIST SECTIONS (Problem / Failed attempts) ─────────────────────────── */
.list-section {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.list-section .inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .list-section .inner {
    padding: 7rem 3rem;
  }
}

.list-section h2 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}

.list-row {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .list-row {
    padding: 1.75rem 0;
    gap: 2rem;
  }
}

.list-row:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.list-num {
  font-size: 11px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.2);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding-top: 6px;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: right;
}

.list-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .list-text {
    font-size: 1.875rem;
  }
}

/* ─── SIX SECRETS ───────────────────────────────────────────────────────── */
#secrets {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 1rem;
}

@media (min-width: 768px) {
  #secrets {
    padding: 9rem 3rem;
  }
}

.secrets-head {
  margin-bottom: 3.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .secrets-head {
    margin-bottom: 6rem;
  }
}

.secrets-head h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  max-width: 64rem;
  margin: 0 auto;
}

.secrets-head p {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .secrets-head p {
    font-size: 1.25rem;
  }
}

.secrets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .secrets-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .secrets-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.secret-card {
  background: #000;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.secret-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #fff;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.secret-card:hover::after {
  width: 100%;
}

.secret-illus {
  height: 176px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .secret-illus {
    height: 208px;
  }
}

.secret-illus svg {
  width: 100%;
  height: 100%;
}

.secret-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  transition: border-color 0.4s, color 0.4s;
}

.secret-card:hover .secret-label {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.7);
}

.secret-body {
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .secret-body {
    padding: 2.25rem;
  }
}

.secret-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .secret-title {
    font-size: 1.25rem;
  }
}

.secret-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgb(90, 90, 90);
  transition: color 0.55s;
}

.secret-card:hover .secret-desc {
  color: rgb(200, 200, 200);
}

/* SVG illustration helpers */
.illus-line {
  transition: stroke-opacity 0.5s;
}

.illus-circle {
  transition: fill-opacity 0.4s, stroke-opacity 0.5s;
}

/* ─── WHO IT'S FOR ───────────────────────────────────────────────────────── */
#audience {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-head {
  padding: 5rem 1rem 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .audience-head {
    padding: 9rem 3rem 3rem;
  }
}

.audience-head h2 {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  max-width: 64rem;
  margin: 0 auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.audience-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
  cursor: default;
  background: #000;
  transition: background 0.4s, opacity 0.4s;
}

@media (min-width: 1024px) {
  .audience-card {
    padding: 3.5rem;
  }
}

.audience-grid.has-hover .audience-card:not(.hovered) {
  opacity: 0.3;
}

.audience-card.hovered {
  background: #fff;
}

.audience-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: border-color 0.4s;
}

.audience-card.hovered .audience-icon {
  border-color: rgba(0, 0, 0, 0.2);
}

.audience-icon svg {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.4s;
}

.audience-card.hovered .audience-icon svg {
  color: rgba(0, 0, 0, 0.5);
}

.audience-role {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .audience-role {
    font-size: 1.875rem;
  }
}

.audience-card.hovered .audience-role {
  color: #000;
}

.audience-hook {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #99A1AF;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s;
}

.audience-card.hovered .audience-hook {
  color: #6b7280;
}

.audience-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: #6b7280;
}

/* Not for you */
.not-for-head {
  padding: 4rem 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .not-for-head {
    padding: 4rem 3rem 2rem;
  }
}

.not-for-head h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.not-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .not-for-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.not-for-card {
  background: #000;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 280px;
  text-align: center;
  align-items: center;
  cursor: default;
  transition: background 0.5s;
}

@media (min-width: 768px) {
  .not-for-card {
    padding: 4rem;
  }
}

.not-for-card:hover {
  background: #fff;
}

.not-for-num {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.5s;
}

.not-for-card:hover .not-for-num {
  color: #9ca3af;
}

.not-for-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  transition: color 0.5s;
}

@media (min-width: 768px) {
  .not-for-title {
    font-size: 2rem;
  }
}

.not-for-card:hover .not-for-title {
  color: #000;
}

.not-for-desc {
  font-size: 14px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.6;
}

/* ─── INSTRUCTORS ────────────────────────────────────────────────────────── */
#instructors {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.instructors-head {
  padding: 5rem 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .instructors-head {
    padding: 8rem 3rem 3rem;
  }
}

.instructors-head h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.instructor-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: auto;
}

@media (min-width: 1024px) {
  .instructor-row {
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
  }
}

.instructor-photo-col {
  background: #080808;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 1024px) {
  .instructor-photo-col {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.instructor-photo-wrap {
  position: relative;
  height: 450px;
}

@media (min-width: 768px) {
  .instructor-photo-wrap {
    height: 640px;
  }
}

@media (min-width: 1024px) {
  .instructor-photo-wrap {
    position: absolute;
    inset: 0;
    height: auto;
  }
}

.instructor-photo-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) contrast(1.08) brightness(0.8);
}

.instructor-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #080808 0%, rgba(8, 8, 8, 0.2) 40%, transparent 100%);
}

.instructor-info {
  position: relative;
  z-index: 10;
  padding: 2rem;
  background: #080808;
}

@media (min-width: 768px) {
  .instructor-info {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .instructor-info {
    background: transparent;
    padding: 4rem;
  }

  .instructor-photo-wrap img {
    object-position: center bottom;
  }
}

.instructor-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1rem;
}

.instructor-name {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.instructor-title {
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.instructor-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.instructor-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 8px 12px;
}

.instructor-badge img {
  height: 14px;
  width: auto;
  object-fit: contain;
}

.badge-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
}

.badge-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.instructor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 8px 12px;
}

.badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.badge .badge-bold {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.instructor-content-col {
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .instructor-content-col {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .instructor-content-col {
    padding: 6rem 4rem 6rem 6rem;
  }
}

@media (min-width: 1280px) {
  .instructor-content-col {
    padding: 6rem 6rem;
  }
}

.instructor-bio {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: #d1d5db;
}

@media (min-width: 768px) {
  .instructor-bio {
    font-size: 1.5rem;
  }
}

.instructor-bio strong {
  color: #fff;
  font-weight: 500;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

@media (min-width: 768px) {
  .stat-val {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 8px;
}

.instructor-quotes {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

blockquote.instructor-q {
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.5rem;
  text-align: left;
  transition: border-color 0.5s;
}

blockquote.instructor-q:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

blockquote.instructor-q p {
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
  transition: color 0.5s;
}

blockquote.instructor-q:hover p {
  color: #e5e7eb;
}

blockquote.instructor-q cite {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  font-style: normal;
}

/* ─── FIVE REASONS ───────────────────────────────────────────────────────── */
#reasons {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.reasons-head {
  padding: 5rem 1rem 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .reasons-head {
    padding: 7rem 3rem 3rem;
  }
}

.reasons-head h2 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #000;
  max-width: 48rem;
  margin: 0 auto;
}

.reason-row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2.25rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 1rem;
  cursor: default;
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .reason-row {
    grid-template-columns: 80px 1fr 1fr;
    padding: 2.75rem 3rem;
    gap: 3rem;
    align-items: flex-start;
  }
}

.reason-row:hover {
  background: rgba(0, 0, 0, 0.025);
}

.reason-num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.2);
  padding-top: 4px;
}

.reason-title {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .reason-title {
    font-size: 1.25rem;
  }
}

.reason-body {
  font-size: 14px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.6;
}

/* ─── BONUS SESSSION ───────────────────────────────────────────────────────── */
#bonus {
  border-top: 1px solid #ffffff1a;
  padding: 5rem 1rem 5rem;
}

@media (min-width: 768px) {
  #bonus {
    padding: 7rem 3rem 7rem;
  }
}

.bonus-head {
  text-align: center;
}

.bonus-head h2 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  max-width: 1024px;
  margin: 0 auto;
}

.bonus-head h3 {
  font-size: 12px;
  line-height: 1.33;
  text-transform: uppercase;
  color: #F5A524;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 20px;
}

.bonus-head p {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  color: #99a1af;
}

.bonus-image {
  max-width: 1024px;
  margin: 56px auto 0;
}

/* ─── VIDEO TESTIMONIAL ──────────────────────────────────────────────────── */
#vi-test {
  border-top: 1px solid #ffffff1a;
  padding: 5rem 0 5rem;
}

.vitest-head {
  text-align: center;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid #ffffff1a;
}

@media (min-width: 768px) {
  #vi-test {
    padding: 7rem 0 7rem;
  }

  .vitest-head {
    padding: 0 3rem 3rem;
  }
}

.vitest-head h2 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
}

.vitest-head p {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  color: #99a1af;
}

.vitest {
  padding: 5rem 3rem 0;
  display: flex;
  gap: 2rem;
  overflow: auto;
}

.vitest-video {
  flex: 0 0 82%;
  height: auto;
}

@media (width >=48rem) {
  .vitest-video {
    flex-basis: 42%;
  }
}

@media (width >=64rem) {
  .vitest-video {
    flex-basis: 31%;
  }
}

.vitest-vt {
  position: relative;
}

.vitest-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vitest-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0000004d;
  transition: background-color 0.5s;
  cursor: pointer;
}

.vitest-overlay:hover {
  background-color: #00000026;
}

.vitest-play {
  width: 64px;
  height: 64px;
  border: solid 1px #ffffff66;
  border-radius: 50%;
  background-color: #ffffff1a;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vitest-vb {
  padding-top: 16px;
}

.vitest h3 {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.vitest p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  color: #ffffff80;
}

/* ─── ANOTHER TESTIMONIAL ────────────────────────────────────────────────── */
#testi {
  border-top: 1px solid #ffffff1a;
  padding: 5rem 0 5rem;
}

.testi-head {
  text-align: center;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid #ffffff1a;
}

@media (min-width: 768px) {
  #testi {
    padding: 7rem 0 7rem;
  }

  .testi-head {
    padding: 0 3rem 3rem;
  }
}

.testi-head h2 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  max-width: 1024px;
  margin: 0 auto;
}

.testi-head h3 {
  font-size: 12px;
  line-height: 1.33;
  text-transform: uppercase;
  color: #F5A524;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 20px;
}

.testi {
  padding: 5rem 3rem 0;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-columns: 80%;
  gap: 20px;
  overflow: auto;
}

@media (width >=40rem) {
  .testi {
    grid-auto-columns: 44%;
  }
}

@media (width >=48rem) {
  .testi {
    grid-auto-columns: 36%;
  }
}

@media (width >=80rem) {
  .testi {
    grid-auto-columns: 23%;
  }
}

.testi-test {
  padding: 32px;
  border: solid 1px #ffffff1a;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s;
}

.testi-test:hover {
  border: solid 1px #ffffff33;
}

.testi-test p {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  flex: 1;
  padding-bottom: 32px;
  border-bottom: solid 1px #ffffff33;
}

.testi-test p::before {
  content: '"';
  color: #F5A524;
  line-height: 1;
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}

.testi-test h3 {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.testi-test h4 {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff66;
  letter-spacing: 0.025em;
}

@media (width >=48rem) {
  .testi-test {
    padding: 40px;
  }

  .testi-test p {
    font-size: 24px;
  }
}

/* ─── PRICING ────────────────────────────────────────────────────────────── */
#pricing {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-head {
  padding: 4rem 1rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .pricing-head {
    padding: 6rem 3rem 3.5rem;
  }
}

.pricing-head h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.pricing-cols {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .pricing-cols {
    flex-direction: row;
  }
}

.pricing-left {
  display: none;
  min-width: 0;
  padding: 4rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .pricing-left {
    display: block;
    flex: 1;
    padding: 7rem 6rem;
  }
}

.pricing-right {
  flex: 1;
  min-width: 0;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .pricing-right {
    padding: 7rem 6rem;
    border-bottom: none;
  }
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  cursor: default;
}

.value-item .vi-check {
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.2s;
}

.value-item:hover .vi-check {
  transform: scale(1.25);
}

.value-item span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: #9ca3af;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .value-item span {
    font-size: 1rem;
  }
}

.value-item:hover span {
  color: #fff;
}

.review-ticker-wrap {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  overflow: hidden;
}

.review-ticker-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1.5rem;
}

.review-track-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.review-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: ticker-left 28s linear infinite;
}

.review-card {
  flex-shrink: 0;
  width: 220px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.25rem;
}

.review-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin-bottom: 12px;
}

.review-card .rc-attr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

#pricing .label-tag {
  margin: 0 auto;
}

.price-big {
  margin-bottom: 1.5rem;
  width: 100%;
}

#pricing .price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-big .p-old {
  font-size: 1.125rem;
  font-weight: 300;
  color: #4a5565;
  text-decoration: line-through;
}

.price-big .p-new {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

@media (min-width: 768px) {
  .price-big .p-new {
    font-size: 4.5rem;
  }
}

.bonus-block {
  margin-top: 12px;
  margin-bottom: 0;
  border: 1px solid;
  border-color: color-mix(in oklab, #fff 10%, transparent);
  background: color-mix(in oklab, #fff 3%, transparent);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.bonus-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #fff;
}

.bonus-desc {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  margin-top: 4px;
}

.bonus-price-old {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.price-big .bonus-free {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
}

.mobile-value-list {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .mobile-value-list {
    display: none;
  }
}

#pricing .btn-primary {
  margin: 0 auto 32px;
  background: #f5a524;
}

.pricing-links {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 2rem;
  width: 100%;
}

.pricing-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 2px;
}

.pricing-link:hover .pl-label {
  color: rgba(255, 255, 255, 0.6);
}

.pl-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.pl-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.logo-ticker-wrap {
  width: 100%;
  margin-top: 0;
}

.logo-ticker-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 12px;
  text-align: left;
}

.logo-ticker-track {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-ticker-inner {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker-left 26s linear infinite;
}

.logo-ticker-word {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  transition: color 0.3s;
}

.logo-ticker-word:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile reviews ticker */
.mobile-reviews-wrap {
  display: block;
  margin-top: 2.5rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .mobile-reviews-wrap {
    display: none;
  }
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
#faq {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5rem 1rem;
}

@media (min-width: 768px) {
  #faq {
    padding: 9rem 3rem;
  }
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .faq-inner {
    grid-template-columns: 4fr 8fr;
    gap: 6rem;
  }
}

.faq-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .faq-heading {
    text-align: left;
    position: sticky;
    top: 8rem;
  }
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  text-align: left;
  cursor: pointer;
}

.faq-q-text {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.3;
  padding-right: 1rem;
  flex: 1;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .faq-q-text {
    font-size: 1rem;
  }
}

.faq-q:hover .faq-q-text {
  color: rgba(0, 0, 0, 0.7);
}

.faq-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.2s, transform 0.3s;
}

.faq-q:hover .faq-icon {
  color: #000;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 1.75rem;
}

.faq-a p {
  font-size: 14px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-a p {
    font-size: 1rem;
  }
}

/* ─── FINAL CTA ──────────────────────────────────────────────────────────── */
#final-cta {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  #final-cta {
    padding: 10rem 3rem;
  }
}

#final-cta h2 {
  font-size: clamp(2rem, 5.5vw, 5.5vw);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  max-width: 64rem;
  margin-bottom: 3.5rem;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
#footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 1rem 5rem;
}

@media (min-width: 768px) {
  #footer {
    padding: 5rem 3rem;
  }
}

.footer-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 1024px) {
  .footer-left {
    text-align: left;
  }
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  margin-bottom: 4px;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .footer-logo {
    font-size: 2.5rem;
  }
}

.footer-logo:hover {
  opacity: 0.6;
}

.footer-by {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 1rem;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .footer-desc {
    margin: 0;
  }
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-right {
    text-align: right;
  }
}

.footer-contact-label {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-email {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .footer-email {
    font-size: 1.25rem;
  }
}

.footer-email:hover {
  color: #d1d5db;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1920px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copy {
  font-size: 12px;
  color: #4b5563;
}

/* ─── SVG icons inline ──────────────────────────────────────────────────── */
.icon-svg {
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Page headline ─────────────────────────────────────────────────────── */
.page-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
  padding: 4rem 1rem 1rem;
}

@media (min-width: 768px) {
  .page-head {
    padding: 4rem 3rem 1rem;
  }
}

.page-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 12px;
}

.page-h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* ─── Two-column layout ─────────────────────────────────────────────────── */
.checkout-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 220px);
}

@media (min-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr 420px;
  }
}

@media (min-width: 1280px) {
  .checkout-grid {
    grid-template-columns: 1fr 480px;
  }
}

/* ─── Left: Form ────────────────────────────────────────────────────────── */
.form-col {
  padding: 3.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .form-col {
    padding: 3.5rem 3rem;
  }
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 8px;
}

.field label .req {
  color: #fff;
  margin-left: 2px;
}

.field-wrap {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s;
}

.field-wrap.focused {
  border-color: rgba(255, 255, 255, 0.6);
}

.field-wrap input {
  width: 100%;
  background: transparent;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  font-family: inherit;
  border: none;
  outline: none;
}

.field-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.field-wrap .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.field-wrap.focused .underline {
  transform: scaleX(1);
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.custom-checkbox {
  display: inline-block;
}

.custom-checkbox .styled-checkbox {
  position: absolute;
  opacity: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.custom-checkbox .styled-checkbox+label {
  position: relative;
  cursor: pointer;
  color: #99A1AF;
  font-size: 12px;
  padding-left: 30px;
}

.custom-checkbox .styled-checkbox+label:before {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
}

.custom-checkbox .styled-checkbox:checked+label:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0px;
  width: 6px;
  height: 11px;
  border: solid rgba(255, 255, 255, 0.8);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox.error label:before {
  border-color: rgba(255, 80, 80, 0.6);
}

.custom-checkbox a {
  border-bottom: dashed 1px #F4F4F4;
}

/* ─── Submit button ─────────────────────────────────────────────────────── */
.submit-btn {
  width: 100%;
  background: #fff;
  color: #000;
  padding: 20px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.submit-btn:hover:not(:disabled) {
  background: #e8e8e8;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.submit-btn .shimmer {
  position: absolute;
  inset: 0;
  transform: skewX(-12deg);
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  animation: shimmer 3.2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: skewX(-12deg) translateX(-160%);
  }

  40% {
    transform: skewX(-12deg) translateX(160%);
  }

  100% {
    transform: skewX(-12deg) translateX(160%);
  }
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge svg {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 10px;
  font-weight: 300;
  color: #4b5563;
}

/* ─── Testimonials carousel ─────────────────────────────────────────────── */
.testimonials-section {
  margin-top: 3rem;
}

.testimonials-section .testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.testimonials-section .testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.t-star {
  width: 12px;
  height: 12px;
  fill: #fff;
  color: #fff;
}

.t-quote {
  font-size: 14px;
  font-weight: 300;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.t-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.t-title {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 2px;
}

.t-dots {
  display: flex;
  gap: 6px;
  margin-top: 1rem;
}

.t-dot {
  height: 2px;
  width: 8px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.t-dot.active {
  width: 20px;
  background: #fff;
}

/* ─── Right: Order summary ──────────────────────────────────────────────── */
.summary-col {
  padding: 3.5rem 1rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .summary-col {
    padding: 3.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .summary-col {
    border-top: none;
  }
}

.order-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 2rem;
}

.order-card-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
}

.order-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.order-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 4px;
}

.order-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .order-name {
    font-size: 1.125rem;
  }
}

.order-meta {
  font-size: 10px;
  font-weight: 300;
  color: #6b7280;
  margin-top: 4px;
}

.price-col {
  text-align: right;
  flex-shrink: 0;
}

.price-old {
  font-size: 12px;
  color: #4b5563;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-main {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.live-badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 6px;
}

.pulse-dot {
  position: relative;
  display: flex;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  animation: pulse-ring 1.6s ease-out infinite;
}

.pulse-core {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

@keyframes pulse-ring {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(2.5);
  }
}

.live-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.bonus-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.015);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bonus-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 8px;
}

.bonus-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bonus-name {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.bonus-prices {
  text-align: right;
  flex-shrink: 0;
}

.bonus-old {
  font-size: 10px;
  color: #4b5563;
  text-decoration: line-through;
}

.bonus-free {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.includes-row {
  padding: 1rem 1.25rem;
}

.includes-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 12px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.include-item:last-child {
  margin-bottom: 0;
}

.include-item svg {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  margin-top: 2px;
}

.include-item span {
  font-size: 12px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.4;
}

.savings-block {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

.savings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.savings-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
}

.savings-val {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #99A1AF;
}

.total-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total-label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.total-val {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.stat-cell {
  background: #000;
  padding: 12px 8px;
  text-align: center;
}

.stat-v {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

@media (min-width: 768px) {
  .stat-v {
    font-size: 1.25rem;
  }
}

.stat-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 2px;
}

.instructors-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  padding: 1.25rem;
}

.inst-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 12px;
}

.inst-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.inst-item:last-child {
  margin-bottom: 0;
}

.inst-avatar {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.inst-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.inst-role {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-top: 2px;
}

/* ─── Checkout footer ───────────────────────────────────────────────────── */
.checkout-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .checkout-footer {
    padding: 2rem 3rem;
  }
}

.checkout-footer p {
  font-size: 12px;
  color: #4b5563;
}

.checkout-footer a {
  color: #6b7280;
  transition: color 0.2s;
}

.checkout-footer a:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ORDER SUCCESS PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.hero-inner {
  padding: 8rem 1rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 10rem 3rem 7rem;
  }
}

.check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (min-width: 768px) {
  .check-circle {
    width: 96px;
    height: 96px;
  }
}

@keyframes pop-in {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.check-circle svg {
  color: #fff;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
}

.hero-h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}

@media (min-width: 768px) {
  .hero-h1 {
    font-size: clamp(4rem, 8vw, 7rem);
  }
}

.hero-name {
  display: block;
}

.hero-sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 40rem;
}

@media (min-width: 768px) {
  .hero-sub {
    font-size: 1.25rem;
  }
}

.hero-sub strong {
  color: #fff;
  font-weight: 500;
}

.order-summary-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  max-width: 36rem;
  width: 100%;
}

@media (min-width: 768px) {
  .order-summary-pill {
    padding: 1rem 2.5rem;
  }
}

.pill-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.pill-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.3;
}

.pill-meta {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.pill-price {
  margin-left: auto;
  padding-left: 1rem;
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

/* ─── Next Steps ────────────────────────────────────────────────────────── */
.steps-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.steps-head {
  padding: 4rem 1rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .steps-head {
    padding: 6rem 3rem 3rem;
  }
}

.steps-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1rem;
}

.steps-h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.step-card {
  background: #000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.5s;
}

@media (min-width: 768px) {
  .step-card {
    padding: 3rem;
  }
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.025);
}

.step-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg {
  color: rgba(255, 255, 255, 0.5);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .step-title {
    font-size: 1.25rem;
  }
}

.step-body {
  font-size: 14px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.6;
}

/* ─── CTA ───────────────────────────────────────────────────────────────── */
.cta-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1920px;
  margin: 0 auto;
}

.cta-inner {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-inner {
    padding: 6rem 3rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  max-width: 36rem;
}

.cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  max-width: 24rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-white:hover {
  background: #e8e8e8;
}

.btn-ghost {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── Success footer ────────────────────────────────────────────────────── */
.success-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 1rem 5rem;
}

@media (min-width: 768px) {
  .success-footer {
    padding: 5rem 3rem;
  }
}

.success-footer .footer-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .success-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.success-footer .footer-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  margin-bottom: 4px;
  transition: opacity 0.2s;
}

.success-footer .footer-logo:hover {
  opacity: 0.6;
}

.success-footer .footer-by {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99A1AF;
  margin-bottom: 1rem;
}

.success-footer .footer-desc {
  font-size: 1rem;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 28rem;
}

.success-footer .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

@media (min-width: 1024px) {
  .success-footer .footer-right {
    text-align: right;
  }
}

.success-footer .footer-contact-label {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 8px;
}

.success-footer .footer-email {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  transition: color 0.2s;
}

.success-footer .footer-email:hover {
  color: #d1d5db;
}

.success-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .success-footer .footer-links {
    justify-content: flex-end;
  }
}

.success-footer .footer-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
  transition: color 0.2s;
}

.success-footer .footer-link:hover {
  color: #fff;
}

.success-footer .footer-bottom {
  max-width: 1920px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 768px) {
  .success-footer .footer-bottom {
    flex-direction: row;
  }
}

.success-footer .footer-copy {
  font-size: 12px;
  color: #4b5563;
}