:root {
  --c-bg: #FAFAF7;
  --c-bg2: #F3F1EB;
  --c-bg3: #EDE9E0;
  --c-ink: #1A1A2E;
  --c-ink2: #3D3D55;
  --c-ink3: #6E6E8A;
  --c-gold: #C8820A;
  --c-gold-lt: #F5A623;
  --c-gold-bg: #FEF3DC;
  --c-amber: #E07B0A;
  --c-teal: #0D7377;
  --c-teal-lt: #14A0A5;
  --c-teal-bg: #E0F5F5;
  --c-red: #D4403A;
  --c-red-bg: #FDECEA;
  --c-green: #1A7A4A;
  --c-green-bg: #E3F5EB;
  --c-accent: #7C4DFF;
  --c-accent-bg: #F0EBFF;
  --c-border: rgba(26, 26, 46, 0.1);
  --c-shadow: rgba(26, 26, 46, 0.08);
  --c-shadow-md: rgba(26, 26, 46, 0.14);
  --c-shadow-lg: rgba(26, 26, 46, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --section-py: 50px;
  --gradient-1: 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(--c-bg);
  color: var(--c-ink);
  overflow-x: hidden;
  line-height: 1.72;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.18;
  color: var(--c-ink);
}

/* subtle paper texture via repeating pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(200, 130, 10, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(13, 115, 119, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(124, 77, 255, 0.04) 0%, transparent 45%);
}

section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1180px;
}

/* ─────────────────── TYPOGRAPHY HELPERS ─────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.tag-gold {
 background: #FEDCDC;
  color: #C80A0A;
  border: 1px solid rgba(200, 10, 10, 0.25)
}

.tag-teal {
 background: #89dbff24;
  color: #bb40ba;
  border: 1px solid rgb(150, 64, 146);
}

.tag-accent {
  background: var(--c-accent-bg);
  color: var(--c-accent);
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.tag-green {
  background: var(--c-green-bg);
  color: var(--c-green);
  border: 1px solid rgba(26, 122, 74, 0.25);
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-teal);
  display: block;
  margin-bottom: 12px;
}


.eyebrow1 {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-teal);
  display: block;
  margin-bottom: 12px;
}

.headline-xl {
  font-size: clamp(2.2rem, 5vw, 2.0rem);
  font-weight:700;
  letter-spacing: -1.5px;
  color: var(--c-ink);
}

.headline-lg {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
}

.headline-md {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -.5px;
}

.highlight {
  background: linear-gradient(135deg, #964092, #296873);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-gold {
    background: linear-gradient(135deg, #964092, #296873);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-text {
  font-size: 1.05rem;
  color: var(--c-ink2);
  line-height: 1.8;
}

.body-text {
  font-size: .95rem;
  color: var(--c-ink3);
  line-height: 1.8;
}

/* ─────────────────── BUTTONS ─────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9C3D94, #336476);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 17px 44px;
  border-radius: 60px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: rgba(64, 95, 122, 0.55) 0px 8px 32px;
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .28s;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: rgba(64, 95, 122, 0.55) 0px 8px 32px;
  color: #fff;
}

.btn-cta-xl {
  font-size: 1.15rem;
  padding: 20px 56px;
}

.btn-skip {
  display: inline-block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-ink3);
  font-size: .83rem;
  font-family: 'Poppins', sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
  padding: 6px 0;
}

.btn-skip:hover {
  color: var(--c-ink);
}

/* ─────────────────── DIVIDERS ─────────────────── */
.hr-gradient {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin: 0 auto;
}

/* ─────────────────── CARDS ─────────────────── */
.card-clean {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px var(--c-shadow);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}

.card-clean:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px var(--c-shadow-md);
}

.card-tinted {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s;
}

.card-tinted:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--c-shadow);
}

/* ─────────────────── HERO — DARK THEME ─────────────────── */
#hero {
  padding: 88px 0 72px;
  /* background: linear-gradient(160deg, #0D1B2A 0%, #0D2A2E 40%, #111827 100%);
  position: relative;
  overflow: hidden; */
}

/* #hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 55% at 10% 50%, rgba(13, 115, 119, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 90% 10%, rgba(200, 130, 10, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(124, 77, 255, 0.1) 0%, transparent 55%);
  pointer-events: none;
} */

/* dot grid texture */
/* #hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
} */

#hero .container {
  position: relative;
  z-index: 1;
}

.hero-top-label {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.78);
  margin-bottom: 20px;
}

.hero-main-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #000;
  text-align: center;
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero-hl-gold {
background: linear-gradient(135deg, #964092, #296873);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(.95rem, 1.8vw, 1.12rem);
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 10px;
  line-height: 1.72;
}

.hero-cta-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.hero-buy-btn {
  font-size: 1.12rem;
  padding: 20px 56px;
  /* box-shadow: 0 10px 40px rgba(200, 130, 10, 0.5), 0 2px 8px rgba(200, 130, 10, 0.25); */
}

/* .hero-buy-btn:hover {
  box-shadow: 0 18px 56px rgba(200, 130, 10, 0.65), 0 4px 12px rgba(200, 130, 10, 0.3);
} */

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

.hero-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(0, 0, 0, 0.63);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.hero-trust-row i {
  font-size: .85rem;
  color: var(--c-gold-lt);
}

.btn-skip-hero {
  display: inline-block;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.3);
  font-size: .78rem;
  font-family: 'Poppins', sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
  padding: 4px 0;
}

