/* =====================================================================
   ProfitBrand AI — Complete Sales Page Stylesheet
   VJ Tech Labs © 2025
   
   CONTENTS:
   1. Bootstrap Overrides & Base Reset
   2. CSS Variables & Utilities  
   3. Top Bar
   4. Hero / Welcome Section
   5. Story Sections (create-section variants)
   6. Components — Cards, Grids, Buttons, Timers
   7. Features, Options, Packages, Bonuses
   8. FAQ, Guarantee, Price Table
   9. Exit Popup & Order Bump
   10. Footer
===================================================================== */

/* =====================================================================
   BOOTSTRAP CONFLICT OVERRIDES
   Bootstrap Reboot touches body, img, a, ul, p, h1-h6, container.
   These rules restore our design. Load order: Bootstrap → this file.
===================================================================== */

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

html {
  scroll-behavior: smooth
}

/* Body — Bootstrap sets its own font stack; we override */
body {
  font-family: 'Poppins', sans-serif !important;
  background: #fff !important;
  color: #1a1a1a !important;
  line-height: 1.6 !important;
  overflow-x: hidden;
}

/* Container — Bootstrap makes .container responsive with breakpoints.
   We use a simple fixed 1200px — override with !important */
.container,
div.container {
  max-width: 1200px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
padding-left: 10px !important;
  padding-right: 10px !important;
}

.container-sm {
  max-width: 900px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Bootstrap .row adds negative margins — kills our grid layouts */
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* img — Bootstrap Reboot sets display:inline-block; we need block */
img {
  display: block;
  max-width: 100%;
  height: auto
}

/* Links — Bootstrap sets hover color */
a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  color: inherit
}

/* Lists — already none but Bootstrap adds margin; zero it */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0
}

/* Headings — Bootstrap adds margin-bottom */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif
}

/* Paragraphs — Bootstrap adds margin-bottom */
p {
  margin-top: 0;
  margin-bottom: 0
}

/* strike */
strike {
  color: #999
}

/* Bootstrap hr */
hr {
  margin: 0;
  opacity: 1
}

/* Buttons */
button,
input,
select,
textarea {
  font-family: 'Poppins', sans-serif
}

/* Bootstrap sets .text-center — we also use it, should be compatible */
.text-center {
  text-align: center !important
}

/* =====================================================================
   END BOOTSTRAP OVERRIDES — our full custom CSS continues below
===================================================================== */

/* =====================================================================
   CSS VARIABLES
===================================================================== */
:root {
  --red: #e8292a;
  --orange: #ff6b35;
  --gold: #f5a623;
  --dark: #0f0f0f;
  --mid: #0f172a;
  --purple: #7c3aed;
  --green: #16a34a;
    --white: #fff;
  --grad: linear-gradient(135deg, #e8292a 0%, #ff6b35 100%);
  --grad-dark: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
  --grad-gold: linear-gradient(135deg, #f5a623 0%, #f7931a 100%);
}

/* =====================================================================
   UTILITY
===================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px
}

.text-center {
  text-align: center
}

.hl {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.mt10 {
  margin-top: 10px
}

.mt20 {
  margin-top: 20px
}

.mt30 {
  margin-top: 30px
}

.mt40 {
  margin-top: 40px
}

.mt50 {
  margin-top: 50px
}

.mt60 {
  margin-top: 60px
}

.mt80 {
  margin-top: 80px
}

/* =====================================================================
   TOP BAR
===================================================================== */
.top-bar {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 13px 20px;
  font-size: 18px;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 3px solid var(--red);
}

.top-bar span {
  color: var(--gold)
}

/* =====================================================================
   WELCOME / HERO SECTION
===================================================================== */
.welcome-section {
  /* background: #0e0800;
  padding: 60px 0 50px; */
  position: relative;
  overflow: hidden;


background: #0e0800 url(../images/welcome.png) no-repeat center top;
  background-size: cover;
  padding: 60px 0 60px 0;
    padding-top: 0px;
  position: relative;
  overflow: hidden;



}

.welcome-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 41, 42, .05) 0%, transparent 70%);
  pointer-events: none;
}

.logo-area {
  text-align: center;
  margin-bottom: 10px
}

.logo-area .pname {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.logo-area .ptag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-top: 6px;
}

.pre-heading {
font-size: clamp(14px, 1.8vw, 18px);
  color: #666;
  text-align: center;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
padding: 7px 40px;

  background-color: rgb(255 255 255 / 10%);
  box-shadow: 0px 32px 38px 0px rgb(0 0 0 / 21%);
  border-width: 1px;
  border-color: rgb(255 255 255 / 12%);
  border-style: solid;
  border-radius: 50px;
}

