/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F8F8;
  --bg-card-dark: rgba(0, 0, 0, 0.04);
  --bg-light: #FAFAFA;
  --text-on-dark: #000000;
  --text-on-dark-muted: #555555;
  --text-on-light: #000000;
  --text-on-light-muted: #444444;
  --gold: #D6A93A;
  --gold-dark: #B8942E;
  --border-gold: rgba(214, 169, 58, 0.35);
  --cta-primary: #ec0075;
  --cta-hover: #e8bc50;
  --cta-text: #000000;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --max-width: 1200px;
  --section-padding: 80px 0;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-on-dark);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 850px;
  text-align: center;
}

.container--narrow > * {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-on-dark);
}

.section-title--left {
  text-align: left;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* =============================================
   CTA BUTTONS
   ============================================= */
.cta-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%) skewX(-25deg);
  transition: transform 0.4s ease;
}

.cta-btn:hover::before {
  transform: translateX(100%) skewX(-25deg);
}

.cta-btn--primary {
  background: linear-gradient(135deg, #ec0075, #d00066);
  color: #fff;
  box-shadow: 0 6px 24px rgba(236, 0, 117, 0.45);
}

.cta-btn--primary:hover {
  background: linear-gradient(135deg, #d00066, #b80058);
  box-shadow: 0 8px 32px rgba(236, 0, 117, 0.6);
  transform: translateY(-3px);
}

/* =============================================
   CARDS (shared)
   ============================================= */
.card--dark {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card--dark:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card--light {
  background: var(--bg-primary);
  border: 1px solid #E0E0E0;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card--light:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ec0075;
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.card__img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  object-fit: cover;
}

.card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-on-dark);
}

.card--light .card__title {
  color: var(--text-on-light);
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

.card--light .card__text {
  color: var(--text-on-light-muted);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--bg-primary);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero__eyebrow {
  text-align: center;
  margin-bottom: 16px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.hero__eyebrow-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__tagline {
  display: inline-block;
  background: #111;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  margin-top: 16px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__headline--gold {
  color: var(--gold);
}

.hero__headline--gradient {
  display: block;
  background: linear-gradient(90deg, #FF6B35, #E3342F, #FF0066);
  -webkit-text-fill-color: #fff;
  color: #fff;
  padding: 8px 24px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.hero__link {
  color: var(--text-on-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.hero__link:hover {
  color: var(--gold);
}

.hero__badge {
  display: inline-block;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 32px;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 40px;
}

.cta-btn--outline {
  background: transparent;
  color: #ec0075;
  border: 2px solid #ec0075;
  box-shadow: 0 4px 16px rgba(236, 0, 117, 0.2);
}

.cta-btn--outline:hover {
  background: linear-gradient(135deg, rgba(236, 0, 117, 0.08), rgba(236, 0, 117, 0.15));
  border-color: #d00066;
  color: #d00066;
  box-shadow: 0 6px 24px rgba(236, 0, 117, 0.35);
  transform: translateY(-3px);
}

.hero__cta {
  margin-bottom: 0;
}

.trust-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 16px 24px;
  min-width: 180px;
  transition: border-color 0.3s ease;
}

.trust-card:hover {
  border-color: var(--gold);
}

.trust-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FF6B35, #E3342F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-card__text {
  display: flex;
  flex-direction: column;
}

.trust-card__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-on-dark);
}

.trust-card__label {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 197, 92, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

/* =============================================
   VSL
   ============================================= */
.vsl {
  background: var(--bg-secondary);
  padding: var(--section-padding);
}

.vsl__video {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  background: #000;
}

.vsl__overlay {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}

.vsl__overlay img {
  width: 100%;
  display: block;
}

.vsl__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 176, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  transition: transform 0.3s ease;
}

.vsl__overlay:hover .vsl__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.vsl__player {
  display: none;
  width: 100%;
}

/* =============================================
   PAIN
   ============================================= */
.pain {
  background: var(--bg-primary);
  padding: var(--section-padding);
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =============================================
   PRODUCT REVEAL
   ============================================= */
.reveal {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.reveal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reveal__content {
  color: var(--text-on-light);
}

.reveal__content .eyebrow {
  color: var(--gold-dark);
}

.reveal__content .section-title {
  color: var(--text-on-light);
}

.reveal__text {
  font-size: 1.05rem;
  color: var(--text-on-light-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.bullet-list {
  margin-bottom: 32px;
}

.bullet-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-on-light-muted);
}

.bullet-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.reveal__content .cta-btn--primary {
  background: var(--cta-primary);
}

/* =============================================
   CANVA PROCESS
   ============================================= */
.process {
  background: var(--bg-primary);
  padding: var(--section-padding);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =============================================
   PREVIEW GALLERY
   ============================================= */
.gallery {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.gallery .section-title,
.gallery .section-sub {
  color: var(--text-on-light);
  text-align: center;
}

.gallery .section-sub {
  color: var(--text-on-light-muted);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.gallery__item {
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-primary);
  border: 1px solid #E0E0E0;
}

.gallery__item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__note {
  font-size: 0.95rem;
  color: var(--text-on-light-muted);
  margin-bottom: 24px;
  text-align: center;
}

.gallery__cta {
  text-align: center;
}

/* =============================================
   WHY IT WORKS
   ============================================= */
.why {
  background: var(--bg-primary);
  padding: var(--section-padding);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =============================================
   OFFER STACK
   ============================================= */
.offer {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.offer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offer__content {
  color: var(--text-on-light);
}

.offer__content .eyebrow {
  color: var(--gold-dark);
}

.offer__content .section-title {
  color: var(--text-on-light);
}

.checklist {
  margin-bottom: 32px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-on-light-muted);
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.offer__content .cta-btn--primary {
  background: var(--cta-primary);
}

/* =============================================
   PLR RIGHTS
   ============================================= */
.plr {
  background: var(--bg-primary);
  padding: var(--section-padding);
}

.plr__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.plr__text {
  font-size: 1.05rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.rights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.rights-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}

.rights-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* =============================================
   BONUSES
   ============================================= */
.bonuses {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.bonuses .section-title {
  color: var(--text-on-light);
}

.bonuses .section-sub {
  color: var(--text-on-light-muted);
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee {
  background: var(--bg-primary);
  padding: var(--section-padding);
}

.guarantee__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.guarantee__seal img {
  width: 220px;
  height: auto;
}

.guarantee__text {
  font-size: 1.05rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: var(--bg-light);
  padding: var(--section-padding);
}

.faq .section-title {
  color: var(--text-on-light);
}

.faq__list {
  text-align: left;
}

.faq__item {
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--bg-primary);
  overflow: hidden;
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-on-light);
  text-align: left;
  background: var(--bg-primary);
  transition: background 0.2s ease;
}

.faq__trigger:hover {
  background: #F0F0F0;
}

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--gold-dark);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--text-on-light-muted);
  line-height: 1.7;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final {
  background: var(--bg-primary);
  padding: var(--section-padding);
  text-align: center;
}

.final__mockup {
  margin: 0 auto 40px;
  max-width: 700px;
}

.final__cta {
  margin-bottom: 32px;
}

.final__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.final__warrior-disclaimer {
  font-size: 1.2rem;
  color: var(--text-on-dark-muted);
  max-width: 900px;
  margin: 24px auto 0;
  line-height: 1.6;
  text-align: center;
}

.final__trust span {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}

.final__trust span::before {
  content: "\2713 ";
  color: var(--gold);
  font-weight: 700;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #F0F0F0;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-on-dark);
}

.footer__support {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 4px;
}

.footer__support a {
  color: var(--gold);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 16px;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox__close:hover {
  color: var(--gold);
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__sub {
    max-width: 100%;
  }

  .hero__headline {
    font-size: 2.2rem;
  }

  .trust-row {
    justify-content: center;
  }

  .hero__image {
    order: -1;
  }

  .pain__grid,
  .process__grid,
  .why__grid,
  .bonuses__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reveal__inner,
  .offer__inner,
  .plr__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .reveal__content .section-title--left,
  .offer__content .section-title--left,
  .plr__content .section-title--left {
    text-align: center;
  }

  .guarantee__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee__seal img {
    margin: 0 auto;
  }

  .rights-list {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 640px) {
  :root {
    --section-padding: 56px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-sub {
    font-size: 0.95rem;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero__headline {
    font-size: 1.65rem;
  }

  .hero__badge {
    font-size: 0.65rem;
    padding: 10px 20px;
  }

  .hero__sub {
    font-size: 0.95rem;
  }

  .cta-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 0.9rem;
  }

  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .trust-card {
    width: 100%;
    max-width: 280px;
  }

  .pain__grid,
  .process__grid,
  .why__grid,
  .bonuses__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vsl__play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .guarantee__seal img {
    width: 160px;
  }

  .final__mockup {
    max-width: 100%;
  }

.checkout {
  text-align: center;
}

.final__cta-wrap {
  margin: 0 !important;
  padding: 0;
  display: block;
  width: 100%;
  text-align: center;
}

.final__cta-wrap a {
  display: inline-block;
  margin: 0 auto;
}

.final__trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
