/* ============================================================
   GET SHIT DONE HQ — Sales Page (course.html) Stylesheet
   Standalone file — all variables and styles self-contained
   ============================================================ */

/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
  --orange: #ff5c00;
  --orange-hover: #ff8533;
  --orange-pale: #ffe8d6;
  --midnight: #1e1e2e;
  --obsidian: #1a1a1a;
  --white: #ffffff;
  --cream: #f5f0eb;
  --green: #14b87a;
  --red-soft: #ffe5e5;
  --red-text: #c0392b;

  --font-display: "Bebas Neue", sans-serif;
  --font-ui: "Outfit", sans-serif;

  --max-w: 1200px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-ui);
  background: var(--white);
  color: var(--obsidian);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ============================================================
   3. UTILITIES
   ============================================================ */
.sp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Shared headline */
.sp-headline {
  font-family: var(--font-ui);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--obsidian);
}
.sp-headline--light {
  color: var(--white);
}

/* Section labels */
.sp-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sp-label--on-dark {
  background: rgba(255, 92, 0, 0.15);
  color: var(--orange);
}
.sp-label--on-orange {
  background: rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.sp-orange {
  color: var(--orange);
}

/* Section header block */
.sp-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.sp-section__sub {
  font-size: 17px;
  color: #888;
  margin-top: 16px;
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn--lg {
  padding: 18px 38px;
  font-size: 16px;
}
.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 92, 0, 0.38);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn__arrow {
  transition: transform var(--trans);
}
.btn:hover .btn__arrow {
  transform: translateX(5px);
}

/* ============================================================
   4. ANNOUNCEMENT BAR
   ============================================================ */
.sp-announce {
  background: var(--obsidian);
  padding: 12px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 0;
  z-index: 1010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sp-announce strong {
  color: var(--white);
}
.sp-announce__link {
  color: var(--orange);
  font-weight: 700;
  margin-left: 12px;
  transition: opacity var(--trans);
}
.sp-announce__link:hover {
  opacity: 0.75;
}

/* ============================================================
   5. STICKY NAV
   ============================================================ */
.sp-nav {
  position: sticky;
  top: 41px; /* height of announce bar */
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 14px 0;
  transition: box-shadow var(--trans);
}
.sp-nav.is-raised {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sp-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-nav__logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--obsidian);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}
.sp-nav__logo span {
  color: var(--orange);
}

.sp-nav__logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.sp-nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sp-nav__price {
  font-size: 14px;
  font-weight: 700;
  color: #888;
}

/* ============================================================
   6. HERO — Orange background, dark text, price-forward
   ============================================================ */
.sp-hero {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  text-align: center;
}

/* Ghost ₱2,500 watermark */
.sp-hero__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(100px, 22vw, 280px);
  color: rgba(67, 63, 81, 0.047);
  top: 50%;
  right: -20px;
  transform: translateY(-60%);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

/* Badge — dark on orange */
.sp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--obsidian);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.sp-badge__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(20, 184, 122, 0.4);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(20, 184, 122, 0);
  }
}

/* Headline — dark obsidian on orange */
.sp-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(46px, 8.5vw, 108px);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}
.sp-underline {
  color: var(--obsidian);
  text-decoration: underline;
  text-decoration-color: var(--obsidian);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

/* "Every Client Wants to Hire." — white on orange for contrast */
.sp-hero__hl-white {
  display: block;
  color: var(--orange);
}

/* Subline */
.sp-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(0, 0, 0, 0.6);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.6s;
}

/* CTA buttons — dark primary, outline secondary */
.sp-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-bottom: 80px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.8s;
}

.btn--hero-dark {
  background: var(--obsidian);
  color: var(--white);
  border: 2px solid var(--obsidian);
}
.btn--hero-dark:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn--hero-outline {
  background: transparent;
  color: var(--obsidian);
  border: 2px solid rgba(0, 0, 0, 0.3);
}
.btn--hero-outline:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: var(--obsidian);
}

/* Full-width dark proof strip */
.sp-hero__proof {
  background: var(--obsidian);
  width: 100%;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1s;
}