.btn-skip-hero:hover {
  color: rgba(255, 255, 255, 0.55);
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
  color: rgb(0, 0, 0);
  font-size: .7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll-hint i {
  font-size: 1rem;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: .28
  }

  50% {
    transform: translateY(8px);
    opacity: .55
  }
}

@media(max-width:767px) {
  #hero {
    padding: 64px 0 56px;
  }

  .hero-main-headline {
    font-size: 1.9rem;
    letter-spacing: -.5px;
  }

  .hero-tagline {
    font-size: .9rem;
    margin-bottom: 32px;
  }

  .hero-buy-btn {
    font-size: .95rem;
    padding: 16px 32px;
  }

  .hero-trust-row {
    gap: 12px;
  }
}

/* ─────────────────── LETTER + PRODUCT CARD SECTION ─────────────────── */
.letter-section {
  padding: 64px 0;
  background: #FFF;
}

.letter-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 56px var(--c-shadow-lg), 0 4px 16px var(--c-shadow);
  overflow: hidden;
  position: relative;
}

.lc-glow {
  position: absolute;
  top: -60px;
  right: 260px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 115, 119, 0.05), transparent 70%);
  pointer-events: none;
}

/* copy side */
.lc-copy {
  flex: 1;
  padding: 52px 48px 52px 56px;
  border-right: 1px solid var(--c-border);
}

.lc-salutation {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #964092, #296873);
    background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.lc-text {
  font-size: 1rem;
  color: var(--c-ink2);
  line-height: 1.85;
  margin-bottom: 16px;
}

.lc-text:last-child {
  margin-bottom: 0;
}

.lc-text strong {
  color: var(--c-ink);
}

/* visual side */
.lc-visual {
  flex: 0 0 320px;
  background: #F3FEFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  position: relative;
}

/* product box */
.lc-product-box {
  background: linear-gradient(160deg, #9C3D94, #0A5055);
  border-radius: 20px;
  padding: 28px 22px 22px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(13, 115, 119, 0.4), 0 4px 16px rgba(13, 115, 119, 0.2);
  position: relative;
  overflow: hidden;
}

.lc-product-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.lpb-badge {
  display: inline-block;
  background: #229DC4;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.lpb-icon {
  font-size: 2.6rem;
  margin-bottom: 10px;
  line-height: 1;
}

.lpb-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 4px;
}

.lpb-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.lpb-plr-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.lpb-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 10px;
  padding: 12px 8px;
}

.lpbs {
  text-align: center;
  flex: 1;
}

.lpbs-n {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #4DBDDF;
  line-height: 1;
}

.lpbs-l {
  display: block;
  font-size: .58rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: .5px;
}

.lpbs-div {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* floating chips */
.lc-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 7px 14px;
  font-size: .72rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 16px var(--c-shadow-md);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lc-chip-top {
  top: 16px;
  right: 16px;
  color: var(--c-teal);
  animation: floatUp 3.5s ease-in-out infinite;
}

.lc-chip-top i {
  color: var(--c-gold);
}

.lc-chip-bot {
  bottom: 16px;
  left: 16px;
  color: var(--c-green);
  animation: floatDn 4s ease-in-out infinite;
}

.lc-chip-bot i {
  color: var(--c-green);
}

@media(max-width:991px) {
  .letter-card {
    flex-direction: column;
  }

  .lc-copy {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: 36px 28px;
  }

  .lc-visual {
    flex: none;
    padding: 36px 28px;
  }

  .lc-chip {
    display: none;
  }
}

/* ─────────────────── TOP ANNOUNCEMENT BAR ─────────────────── */
#announcement-bar {
  background: linear-gradient(135deg, #B0369A, #186e6e);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  font-family: 'Montserrat', sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  margin-right: 8px;
  animation: pulseAnim 1.8s ease-in-out infinite;
}

@keyframes pulseAnim {

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

  50% {
    opacity: .4;
    transform: scale(1.6)
  }
}

/* ─────────────────── HERO ─────────────────── */
#hero {
  padding: 40px 0 40px;
  /* background: radial-gradient(ellipse 70% 60% at 5% 50%, rgb(18 106 106) 0%, #002f32 55%), radial-gradient(ellipse 50% 60% at 95% 20%, rgb(199 173 47 / 15%) 0%, transparent 50%), var(--c-bg); */
}

.hero-salutation {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-teal);
  margin-bottom: 6px;
}

.hero-letter-text {
  font-size: 1.05rem;
  color: var(--c-ink2);
  line-height: 1.85;
  max-width: 580px;
}

/* Hero stat card */
.hero-stats-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px var(--c-shadow-lg), 0 4px 12px var(--c-shadow);
  position: relative;
}

.hero-stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-gold-lt));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}

.stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-row:first-child {
  padding-top: 0;
}

.stat-label-text {
  font-size: .85rem;
  color: var(--c-ink3);
}

.stat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--c-teal);
  white-space: nowrap;
}

.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 8px 16px;
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 6px 24px var(--c-shadow-md);
  white-space: nowrap;
}

.fc-top {
  top: -18px;
  right: 24px;
  color: var(--c-teal);
  animation: floatUp 3.5s ease-in-out infinite;
}

