:root {
  --ink: #28011f;
  --paper: #fff;
  --accent: #ff65f2;
  --accent2: #ffb703;
  --muted: #6b6b7b;
  --card-bg: #f0f0ea;
  --border: #e0e0d8;
  --gradient: linear-gradient(135deg, #f756d2 0%, #54cef4 100%);
  --gradient2: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
  --gradient1: linear-gradient(135deg, #a23288 0%, #2b8aa8 100%);
  --gradient-3: linear-gradient(135deg, #29a1c7 0%, #bd389f 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── NAV ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: box-shadow .3s;
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
}

.nav-brand span {
  color: var(--accent);
}

.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 24px !important;
  font-weight: 600;
  font-size: .875rem;
  transition: opacity .2s, transform .2s;
}

.nav-cta:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: var(--gradient1);
 
  color: #fff;
  display: flex;
  align-items: center;
  padding: 20px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 77, 28, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 77, 28, .07) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 28, .15);
  border: 1px solid rgba(255, 77, 28, .35);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  opacity: 0;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.hero-h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: #000;
  opacity: 0;
}

.hero-h1 .accent-txt {
  background: linear-gradient(135deg, #a23288 0%, #2b8aa8 100%);
   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #000;
  margin-top: 0px;
  /* opacity: 0; */
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0px;
  /* opacity: 0; */
}

.hero-tag {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 0px;
  border-radius: 50px;
}

.hero-cta-group {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
}

.btn-primary-hero {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(3, 150, 174, 0.4);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 77, 28, .5);
}







.btn-primary-hero1 {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 10px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(3, 150, 174, 0.4);
}

.btn-primary-hero1:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 14px 40px rgba(255, 77, 28, .5); */
}







.btn-outline-hero {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.btn-outline-hero:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .05);
}

.hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  opacity: 0;
}

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat-num span {
  color: var(--accent);
}

.hero-stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
}

.hero-card-main {
  background: var(--gradient1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.hero-card-main h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 18px;
}

.prompt-pill {
  background: rgba(28, 202, 255, 0.12);
  border: 1px solid rgba(28, 255, 255, 0.25);
  border-radius: 10px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, .8);
  font-size: 1.0rem;
  font-family: monospace;
  margin-bottom: 10px;
}

.prompt-pill .label {
  color: #8ce5ff;
  font-weight: 700;
  margin-right: 6px;
}

.floating-badge {
  position: absolute;
  background: var(--gradient);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 77, 28, .4);
}

.fb-1 {
  top: -18px;
  right: 20px;
}

.fb-2 {
  bottom: -18px;
  left: 20px;
  background: var(--gradient);
  /* box-shadow: 0 10px 30px rgba(255, 183, 3, .4); */
}

/* ── SECTION WRAPPER ──────────────────────────────── */
.section-py {
  padding: 40px 0;
}

.section-label {
  display: inline-block;
  font-size: 2.3rem;
  font-weight: 700;
  /* letter-spacing: .12em;
  text-transform: uppercase; */
  color: #ae00a0;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: var(--ink);
}

.section-desc {
  font-size: 1.0rem;
  color: var(--muted);
  /* max-width: 600px; */
}

/* ── PROBLEM SECTION ──────────────────────────────── */
.problem-section {
  background: var(--paper);
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform .25s, box-shadow .25s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .07);
}

.problem-card1 {
  /* background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px; */
  display: flex;
  /* align-items: flex-start; */
  gap: 16px;
  /* transition: transform .25s, box-shadow .25s; */
}

.problem-card1:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, .07); */
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.problem-text h5 {
  font-size: .95rem;
  margin-bottom: 4px;
}

.problem-text p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
}

/* ── SOLUTION SECTION ─────────────────────────────── */
.solution-section {
  background: var(--gradient1);
  color: #fff;
}

.solution-section .section-title {
  color: #fff;
}

.solution-section .section-desc {
  color: rgba(255, 255, 255, .6);
}

.solution-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: background .25s, transform .25s;
}

.solution-card:hover {
  background: rgba(255, 77, 28, .1);
  transform: translateY(-4px);
}

.solution-card .icon {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.solution-card h5 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}

.solution-card p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .55);
  margin: 0;
}

/* ── PRODUCT INTRO ───────────────────────────────── */
.product-intro {
  background: var(--paper);
}

.product-hero-box {
  background: var(--gradient1);
  border-radius: 24px;
  padding: 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 10px solid #ffffffde;
}

.product-hero-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 77, 28, .25) 0%, transparent 70%);
  pointer-events: none;
}

.product-hero-box h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.product-hero-box p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  margin-top: 16px;
}

.plr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3;
  border: 1px solid rgba(227, 82, 194, 0.66);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-top: 24px;
}