.pre-heading strong {
  color: var(--gold);
  font-weight: 700
}

/* ---- HERO H1 — clean line-height, block highlights ---- */
.hero-h1 {
  font-size: clamp(24px, 3.8vw, 42px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  color: #0f0f0f;
  margin-bottom: 22px;
  letter-spacing: -.5px;
}

.hero-h1 .line {
  display: block;
  margin-bottom: 4px
}

.hero-h1 .hedli2 {
  color: var(--grad);
  font-style: italic;
  text-decoration: underline;
  /* text-decoration-color: var(--grad); */
  text-decoration-thickness: 3px;
  background: var((--grad));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-h1 .makingbox1 {
  background: var(--white);
  color: #000;
padding: 0px 10px;
  border-radius: 10px;
  display: inline-block;
  line-height: 1.4;
  margin: 2px 0;
}

.hero-h1 .effect-2 {
  /* background: var(--grad); */
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-h1 .ts-clr15 {
  color: var(--red)
}

.hero-h1 u {
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 20px);
  text-align: center;
  color: #fff;
  font-weight: 300;
  line-height: 1.85;
  /* max-width: 760px; */
  margin: 0 auto 16px;
  font-family: 'Raleway', sans-serif;
}

.hero-sub .makeover {
  font-weight: 400
}

.hero-sub strong,
.hero-sub .weight700 {
  font-weight: 700;
  color: #0f0f0f
}

.hero-sub .ts-clr4 {
  color: #0070f3
}

.hero-sub .ts-clr15 {
  color: var(--red)
}

.no-bar {
  text-align: center;
  font-size: clamp(15px, 2vw, 21px);
  font-weight: 800;
  color: #0f0f0f;
  margin: 20px 0;
  font-family: 'Barlow', sans-serif;
  background: #f4f4f4;
  border-radius: 12px;
  padding: 14px 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.no-bar .ts-clr15 {
  color: var(--red)
}

/* hero 2-col */
.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 36px;
  align-items: start;
  margin-top: 48px;
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr
  }
}

/* video frame */
.video-frame {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.video-title-bar {
  background: rgba(0, 0, 0, .75);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0px 32px 38px 0px rgba(0, 0, 0, 0.21);
  padding: 2.4%;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.12);
  border-style: solid;
  border-radius: 16px 16px 0 0;
}

.vid-embed {
  padding: 56.25% 0 0 0;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.vid-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 14px;
}

.play-big {
  width: 70px;
  height: 70px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  transition: transform .2s;
}

.play-big:hover {
  transform: scale(1.1)
}

/* li-card (first action takers banner) */
.li-card {
  /* background: #fff8f0; */
  border: 2px dashed var(--red);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  backdrop-filter: blur(16px);
}

.text-clr21 {
  color: var(--red)
}

/* CTA button */
.cta-wrap {
  text-align: center;
  margin-top: 20px
}


@media(min-width:768px) {
.action-link {
  display: inline-block;
  background: var(--grad);
  color: #fff !important;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 800;
  padding: 18px 100px;
  border-radius: 60px;
  box-shadow: 0 8px 30px rgba(232, 41, 42, .4);
  line-height: 1.35;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  animation: pulse 2.5s ease-in-out infinite;
}

.action-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 41, 42, .55);
}

.action-link span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: .9;
  margin-top: 4px
}
}

@media(max-width:768px) {
.action-link {
  display: inline-block;
  background: var(--grad);
  color: #fff !important;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 60px;
  box-shadow: 0 8px 30px rgba(232, 41, 42, .4);
  line-height: 1.35;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  animation: pulse 2.5s ease-in-out infinite;
}

.action-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 41, 42, .55);
}

.action-link span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: .9;
  margin-top: 4px
}
}



@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(232, 41, 42, .4)
  }

  50% {
    box-shadow: 0 8px 50px rgba(232, 41, 42, .7)
  }
}

.price-note {
  text-align: center;
  margin-top: 12px;
  font-size: 18px;
  color: #555;
}

.price-note .text-clr3 {
  color: var(--red);
  font-weight: 800;
  font-size: 19px
}

.guarantee-note {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}

/* countdown timer */
.timer-box {
  margin-top: 18px;
  text-align: center
}

.hurry {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px
}

.timer-wrap {
  display: flex;
  gap: 8px;
  justify-content: center
}

.t-item {
  background: var(--dark);
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 64px;
  text-align: center;
}

.t-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  display: block
}

.t-lbl {
  font-size: 10px;
  opacity: .6;
  margin-top: 3px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px
}

/* features box right side */
.features-box {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #eee;
}

.features-list .feat-item {
  display: flex;
  gap: 11px;
padding: 8px 0;
  border-bottom: 1px solid #eee;
 font-size: 16px;
  line-height: 1.4;
  color: #444;
  font-family: 'Raleway', sans-serif;
}