.fc-bot {
  bottom: -16px;
  left: 24px;
  color: var(--c-gold);
  animation: floatDn 4s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

@keyframes floatDn {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

/* ─────────────────── STATS STRIP ─────────────────── */
.stats-strip {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 44px 0;
}

.sstrip-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  /* color: var(--c-teal); */
  background: linear-gradient(135deg, #964092, #296873);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.sstrip-label {
  font-size: .78rem;
  color: var(--c-ink3);
  margin-top: 4px;
}

/* ─────────────────── SECTION PADS ─────────────────── */
.sec-py {
  padding: var(--section-py) 0;
}

.sec-sm {
  padding: 70px 0;
}

.sec-alt {
  background: #FFF;
}

.sec-alt2 {
  background: var(--c-bg3);
}

/* ─────────────────── WHY CARDS ─────────────────── */
.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.wib-gold {
  background: var(--c-gold-bg);
}

.wib-teal {
 background: linear-gradient(135deg, #B0369A, #186e6e);
}

.wib-green {
  background: var(--c-green-bg);
}

.wib-acc {
  background: var(--c-accent-bg);
}

.why-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--c-ink);
  margin-bottom: 8px;
}

/* ─────────────────── FEATURE ALT ROW ─────────────────── */
.feature-alt-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
  border-bottom: 1px solid var(--c-border);
}

.feature-alt-row:last-child {
  border-bottom: none;
}

.fat-text {
  flex: 1;
}

.fat-panel {
  flex: 0 0 360px;
}

@media(max-width:991px) {
  .feature-alt-row {
    flex-direction: column !important;
    gap: 32px;
  }

  .fat-panel {
    flex: none;
    width: 100%;
  }
}

.fat-panel-box {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.fat-panel-box::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 115, 119, 0.1), transparent 70%);
}

.fat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-teal);
  opacity: .2;
  position: absolute;
  top: 16px;
  right: 20px;
}

.niche-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: .76rem;
  font-weight: 500;
  color: var(--c-ink2);
  margin: 3px;
  transition: background .2s, border-color .2s;
}

.niche-pill:hover {
  background: var(--c-teal-bg);
  border-color: rgba(13, 115, 119, 0.3);
}

/* niche breakdown table rows */
.niche-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: .88rem;
}

.niche-row:last-child {
  border-bottom: none;
}

.niche-row .nr-name {
  font-weight: 700;
  color: var(--c-ink);
  min-width: 200px;
}

.niche-row .nr-subs {
  color: var(--c-ink3);
}

/* DFY module cards */
.dfy-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform .3s, box-shadow .3s;
}

.dfy-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--c-shadow-md);
}

.dfy-num-badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-teal), var(--c-teal-lt));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
}

/* PLR pills */
.plr-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: .92rem;
}

.plr-check:last-child {
  border-bottom: none;
}

.plr-check i {
  color: var(--c-green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* class-own cards */
.own-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  border-top: 3px solid transparent;
}

.own-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px var(--c-shadow-md);
  border-top-color: var(--c-teal);
}

.own-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.own-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-ink);
  margin-bottom: 8px;
}

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

/* urgency */
.urgency-band {
 background: linear-gradient(135deg, #FF0CEF1F, #4acdff75);
  border: 1px solid rgb(158, 60, 149);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
}

.ot-badge {
  background: linear-gradient(135deg, #983F93, #306575);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  padding: 14px 28px;
  border-radius: 14px;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(53, 99, 119, 0.51);
}

/* problem/solution side visual */
.side-visual {
  background: linear-gradient(135deg, #ff94fa75, #5ecee152);
  
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.side-visual .watermark {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(26, 26, 46, 0.04);
  user-select: none;
  pointer-events: none;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: .9rem;
  line-height: 1.6;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list .ci {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

/* product box */
.product-reveal-box {
  background: linear-gradient(135deg, rgba(255, 0, 246, 0.11), rgba(152, 234, 255, 0.31));
  border: 2px solid rgba(13, 115, 119, 0.2);
  border-radius: var(--radius-lg);
  padding: 50px 40px 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-reveal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF99F6, #5CAFC4, #FF69EA);
}

/* final CTA box */
.final-cta-box {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 70px 56px;
  text-align: center;
  box-shadow: 0 24px 64px var(--c-shadow-lg);
  position: relative;
  overflow: hidden;
}

.final-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF99F6, #5CAFC4, #FF69EA);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0%
  }

  100% {
    background-position: 200% 0%
  }
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--c-ink3);
  font-weight: 500;
}

.trust-item i {
  font-size: 1rem;
}

/* ─────────────────── SCROLL REVEALS (initial) ─────────────────── */
.rv {
  opacity: 0;
  transform: translateY(44px);
}

.rv-l {
  opacity: 0;
  transform: translateX(-55px);
}

.rv-r {
  opacity: 0;
  transform: translateX(55px);
}

.rv-s {
  opacity: 0;
  transform: scale(0.9);
}


/* ─────────────────── FEATURE 01 HEADER CARD ─────────────────── */
.f01-header-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-teal);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: 0 8px 36px var(--c-shadow);
  margin-bottom: 28px;
}

.f01-header-left {
  flex: 1;
}

.f01-header-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--c-teal-bg);
  border: 1px solid rgba(13, 115, 119, 0.2);
  border-radius: 16px;
  padding: 20px 28px;
  flex-shrink: 0;
}