.sp-proof__item {
  text-align: center;
}
.sp-proof__num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.sp-proof__label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sp-proof__div {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   7. TRUST BAR
   ============================================================ */
.sp-trustbar {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}
.sp-trustbar__track {
  overflow: hidden;
}
.sp-trustbar__content {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.sp-trustbar__content span {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.sp-trustbar:hover .sp-trustbar__content {
  animation-play-state: paused;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   8. PROBLEM — White, 4-card grid
   ============================================================ */
.sp-problem {
  padding: 120px 0;
  background: var(--white);
}
.sp-problem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}
.sp-problem__card {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 2px solid transparent;
  transition: var(--trans);
}
.sp-problem__card:hover {
  border-color: var(--orange);
  box-shadow: 4px 4px 0px var(--orange);
  transform: translateY(-4px);
}
.sp-problem__icon {
  display: block;
  font-size: 36px;
  margin-bottom: 18px;
}
.sp-problem__card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--obsidian);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.sp-problem__card p {
  font-size: 15px;
  color: #777;
  line-height: 1.75;
}

/* ============================================================
   9. TRANSFORMATION — Cream, Before/After
   ============================================================ */
.sp-transform {
  padding: 120px 0;
  background: var(--cream);
}
.sp-transform__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.sp-transform__col {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}
.sp-col__header {
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sp-col__header--before {
  background: var(--obsidian);
  color: rgba(255, 255, 255, 0.6);
}
.sp-col__header--after {
  background: var(--orange);
  color: var(--white);
}
.sp-transform__list {
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-top: none;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.sp-transform__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--obsidian);
  line-height: 1.4;
}
.sp-x {
  color: #e74c3c;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sp-check {
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sp-transform__vs {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--orange);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ============================================================
   10. MEET JANA — Orange, standout section
   ============================================================ */
.sp-jana {
  padding: 120px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.sp-jana::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.sp-jana__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Photo placeholder */
.sp-jana__photo-wrap {
  position: relative;
}
.sp-jana__photo-placeholder {
  border: 3px dashed rgba(255, 255, 255, 0.4);
  border-radius: var(--r-xl);
  aspect-ratio: 5 / 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 24px;
  transition: var(--trans);
}
.sp-jana__photo-placeholder:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}
.sp-jana__photo-icon {
  font-size: 48px;
  margin-bottom: 4px;
}
.sp-jana__photo-placeholder strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.sp-jana__photo-placeholder span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 200px;
  line-height: 1.4;
}
.sp-jana__photo-size {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 8px;
}

/* When real photo is added: replace the placeholder div with:
   <img src="assets/jana.jpg" alt="Jana Tandoc" class="sp-jana__photo-img"> */
.sp-jana__photo-img {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  aspect-ratio: 5/6;
}

/* Bio content */
.sp-jana__name {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sp-jana__tagline {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.sp-jana__body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 20px;
}
.sp-jana__creds {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.sp-jana__creds li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.sp-jana__dot {
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* ============================================================
   FUNNEL VISUALIZATION
   ============================================================ */
.sp-funnel {
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sp-funnel__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 24px;
}

/* Funnel stages — each gets narrower */
.sp-funnel__stage {
  width: 100%;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.sp-funnel__stage:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.sp-funnel__stage--1 {
  background: var(--obsidian);
  width: 100%;
}
.sp-funnel__stage--2 {
  background: var(--orange);
  width: 84%;
}
.sp-funnel__stage--3 {
  background: var(--midnight);
  width: 66%;
}
.sp-funnel__stage--4 {
  background: var(--obsidian);
  width: 48%;
}

.sp-funnel__stage-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.sp-funnel__stage-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.sp-funnel__stage-label strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.sp-funnel__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.sp-funnel__pills span {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.sp-funnel__stage--2 .sp-funnel__pills span {
  background: rgba(0, 0, 0, 0.15);
  color: var(--white);
}

/* Arrow connector */
.sp-funnel__arrow {
  font-size: 20px;
  color: var(--orange);
  padding: 4px 0;
  line-height: 1;
}

/* Result badge */
.sp-funnel__result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  background: var(--orange-pale);
  border: 2px solid var(--orange);
  border-radius: 100px;
  padding: 12px 28px;
}
.sp-funnel__result span {
  font-size: 18px;
}
.sp-funnel__result strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.02em;
}

/* ============================================================
   11. CURRICULUM — White, 2-col module grid
   ============================================================ */
.sp-curriculum {
  padding: 120px 0;
  background: var(--white);
}
.sp-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sp-module {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 2px solid transparent;
  transition: var(--trans);
}
.sp-module:hover {
  border-color: var(--orange);
  box-shadow: 4px 4px 0 var(--orange);
  transform: translateY(-3px);
}
.sp-module__num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  letter-spacing: -0.02em;
}
.sp-module__body {
  flex: 1;
}
.sp-module__body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--obsidian);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.sp-module__body p {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
}
.sp-module__tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--orange-pale);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
}

/* ============================================================
   12. BONUSES — Cream, 4-card grid
   ============================================================ */
.sp-bonuses {
  padding: 120px 0;
  background: var(--cream);
}
.sp-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sp-bonus {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 2px solid transparent;
  position: relative;
  transition: var(--trans);
  overflow: hidden;
}
.sp-bonus:hover {
  border-color: var(--orange);
  box-shadow: 6px 6px 0px var(--orange);
  transform: translateY(-4px);
}
.sp-bonus__value {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.sp-bonus__icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.sp-bonus h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--obsidian);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.sp-bonus p {
  font-size: 15px;
  color: #777;
  line-height: 1.75;
}

/* ============================================================
   13. MID-PAGE CTA — Dark, price reveal
   ============================================================ */
.sp-midcta {
  padding: 100px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sp-midcta__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 280px);
  color: rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.sp-midcta__inner {
  position: relative;
  z-index: 1;
}
.sp-midcta__pre {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  font-weight: 500;
}
.sp-midcta__price {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 160px);
  color: var(--orange);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-shadow: 0 0 80px rgba(255, 92, 0, 0.35);
}
.sp-midcta__post {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   14. GUARANTEE — Dark, bold promise
   ============================================================ */
.sp-guarantee {
  padding: 120px 0;
  background: var(--obsidian);
}
.sp-guarantee__intro {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  font-style: italic;
}
.sp-guarantee__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.sp-guarantee__card {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 92, 0, 0.2);
  border-radius: var(--r-xl);
  padding: 40px;
  transition: var(--trans);
}
.sp-guarantee__card:hover {
  background: rgba(255, 92, 0, 0.07);
  border-color: rgba(255, 92, 0, 0.4);
  transform: translateY(-4px);
}
.sp-guarantee__icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.sp-guarantee__card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sp-guarantee__card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}
.sp-guarantee__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}
.sp-guarantee__badge {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.sp-guarantee__num {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.sp-guarantee__badge-text strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.sp-guarantee__badge-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ============================================================
   15. TESTIMONIALS — Orange background
   ============================================================ */
.sp-testi {
  padding: 120px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.sp-testi__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(100px, 22vw, 280px);
  color: rgba(255, 255, 255, 0.05);
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.sp-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.sp-testi__card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  border: 3px solid var(--white);
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}
.sp-testi__card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
}
.sp-testi__card--dark {
  background: var(--obsidian);
  border-color: var(--obsidian);
}
.sp-testi__stars {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.sp-testi__quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--obsidian);
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}
.sp-testi__card--dark .sp-testi__quote {
  color: rgba(255, 255, 255, 0.75);
}
.sp-testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sp-testi__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--white);
}
.sp-av--orange {
  background: var(--orange);
}
.sp-av--green {
  background: var(--green);
}
.sp-testi__author strong {
  display: block;
  font-size: 15px;
  color: var(--obsidian);
}
.sp-testi__card--dark .sp-testi__author strong {
  color: var(--white);
}
.sp-testi__author span {
  font-size: 13px;
  color: #999;
}
.sp-testi__card--dark .sp-testi__author span {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   16. PRICING — White, value stack + price card
   ============================================================ */
.sp-pricing {
  padding: 120px 0;
  background: var(--white);
}
.sp-pricing__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

/* Value stack */
.sp-stack {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 2px solid rgba(0, 0, 0, 0.05);
}
.sp-stack__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.sp-stack__item:first-child {
  padding-top: 0;
}
.sp-stack__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--obsidian);
  line-height: 1.3;
}
.sp-stack__val {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}
.sp-stack__total {
  padding-bottom: 0;
  border-bottom: none;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 2px solid var(--orange);
}
.sp-stack__total .sp-stack__name {
  font-size: 17px;
  font-weight: 800;
}
.sp-stack__val--cross {
  position: relative;
  color: #aaa;
  font-size: 18px;
}
.sp-stack__val--cross::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #e74c3c;
  transform: translateY(-50%);
}