.features-list .feat-item:last-child {
  border-bottom: none
}

.feat-chk {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-item strong {
  display: block;
  font-weight: 700;
  color: #0f0f0f;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1px;
}

/* guarantee image replacement */
.guarantee-img-wrap {
  text-align: center;
  margin-top: 14px;
}

.guarantee-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #166534;
}

/* wave divider */
.wave-bottom {
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,60 C300,0 900,60 1200,0 L1200,60 Z' fill='%23f8f8f8'/%3E%3C/svg%3E");
  background-size: cover;
  height: 60px;
  margin-bottom: -1px;
}

/* =====================================================================
   ENDS TIMER BAR (pink strip)
===================================================================== */
.ends-bar {
  background: var(--dark);
  color: var(--gold);
  text-align: center;
padding: 14px 20px;
  font-size: clamp(15px, 1.9vw, 26px);
  font-weight: 800;
}

/* =====================================================================
   SECTION PATTERNS — mirrors InfluAIcer classes
===================================================================== */
/* create-section3 = light gray bg */
.create-section3 {
  background: #f4f4f4;
  padding: 70px 0
}

/* testimonials-section = dark bg */
.testimonials-section {
  background: var(--dark);
  padding: 80px 0
}

/* swiper-section = white */
.swiper-section {
  background: #fff;
  padding: 80px 0
}

/* step-section = white */
.step-section {
background: url(../images/step-section.png) no-repeat center top;
  background-size: cover;
 background-attachment: fixed;
  padding: 80px 0
}

/* create-section = white */
.create-section {
background: url(../images/create-section.png) no-repeat center top;
  background-size: cover;
  padding: 60px 0 60px 0;
  padding: 80px 0
}

/* create-section1 = very light */
.create-section1 {
background: url(../images/create-section1.png) no-repeat center top;
  background-size: cover;

  padding: 80px 0
}

/* create-section2 = dark navy */
.create-section2 {
  background: #0f172a;
  padding: 80px 0
}

/* introducing-section = very light */
.introducing-section {
background: url(../images/intro.png) no-repeat center top;
    background-size: auto;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

/* watch-section = dark */
.watch-section {
  background: var(--dark);
  padding: 80px 0
}

/* tool-features = dark navy */
.tool-features {
  background: #0f172a;
  padding: 80px 0
}

/* create-section8 = dark */
.create-section8 {
  background: var(--dark);
  padding: 80px 0
}

/* thinking-section1 = white */
.thinking-section1 {
  background: #fff;
  padding: 80px 0
}

/* bonus-section = dark */
.bonus-section {
  background: #0a0a1a;
  padding: 80px 0
}

/* money-section = dark navy */
.money-section {
  background: #0f172a;
  padding: 60px 0
}

/* price-table = white */
.price-table {
background: url(../images/price-table.png) no-repeat center top;
    background-size: auto;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0
}

/* ready = light */
.ready {
  background: #f9f9f9;
  padding: 80px 0
}

/* success-section = white */
.success-section {
  background: #fff;
  padding: 80px 0
}

/* faq-section = dark */
.faq-section {
  background: var(--dark);
  padding: 80px 0
}

/* cata-buy-button = light */
.cata-buy-button {
  background: #f4f4f4;
  padding: 70px 0
}

@media(max-width:768px) {

  .create-section,
  .create-section1,
  .create-section2,
  .create-section3,
  .create-section8,
  .step-section,
  .swiper-section,
  .testimonials-section,
  .introducing-section,
  .watch-section,
  .tool-features,
  .thinking-section1,
  .bonus-section,
  .money-section,
  .price-table,
  .ready,
  .success-section,
  .faq-section,
  .cata-buy-button {
    padding: 50px 0
  }
}

/* =====================================================================
   SECTION TYPOGRAPHY HELPERS
===================================================================== */
.sec-badge {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
  margin-bottom: 10px;
}

.sec-h {
  font-size: clamp(24px, 3.8vw, 46px);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: #0f0f0f;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}

.sec-h.wh {
  color: #fff
}

.sec-h .effect-2 {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-h .effect-5 {
  color: var(--gold)
}

.sec-p {
  font-size: clamp(14px, 1.9vw, 18px);
  font-weight: 300;
  color: #555;
  text-align: center;
  line-height: 1.75;
/* max-width: 900px; */
max-width: 700px;
  margin: 0 auto;
  font-family: 'Raleway', sans-serif;
}

.sec-p.wh {
  color: rgba(255, 255, 255, .75)
}

/* =====================================================================
   SOCIAL PROOF / CHANNEL CARDS
===================================================================== */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}

@media(max-width:768px) {
  .channel-grid {
    grid-template-columns: 1fr
  }
}

.ch-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  border: 1px solid #eee;
}

.ch-bar {
  height: 4px
}

.ch-body {
  padding: 22px
}

.ch-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.ch-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ch-name {
  font-weight: 800;
  font-size: 18px;
  color: #0f0f0f
}

.ch-niche {
  font-size: 12px;
  color: #888;
  font-family: 'Raleway', sans-serif
}

.platform-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: .5px;
}