/* ── FEATURES GRID ───────────────────────────────── */
.features-section {
  background: #f5f5f0;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.feature-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, .04);
  line-height: 1;
  margin-bottom: 16px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

/* ── PROMPT CATEGORIES ───────────────────────────── */
.categories-section {
  background: var(--paper);
}

.cat-card1 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  transition: transform .22s, border-color .22s;
}

.cat-card1:hover {
  transform: translateY(-4px);
  border-color: #228fba;
}

.cat-tag {
  display: inline-block;
  background: #167bac;
  color: #FFF;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.cat-card1 h5 {
  font-size: .95rem;
  margin-bottom: 4px;
}

.cat-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #b73a9b;
}

/* ── BONUS SECTION ───────────────────────────────── */
.bonuses-section {
  background: var(--gradient1);
  position: relative;
  overflow: hidden;
}

.bonuses-section::before {
  content: 'BONUS';
  position: absolute;
  top: 40px;
  right: -30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .02);
  pointer-events: none;
  line-height: 1;
}

.bonus-card1 {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 26px;
  transition: background .2s, border-color .2s;
}

.bonus-card1:hover {
  background: rgba(255, 183, 3, .07);
  border-color: rgba(255, 183, 3, .3);
}

.bonus-num {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #79f9ff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bonus-card1 h5 {
  font-size: 1.2rem;
  line-height: 27px;
  color: #fff;
  margin-bottom: 8px;
}

.bonus-card1 p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
  margin: 0;
}

/* ── FIT CHECK ───────────────────────────────────── */
.fit-section {
  background: var(--paper);
}

.fit-card {
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}

.fit-yes {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.fit-no {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.fit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.fit-yes h3 {
  color: #166534;
}

.fit-no h3 {
  color: #9f1239;
}

.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .9rem;
}

.fit-item .icon-yes {
  color: #16a34a;
  font-size: 1.1rem;
  margin-top: 1px;
}

.fit-item .icon-no {
  color: #e11d48;
  font-size: 1.1rem;
  margin-top: 1px;
}

/* ── PLR RIGHTS ──────────────────────────────────── */
.plr-section {
  background: var(--gradient1);
}

.plr-card {
 background: #fff3;
  /* border: 1px solid var(--border); */
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .2s;
}

.plr-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, .07);
}

.plr-card .icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}

.plr-card h5 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff;
}

.plr-card p {
  font-size: .87rem;
  color: #D7D7D7;
  margin: 0;
}

/* ── 3 STEPS ─────────────────────────────────────── */
.steps-section {
  background: var(--gradient1);
  color: #fff;
}

.steps-section .section-title {
  color: #fff;
}

.steps-section .section-desc {
  color: rgba(255, 255, 255, .55);
}

.step-item {
  position: relative;
  text-align: center;
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 18px;
}

.step-item h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.step-item p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
}

.step-connector {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, .08);
  margin: 0 20px;
  align-self: center;
}

/* ── DFY MODULES ─────────────────────────────────── */
.modules-section {
  background: var(--paper);
}

.module-card1 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  /* padding: 28px; */
  /* border-left: 4px solid transparent; */
  transition: border-color .2s, box-shadow .2s;
}

.module-card1:hover {
  /* border-left-color: var(--accent); */
  box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

.module-label1 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.module-card1 h5 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.module-card1 p {
  font-size: .87rem;
  color: var(--muted);
  margin: 0;
}

/* ── GUARANTEE ───────────────────────────────────── */
.guarantee-section {
  background: var(--ink);
  color: #fff;
}

.guarantee-box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  /* max-width: 700px; */
  margin: 0 auto;
}

.guarantee-shield {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  margin: 0 auto 28px;
  box-shadow: 0 10px 40px rgba(255, 77, 28, .4);
}

.guarantee-box h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
}

.guarantee-box p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  /* max-width: 520px; */
  margin: 0 auto 10px;
}

.guarantee-note {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section {
  background: var(--paper);
}

.cta-box {
  background: var(--gradient);
  border-radius: 24px;
 padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
}

/* .cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: rgba(0, 0, 0, .08);
  border-radius: 50%;
} */

.cta-box h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.btn-cta-white {
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: 50px;
  padding: 18px 48px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  position: relative;
  z-index: 1;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .2);
}

.cta-security {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-section {
  background: #f5f5f0;
}

.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .96rem;
  background: #fff !important;
  color: var(--ink) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--accent) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: none;
}

.accordion-body {
  background: #fff;
  font-size: .9rem;
  color: var(--muted);
  padding: 0 20px 20px;
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .5);
  padding: 40px 0;
  font-size: .85rem;
  text-align: center;
}

.site-footer a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}

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

/* ── ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.94);
}

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  background: #08566f;
  padding: 10px 0;
}

.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ticker-item::after {
  content: '✦';
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@media (max-width: 768px) {
  .product-hero-box {
    padding: 36px 24px;
  }

  .cta-box {
    padding: 50px 24px;
  }

  .guarantee-box {
    padding: 40px 24px;
  }
}







.testimonial-section {
  padding: 50px 0 50px;
  background: linear-gradient(135deg, #a23288 0%, #2b8aa8 100%);
  position: relative; overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 0% 50%,  rgba(13,115,119,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 100% 20%, rgba(200,130,10,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(124,77,255,0.1)  0%, transparent 55%);
}
.testimonial-section::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.testimonial-section .container { position: relative; z-index: 1; }

/* Slider wrapper */
.ts-slider-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  position: relative;
}

/* mask fade edges */
.ts-slider-wrapper::before,
.ts-slider-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ts-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #754e8d, transparent);
}
.ts-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #3b7ea4, transparent);
}

/* Track */
.ts-track {
  display: flex;
  gap: 24px;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  padding: 12px 4px 20px;
}

/* Individual card */
.ts-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: transform .3s, box-shadow .3s, background .3s, border-color .3s;
  position: relative; overflow: hidden;
  cursor: default;
}
.ts-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-gold-lt));
  opacity: 0; transition: opacity .3s;
  border-radius: 20px 20px 0 0;
}
.ts-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
}
.ts-card:hover::before { opacity: 1; }

/* Active/center card highlight */
.ts-card.ts-active {
  background: rgba(255,255,255,0.09);
  border-color: rgba(13,115,119,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.ts-card.ts-active::before { opacity: 1; }

/* quote decoration */
.ts-card::after {
  content: '"';
  position: absolute; bottom: -24px; right: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 120px; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}

/* card top */
.ts-card-top {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}

.ts-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: .88rem; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.ts-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: .92rem; color: #fff;
  margin-bottom: 2px;
}
.ts-role {
  font-size: .72rem; color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.ts-stars {
  color: #fff;
  font-size: .78rem; letter-spacing: 1px;
  margin-top: 4px;
}

.ts-quote {
  font-size: .88rem; line-height: 1.82;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  font-style: italic;
}

.ts-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
}

/* Controls */
.ts-controls {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-bottom: 44px;
}

.ts-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.ts-btn:hover {
  background: var(--c-teal);
  border-color: var(--c-teal);
  color: #fff;
  transform: scale(1.08);
}

.ts-dots {
  display: flex; align-items: center; gap: 8px;
}
.ts-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background .25s, transform .25s, width .3s;
  border: none;
}
.ts-dot.active {
  background: rgba(255,255,255,0.2);
  width: 24px; border-radius: 4px;
  transform: none;
}

/* Stat bar */
.ts-stat-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 40px;
  backdrop-filter: blur(8px);
}
.ts-stat-item { text-align: center; padding: 8px 32px; }
.ts-stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 900;
  color: #fff; line-height: 1;
}
.ts-stat-lbl {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 5px;
}
.ts-stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

@media(max-width:991px){
  .ts-card { flex: 0 0 calc(50% - 12px); }
}
@media(max-width:600px){
  .ts-card { flex: 0 0 calc(100% - 8px); }
  .ts-slider-wrapper::before,
  .ts-slider-wrapper::after { width: 24px; }
  .ts-stat-bar { flex-direction: column; padding: 20px; }
  .ts-stat-sep { width: 60%; height: 1px; }
  .ts-stat-item { padding: 10px 0; }
}

.guarantee-shield {
  width:120px; height:120px; border-radius:50%;
  background:var(--c-green-bg);
  border:2px solid rgba(26,122,74,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:3rem; margin:0 auto 28px;
}


.earnings-section {
    background: var(--gradient-3);
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.earnings-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }










        @media (max-width: 991px) {

  html, body { overflow-x: hidden; }

  .hero-section { padding-top: 90px !important; }

  /* Logo */
  .hero-section .col-lg-12 > .text-center img {
    width: 55% !important;
    max-width: 280px;
    display: block;
    margin: 0 auto;
  }

  /* H1 */
  #heroH1 {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem) !important;
    line-height: 1.3 !important;
  }
  #heroH1 br { display: none; }

  /* Sub heading */
  #heroSub {
    font-size: clamp(1.1rem, 3vw, 1.5rem) !important;
    line-height: 1.5 !important;
  }
  #heroSub br { display: none; }

  /* Strip span */
  #heroSub span {
    display: inline-block !important;
    white-space: normal !important;
    padding: 10px 14px !important;
    font-size: inherit !important;
    line-height: 1.4;
  }

  /* Description br */
  .hero-section .col-lg-10 br { display: none; }

  /* col-lg-10 offset */
  .hero-section .col-lg-10 {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    flex: 0 0 100% !important;
  }

  /* Product image col */
  .hero-section .col-lg-7 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    text-align: center !important;
  }
  .hero-section .col-lg-7 img { max-width: 480px; margin: 0 auto; }

  /* Feature tags col */
  .hero-section .col-lg-5 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* Tags stack */
  #heroTags { flex-direction: column; gap: 8px; }
  .hero-tag { padding: 9px 14px !important; font-size: .9rem !important; }

  /* Countdown */
  #countdown { width: 100%; text-align: center; display: block; }

  /* CTA */
  .hero-section .col-lg-12 { width: 100% !important; flex: 0 0 100% !important; }
  #heroCTA { justify-content: center !important; }
  .btn-primary-hero {
    font-size: clamp(1rem, 2vw, 1.3rem) !important;
    padding: 14px 28px !important;
  }

  /* Split sections */
  .split-wrap, .split-wrap.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-wrap.reverse > * { direction: ltr; }

  /* Testimonials 2-col */
  .ts-card { flex: 0 0 calc(50% - 12px) !important; }

  .step-connector { display: none !important; }

  /* Features 2-col */
  .features-section .col-md-4 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  /* Bonuses 2-col */
  .bonuses-section .col-lg-4 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .smart-split { grid-template-columns: 1fr; }
}

