/* ============================================================
   106 Therapy Printables PLR Kit — Sales Page
   Palette: Soft Plum + Warm Cream + Coral Accent + Sage + RED CTA
   High-conversion therapeutic warmth with strategic urgency red.
   ============================================================ */

:root {
  /* therapeutic primaries */
  --plum-deep:    #2A1A3F;
  --plum:         #3B2452;
  --plum-soft:    #6E4FA0;
  --plum-light:   #EDE6F5;

  /* warm neutrals */
  --cream:        #FFF7F2;
  --cream-deep:   #FBEDE3;
  --paper:        #FFFDFB;
  --ink:          #2A2640;
  --ink-soft:     #5A5470;
  --ink-mute:     #8B8499;
  --border:       #ECE4DE;

  /* accents */
  --coral:        #FF7A5C;
  --coral-deep:   #E5573A;
  --coral-light:  #FFE2D8;
  --mustard:      #E8B14B;
  --mustard-light:#FFF1CF;
  --sage:         #5B9A8B;
  --sage-light:   #E0F0EB;
  --sky:          #7BAFD4;
  --sky-light:    #E3F0FB;
  --rose:         #E89BB3;
  --rose-light:   #FCE4ED;

  /* high-conversion red */
  --red:          #E63946;
  --red-deep:     #C21D2E;
  --red-darker:   #8B1220;

  --shadow-sm:    0 4px 14px rgba(58, 36, 82, .06);
  --shadow-md:    0 10px 30px rgba(58, 36, 82, .10);
  --shadow-lg:    0 24px 60px rgba(58, 36, 82, .16);
  --shadow-red:   0 12px 28px rgba(230, 57, 70, .35);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  margin: 0;
  padding: 0 0 130px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--plum-soft); text-decoration: none; }
a:hover { color: var(--coral-deep); }

h1, h2, h3, h4, h5 {
  font-family: "Quicksand", "Poppins", system-ui, sans-serif;
  color: var(--plum);
  letter-spacing: -.01em;
  margin: 0 0 16px;
}

.container { max-width: 1180px; }

/* =========================================================
   STICKY RED TOP BANNER
   ========================================================= */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: linear-gradient(90deg, var(--red-deep) 0%, var(--red) 50%, var(--red-deep) 100%);
  color: #fff;
  padding: 11px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  border-bottom: 2px solid rgba(255,255,255,.12);
}
.top-banner .tb-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-banner .tb-pulse {
  display: inline-block;
  width: 9px; height: 9px;
  background: #FFD400;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,212,0,.7);
  animation: pulse 1.6s infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,212,0,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255,212,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,212,0,0); }
}
.top-banner .tb-strike { text-decoration: line-through; opacity: .75; margin-right: 4px; }
.top-banner .tb-price { background: #FFD400; color: #2A1010; padding: 2px 10px; border-radius: 999px; font-weight: 800; }
.top-banner .tb-btn {
  background: #fff;
  color: var(--red-deep);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.top-banner .tb-btn:hover { transform: translateY(-1px); color: var(--red-darker); box-shadow: 0 6px 16px rgba(0,0,0,.25); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255,122,92,.18), transparent 60%),
    radial-gradient(700px 500px at -5% 110%, rgba(110,79,160,.22), transparent 60%),
    linear-gradient(160deg, #FFF7F2 0%, #F5EFFA 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(232,177,75,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  color: var(--plum-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow i { color: var(--coral); }

h1.hero-title {
  font-size: 56px;
  line-height: 1.08;
  color: var(--plum-deep);
  font-weight: 700;
  margin: 0 0 18px;
}
h1.hero-title .accent { color: var(--coral-deep); }
h1.hero-title .accent2 { color: var(--plum-soft); }

.hero-sub {
  font-size: 21px;
  color: var(--ink-soft);
  max-width: 880px;
  margin: 0 auto 22px;
  font-weight: 500;
}
.hero-copy {
  font-size: 17px;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.h-badge {
  background: #fff;
  color: var(--plum);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.h-badge i { color: var(--sage); }
.h-badge.price {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}
.h-badge.price i { color: #FFD400; }

/* mockup */
.hero-mockup {
  display: block;
  max-width: 720px;
  margin: 10px auto 30px;
  filter: drop-shadow(0 30px 50px rgba(58,36,82,.25));
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff !important;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .2px;
  box-shadow: var(--shadow-red);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: none;
  text-transform: uppercase;
}
.btn-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red-darker) 100%);
  box-shadow: 0 18px 36px rgba(230,57,70,.45);
  color: #fff !important;
}
.btn-cta .price-tag {
  background: #FFD400;
  color: #2A1010;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
}

.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 14px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--sage); }