.ch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

.ch-stat {
  padding: 12px 8px;
  text-align: center
}

.ch-stat:not(:last-child) {
  border-right: 1px solid #f0f0f0
}

.ch-stat .sv {
  font-size: 17px;
  font-weight: 900;
  color: #0f0f0f;
  line-height: 1
}

.ch-stat .sl {
  font-size: 10px;
  color: #aaa;
  font-family: 'Raleway', sans-serif;
  margin-top: 3px
}

.ch-stat .sv.red {
  color: var(--red)
}

.ch-stat .sv.grn {
  color: var(--green)
}

.ch-income {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 13px;
  font-size: 18px;
  color: #444;
  font-family: 'Raleway', sans-serif;
  line-height: 1.9;
}

.ch-quote {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
  font-family: 'Raleway', sans-serif;
}

.ch-footer {
  display: flex;
  align-items: center;
  gap: 10px
}

.ch-user-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.ch-user-name {
  font-weight: 700;
  font-size: 18px
}

.ch-user-role {
  font-size: 14px;
  color: #888
}

.ch-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 13px;
  white-space: nowrap
}

.earnings-banner {
  background: var(--grad-dark);
  border-radius: 16px;
  padding: 30px 36px;
  margin-top: 36px;
  text-align: center;
}

.eb-label {
font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 15px;
}

.eb-amount {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1
}

.eb-sub {
font-size: 18px;
  color: rgba(255, 255, 255);
  margin-top: 10px;
  font-family: 'Raleway', sans-serif;
}

/* =====================================================================
   VIDEO TESTIMONIAL CARDS (AI brand showcase cards)
===================================================================== */
.testi-card-ml,
.testi-card-mr {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
  border: 1px solid #eee;
  margin-bottom: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.testi-card-ml {
  flex-direction: row
}

.testi-card-mr {
  flex-direction: row-reverse
}

@media(max-width:768px) {

  .testi-card-ml,
  .testi-card-mr {
    flex-direction: column;
    gap: 24px;
    padding: 24px
  }
}

.brand-showcase {
  flex: 0 0 260px;
  background: var(--grad-dark);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.brand-showcase .bs-header {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand-showcase .bs-icon {
  font-size: 32px;
  margin-bottom: 8px
}

.brand-showcase .bs-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff
}

.brand-showcase .bs-niche {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  font-family: 'Raleway', sans-serif
}

.brand-showcase .bs-stats {
  padding: 14px 20px
}

.bs-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.bs-stat-row:last-child {
  border: none
}

.bs-stat-row .bsk {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  font-family: 'Raleway', sans-serif
}

.bs-stat-row .bsv {
  font-size: 14px;
  font-weight: 700;
  color: #fff
}

.bs-stat-row .bsv.gold {
  color: var(--gold)
}

.bs-stat-row .bsv.grn {
  color: #4ade80
}

.brand-story {
  flex: 1
}

.brand-story .platform-tag {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.brand-story h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: #0f0f0f;
  margin-bottom: 14px;
  line-height: 1.3;
}

.brand-story p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  margin-bottom: 12px;
}

.brand-story .quote {
  background: #f9f9f9;
  border-left: 4px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
font-size: 16px;
  font-style: italic;
  color: #333;
  font-family: 'Raleway', sans-serif;
  line-height: 1.7;
}

.brand-story .author-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.author-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
font-size: 18px;
  color: #0f0f0f
}

.author-role {
  font-size: 14px;
  color: #888
}

.author-stars {
  color: var(--gold);
  font-size: 13px;
  margin-left: auto
}

/* =====================================================================
   SWIPER / DEMO SECTION
===================================================================== */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media(max-width:768px) {
  .demo-grid {
    grid-template-columns: 1fr
  }
}

