/* ════════════════════════════════════════════════════════════════
   HIGH STAKES SYSTEMS DESIGN — Z School
   Single stylesheet · all classes properly scoped to avoid conflicts
   ════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

/* ── Tokens ── */
:root {
  --amber: #F97316;
  --amber-grad: linear-gradient(90deg, #F97316 0%, #C2410C 100%);
  --amber-grad-long: linear-gradient(90deg, #FB923C 0%, #F97316 45%, #C2410C 100%);
  --amber-dim: rgba(249, 115, 22, 0.10);
  --amber-border: rgba(249, 115, 22, 0.35);
}

/* ── 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.90);
  backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.10);
}

.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-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

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

.nav-back {
  display: none;
}

@media (min-width:640px) {
  .nav-back {
    display: flex;
    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: 16px;
    margin-left: 16px;
    transition: color 0.2s;
  }
}

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

.nav-links {
  display: none;
}

@media (min-width:1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

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

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

.nav-right {
  display: none;
}

@media (min-width:1024px) {
  .nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.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: #e5e7eb;
}

.nav-powered {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-powered-by {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.nav-zeux {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

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

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── 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;
}

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

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

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

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

/* ════════════════════════════════════════════════════════════════
   LANDING PAGE  (./high-stakes-ux/index.html)
   ════════════════════════════════════════════════════════════════ */

/* ── Hero — scoped under #hero to prevent conflicts with success page ── */
#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 15% 60%, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

#hero .hero-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 1rem 2.5rem;
}

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

#hero .hero-h1 {
  font-size: clamp(2.5rem, 7vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  max-width: 1180px;
  background: var(--amber-grad-long);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 auto 1.5rem;
  animation: hero-rise 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-rise {
  from {
    transform: translateY(60px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

#hero .hero-sub {
  color: #9ca3af;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 30rem;
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
  margin: 0 auto 2rem;
  animation: hero-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* ── Social Proof Row ── */
.proof-row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 1rem 0;
  max-width: 1920px;
  margin: 0 auto;
}

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

.avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

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

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

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

.proof-stars svg {
  width: 13px;
  height: 13px;
}

.proof-label {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}

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

/* ── Video / CTA ── */
.video-cta {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
}

@media (min-width:768px) {
  .video-cta {
    padding: 2.5rem 3rem 6rem;
  }
}

.video-box {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16/7;
}

.video-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  object-fit: cover;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  /* background-size: 60px 60px; */
}

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

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

.play-btn {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

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

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

.video-label {
  position: relative;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* Price block — scoped under .price-block (landing) */
.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

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

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

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

.price-block .price-main {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--amber-grad-long);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2.5rem;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: var(--amber-grad);
  transition: filter 0.2s;
}

@media (min-width:768px) {
  .cta-btn-main {
    padding: 1.25rem 2.5rem;
    font-size: 14px;
  }
}

.cta-btn-main:hover {
  filter: brightness(1.1);
}

.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 {
  position: relative;
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 2.5rem 0;
}

.ticker-headline {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  padding: 0 1rem;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  margin-bottom: 1rem;
}

.ticker-track.row1 {
  animation: ticker-left 28s linear infinite;
}

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

@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: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  user-select: none;
  cursor: default;
  transition: color 0.3s;
}

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

.ticker-fade-l {
  position: absolute;
  inset-y: 0;
  left: 0;
  width: 6rem;
  background: linear-gradient(to right, #fff, transparent);
  pointer-events: none;
}

.ticker-fade-r {
  position: absolute;
  inset-y: 0;
  right: 0;
  width: 6rem;
  background: linear-gradient(to left, #fff, transparent);
  pointer-events: none;
}

@media (min-width:768px) {

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

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

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

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

#testimonials .t-h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  padding-bottom: 1rem;
}

#testimonials .t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  padding: 3rem 1rem;
}

@media (min-width:768px) {
  #testimonials .t-grid {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
  }
}

@media (min-width:1280px) {
  #testimonials .t-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: none;
  }
}

#testimonials .t-card {
  background: #000;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.4s;
}

#testimonials .t-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

#testimonials .t-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;
  font-size: 1.125rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

#testimonials .t-quote {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.4;
  flex: 1;
}

#testimonials .t-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

#testimonials .t-role {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
}

/* ── What Is ── */
#what-is {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6rem 1rem;
  text-align: center;
}

@media (min-width:768px) {
  #what-is {
    padding: 8rem 3rem;
  }
}

#what-is h2 {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 56rem;
  margin: 0 auto;
}