.f01-stat {
  text-align: center;
  padding: 0 24px;
}

.f01-stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-teal);
  line-height: 1;
}

.f01-stat-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-teal);
  opacity: .7;
  margin-top: 4px;
}

.f01-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(13, 115, 119, 0.2);
}

@media(max-width:991px) {
  .f01-header-card {
    flex-direction: column;
    gap: 28px;
    padding: 28px 24px;
  }

  .f01-header-stats {
    width: 100%;
    justify-content: center;
  }

  .f01-stat {
    padding: 0 16px;
  }

  .f01-stat-num {
    font-size: 1.6rem;
  }
}

/* ─────────────────── FEATURE 01 UNIFIED SECTION ─────────────────── */
.f01-unified-section {
  background: #fff;
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-teal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px var(--c-shadow);
}

/* top header zone */
.f01-top {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 44px 48px 40px;
  background: linear-gradient(135deg, #F2FBFB, #EBF8F8);
  border-bottom: 1px solid var(--c-border);
}

.f01-top-left {
  flex: 1;
}

.f01-top-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.f01-stat-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(13, 115, 119, 0.2);
  border-radius: 16px;
  padding: 18px 28px;
  box-shadow: 0 4px 20px var(--c-shadow);
}

.f01-stat-item {
  text-align: center;
  padding: 0 22px;
}

.f01-snum {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-teal);
  line-height: 1;
}

.f01-slabel {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-teal);
  opacity: .65;
  margin-top: 5px;
}

.f01-stat-div {
  width: 1px;
  height: 44px;
  background: rgba(13, 115, 119, 0.15);
}

.f01-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-teal-bg);
  border: 1px solid rgba(13, 115, 119, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-teal);
  font-family: 'Montserrat', sans-serif;
}

.f01-ai-badge i {
  font-size: 1rem;
}

/* inner divider label */
.f01-inner-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 48px;
  background: #47d4ff1c;
  border-bottom: 1px solid var(--c-border);
}

.f01-inner-divider::before,
.f01-inner-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 115, 119, 0.25), transparent);
}

.f01-inner-divider span {
  font-family: 'Montserrat', sans-serif;
 font-size: .9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-teal);
  white-space: nowrap;
}

/* niche grid wrapper */
.f01-niche-wrap {
  padding: 36px 36px 40px;
}

@media(max-width:991px) {
  .f01-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px;
  }

  .f01-top-right {
    align-items: flex-start;
    width: 100%;
  }

  .f01-stat-box {
    width: 100%;
    justify-content: center;
    padding: 16px 12px;
  }

  .f01-stat-item {
    padding: 0 14px;
  }

  .f01-snum {
    font-size: 1.6rem;
  }

  .f01-inner-divider {
    padding: 16px 24px;
  }

  .f01-niche-wrap {
    padding: 24px 20px 28px;
  }
}

/* ─────────────────── FEATURE 01 HEADER CARD (old — remove if exists) ─────────────────── */
/* ─────────────────── FEATURE 02: HEALTHY FOODS ─────────────────── */
.hf-full-section {
  margin-top: 70px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px var(--c-shadow);
}

.hf-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 48px 36px;
  border-bottom: 1px solid var(--c-border);
  background: linear-gradient(135deg, #F4FBF4, #F0FAF0);
  border-top: 4px solid var(--c-green);
}

.hf-counter {
  flex-shrink: 0;
  text-align: center;
  background: var(--c-green-bg);
  border: 1px solid rgba(26, 122, 74, 0.2);
  border-radius: 20px;
  padding: 20px 28px;
  min-width: 120px;
}

.hf-big-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-green);
}

.hf-big-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-green);
  opacity: .75;
  margin-top: 4px;
  line-height: 1.4;
}

.hf-body {
  display: flex;
  gap: 0;
}

.hf-left {
  flex: 0 0 380px;
  padding: 36px 36px 36px 48px;
  border-right: 1px solid var(--c-border);
  background: var(--c-bg);
}

.hf-right {
  flex: 1;
  padding: 36px 48px 36px 36px;
}

/* value props */
.hf-value-props {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hf-vp {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  transition: transform .25s;
}

.hf-vp:hover {
  transform: translateX(4px);
}

.hf-vp-green {
  background: var(--c-green-bg);
  border: 1px solid rgba(26, 122, 74, 0.18);
}

.hf-vp-teal {
  background: var(--c-teal-bg);
  border: 1px solid rgba(13, 115, 119, 0.18);
}

.hf-vp-gold {
  background: var(--c-gold-bg);
  border: 1px solid rgba(200, 130, 10, 0.18);
}

.hf-vp-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hf-vp-green .hf-vp-icon i {
  color: var(--c-green);
}

.hf-vp-teal .hf-vp-icon i {
  color: var(--c-teal);
}

.hf-vp-gold .hf-vp-icon i {
  color: var(--c-gold);
}

.hf-vp-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--c-ink);
  margin-bottom: 3px;
}

.hf-vp-desc {
  font-size: .8rem;
  color: var(--c-ink3);
  line-height: 1.6;
}

/* category cards */
.hf-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.hf-cat {
  border-radius: 14px;
  padding: 16px 16px 14px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  transition: transform .28s cubic-bezier(.34, 1.4, .64, 1), box-shadow .28s;
  cursor: default;
}