.demo-card {
  background: var(--grad-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.demo-card .dc-header {
  padding: 16px 18px;
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  gap: 10px;
  align-items: center;
}

.dc-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.dc-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

.dc-niche {
  font-size: 18px;
  color: rgba(255, 255, 255, .5);
  font-family: 'Raleway', sans-serif
}

.demo-card .dc-body {
  padding: 16px 18px
}

.dc-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px;
}

.dc-metric:last-child {
  border: none
}

.dc-metric .dk {
  color: rgba(255, 255, 255, .5);
  font-family: 'Raleway', sans-serif
}

.dc-metric .dv {
  font-weight: 700;
  color: #fff
}

.dc-metric .dv.gold {
  color: var(--gold)
}

/* =====================================================================
   3 STEPS SECTION
===================================================================== */
.step-section .container {
  max-width: 1260px !important;
  margin-left: auto;
  margin-right: auto;
padding: 0 20 !important;
}
.steps-wrapper {
  margin-top: 60px
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 60px; */
  gap: 14px;
  align-items: center;
  margin-bottom: 60px;
}

.step-row.rev {
  direction: rtl
}

.step-row.rev>* {
  direction: ltr
}

@media(max-width:768px) {

  .step-row,
  .step-row.rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
    margin-bottom: 40px;
  }
}

.step-img-box {
  background: var(--grad-dark);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255, 255, 255, .07);
  position: relative;
  overflow: hidden;
}

.step-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 41, 42, .08), rgba(255, 107, 53, .05));
}

.step-number-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.step-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase
}

.step-content h3 {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 800;
  color: #0f0f0f;
  margin-bottom: 16px;
  line-height: 1.3;
}

.step-content p {
  font-size: 18px;
  color: #555;
line-height: 1.4;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  margin-bottom: 12px;
}

.step-check-list {
  margin: 14px 0
}

.step-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 18px;
  color: #444;
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
}

.schk {
  width: 20px;
  height: 20px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-divider {
  text-align: center;
  margin: 10px 0 40px
}

.step-divider .arrow-down {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
}

/* =====================================================================
   CTA BLOCK (reusable)
===================================================================== */
.cta-card {
  background: #fff;
  border-radius: 22px;
padding: 50px 40px 0 40px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
  text-align: center;
 max-width: 900px;
  margin: 0 auto;
  border: 2px solid #eee;
}

.cta-card h3 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 900;
  color: #0f0f0f;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-price-line {
  font-size: 22px;
  color: #555;
  margin: 10px 0
}

.cta-price-line .big {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--red)
}

@media(max-width:768px) {
  .cta-card {
   padding: 30px 20px 0px 20px;
  }
}

/* =====================================================================
   STORY / NARRATIVE SECTIONS (2-col)
===================================================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-grid.rev {
  direction: rtl
}

.story-grid.rev>* {
  direction: ltr
}

@media(max-width:768px) {

  .story-grid,
  .story-grid.rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
}

.story-visual {
  background: var(--grad-dark);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  color: rgba(255, 255, 255, .06);
  position: relative;
  overflow: hidden;
}

.story-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 41, 42, .06), transparent);
}

.story-badge {
  display: inline-block;
  background: rgba(232, 41, 42, .1);
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.story-badge.wh {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8)
}

.story-h {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 900;
  color: #0f0f0f;
  margin-bottom: 18px;
  line-height: 1.35;
  letter-spacing: -.2px;
}

.story-h.wh {
  color: #fff
}

.story-h .effect-2 {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-p {
font-size: 18px;
  font-weight: 300;
  color: #444;
  line-height: 1.45;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
}

.story-p.wh {
  color: rgba(255, 255, 255, .8)
}

.story-p strong,
.story-p b {
  font-weight: 700;
  color: #0f0f0f
}

.story-p.wh strong,
.story-p.wh b {
  color: #fff
}

.story-ul {
  margin: 16px 0
}

.story-ul li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 12px;
font-size: 18px;
  color: #333;
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
}

.story-ul li.wh {
  color: rgba(255, 255, 255, .8)
}

.chk-i {
  width: 22px;
  height: 22px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 2px;
}

.chk-i.dk {
  background: var(--grad-dark)
}

/* =====================================================================
   FEATURES TOOL BOXES (InfluAIcer-style alternating)
===================================================================== */
.tool-box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 30px;
}

.tool-box.flipped {
  direction: rtl
}

.tool-box.flipped>* {
  direction: ltr
}

@media(max-width:768px) {

  .tool-box,
  .tool-box.flipped {
    grid-template-columns: 1fr;
    direction: ltr;
    padding: 28px 20px;
    gap: 24px;
  }
}

.tool-feat-title {
  font-size: clamp(17px, 2.3vw, 24px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1.3;
}

.tool-feat-desc {
font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.8;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
}

.tool-visual {
  background: rgba(255, 255, 255, .04);
  border-radius: 14px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  border: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .12);
}

/* =====================================================================
   PACKAGE BOX (everything included)
===================================================================== */
.pkg-box {
  background: #fff;
  border-radius: 22px;
  padding: 50px;
  max-width: 840px;
  margin: 50px auto 0;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .1);
  border: 2px solid #eee;
}