#what-is .accent {
  color: #F97316;
}

/* ── Case Studies ── */
#cases {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6rem 1rem;
}

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

#cases h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 36rem;
}

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

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

.case-card {
  background: #000;
  position: relative;
  overflow: hidden;
}

.case-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(249, 115, 22, 0.07), transparent);
  transition: opacity 0.5s;
}

.case-card:hover .case-glow {
  opacity: 1;
}

.case-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%) contrast(1.1) brightness(0.8);
  transition: filter 0.7s, opacity 0.7s;
  opacity: 0.8;
}

.case-card:hover .case-photo img {
  filter: none;
  opacity: 1;
}

.case-photo-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 60%, #000);
}

.case-body {
  padding: 2rem 2.5rem;
}

.case-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.case-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.case-body-text {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.case-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F97316;
  flex-shrink: 0;
  animation: dot-blink 1.4s ease-in-out infinite;
}

@keyframes dot-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.case-stat-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F97316;
}

/* ── Fields ── */
#fields {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6rem 1rem;
}

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

#fields h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 36rem;
}

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

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

@media (min-width:1280px) {
  .fields-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.field-card {
  background: #000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: background 0.4s;
  cursor: default;
}

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

.field-icon {
  width: 100%;
  height: 100px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

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

.field-title {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
}

.field-body {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
  transition: color 0.4s;
}

.field-card:hover .field-body {
  color: #9ca3af;
}

.field-accent {
  margin-top: 1rem;
  width: 24px;
  height: 1px;
  background: #F97316;
  opacity: 0.4;
}

/* ── Course Outline / Accordion ── */
#outline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.outline-head h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  max-width: 32rem;
  margin: 0 auto;
}

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

.accordion-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  text-align: left;
  transition: background 0.3s;
  cursor: pointer;
}

@media (min-width:768px) {
  .accordion-btn {
    grid-template-columns: 80px 1fr 24px;
    gap: 2rem;
    padding: 2rem 3rem;
  }
}

.accordion-btn:hover {
  background: rgba(255, 255, 255, 0.015);
}

.accordion-num {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #F97316;
  opacity: 0.45;
  transition: opacity 0.3s;
}

.accordion-btn.open .accordion-num {
  opacity: 1;
}

.accordion-title {
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.accordion-plus {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  justify-self: end;
  transition: transform 0.3s;
}

.accordion-plus::before,
.accordion-plus::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 1px;
  transition: background 0.3s;
}

.accordion-plus::before {
  top: 9px;
  left: 2px;
  right: 2px;
  height: 2px;
}

.accordion-plus::after {
  top: 2px;
  left: 9px;
  bottom: 2px;
  width: 2px;
}

.accordion-btn:hover .accordion-plus::before,
.accordion-btn:hover .accordion-plus::after {
  background: rgba(255, 255, 255, 0.6);
}

.accordion-btn.open .accordion-plus {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  overflow: hidden;
}

.accordion-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 1rem 2rem;
  padding-left: calc(56px + 1rem + 1rem);
}

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

@media (min-width:768px) {
  .accordion-points {
    padding: 0 3rem 2.5rem;
    padding-left: calc(80px + 2rem + 3rem);
  }
}

.accordion-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.accordion-point-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F97316;
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 8px;
}

.accordion-point span {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* ── Proven Methods ── */
#methods {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6rem 1rem;
}

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

#methods h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 36rem;
}

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

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

@media (min-width:768px) {
  .method-row {
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
  }
}

.method-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.method-num {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

@media (min-width:768px) {
  .method-num {
    font-size: 5rem;
  }
}

.method-text {
  font-size: clamp(1.125rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  align-self: center;
  line-height: 1.2;
}

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

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

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

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

.instructor-grid {
  display: grid;
  grid-template-columns: 1fr;
}

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

.instructor-photo-col {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

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

.instructor-img-wrap {
  position: relative;
  height: 388px;
}

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

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

.instructor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.1) brightness(0.75);
}

.instructor-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #080808 0%, rgba(8, 8, 8, 0.5) 40%, transparent 100%);
}

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

@media (min-width:1024px) {
  .instructor-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 3rem 3.5rem;
  }
}

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

.instructor-name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.instructor-desc {
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
  max-width: 22rem;
  margin-bottom: 1rem;
}

.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);
  padding: 8px 12px;
}

.badge-icon {
  height: 16px;
  width: auto;
  object-fit: contain;
}

.badge-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

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

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

@media (min-width:768px) {
  .instructor-bio-col {
    padding: 6rem 4rem 6rem 6rem;
    gap: 3.5rem;
  }
}