.hf-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--c-shadow-md);
}

.hf-cat-red {
  --hc: #C0392B;
  --hc-bg: #FDEEEC;
}

.hf-cat-green {
  --hc: var(--c-green);
  --hc-bg: var(--c-green-bg);
}

.hf-cat-teal {
  --hc: var(--c-teal);
  --hc-bg: var(--c-teal-bg);
}

.hf-cat-gold {
  --hc: var(--c-gold);
  --hc-bg: var(--c-gold-bg);
}

.hf-cat:hover {
  background: var(--hc-bg);
  border-color: color-mix(in srgb, var(--hc) 25%, transparent);
}

.hf-cat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hf-cat-emoji {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--hc-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s;
}

.hf-cat:hover .hf-cat-emoji {
  transform: scale(1.12) rotate(-5deg);
}

.hf-cat-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--hc);
}

.hf-cat-count {
  font-size: .7rem;
  color: var(--c-ink3);
  margin-top: 1px;
}

.hf-cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.hf-cat-tags span {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 5px;
  padding: 2px 8px;
  font-size: .68rem;
  font-weight: 500;
  color: var(--c-ink3);
  transition: color .2s, background .2s;
}

.hf-cat:hover .hf-cat-tags span {
  color: var(--hc);
  background: rgba(255, 255, 255, .8);
}

.hf-total-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-green-bg);
  border: 1px solid rgba(26, 122, 74, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .85rem;
  color: var(--c-green);
  font-weight: 600;
}

.hf-total-badge i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media(max-width:991px) {
  .hf-body {
    flex-direction: column;
  }

  .hf-left {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: 28px;
  }

  .hf-right {
    padding: 28px;
  }

  .hf-header {
    flex-direction: column;
    padding: 28px;
  }
}

/* ─────────────────── FEATURE 04: PLR RIGHTS ─────────────────── */
.plr-full-section {
  margin-top: 70px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px var(--c-shadow);
}

.plr-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 52px;
  background: linear-gradient(135deg, #1A1A3E, #2D1B69, #1A3A4A);
  position: relative;
  overflow: hidden;
}

.plr-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 200px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.plr-banner-left {
  flex: 1;
  position: relative;
  z-index: 1;
}

.plr-banner-right {
  flex-shrink: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.plr-wordmark {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--c-gold-lt), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plr-wordmark-sub {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  line-height: 1.5;
}

.plr-freedom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--c-bg2);
  border-bottom: 1px solid var(--c-border);
  padding: 16px 32px;
}

.plr-freedom-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-ink2);
  padding: 6px 20px;
  font-family: 'Montserrat', sans-serif;
}

.plr-freedom-item i {
  font-size: .95rem;
}

.plr-freedom-sep {
  width: 1px;
  height: 22px;
  background: var(--c-border);
}

.plr-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
}

@media(max-width:991px) {
  .plr-rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:575px) {
  .plr-rights-grid {
    grid-template-columns: 1fr;
  }
}

.plr-right-card {
  padding: 28px 26px;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: #fff;
  transition: background .28s, transform .28s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.plr-right-card:nth-child(3n) {
  border-right: none;
}

.plr-right-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.plr-right-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pc);
  opacity: 0;
  transition: opacity .28s;
}

.plr-right-card:hover {
  background: var(--pc-bg);
  transform: scale(1.01);
  z-index: 1;
}

.plr-right-card:hover::before {
  opacity: 1;
}

.plr-rc-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--pc-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.plr-right-card:hover .plr-rc-icon {
  transform: scale(1.1) rotate(-5deg);
}

.plr-rc-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: var(--pc);
  margin-bottom: 8px;
}

.plr-rc-desc {
  font-size: .84rem;
  color: var(--c-ink3);
  line-height: 1.7;
}

.plr-deal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 48px;
  background: linear-gradient(135deg, var(--c-gold-bg), #FFF8E8);
  border-top: 1px solid rgba(200, 130, 10, 0.2);
  flex-wrap: wrap;
}

.plr-deal-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plr-deal-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #A33B96;
}

.plr-deal-sub {
  font-size: .88rem;
  color: var(--c-ink2);
}

@media(max-width:767px) {
  .plr-banner {
    flex-direction: column;
    padding: 32px 24px;
  }

  .plr-wordmark {
    font-size: 3.5rem;
  }

  .plr-freedom-bar {
    flex-direction: column;
    padding: 16px;
  }

  .plr-freedom-sep {
    width: 60%;
    height: 1px;
  }

  .plr-deal-bar {
    flex-direction: column;
    padding: 24px;
  }

  .plr-right-card:nth-child(3n) {
    border-right: 1px solid var(--c-border);
  }

  .plr-right-card:nth-child(2n) {
    border-right: none;
  }
}

/* ─── DFY FULL SECTION ─── */
.dfy-full-section {
  margin-top: 70px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px var(--c-shadow);
}

.dfy-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 48px 36px;
  border-bottom: 1px solid var(--c-border);
  background: linear-gradient(135deg, #FFFDF6, #F8F6F0);
}

.dfy-head-left {
  flex: 1;
}

.dfy-head-right {
  flex-shrink: 0;
}