@media(max-width:768px) {
  .pkg-box {
    padding: 28px 18px
  }
}

.pkg-item {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.pkg-item:last-of-type {
  border-bottom: none
}

.pkg-chk {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-name {
  font-size: 18px;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 3px
}

.pkg-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  font-family: 'Raleway', sans-serif;
  font-weight: 300
}

.pkg-val {
  margin-left: auto;
  color: var(--purple);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 10px;
}

.total-box {
  background: var(--grad-dark);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 28px;
}

.tv-lbl {
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  margin-bottom: 6px
}

.tv-amt {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1
}

.tv-today {
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  margin: 10px 0 4px
}

.tv-was {
  color: rgba(255, 255, 255, .4);
  font-size: 18px
}

.tv-otf {
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900
}

/* =====================================================================
   OPTION BOXES (package components — InfluAIcer style)
===================================================================== */
.option-box {
  background: var(--grad-dark);
  border-radius: 20px;
  padding: 44px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.option-box2 {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 44px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  direction: rtl;
}

.option-box2>* {
  direction: ltr
}

@media(max-width:768px) {

  .option-box,
  .option-box2 {
    grid-template-columns: 1fr;
    direction: ltr;
    padding: 28px 20px;
    gap: 24px;
  }
}

.opt-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3
}

.opt-title.wh {
  color: #fff
}

.opt-title.dk {
  color: #0f0f0f
}

.opt-desc {
font-size: 18px;
  line-height: 1.8;
  font-family: 'Raleway', sans-serif;
  font-weight: 300
}

.opt-desc.wh {
  color: rgba(255, 255, 255, .75)
}

.opt-desc.dk {
  color: #555
}

.opt-val {
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 700;
  margin-top: 16px
}

.opt-val.wh {
  color: #fff
}

.opt-val.gold {
  color: var(--gold)
}

.opt-visual {
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.opt-visual2 {
  background: rgba(0, 0, 0, .06);
  border-radius: 14px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  border: 1px solid rgba(0, 0, 0, .06);
}

/* =====================================================================
   BONUS SECTION
===================================================================== */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px
}

.bonus-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

@media(max-width:768px) {
  .bonus-card {
    flex-direction: column
  }
}

.bonus-num {
background: var(--grad);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 10px 20px 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 1px;
  margin-top: 3px;
    margin-bottom: 15px;
  display: inline-block;
}

.bonus-title {
font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.bonus-desc {
  font-size: 18px;
  color: rgba(255, 255, 255);
  line-height: 1.7;
  font-family: 'Raleway', sans-serif;
  font-weight: 300
}

.bonus-val {
  color: var(--gold);
  font-weight: 700;
font-size: 20px;
  margin-top: 8px
}

/* =====================================================================
   GUARANTEE BOX
===================================================================== */
.guarantee-box {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: 0 10px 50px rgba(0, 0, 0, .08);
  border: 2px solid #f0f0f0;
  max-width: 900px;
  margin: 40px auto 0;
}

@media(max-width:768px) {
  .guarantee-box {
    flex-direction: column;
    padding: 28px 20px;
    text-align: center
  }
}

.g-badge {
  width: 140px;
  height: 140px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
}

.g-badge .gdays {
  font-size: 42px;
  font-weight: 900;
  line-height: 1
}

.g-badge .glbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .9
}

.g-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: #0f0f0f;
  margin-bottom: 14px
}

.g-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  margin-bottom: 10px
}

/* =====================================================================
   MONEY BOX (InfluAIcer style dark guarantee)
===================================================================== */
.money-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.money-card hr {
  border-color: rgba(255, 255, 255, .1);
  margin: 40px 0
}

.money-card p {
  font-size: 18px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  margin-bottom: 12px
}

/* =====================================================================
   PRICE TABLE / RECAP
===================================================================== */
.cta-upgrade-box {
  background: var(--grad-dark);
  border-radius: 22px;
  padding: 50px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .15);
}

@media(max-width:768px) {
  .cta-upgrade-box {
    padding: 28px 18px
  }
}

.features-td-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
  font-family: 'Raleway', sans-serif;
}

.features-td-list li span {
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 3px;
  font-family: 'Poppins', sans-serif
}

.features-td-list li .purple-clr1 {
  color: var(--gold)
}

.features-td-list li:last-child {
  border-bottom: none
}