.instructor-bio {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 300;
  color: #d1d5db;
  line-height: 1.7;
}

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

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

.instructor-blockquote {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(249, 115, 22, 0.3);
  cursor: default;
  transition: border-color 0.4s;
}

.instructor-blockquote:hover {
  border-color: rgba(249, 115, 22, 0.7);
}

.instructor-blockquote p {
  color: #9ca3af;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  transition: color 0.4s;
}

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

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

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

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

.stat-v {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.stat-l {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

/* ── Why (white) ── */
#why {
  background: #fff;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.why-inner {
  max-width: 1920px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

.why-title {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.3;
}

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

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

/* Heading block — full width, border-bottom */
.enrol-head {
  padding: 4rem 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width:768px) {
  .enrol-head {
    padding: 5rem 3rem 2.5rem;
  }
}

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

/* Centered pricing card */
.enrol-card-wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.enrol-price-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}

.enrol-old {
  font-size: 1.125rem;
  font-weight: 300;
  text-decoration: line-through;
  color: #4b5563;
  margin-bottom: 4px;
}

.enrol-price {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--amber-grad-long);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.enrol-meta {
  font-size: 1rem;
  font-weight: 300;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

.value-list {
  text-align: left;
  width: 100%;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.value-check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: #F97316;
}

.value-item span {
  font-size: 1rem;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.5;
  transition: color 0.3s;
}

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

.enrol-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.375rem 3rem;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: var(--amber-grad);
  transition: filter 0.2s;
  width: 100%;
}

.enrol-cta:hover {
  filter: brightness(1.1);
}

.enrol-guarantee {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
}

/* ── FAQ ── */
#faq {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6rem 1rem 8rem;
}

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

#faq>h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

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

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 0;
  text-align: left;
  cursor: pointer;
}

.faq-q {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.2s;
  line-height: 1.4;
}

.faq-btn:hover .faq-q {
  color: #d1d5db;
}

.faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 1px;
}

.faq-icon::before {
  top: 7px;
  left: 0;
  right: 0;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 7px;
  bottom: 0;
  width: 2px;
}

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

.faq-body {
  display: none;
  padding-bottom: 1.75rem;
}

.faq-a {
  font-size: 1rem;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.8;
}

/* ════════════════════════════════════════════════════════════════
   CHECKOUT PAGE  (./high-stakes-ux/checkout/index.html)
   ════════════════════════════════════════════════════════════════ */

.accent-line {
  height: 1px;
  width: 100%;
  background: var(--amber-grad);
  margin-top: 80px;
}

.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;
}

@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;
}

.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: #F97316;
  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;
}

.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;
  }
}

.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: #F97316;
  margin-left: 2px;
}

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

.field-wrap.focused {
  border-color: var(--amber-border);
}

.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: var(--amber-grad);
  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(249, 115, 22, 0.7);
}

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

.submit-btn {
  width: 100%;
  padding: 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: var(--amber-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: filter 0.2s;
  font-family: inherit;
}

.submit-btn:hover:not(:disabled) {
  filter: brightness(1.08);
}

.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(255, 255, 255, 0.15) 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;
  flex-wrap: wrap;
}

.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;
}

/* Checkout testimonials — scoped under .testimonials-section */
.testimonials-section {
  margin-top: 3rem;
}

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

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

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

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

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

.testimonials-section .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.2);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

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

/* Order summary — price classes scoped under .price-col / order card */
.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 var(--amber-border);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 2rem;
  overflow: hidden;
}

.order-card-stripe {
  height: 2px;
  width: 100%;
  background: var(--amber-grad);
}

.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: #F97316;
  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-col .price-old {
  font-size: 12px;
  color: #4b5563;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-col .price-main {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--amber-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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: #F97316;
  animation: pulse-ring 1.6s ease-out infinite;
}

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

@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: #F97316;
}

.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-check {
  color: #F97316;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.savings-block {
  border: 1px solid var(--amber-border);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  background: var(--amber-dim);
}

.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;
  /* text-decoration: line-through; */
}