.dfy-counter-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(var(--c-gold) 0%, var(--c-teal) 50%, var(--c-accent) 80%, var(--c-green) 100%);
  padding: 4px;
  box-shadow: 0 8px 32px rgba(200, 130, 10, 0.25);
  animation: spinSlow 10s linear infinite;
}

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

  to {
    transform: rotate(360deg)
  }
}

.dfy-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: spinSlow 10s linear infinite reverse;
}

.dfy-ring-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c-ink);
  line-height: 1;
}

.dfy-ring-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-ink3);
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
}

.dfy-step-track {
  padding: 40px 48px;
  position: relative;
}

.dfy-step-line {
  position: absolute;
  left: 96px;
  top: 68px;
  bottom: 80px;
  width: 3px;
  background: linear-gradient(180deg, var(--c-gold) 0%, var(--c-teal) 33%, var(--c-accent) 66%, var(--c-green) 100%);
  border-radius: 3px;
  z-index: 0;
}

.dfy-module {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.dfy-module:last-child {
  margin-bottom: 0;
}

.dfy-module-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 96px;
  padding-top: 20px;
}

.dfy-marker-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--mc-bg);
  border: 2.5px solid var(--mc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform .3s cubic-bezier(.34, 1.6, .64, 1), box-shadow .3s;
  position: relative;
  z-index: 2;
}

.dfy-marker-circle span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--mc);
}

.dfy-module:hover .dfy-marker-circle {
  transform: scale(1.15);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.dfy-marker-connector {
  width: 3px;
  flex: 1;
  background: var(--c-border);
  min-height: 20px;
  z-index: 1;
}

.dfy-module-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--c-bg);
  border: 1px solid var(--mc-border, var(--c-border));
  /* border-left: 4px solid var(--mc); */
  border-radius: var(--radius);
  padding: 22px 24px 22px 22px;
  margin-left: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.34, 1.4, .64, 1), box-shadow .3s, background .3s;
}

.dfy-module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mc-bg);
  opacity: 0;
  transition: opacity .3s;
}

.dfy-module-card:hover {
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 14px 44px var(--c-shadow-md);
}

.dfy-module-card:hover::before {
  opacity: 1;
}

.dfy-module-icon {
  font-size: 2rem;
  width: 58px;
  height: 58px;
  background: var(--mc-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform .3s;
}

.dfy-module-card:hover .dfy-module-icon {
  transform: scale(1.12) rotate(-4deg);
}

.dfy-module-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.dfy-module-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--c-ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.dfy-module-desc {
  font-size: .88rem;
  color: var(--c-ink3);
  line-height: 1.75;
  margin-bottom: 14px;
}

.dfy-module-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dfy-module-chips span {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--mc-border, var(--c-border));
  border-radius: 6px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--mc);
  font-family: 'Montserrat', sans-serif;
  transition: background .2s;
}

.dfy-module-card:hover .dfy-module-chips span {
  background: rgba(255, 255, 255, 0.85);
}

.dfy-module-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--c-gold-bg);
  color: var(--c-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
  z-index: 2;
}

.dfy-summary-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, var(--c-ink), #2A2A4A);
  padding: 22px 40px;
}

.dfy-summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 24px;
}

.dfy-summary-item i {
  color: var(--c-gold-lt);
  font-size: 1rem;
}

.dfy-summary-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

@media(max-width:767px) {
  .dfy-section-head {
    flex-direction: column;
    padding: 28px 20px;
  }

  .dfy-counter-ring {
    width: 80px;
    height: 80px;
  }

  .dfy-ring-num {
    font-size: 1.8rem;
  }

  .dfy-step-track {
    padding: 28px 16px;
  }

  .dfy-step-line {
    left: 68px;
  }

  .dfy-module-marker {
    width: 68px;
  }

  .dfy-marker-circle {
    width: 40px;
    height: 40px;
  }

  .dfy-marker-circle span {
    font-size: 1rem;
  }

  .dfy-module-card {
    flex-direction: column;
    gap: 14px;
    margin-left: 10px;
  }

  .dfy-module-badge {
    position: static;
    align-self: flex-start;
  }

  .dfy-summary-bar {
    flex-direction: column;
    padding: 20px 16px;
  }

  .dfy-summary-divider {
    width: 60%;
    height: 1px;
  }
}

/* ─────────────────── NICHE CARD GRID ─────────────────── */
.niche-grid-section {
  margin-top: 60px;
  padding: 48px 44px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px var(--c-shadow);
}

.niche-grid-header {
  text-align: center;
  margin-bottom: 40px;
}

.niche-grid-label {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-ink3);
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 8px;
}

.niche-grid-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--c-ink);
  letter-spacing: -0.5px;
}

.niche-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media(max-width:991px) {
  .niche-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:575px) {
  .niche-cards-grid {
    grid-template-columns: 1fr;
  }
}

.nc-card {
  border-radius: 16px;
  padding: 20px 18px;
  border: 1px solid var(--c-border);
  background: #EDF9F9;
  transition: transform .28s cubic-bezier(.34, 1.4, .64, 1), box-shadow .28s, background .28s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.nc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity .28s;
}

.nc-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 40px var(--c-shadow-md);
}

.nc-card:hover::before {
  opacity: 1;
}

.nc-nature {
  --nc: #1B7A2B;
  --nc-bg: #EAF7EC;
}

.nc-nature::before {
  background: #1B7A2B;
}