/* CTA card */
.sp-pricing__card {
  position: relative;
}
.sp-pricing__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--orange);
  border-radius: var(--r-xl);
  transform: translate(8px, 8px);
  z-index: 0;
  opacity: 0.35;
}
.sp-pricing__card-inner {
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.sp-pricing__card-label {
  font-size: 13px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.sp-pricing__price {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 108px);
  color: var(--orange);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.sp-pricing__card-sub {
  font-size: 14px;
  color: #999;
  margin-bottom: 28px;
  line-height: 1.5;
}
.sp-pricing__btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
}
.sp-pricing__checklist {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--orange-pale);
  padding-top: 20px;
}
.sp-pricing__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--obsidian);
}
.sp-pricing__checklist span {
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
}
.sp-counter {
  display: inline-block;
  min-width: 2ch;
}

/* ============================================================
   17. FREE SESSION CTA — Cream
   ============================================================ */
.sp-free-session {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}
.sp-free-session__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--obsidian);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.sp-free-session__sub {
  font-size: 17px;
  color: #777;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.sp-free-session__note {
  font-size: 13px;
  color: #bbb;
  font-weight: 500;
  margin-top: 16px;
}

/* ============================================================
   18. FAQ — White, accordion
   ============================================================ */
.sp-faq {
  padding: 120px 0;
  background: var(--white);
}
.sp-faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.sp-faq__item {
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
}
.sp-faq__item:first-child {
  border-top: 2px solid rgba(0, 0, 0, 0.07);
}
.sp-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 700;
  color: var(--obsidian);
  text-align: left;
  transition: color var(--trans);
  line-height: 1.35;
}
.sp-faq__q:hover {
  color: var(--orange);
}
.sp-faq__item.is-open .sp-faq__q {
  color: var(--orange);
}
.sp-faq__icon {
  font-size: 26px;
  font-weight: 300;
  color: var(--orange);
  transition: transform var(--trans);
  flex-shrink: 0;
  line-height: 1;
  font-family: var(--font-ui);
}
.sp-faq__item.is-open .sp-faq__icon {
  transform: rotate(45deg);
}
.sp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-faq__item.is-open .sp-faq__a {
  max-height: 300px;
}
.sp-faq__a p {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
  padding-bottom: 24px;
  padding-right: 40px;
}