/* =====================================================================
   FAQ
===================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media(max-width:768px) {
  .faq-grid {
    grid-template-columns: 1fr
  }
}

.faq-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  padding: 24px;
}

.faq-q {
font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.4
}

.faq-a {
font-size: 18px;
  color: rgba(255, 255, 255);
  line-height: 1.75;
  font-family: 'Raleway', sans-serif;
  font-weight: 300
}

/* =====================================================================
   WHO IT'S FOR GRID
===================================================================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media(max-width:768px) {
  .who-grid {
    grid-template-columns: 1fr
  }
}

.who-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  text-align: center;
}

.who-card .ico {
  font-size: 34px;
  margin-bottom: 12px
}

.who-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f0f0f;
  margin-bottom: 9px
}

.who-card p {
  font-size: 18px;
  color: #666;
  line-height: 1.65;
  font-family: 'Raleway', sans-serif;
  font-weight: 300
}

/* =====================================================================
   INTRO BADGE
===================================================================== */
.intro-badge {
  display: inline-block;
  background: rgba(232, 41, 42, .12);
  border: 1px solid rgba(232, 41, 42, .25);
color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* =====================================================================
   PS SECTION
===================================================================== */
.ps-section {
  background: #f9f9f9;
  padding: 50px 0
}

.ps-item {
  max-width: 800px;
  margin: 0 auto 14px;
  font-size: 18px;
  color: #333;
  line-height: 1.65;
  font-family: 'Raleway', sans-serif;
}

.ps-item strong {
  color: var(--red);
  font-size: 17px
}

/* =====================================================================
   FOOTER
===================================================================== */
footer {
  background: #080808;
  padding: 50px 20px 32px;
  text-align: center;
  border-top: 1px solid #1e1e1e;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}

.footer-links {
display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-links a {
  color: #fff;
  font-size: 18px;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--red)
}

.footer-copy {
color: #fff;
  font-size: 16px;
  line-height: 1.7;
  max-width: 1020px;
  margin: 0 auto;
  font-family: 'Raleway', sans-serif;
}

/* =====================================================================
   MISC HELPERS
===================================================================== */
.t-g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.yellow-clr {
  color: var(--gold)
}

.pink-clr {
  color: var(--red)
}

.purple-clr1 {
  color: var(--purple)
}

.text-clr3 {
  color: var(--red)
}

.red-clr {
  color: var(--red)
}

.leyer-box7 {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================================
   FINAL BOOTSTRAP SAFETY NET
   Bootstrap 5 defines many utility classes with !important.
   These rules ensure our layout-critical classes always win.
===================================================================== */

/* Our section wrapper classes must not be altered by Bootstrap display utilities */
.welcome-section,
.create-section,
.create-section1,
.create-section2,
.create-section3,
.create-section8,
.step-section,
.swiper-section,
.testimonials-section,
.introducing-section,
.watch-section,
.tool-features,
.thinking-section1,
.bonus-section,
.money-section,
.price-table,
.ready,
.success-section,
.faq-section,
.cata-buy-button,
.sec-white,
.sec-light,
.sec-dark,
.sec-midblue,
.sec-red,
.ps-sec {
  display: block;
}

/* Bootstrap .text-center uses !important — keep ours aligned */
.text-center {
  text-align: center !important
}

/* Ensure our action-link / cta-btn stays inline-block, not overridden */
.action-link,
.cta-btn {
  display: inline-block !important;
}

/* Story grid — ensure CSS Grid is not overridden by Bootstrap's Flexbox */
.story-grid,
.hero-grid,
.steps-grid,
.who-grid,
.channel-grid,
.feat-grid,
.faq-grid,
.demo-grid,
.track-record-grid,
.leaderboard-grid {
  display: grid !important;
}

/* Guarantee flex on items that need it */
.feat-row,
.ch-header,
.ch-stats,
.ch-footer,
.feat-chk,
.guarantee-badge-inline,
.timer-wrap,
.header-link,
.step-num-title,
.bonus-card,
.g-badge,
.pkg-item,
.promo-list li,
.chk-list li,
.story-ul li,
.promote-tick li {
  display: flex !important;
}

/* Ensure our section backgrounds don't get wiped */
.sec-dark,
.create-section2,
.testimonials-section,
.watch-section,
.tool-features,
.create-section8,
.bonus-section,
.faq-section,
.sec-midblue,
.money-section,
.need-section {
  background: var(--dark);
}

.sec-dark {
  background: var(--dark)
}

.create-section2,
.sec-midblue,
.tool-features,
.money-section,
.need-section {
  background: #0f172a
}

.testimonials-section,
.watch-section,
.create-section8,
.bonus-section,
.faq-section {
  background: #0f0f0f
}

/* ===== SECTION BREAK ===== */

.order-bump-box {
  background: #fcf8e3;
  border: 3px dashed #0f0f0f;
  border-radius: 12px;
  padding: 18px 22px;
  max-width: 100%;
  margin: 24px auto 0;
}

.ob-yes-row {
  background: #ffffcc;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.ob-yes-row img {
  width: 24px;
  height: 24px;
  flex-shrink: 0
}

.ob-checkbox {
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #e8292a;
}

.ob-body {
  padding: 0 4px
}

.ob-body p {
  font-size: 13px;
  color: #333;
  font-family: 'Raleway', sans-serif;
  line-height: 1.7;
  margin-bottom: 6px
}

.ob-price {
  color: #16a34a;
  font-weight: 800
}

/* ===== SECTION BREAK ===== */

#exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#exit-popup-overlay.active {
  display: flex;
}

#exit-popup {
  background: #fff;
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
  animation: popIn .35s cubic-bezier(.175, .885, .32, 1.275);
}

@keyframes popIn {
  from {
    transform: scale(.85);
    opacity: 0
  }

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

#exit-popup .ep-top {
  background: linear-gradient(135deg, #e8292a, #ff6b35);
  padding: 24px 30px 20px;
  text-align: center;
}

#exit-popup .ep-top .ep-wait {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 8px;
}

#exit-popup .ep-top h3 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

#exit-popup .ep-body {
padding: 20px 20px;
  text-align: center;
}