.nc-fantasy {
  --nc: #6A1B9A;
  --nc-bg: #F3E5F5;
}

.nc-fantasy::before {
  background: #6A1B9A;
}

.nc-art {
  --nc: #C8820A;
  --nc-bg: #FEF3DC;
}

.nc-art::before {
  background: #C8820A;
}

.nc-arch {
  --nc: #0D5C7A;
  --nc-bg: #E1F4FB;
}

.nc-arch::before {
  background: #0D5C7A;
}

.nc-botanical {
  --nc: #2E7D32;
  --nc-bg: #F1F8E9;
}

.nc-botanical::before {
  background: #2E7D32;
}

.nc-demo {
  --nc: #E64A19;
  --nc-bg: #FBE9E7;
}

.nc-demo::before {
  background: #E64A19;
}

.nc-vehicles {
  --nc: #37474F;
  --nc-bg: #ECEFF1;
}

.nc-vehicles::before {
  background: #37474F;
}

.nc-events {
  --nc: #AD1457;
  --nc-bg: #FCE4EC;
}

.nc-events::before {
  background: #AD1457;
}

.nc-edu {
  --nc: #0D7377;
  --nc-bg: #E0F5F5;
}

.nc-edu::before {
  background: #0D7377;
}

.nc-card:hover {
  background: var(--nc-bg);
}

.nc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.nc-emoji {
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--nc-bg, var(--c-bg2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .28s;
}

.nc-card:hover .nc-emoji {
  background: rgba(255, 255, 255, 0.75);
}

.nc-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .92rem;
  color: var(--nc, var(--c-ink));
  line-height: 1.25;
}

.nc-count {
  font-size: .72rem;
  color: var(--c-ink3);
  font-weight: 500;
  margin-top: 2px;
}

.nc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--c-border);
}

.nc-tags span {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: .71rem;
  font-weight: 500;
  color: var(--c-ink2);
  transition: background .2s, color .2s;
}

.nc-card:hover .nc-tags span {
  background: rgba(255, 255, 255, 0.75);
  color: var(--nc);
}

.nc-total {
  background: linear-gradient(135deg, var(--c-teal), var(--c-teal-lt));
  border-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
}