/* ============================================================
   19. FINAL CLOSE — Dark, two choices
   ============================================================ */
.sp-close {
  padding: 120px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sp-close__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  color: rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
  line-height: 1;
}
.sp-close__inner {
  position: relative;
  z-index: 1;
}
.sp-close__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 110px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 56px;
}
.sp-close__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: left;
}
.sp-close__choice {
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-close__choice--no {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.08);
}
.sp-close__choice--yes {
  background: rgba(255, 92, 0, 0.1);
  border: 2px solid rgba(255, 92, 0, 0.3);
}
.sp-close__choice-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  align-self: flex-start;
}
.sp-close__badge--no {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}
.sp-close__badge--yes {
  background: var(--orange);
  color: var(--white);
}
.sp-close__choice h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.sp-close__choice p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  flex: 1;
}
.sp-close__outcome {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
}
.sp-close__outcome--no {
  color: rgba(255, 255, 255, 0.25);
}
.sp-close__outcome--yes {
  color: var(--orange);
}
.sp-close__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.sp-close__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

/* ============================================================
   20. FOOTER — Minimal
   ============================================================ */
.sp-footer {
  background: var(--obsidian);
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.sp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.sp-footer__inner p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}
.sp-footer__links {
  display: flex;
  gap: 24px;
}
.sp-footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--trans);
}
.sp-footer__links a:hover {
  color: var(--white);
}

/* ============================================================
   21. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 0.12s;
}
.reveal--delay-2 {
  transition-delay: 0.22s;
}
.reveal--delay-3 {
  transition-delay: 0.32s;
}
.reveal--delay-4 {
  transition-delay: 0.42s;
}

/* ============================================================
   22. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .sp-problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-jana__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sp-jana__photo-placeholder {
    aspect-ratio: 16/9;
  }
  .sp-modules {
    grid-template-columns: 1fr;
  }
  .sp-bonuses__grid {
    grid-template-columns: 1fr;
  }
  .sp-guarantee__cards {
    grid-template-columns: 1fr;
  }
  .sp-testi__grid {
    grid-template-columns: 1fr 1fr;
  }
  .sp-testi__grid .sp-testi__card:last-child {
    grid-column: 1 / -1;
  }
  .sp-pricing__layout {
    grid-template-columns: 1fr;
  }
  .sp-pricing__card::after {
    display: none;
  }
  .sp-transform__grid {
    grid-template-columns: 1fr;
  }
  .sp-transform__vs {
    display: none;
  }
  .sp-close__choices {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   23. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .sp-nav__price {
    display: none;
  }
  .sp-hero__proof {
    gap: 24px;
    padding: 24px;
  }
  .sp-proof__div {
    width: 40px;
    height: 2px;
  }
  .sp-hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .sp-problem__grid {
    grid-template-columns: 1fr;
  }
  .sp-funnel__stage {
    width: 100% !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .sp-funnel__pills {
    justify-content: flex-start;
  }
  .sp-funnel__result {
    flex-direction: column;
    text-align: center;
    border-radius: 16px;
  }
  .sp-testi__grid {
    grid-template-columns: 1fr;
  }
  .sp-guarantee__badge {
    flex-direction: column;
    text-align: center;
  }
  .sp-footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .sp-footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sp-close__ctas {
    flex-direction: column;
    align-items: center;
  }
}