/* =========================================================
   PREVIEW STRIPS (above the fold gallery)
   ========================================================= */
.preview-strip {
  padding: 60px 0 30px;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.section-eyebrow {
  text-align: center;
  color: var(--coral-deep);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--plum-deep);
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 17px;
}

.scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 14px 4px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--plum-soft) transparent;
}
.scroller::-webkit-scrollbar { height: 10px; }
.scroller::-webkit-scrollbar-thumb { background: var(--plum-soft); border-radius: 6px; }

.tile {
  flex: 0 0 auto;
  width: 235px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile .img-wrap {
  height: 320px;
  background: var(--cream-deep);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.tile .img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.tile .meta {
  padding: 12px 14px 16px;
  text-align: center;
}
.tile .meta h5 { font-size: 15px; margin: 0 0 4px; color: var(--plum-deep); }
.tile .meta p { font-size: 12px; color: var(--ink-mute); margin: 0; }

/* =========================================================
   FEATURED PREVIEW CARDS
   ========================================================= */
.featured {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feat-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feat-card .img-frame {
  height: 360px;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.feat-card .img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.feat-card .ribbon {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--plum);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.feat-card .ribbon.coral { background: var(--coral-deep); }
.feat-card .ribbon.sage  { background: var(--sage); }
.feat-card .ribbon.sky   { background: var(--sky); }
.feat-card .ribbon.mustard { background: var(--mustard); color: #4A3000; }
.feat-card .ribbon.rose  { background: var(--rose); color: #5C1D38; }

.feat-card .body {
  padding: 22px 22px 24px;
}
.feat-card h4 { font-size: 21px; margin-bottom: 8px; color: var(--plum-deep); }
.feat-card .cat { font-size: 12px; color: var(--coral-deep); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; display: inline-block; }
.feat-card p.desc { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 14px; line-height: 1.55; }
.feat-card .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.feat-card .chip { background: var(--plum-light); color: var(--plum); font-size: 12px; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.feat-card .chip.sage { background: var(--sage-light); color: #2E5A50; }
.feat-card .chip.coral { background: var(--coral-light); color: var(--coral-deep); }

/* =========================================================
   TRANSFORMATION
   ========================================================= */
.transformation {
  padding: 80px 0;
  background: var(--plum-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.transformation::before, .transformation::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.transformation::before {
  width: 400px; height: 400px; top: -120px; right: -120px;
  background: radial-gradient(circle, rgba(255,122,92,.22), transparent 70%);
}
.transformation::after {
  width: 350px; height: 350px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(110,79,160,.35), transparent 70%);
}
.transformation .section-title { color: #fff; }
.transformation .section-sub { color: rgba(255,255,255,.7); }
.t-col {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  backdrop-filter: blur(8px);
  height: 100%;
}
.t-col.before { border-color: rgba(230,57,70,.4); }
.t-col.after  { border-color: rgba(91,154,139,.5); }
.t-col h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.t-col.before h3 i { color: var(--red); }
.t-col.after h3 i  { color: var(--sage); }
.t-col ul { list-style: none; padding: 0; margin: 0; }
.t-col li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: rgba(255,255,255,.92);
  font-size: 15.5px;
  border-bottom: 1px dashed rgba(255,255,255,.1);
}
.t-col li:last-child { border-bottom: none; }
.t-col.before li::before {
  content: "\f00d"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 11px; color: var(--red);
}
.t-col.after li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 11px; color: var(--sage);
}
.t-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--mustard);
  padding: 24px 0;
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem {
  padding: 80px 0;
  background: var(--cream);
}
.prob-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 42px;
  border-left: 6px solid var(--coral);
  box-shadow: var(--shadow-md);
}
.prob-card .lead {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 16px;
}
.prob-card .lead strong { color: var(--plum-deep); }
.prob-card .quests {
  list-style: none;
  padding: 0;
  margin: 14px 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}
.prob-card .quests li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--plum-deep);
  font-weight: 600;
}
.prob-card .quests li::before {
  content: "\f059";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 9px;
  color: var(--coral-deep);
}
.prob-close {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--coral-light);
  border-radius: var(--radius-sm);
  color: var(--coral-deep);
  font-weight: 700;
  font-size: 16.5px;
}
.prob-close i { margin-right: 8px; }

/* =========================================================
   SOLUTION
   ========================================================= */
.solution {
  padding: 80px 0;
  background: linear-gradient(140deg, #FFF1CF 0%, #FFE2D8 100%);
  text-align: center;
}
.solution-tagline {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--plum);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  margin-top: 18px;
  box-shadow: var(--shadow-md);
}
.solution-tagline i { color: var(--mustard); }

/* =========================================================
   WHAT YOU GET
   ========================================================= */
.whatyouget { padding: 80px 0; background: var(--paper); }
.block-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 32px 30px;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.block-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.block-card h3 {
  font-size: 22px;
  color: var(--plum-deep);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--border);
}
.block-card h3 i { color: var(--coral); font-size: 22px; }
.block-card ul { list-style: none; padding: 0; margin: 0; }
.block-card li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--ink);
  font-size: 15.5px;
}
.block-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 11px;
  color: var(--sage);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.fmt {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.fmt .icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: var(--plum-light);
  color: var(--plum-soft);
}
.fmt.coral .icon { background: var(--coral-light); color: var(--coral-deep); }
.fmt.sage  .icon { background: var(--sage-light);  color: #2E5A50; }
.fmt h4 { font-size: 19px; margin-bottom: 6px; color: var(--plum-deep); }
.fmt p  { color: var(--ink-soft); margin: 0; font-size: 14px; }

.plr-banner {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.plr-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 80% 0, rgba(232,177,75,.18), transparent 60%);
  pointer-events: none;
}
.plr-banner .key {
  width: 76px; height: 76px;
  margin: 0 auto 12px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: var(--mustard);
}
.plr-banner h3 { color: #fff; margin-bottom: 6px; font-size: 26px; }
.plr-banner p { color: rgba(255,255,255,.85); margin: 4px 0; font-size: 15.5px; }
.plr-banner p i { color: var(--sage); margin-right: 6px; }
.plr-banner .pill {
  display: inline-block;
  background: var(--mustard);
  color: #4A3000;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* =========================================================
   CATEGORIES
   ========================================================= */
.categories {
  padding: 80px 0;
  background:
    radial-gradient(800px 400px at 100% 0, rgba(123,175,212,.15), transparent 60%),
    var(--cream);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--plum-soft); }
.cat-item .cat-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--plum-soft), var(--plum-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}
.cat-item .cat-text { line-height: 1.35; }
.cat-item .cat-text h5 { font-size: 17px; margin: 0; color: var(--plum-deep); }
.cat-item .cat-text small { color: var(--ink-mute); font-weight: 600; font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase; }
.cat-item .cat-text em { display: block; font-style: normal; color: var(--ink-soft); font-size: 13px; margin-top: 4px; }