/* MOBILE — 600px and below */
@media (max-width: 600px) {

  html, body { overflow-x: hidden !important; }
  .container { padding-left: 16px !important; padding-right: 16px !important; }

  .hero-section { padding-top: 30px !important; padding-bottom: 44px !important; }

  #heroH1 { font-size: clamp(1.4rem, 6.5vw, 1.8rem) !important; line-height: 1.3 !important; }
  #heroSub { font-size: clamp(.95rem, 4.5vw, 1.15rem) !important; line-height: 1.5 !important; }
  #heroSub span { font-size: clamp(.85rem, 4vw, 1rem) !important; padding: 6px 15px !important; }

  /* Logo */
  .hero-section .col-lg-12 > .text-center img {
    width: 65% !important;
    max-width: 240px;
  }

  /* Product image */
  .hero-section .col-lg-7 img { max-width: 100% !important; width: 100% !important; }

  .hero-tag { font-size: .82rem !important; padding: 9px 10px !important; }

  /* Timer */
  .timer-circle { width: 44px !important; height: 44px !important; }
  .timer-num { font-size: 1.1rem !important; }
  .timer-sep { font-size: 1.5rem !important; margin-bottom: 14px !important; }

  /* CTA */
  .btn-primary-hero {
    width: 100% !important;
    font-size: .92rem !important;
    padding: 14px 16px !important;
    text-align: center !important;
    line-height: 1.35;
  }
  #heroCTA { flex-direction: column; }

  /* Section headings */
  .section-title { font-size: clamp(1.3rem, 6vw, 1.85rem) !important; }
  .section-title br, .section-desc br, .sec-title br, .sec-body br { display: none; }

  /* All grids 1-col */
  .features-section .col-md-4,
  .bonuses-section .col-lg-4,
  .bonuses-section .col-md-6,
  .solution-section .col-md-4,
  .plr-section .col-md-6,
  .categories-section .col-md-6,
  .categories-section .col-lg-4,
  .steps-section .col-lg-4,
  .steps-section .col-md-4,
  .fit-section .col-lg-6,
  .modules-section .col-md-6,
  .modules-section .col-lg-6 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Testimonials 1-col */
  .ts-card { flex: 0 0 calc(100% - 8px) !important; }
  .ts-slider-wrapper::before,
  .ts-slider-wrapper::after { width: 16px !important; }
  .ts-stat-bar { flex-direction: column; padding: 20px 16px; }
  .ts-stat-sep { width: 60%; height: 1px !important; }
  .ts-stat-item { padding: 10px 0; }

  .plr-card { flex-direction: column; gap: 12px; }

  .guarantee-box { padding: 32px 20px !important; }
  .cta-outer { padding: 36px 20px !important; }

  /* Bonus images */
  .bonus-card1 img:first-child { width: 40% !important; display: block; margin: 0 auto 8px; }

  .timer-strip { flex-wrap: wrap; gap: 8px; padding: 10px 12px; }
  .timer-strip .offer { font-size: 14px; }

  .audience-grid { grid-template-columns: 1fr; }

  .smart-split { grid-template-columns: 1fr; }
  .split-wrap, .split-wrap.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-wrap.reverse > * { direction: ltr; }
}

/* EXTRA SMALL — 375px */
@media (max-width: 375px) {
  #heroH1 { font-size: 1.38rem !important; }
  #heroSub { font-size: .92rem !important; }
  .btn-primary-hero { font-size: .85rem !important; padding: 12px 14px !important; }
  .section-title { font-size: 1.25rem !important; }
  .timer-circle { width: 38px !important; height: 38px !important; }
  .timer-num { font-size: .9rem !important; }
}