.total-row {
  border-top: 1px solid var(--amber-border);
  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;
  background: var(--amber-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instructors-block {
  border: 1px solid var(--amber-border);
  background: var(--amber-dim);
  padding: 1.25rem;
}

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

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

.inst-avatar {
  width: 32px;
  height: 32px;
  border: 1px solid var(--amber-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #F97316;
  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;
}

/* ════════════════════════════════════════════════════════════════
   SUCCESS PAGE  (./high-stakes-ux/order/success/index.html)
   All hero classes scoped under .hero-section to prevent landing conflicts
   ════════════════════════════════════════════════════════════════ */

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

.hero-section.nbdr {
  border-bottom: none;
}

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

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

.check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 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: #F97316;
}

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

.hero-section .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-section .hero-h1 {
    font-size: clamp(4rem, 8vw, 7rem);
  }
}

.hero-section .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-section .hero-sub {
    font-size: 1.25rem;
  }
}

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

.order-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%;
}

.order-pill.row {
  flex-direction: column;
  align-items: flex-start;
}

.order-pill .flex {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.pill-divider {
  width: 1px;
  height: 40px;
  background: rgba(249, 115, 22, 0.35);
  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;
  background: var(--amber-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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(249, 115, 22, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg {
  color: #F97316;
  opacity: 0.7;
}

.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;
  transition: color 0.3s;
}

.step-card:hover .step-body {
  color: #9ca3af;
}

.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;
}

@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-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-grad);
  color: #000;
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: filter 0.2s;
  white-space: nowrap;
}

.btn-amber:hover {
  filter: brightness(1.08);
}

.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);
}

/* ════════════════════════════════════════════════════════════════
   LANDING PAGE — Testimonial Slider (replaces static grid)
   ════════════════════════════════════════════════════════════════ */

/* Desktop 3-up slider */
.t-desktop {
  display: none;
  padding: 2rem 1rem;
}

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

.t-track-wrap {
  overflow: hidden;
}

.t-track {
  display: flex;
  width: 133.333%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.t-slide {
  width: 25%;
  padding: 0 12px;
  box-sizing: border-box;
}

.t-slide:first-child {
  padding-left: 0;
}

.t-slide:last-child {
  padding-right: 0;
}

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

.t-card-d:hover {
  background: rgba(255, 255, 255, 0.05);
}

.t-card-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;
}

.t-card-avatar span {
  font-size: 1rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.6);
}

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

.t-card-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.t-card-role {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.t-controls-d {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.t-nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.t-nav-btn:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.6);
}

.t-nav-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

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

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

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

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

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

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

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

.t-mobile-avatar-box {
  width: 120px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.t-mobile-avatar-init {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: -0.04em;
  height: 100%;
}

.t-mobile-avatar-init img{
  height: 100%;
  object-fit: cover;
}

.t-mobile-content {
  width: 100%;
}

.t-mobile-quote-wrap {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
}

.t-mobile-quote {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.t-mobile-meta {
  margin-bottom: 1rem;
}

.t-mobile-name {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}

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

.t-mobile-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.t-progress-dots {
  display: flex;
  gap: 4px;
}

.t-prog-dot {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.t-prog-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  width: 0;
}

.t-prog-dot.past .t-prog-fill {
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
}

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

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

.t-nav-mini-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ── Enrol badge ── */
.enrol-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #F97316;
  border: 1px solid rgba(249, 115, 22, 0.35);
  padding: 6px 14px;
  margin-bottom: 1.5rem;
}

.enrol-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F97316;
  flex-shrink: 0;
  animation: pulse-enrol 1.8s ease-in-out infinite;
}

@keyframes pulse-enrol {

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

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

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

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

.faq-two-col {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.faq-col-left {}

.faq-h2-main {
  font-size: clamp(1.875rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #000;
}

@media (min-width:1024px) {
  .faq-h2-main {
    position: sticky;
    top: 8rem;
  }
}

.faq-col-right {}

/* Light FAQ item overrides */
.faq-item-light {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

.faq-item-light:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-btn-light {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-q-light {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-btn-light:hover .faq-q-light {
  color: #374151;
}

.faq-icon-light {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-icon-light::before,
.faq-icon-light::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 1px;
}

.faq-icon-light::before {
  top: 7px;
  left: 0;
  right: 0;
  height: 2px;
}

.faq-icon-light::after {
  top: 0;
  left: 7px;
  bottom: 0;
  width: 2px;
}

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

.faq-a-light {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.8;
}

.faq-list-light .faq-body {
  padding-bottom: 1.5rem;
}

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

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

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

.final-cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1.25rem 3.5rem;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: var(--amber-grad);
  transition: filter 0.2s;
}

.final-cta-btn:hover {
  filter: brightness(1.1);
}

.final-cta-btn .btn-shimmer {
  position: absolute;
  inset: 0;
  transform: skewX(-12deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  animation: fcta-shimmer 3.1s ease-in-out infinite;
  pointer-events: none;
}

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

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

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