.nc-total:hover {
  background: linear-gradient(135deg, #0A5F63, var(--c-teal));
  border-color: transparent;
}

.nc-total::before {
  background: rgba(255, 255, 255, 0.3);
}

@media(max-width:767px) {
  .niche-grid-section {
    padding: 28px 20px;
    margin-top: 40px;
  }
}

/* ─────────────────── RESPONSIVE ─────────────────── */
@media(max-width:767px) {
  :root {
    --section-py: 64px;
  }

  .urgency-band {
    padding: 36px 24px;
  }

  .final-cta-box {
    padding: 44px 24px;
  }

  .product-reveal-box {
    padding: 44px 24px;
  }

  .hero-stats-card {
    margin-top: 40px;
  }
}

/* footer */
footer {
  background: var(--c-bg3);
  border-top: 1px solid var(--c-border);
  padding: 44px 0;
}



.headline-lg1 {
  font-size: clamp(1.8rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -1px;
}






.earnings-section {
    background: var(--gradient-1);
    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) {

      /* Announcement bar */
      #announcement-bar {
        font-size: 0.78rem;
        padding: 8px 12px;
        text-align: center;
      }

      /* Hero section */
      #hero {
        padding: 40px 16px 32px;
        text-align: center;
      }
      .hero-top-label {
        font-size: 0.8rem;
        margin-bottom: 12px;
      }
      .hero-main-headline {
        font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
        line-height: 1.35;
      }
      .hero-main-headline br { display: none; }
      .hero-tagline {
        font-size: 0.95rem;
      }
      #hero img[width="80%"] {
        width: 95% !important;
      }
      .hero-trust-row {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
      }
      .hero-trust-row span {
        font-size: 0.78rem;
      }

      /* Letter card - stack vertically */
      .letter-card {
        flex-direction: column !important;
        padding: 24px 16px !important;
      }
      .lc-copy, .lc-visual {
        width: 100% !important;
        flex: unset !important;
      }
      .lc-visual {
        margin-top: 24px;
      }
      .lc-chip {
        display: none;
      }

      /* Why section cards */
      .headline-lg, .headline-lg1 {
        font-size: clamp(1.4rem, 4.5vw, 2rem) !important;
      }

      /* Product reveal box */
      .product-reveal-box {
        padding: 24px 16px !important;
        text-align: center;
      }
      .product-reveal-box img {
        width: 100% !important;
      }
      .product-reveal-box p br { display: none; }

      /* f01 unified section (18K prompts) */
      .f01-top {
        flex-direction: column !important;
      }
      .f01-top-left, .f01-top-right {
        width: 100% !important;
      }
      .f01-stat-box {
        flex-wrap: wrap;
        gap: 12px;
      }
      .niche-cards-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
      }

      /* Healthy Foods section */
      .hf-full-section {
        padding: 24px 16px !important;
      }
      .hf-header {
        flex-direction: column !important;
        gap: 16px;
      }
      .hf-body {
        flex-direction: column !important;
      }
      .hf-left, .hf-right {
        width: 100% !important;
      }
      .hf-cat-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
      }

      /* DFY section */
      .dfy-full-section {
        padding: 24px 16px !important;
      }
      .dfy-section-head {
        flex-direction: column !important;
        gap: 16px;
        align-items: flex-start !important;
      }
      .dfy-step-track {
        padding-left: 0 !important;
      }
      .dfy-module {
        flex-direction: column !important;
        margin-top: 32px !important;
      }
      .dfy-module-card {
        width: 100% !important;
      }
      .dfy-module-card img {
        width: 90% !important;
        display: block;
        margin: 12px auto 0;
      }
      .dfy-step-line { display: none !important; }
      .dfy-summary-bar {
        flex-direction: column !important;
        gap: 12px;
        padding: 16px !important;
      }
      .dfy-summary-divider { display: none; }

      /* PLR section */
      .plr-full-section {
        padding: 24px 16px !important;
      }
      .plr-banner {
        flex-direction: column !important;
        gap: 16px;
        padding: 24px 16px !important;
      }
      .plr-banner-right {
        text-align: center;
      }
      .plr-freedom-bar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 16px !important;
      }
      .plr-freedom-sep { display: none; }
      .plr-rights-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
      }

      /* Stats strip */
      .stats-strip .sstrip-num {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
      }

      /* Earnings section */
      .earnings-section p[style*="23px"] {
        font-size: 1rem !important;
      }

      /* Timer strip */
      .timer-strip .row {
        flex-direction: column;
        text-align: center;
        gap: 12px;
      }
      .timer-strip .col-lg-5,
      .timer-strip .col-lg-3,
      .timer-strip .col-lg-4 {
        width: 100% !important;
      }
      .offer {
        text-align: center;
      }

      /* Footer */
      footer img[width="40%"] {
        width: 70% !important;
      }
      footer .col-md-12 p {
        font-size: 0.8rem !important;
        line-height: 1.7;
      }

      /* Final CTA */
      .final-cta-box {
        padding: 24px 16px !important;
      }
      .final-cta-box img[width="80%"] {
        width: 100% !important;
      }
      .trust-bar {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
      }
      .trust-item {
        font-size: 0.8rem;
      }

      /* DFY module marker vertical spacing */
      .dfy-module-marker {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
      }
      .dfy-marker-connector { display: none !important; }

      /* General */
      .sec-py { padding-top: 40px !important; padding-bottom: 40px !important; }
      .headline-xl {
        font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
      }
      .lead-text {
        font-size: 0.95rem !important;
      }
      .btn-cta {
        font-size: 0.95rem !important;
        padding: 14px 20px !important;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
      }
    }

    /* ---------- Mobile only (≤ 576px) ---------- */
    @media (max-width: 576px) {

      #announcement-bar {
        font-size: 0.72rem;
      }

      .hero-main-headline {
        font-size: 1.35rem !important;
      }

      /* Stack niche cards to single column */
      .niche-cards-grid {
        grid-template-columns: 1fr !important;
      }

      /* Stack PLR rights grid to single column */
      .plr-rights-grid {
        grid-template-columns: 1fr !important;
      }

      /* Stack healthy food cat grid */
      .hf-cat-grid {
        grid-template-columns: 1fr !important;
      }

      /* Coupon + timer text */
      .offer {
        font-size: 0.85rem;
      }

      /* Footer logo */
      footer img[width="40%"] {
        width: 85% !important;
      }

      /* Copyright text */
      footer p[style*="1.6rem"] {
        font-size: 1rem !important;
      }

      /* One-time offer badge */
      .ot-badge {
        font-size: 1.5rem !important;
      }

      /* Image sections */
      .sec-alt img[width="100%"] {
        margin-bottom: 16px;
      }

      .lpb-stats-row {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
      }
      .lpbs-div { display: none; }

      .headline-lg, .headline-lg1 {
        font-size: 1.25rem !important;
      }

      .headline-md {
        font-size: 1.15rem !important;
      }
    }






    @media (min-width: 768px) and (max-width: 991px) {
      .timer-strip .row {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
      }
      .timer-strip .col-lg-5 { flex: 0 0 40%; max-width: 40%; }
      .timer-strip .col-lg-3 { flex: 0 0 30%; max-width: 30%; text-align: center; }
      .timer-strip .col-lg-4 { flex: 0 0 30%; max-width: 30%; text-align: center; margin-top: 0 !important; }
      .timer-strip .offer    { font-size: 0.82rem; margin-top: 0 !important; }
      .timer-strip .cta      { font-size: 0.82rem; padding: 7px 12px; }
    }

    /* MOBILE (< 768px): stack vertically, centered */
    @media (max-width: 767px) {
      .timer-strip .row {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 8px 0;
      }
      .timer-strip .col-lg-5,
      .timer-strip .col-lg-3,
      .timer-strip .col-lg-4 {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        margin-top: 0 !important;
      }
      .timer-strip .offer    { font-size: 0.78rem; white-space: normal; }
      .timer-strip .cta      { width: 100%; font-size: 0.82rem; padding: 8px 12px; }
      .timer-strip .timer-circle { width: 40px !important; height: 40px !important; }
      .timer-strip .timer-num    { font-size: 0.95rem !important; }
      .timer-strip .timer-label  { font-size: 0.5rem !important; }
      .timer-strip .timer-sep    { font-size: 1.1rem !important; padding-bottom: 14px; }
    }