#exit-popup .ep-body .ep-dont {
  font-size: 24px;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 6px;
}

#exit-popup .ep-body .ep-offer {
  font-size: 14px;
  color: #666;
  font-family: 'Raleway', sans-serif;
  line-height: 1.7;
  margin-bottom: 20px;
}

#exit-popup .ep-coupon {
background: #fff8f0;
  border: 2px dashed #e8292a;
  border-radius: 12px;
  padding: 8px 20px 1px 20px;
  margin-bottom: 10px;
  display: inline-block;
}

#exit-popup .ep-coupon .ep-c-label {
  font-size: 12px;
  font-weight: 700;
  color: #e8292a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

#exit-popup .ep-coupon .ep-c-code {
  font-size: 26px;
  font-weight: 900;
  color: #0f0f0f;
  letter-spacing: 3px;
}

#exit-popup .ep-claim {
  display: inline-block;
  background: linear-gradient(135deg, #e8292a, #ff6b35);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(232, 41, 42, .4);
  transition: transform .2s;
  margin-bottom: 14px;
  border: none;
  width: 100%;
}

#exit-popup .ep-claim:hover {
  transform: translateY(-2px)
}

#exit-popup .ep-close-link {
  font-size: 13px;
  color: #aaa;
  cursor: pointer;
  display: block;
  font-family: 'Raleway', sans-serif;
}

#exit-popup .ep-close-link:hover {
  color: #666
}

#exit-popup .ep-close-x {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(255, 255, 255, .7);
  font-size: 20px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

#exit-popup .ep-close-x:hover {
  color: #fff
}
@media (max-width: 768px) {
.top-bar{
font-size: 12px;
}
.story-p {
  font-size: 16px;
  font-weight: 300;
  color: #444;
  line-height: 1.45;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
}
.story-ul li {
  font-size: 16px;

}
}
@media (min-width: 768px) {
#popup-buy-link{
     display:inline-block;background:linear-gradient(135deg,#e8292a,#ff6b35);color:#fff;font-size:clamp(22px,3vw,32px);font-weight:800;padding:22px 56px;border-radius:60px;box-shadow:0 8px 30px rgba(232,41,42,.4);line-height:1.3;text-align:center;transition:transform .2s;animation:pulse 2.5s ease-in-out infinite
}

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

@media (max-width: 768px) {
#exit-popup .ep-coupon .ep-c-label {
  font-size: 12px;
  font-weight: 700;
  color: #e8292a;
  letter-spacing: 0px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
#exit-popup .ep-coupon .ep-c-code {
  font-size: 16px;
  font-weight: 900;
  color: #0f0f0f;
  letter-spacing: 3px;
}
#popup-buy-link{
  
  display: inline-block;
  background: linear-gradient(135deg,#e8292a,#ff6b35);
  color: #fff;
  font-size: clamp(19px,3vw,32px);
  font-weight: 800;
  padding: 10px 10px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(232,41,42,.4);
  line-height: 1.3;
  text-align: center;
  transition: transform .2s;
  animation: pulse 2.5s ease-in-out infinite;

}
#exit-popup .ep-top h3 {
  font-size: clamp(18px, 4vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.order-bump-box {
  background: #fcf8e3;
  border: 3px dashed #0f0f0f;
  border-radius: 12px;
  padding: 5px 5px;
  max-width: 100%;
  margin: 10px auto 0;
    margin-top: 10px;
}
#exit-popup .ep-body .ep-dont {
  font-size: 16px;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 6px;
}
.simple-steps{
  display: block;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-top: 20px;
}
}