/* color rotation for cat-num */
.cat-item:nth-child(6n+2) .cat-num { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%); }
.cat-item:nth-child(6n+3) .cat-num { background: linear-gradient(135deg, var(--sage) 0%, #3F7A6D 100%); }
.cat-item:nth-child(6n+4) .cat-num { background: linear-gradient(135deg, var(--sky) 0%, #4D8AB5 100%); }
.cat-item:nth-child(6n+5) .cat-num { background: linear-gradient(135deg, var(--mustard) 0%, #C28A22 100%); color: #4A3000; }
.cat-item:nth-child(6n+6) .cat-num { background: linear-gradient(135deg, var(--rose) 0%, #C66E8B 100%); }

/* =========================================================
   AUDIENCE
   ========================================================= */
.audience {
  padding: 80px 0;
  background: var(--paper);
}
.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.aud {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.aud:hover { transform: translateY(-4px); }
.aud .ic {
  width: 60px; height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--plum-light);
  color: var(--plum-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.aud:nth-child(4n+2) .ic { background: var(--coral-light); color: var(--coral-deep); }
.aud:nth-child(4n+3) .ic { background: var(--sage-light); color: #2E5A50; }
.aud:nth-child(4n+4) .ic { background: var(--sky-light); color: #2F608B; }
.aud h4 { font-size: 15.5px; margin: 0; color: var(--plum-deep); }

/* =========================================================
   PLR RIGHTS USES
   ========================================================= */
.uses {
  padding: 80px 0;
  background: linear-gradient(160deg, #F5EFFA 0%, #FFF1CF 100%);
}
.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.use-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  color: var(--plum-deep);
  font-weight: 600;
  font-size: 15.5px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.use-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.use-item i {
  width: 40px; height: 40px;
  background: var(--plum-light);
  color: var(--plum-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}
.use-item:nth-child(3n+2) i { background: var(--coral-light); color: var(--coral-deep); }
.use-item:nth-child(3n+3) i { background: var(--sage-light); color: #2E5A50; }

.note-card {
  margin-top: 28px;
  background: #fff;
  border-radius: var(--radius-sm);
  border-left: 5px solid var(--mustard);
  padding: 18px 22px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
}
.note-card h5 { font-size: 15px; margin-bottom: 6px; color: var(--plum-deep); text-transform: uppercase; letter-spacing: 1.5px; }
.note-card h5 i { color: var(--mustard); margin-right: 8px; }

/* =========================================================
   VALUE STACK
   ========================================================= */
.value {
  padding: 80px 0;
  background: var(--cream);
}
.value-list {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.value-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px dashed var(--border);
}
.value-row:last-of-type { border-bottom: none; }
.value-row .v-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--plum-light);
  color: var(--plum-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.value-row:nth-child(2n) .v-ic { background: var(--coral-light); color: var(--coral-deep); }
.value-row .v-info { flex: 1; }
.value-row .v-info h5 { margin: 0; font-size: 16.5px; color: var(--plum-deep); }
.value-row .v-info small { color: var(--ink-mute); font-size: 12.5px; }
.value-row .v-price {
  font-family: "Quicksand", serif;
  font-weight: 800;
  color: var(--sage);
  font-size: 22px;
}
.value-total {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: #fff;
  padding: 22px 26px;
  font-weight: 800;
  font-size: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.value-total .price { color: var(--mustard); font-size: 28px; }

.price-row {
  background: var(--paper);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.price-cell {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--ink);
}
.price-cell strong { color: var(--plum-deep); font-size: 18px; }
.price-cell.highlight {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}
.price-cell.highlight strong { color: #FFD400; font-size: 24px; }

.value-note {
  text-align: center;
  margin-top: 22px;
  background: var(--mustard-light);
  color: #6B4A00;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
}
.value-note i { color: var(--coral-deep); margin-right: 8px; }

/* =========================================================
   PRICING / BUY BOX
   ========================================================= */
.pricing {
  padding: 80px 0;
  background:
    radial-gradient(700px 400px at 0 0, rgba(255,122,92,.18), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(110,79,160,.20), transparent 60%),
    var(--paper);
}
.price-box {
  background: #fff;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 40px 42px;
  box-shadow: 0 30px 60px rgba(230,57,70,.20);
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: "BEST VALUE";
  position: absolute;
  top: 18px; right: -42px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 5px 50px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(230,57,70,.4);
}
.price-checklist { list-style: none; padding: 0; margin: 0 0 26px; }
.price-checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px dashed var(--border);
}
.price-checklist li:last-child { border-bottom: none; }
.price-checklist li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 11px;
  color: var(--sage);
  font-size: 17px;
}
.price-display {
  text-align: center;
  margin: 24px 0 22px;
}
.price-old {
  font-family: "Quicksand", serif;
  text-decoration: line-through;
  color: var(--ink-mute);
  font-size: 30px;
  font-weight: 700;
  margin-right: 18px;
  vertical-align: middle;
}
.price-new {
  font-family: "Quicksand", serif;
  font-size: 76px;
  font-weight: 800;
  color: var(--red-deep);
  vertical-align: middle;
  line-height: 1;
}
.price-new sup { font-size: 28px; top: -32px; }
.price-urg {
  margin-top: 22px;
  background: var(--coral-light);
  color: var(--coral-deep);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  font-size: 15px;
}
.price-urg i { margin-right: 8px; }

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}
.guar-icon {
  width: 110px; height: 110px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, #3F7A6D 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px;
  box-shadow: 0 16px 32px rgba(91,154,139,.35);
}
.guarantee p.desc { font-size: 17.5px; color: var(--ink-soft); max-width: 720px; margin: 0 auto 18px; }
.guarantee .closing {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--sage);
  padding: 12px 24px;
  border-radius: 999px;
  color: var(--sage);
  font-weight: 700;
}
.guarantee .closing i { margin-right: 8px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 80px 0;
  background: var(--paper);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  padding: 18px 22px;
  cursor: pointer;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item:hover { border-color: var(--plum-soft); box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--coral); box-shadow: var(--shadow-md); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--plum-deep);
  line-height: 1.45;
}
.faq-q i.toggle {
  color: var(--coral-deep);
  transition: transform .2s ease;
  margin-left: 16px;
  font-size: 18px;
}
.faq-item.active .faq-q i.toggle { transform: rotate(45deg); }
.faq-a {
  display: none;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.active .faq-a { display: block; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, var(--coral-deep) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.final-cta::before {
  width: 500px; height: 500px; top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(232,177,75,.25), transparent 70%);
}
.final-cta::after {
  width: 500px; height: 500px; bottom: -200px; left: -150px;
  background: radial-gradient(circle, rgba(255,122,92,.25), transparent 70%);
}
.final-cta h2 { color: #fff; font-size: 42px; margin-bottom: 22px; }
.final-cta p { color: rgba(255,255,255,.92); font-size: 17px; max-width: 760px; margin: 10px auto; line-height: 1.7; }
.final-cta .final-price {
  font-family: "Quicksand", serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--mustard);
  margin: 28px 0 16px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #0F0820;
  color: rgba(255,255,255,.75);
  padding: 60px 0 40px;
  font-size: 13.5px;
  line-height: 1.7;
}
footer h5 {
  color: var(--mustard);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer .foot-block {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
footer .foot-block:last-child { border-bottom: none; }
footer p { color: rgba(255,255,255,.7); margin: 0; }

/* =========================================================
   BOTTOM STICKY POPUP
   ========================================================= */
.sticky-bottom {
  position: fixed;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 1040;
  width: calc(100% - 32px);
  max-width: 980px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 14px 22px;
  box-shadow: 0 18px 40px rgba(230,57,70,.45);
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.sticky-bottom .left {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 0;
}
.sticky-bottom .left .ic {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #FFD400;
  flex-shrink: 0;
}
.sticky-bottom .text { line-height: 1.3; }
.sticky-bottom .text strong { display: block; font-size: 15.5px; font-weight: 800; }
.sticky-bottom .text small { font-size: 12.5px; color: rgba(255,255,255,.85); }
.sticky-bottom .price-pill {
  background: #FFD400;
  color: #2A1010;
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  margin: 0 12px;
  flex-shrink: 0;
}
.sticky-bottom .sb-btn {
  background: #fff;
  color: var(--red-deep);
  font-weight: 800;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s ease;
  flex-shrink: 0;
}
.sticky-bottom .sb-btn:hover { transform: translateY(-1px); color: var(--red-darker); }
.sticky-bottom .close {
  background: rgba(255,255,255,.18);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 11px;
  cursor: pointer;
  flex-shrink: 0;
}
.sticky-bottom .close:hover { background: rgba(255,255,255,.28); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  h1.hero-title { font-size: 42px; }
  .hero-sub { font-size: 19px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .aud-grid { grid-template-columns: repeat(3, 1fr); }
  .uses-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: repeat(3, 1fr); }
  .price-row { grid-template-columns: 1fr; }
  .prob-card .quests { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
}

@media (max-width: 767.98px) {
  body { padding-bottom: 150px; }
  .hero { padding: 50px 0 60px; }
  h1.hero-title { font-size: 32px; }
  .hero-sub { font-size: 16.5px; }
  .hero-copy { font-size: 15.5px; }
  .btn-cta { font-size: 16px; padding: 14px 24px; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 15px; }

  .feat-grid { grid-template-columns: 1fr; }
  .feat-card .img-frame { height: 320px; }
  .cat-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .uses-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }

  .prob-card { padding: 28px 22px; }
  .price-box { padding: 28px 22px; }
  .price-new { font-size: 56px; }
  .price-old { font-size: 22px; }

  .top-banner { font-size: 13px; padding: 9px 14px; }
  .top-banner .tb-flex { gap: 10px; }
  .top-banner .tb-btn { padding: 5px 12px; font-size: 12.5px; }

  .sticky-bottom { padding: 10px 14px; gap: 10px; }
  .sticky-bottom .left .ic { width: 38px; height: 38px; font-size: 16px; }
  .sticky-bottom .text strong { font-size: 13.5px; }
  .sticky-bottom .text small { display: none; }
  .sticky-bottom .price-pill { font-size: 14px; padding: 3px 10px; margin: 0 6px; }
  .sticky-bottom .sb-btn { font-size: 12.5px; padding: 8px 12px; }

  .value-row { padding: 14px 16px; gap: 12px; }
  .value-row .v-info h5 { font-size: 14.5px; }
  .value-row .v-price { font-size: 18px; }

  .tile { width: 200px; }
  .tile .img-wrap { height: 280px; }

  .final-cta h2 { font-size: 28px; }
}
