/* ============================================================
   PublicArt Pro — Sales Page
   Palette: Midnight Navy + Museum Gold + Warm Cream + RED CTA
   Premium "art-auction-house" aesthetic with strategic urgency.
   ============================================================ */

:root {
  /* primaries */
  --ink-darkest:  #08091A;
  --ink-dark:     #0F1226;
  --ink:          #1A1A2E;
  --ink-soft:     #4A4660;
  --ink-mute:     #8A8499;

  /* gold accents */
  --gold-deep:    #8C6F1F;
  --gold:         #C9A84C;
  --gold-bright:  #E8C96A;
  --gold-light:   #F6E9B7;
  --gold-glow:    rgba(201,168,76,.35);

  /* warm neutrals */
  --cream:        #FBF7EE;
  --cream-deep:   #F2EAD6;
  --paper:        #FFFCF4;
  --border:       #E6DFCB;
  --border-soft:  #EFE9D8;

  /* support hues */
  --plum:         #3B2452;
  --plum-soft:    #6E4FA0;
  --sage:         #5B9A8B;
  --sage-deep:    #3F7A6D;

  /* high-conversion red */
  --red:          #E63946;
  --red-deep:     #C21D2E;
  --red-darker:   #8B1220;

  --shadow-sm:    0 4px 14px rgba(15,18,38,.08);
  --shadow-md:    0 12px 32px rgba(15,18,38,.14);
  --shadow-lg:    0 28px 60px rgba(15,18,38,.22);
  --shadow-gold:  0 14px 36px rgba(201,168,76,.28);
  --shadow-red:   0 12px 28px rgba(230,57,70,.40);

  --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; display: block; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--red-deep); }

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", "Georgia", serif;
  color: var(--ink-dark);
  letter-spacing: -.01em;
  margin: 0 0 16px;
  font-weight: 700;
}

.container { max-width: 1200px; }

/* =========================================================
   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,.20);
  border-bottom: 2px solid rgba(255,255,255,.12);
  font-family: "Inter", sans-serif;
}
.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: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232,201,106,.7);
  animation: pulse 1.6s infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,201,106,.75); }
  70%  { box-shadow: 0 0 0 12px rgba(232,201,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,201,106,0); }
}
.top-banner .tb-strike { text-decoration: line-through; opacity: .75; margin-right: 4px; }
.top-banner .tb-price {
  background: var(--gold-bright);
  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(1100px 600px at 80% -10%, rgba(201,168,76,.22), transparent 60%),
    radial-gradient(800px 600px at -10% 110%, rgba(110,79,160,.18), transparent 60%),
    linear-gradient(160deg, var(--ink-darkest) 0%, var(--ink-dark) 60%, var(--ink) 100%);
  padding: 78px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(232,201,106,.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 2px, transparent 2px 8px);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.45);
  color: var(--gold-bright);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow i { color: var(--gold-bright); }

h1.hero-title {
  font-size: 64px;
  line-height: 1.06;
  color: #fff;
  font-weight: 800;
  margin: 0 0 18px;
  font-family: "Playfair Display", "Georgia", serif;
}
h1.hero-title .accent { color: var(--gold-bright); font-style: italic; }
h1.hero-title .accent2 { color: var(--red); }

.hero-sub {
  font-size: 22px;
  color: rgba(255,255,255,.82);
  max-width: 880px;
  margin: 0 auto 22px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.hero-copy {
  font-size: 16.5px;
  color: rgba(255,255,255,.75);
  max-width: 880px;
  margin: 0 auto 28px;
  line-height: 1.75;
  font-family: "Inter", sans-serif;
}
.hero-copy strong { color: #fff; }
.hero-copy .gold { color: var(--gold-bright); font-weight: 700; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.h-badge {
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.h-badge i { color: var(--gold-bright); }
.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: var(--gold-bright); }

.hero-mockup {
  display: block;
  max-width: 460px;
  margin: 14px auto 32px;
  filter: drop-shadow(0 36px 60px rgba(0,0,0,.55)) drop-shadow(0 0 22px rgba(201,168,76,.18));
}

.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: .3px;
  box-shadow: var(--shadow-red);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: none;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
.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,.50);
  color: #fff !important;
}
.btn-cta .price-tag {
  background: var(--gold-bright);
  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: 26px;
  margin-top: 22px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { color: var(--gold-bright); }

/* =========================================================
   SECTION TITLES
   ========================================================= */
.section-eyebrow {
  text-align: center;
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}
.section-title {
  text-align: center;
  font-size: 42px;
  line-height: 1.16;
  margin-bottom: 14px;
  color: var(--ink-dark);
  font-family: "Playfair Display", serif;
}
.section-title .accent { color: var(--gold-deep); font-style: italic; }
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================
   PREVIEW STRIP (above the fold gallery)
   ========================================================= */
.preview-strip {
  padding: 70px 0 40px;
  background: var(--paper);
  border-top: 1px solid var(--border);
  position: relative;
}
.preview-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 14px 4px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.scroller::-webkit-scrollbar { height: 10px; }
.scroller::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }

.tile {
  flex: 0 0 auto;
  width: 240px;
  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(-6px); box-shadow: var(--shadow-md); }
.tile .img-wrap {
  height: 280px;
  background: var(--ink-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.tile .img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.tile .img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.tile .meta {
  padding: 14px 16px 18px;
  text-align: center;
}
.tile .meta h5 {
  font-size: 15.5px;
  margin: 0 0 4px;
  color: var(--ink-dark);
  font-family: "Playfair Display", serif;
}
.tile .meta p {
  font-size: 11.5px;
  color: var(--gold-deep);
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

/* =========================================================
   FEATURED PAINTINGS CARDS
   ========================================================= */
.featured {
  padding: 90px 0;
  background:
    radial-gradient(700px 300px at 50% 0, rgba(201,168,76,.06), transparent 70%),
    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(-8px); box-shadow: var(--shadow-lg); }
.feat-card .img-frame {
  height: 340px;
  background: var(--ink-darkest);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.feat-card .img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s ease;
}
.feat-card:hover .img-frame img { transform: scale(1.05); }
.feat-card .img-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.feat-card .ribbon {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink-dark);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.5);
  z-index: 2;
}
.feat-card .ribbon.red {
  background: var(--red);
  color: #fff;
  border-color: transparent;
}
.feat-card .score {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,.7);
  color: var(--gold-bright);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.4);
  backdrop-filter: blur(6px);
  z-index: 2;
}
.feat-card .score i { margin-right: 4px; }
.feat-card .body {
  padding: 22px 24px 26px;
}
.feat-card h4 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink-dark);
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.feat-card .cat {
  font-size: 11px;
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 2px;
  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.6;
}
.feat-card .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.feat-card .chip {
  background: var(--cream-deep);
  color: var(--gold-deep);
  font-size: 11.5px;
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .3px;
  border: 1px solid var(--border);
}
.feat-card .chip.red { background: rgba(230,57,70,.08); color: var(--red-deep); border-color: rgba(230,57,70,.25); }
.feat-card .chip.sage { background: rgba(91,154,139,.10); color: var(--sage-deep); border-color: rgba(91,154,139,.25); }

/* =========================================================
   FULL DEMO GALLERY (120 live paintings + artist filters)
   ========================================================= */
.demo-gallery {
  padding: 90px 0 100px;
  background:
    radial-gradient(800px 400px at 50% 0, rgba(201,168,76,.08), transparent 70%),
    linear-gradient(180deg, var(--ink-darkest) 0%, var(--ink-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.demo-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 2px, transparent 2px 8px);
  pointer-events: none;
}
.demo-gallery .section-eyebrow { color: var(--gold-bright); position: relative; }
.demo-gallery .section-title { color: #fff; position: relative; }
.demo-gallery .section-title .accent { color: var(--gold-bright); }
.demo-gallery .section-sub { color: rgba(255,255,255,.72); position: relative; }

.gal-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin: 0 auto 36px;
  position: relative;
}
.gal-stat { text-align: center; }
.gal-stat .num {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--gold-bright);
  font-weight: 800;
  display: block;
  line-height: 1;
}
.gal-stat .lbl {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 6px;
  display: block;
}

.gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  position: relative;
}
.gal-filters .filter-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.78);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gal-filters .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(201,168,76,.10);
}
.gal-filters .filter-btn.active {
  border-color: var(--gold-bright);
  color: var(--ink-darkest);
  background: var(--gold-bright);
  box-shadow: 0 6px 18px rgba(232,201,106,.30);
}
.gal-filters .filter-btn .ct {
  background: rgba(0,0,0,.18);
  color: inherit;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-left: 2px;
}
.gal-filters .filter-btn.active .ct {
  background: rgba(0,0,0,.25);
}

.gal-count-bar {
  text-align: center;
  color: rgba(255,255,255,.70);
  margin-bottom: 24px;
  font-size: 13.5px;
  position: relative;
}
.gal-count-bar strong { color: var(--gold-bright); font-weight: 800; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  position: relative;
}
.gal-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
}
.gal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0,0,0,.50);
  border-color: rgba(201,168,76,.45);
}
.gal-card .gc-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0A0B1A;
}
.gal-card .gc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gal-card:hover .gc-img img { transform: scale(1.06); }
.gal-card .gc-score {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(201,168,76,.55);
  color: var(--gold-bright);
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  font-family: "Inter", sans-serif;
}
.gal-card .gc-score i { margin-right: 3px; font-size: 10px; }
.gal-card .gc-body {
  padding: 12px 14px 16px;
}
.gal-card .gc-artist {
  display: inline-block;
  font-size: 10.5px;
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
}
.gal-card .gc-title {
  font-family: "Playfair Display", serif;
  font-size: 14.5px;
  font-style: italic;
  color: #fff;
  line-height: 1.35;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.demo-gallery .gal-cta-wrap {
  text-align: center;
  margin-top: 50px;
  position: relative;
}
.demo-gallery .gal-disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.58);
  font-style: italic;
}
.demo-gallery .gal-disclaimer strong { color: var(--gold-bright); font-style: normal; }

/* Simple lightbox */
.lb {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  cursor: zoom-out;
}
.lb.open { display: flex; }
.lb-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: center;
  cursor: default;
}
.lb-img-wrap {
  background: #0A0B1A;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.30);
}
.lb-img-wrap img { width: 100%; height: auto; display: block; }
.lb-info {
  color: #fff;
}
.lb-artist {
  display: inline-block;
  font-size: 11.5px;
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}
.lb-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
  font-style: italic;
}
.lb-meta {
  font-size: 13.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 22px;
}
.lb-meta strong { color: var(--gold-bright); }
.lb-close {
  position: absolute;
  top: 16px; right: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: rgba(255,255,255,.22); }

/* =========================================================
   TRANSFORMATION (Before / After)
   ========================================================= */
.transformation {
  padding: 90px 0;
  background: var(--ink-darkest);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.transformation::before, .transformation::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.transformation::before {
  width: 420px; height: 420px; top: -120px; right: -120px;
  background: radial-gradient(circle, rgba(201,168,76,.20), transparent 70%);
}
.transformation::after {
  width: 360px; height: 360px; bottom: -110px; left: -110px;
  background: radial-gradient(circle, rgba(230,57,70,.20), transparent 70%);
}
.transformation .section-title { color: #fff; }
.transformation .section-title .accent { color: var(--gold-bright); }
.transformation .section-eyebrow { color: var(--gold-bright); }
.transformation .section-sub { color: rgba(255,255,255,.72); }
.t-col {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  backdrop-filter: blur(8px);
  height: 100%;
}
.t-col.before { border-color: rgba(230,57,70,.40); }
.t-col.after  { border-color: rgba(201,168,76,.50); }
.t-col h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  font-family: "Playfair Display", serif;
}
.t-col.before h3 i { color: var(--red); }
.t-col.after h3 i  { color: var(--gold-bright); }
.t-col ul { list-style: none; padding: 0; margin: 0; }
.t-col li {
  padding: 11px 0 11px 34px;
  position: relative;
  color: rgba(255,255,255,.92);
  font-size: 15.5px;
  border-bottom: 1px dashed rgba(255,255,255,.10);
  font-family: "Inter", sans-serif;
}
.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: 12px; color: var(--red);
}
.t-col.after li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 12px; color: var(--gold-bright);
}
.t-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--gold);
  padding: 24px 0;
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem {
  padding: 90px 0;
  background: var(--cream);
}
.prob-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 44px;
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow-md);
}
.prob-card .lead {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.78;
  margin-bottom: 16px;
}
.prob-card .lead strong { color: var(--ink-dark); }
.prob-card .quests {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.prob-card .quests li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--ink-dark);
  font-weight: 600;
  font-size: 15px;
}
.prob-card .quests li::before {
  content: "\f059";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 10px;
  color: var(--red);
}
.prob-close {
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(230,57,70,.08);
  border-radius: var(--radius-sm);
  color: var(--red-deep);
  font-weight: 700;
  font-size: 16.5px;
  border-left: 4px solid var(--red);
}
.prob-close i { margin-right: 10px; }

/* =========================================================
   SOLUTION
   ========================================================= */
.solution {
  padding: 90px 0;
  background: linear-gradient(140deg, var(--gold-light) 0%, var(--cream-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: ""; position: absolute;
  inset: -10% -10% -10% -10%;
  background: radial-gradient(600px 300px at 50% 50%, rgba(255,255,255,.4), transparent 70%);
  pointer-events: none;
}
.solution-tagline {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink-dark);
  color: #fff;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  margin-top: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold);
  font-family: "Inter", sans-serif;
}
.solution-tagline i { color: var(--gold-bright); }

/* =========================================================
   WHAT YOU GET
   ========================================================= */
.whatyouget { padding: 90px 0; background: var(--paper); }
.block-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 34px 32px;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.block-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright));
  border-radius: var(--radius) var(--radius) 0 0;
}
.block-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.block-card h3 {
  font-size: 23px;
  color: var(--ink-dark);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--border);
  font-family: "Playfair Display", serif;
}
.block-card h3 i { color: var(--gold); font-size: 22px; }
.block-card ul { list-style: none; padding: 0; margin: 0; }
.block-card li {
  padding: 9px 0 9px 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: 12px;
  color: var(--sage);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.fmt {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.fmt:hover { transform: translateY(-4px); }
.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(--cream-deep);
  color: var(--gold-deep);
  border: 1px solid var(--gold);
}
.fmt.red .icon { background: rgba(230,57,70,.10); color: var(--red-deep); border-color: rgba(230,57,70,.4); }
.fmt.sage .icon { background: rgba(91,154,139,.12); color: var(--sage-deep); border-color: rgba(91,154,139,.4); }
.fmt.ink .icon  { background: rgba(15,18,38,.08); color: var(--ink-dark); border-color: rgba(15,18,38,.30); }
.fmt h4 { font-size: 18px; margin-bottom: 6px; color: var(--ink-dark); }
.fmt p  { color: var(--ink-soft); margin: 0; font-size: 13.5px; }

.plr-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--ink-dark) 0%, var(--ink-darkest) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 38px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.3);
}
.plr-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 220px at 80% 0, rgba(201,168,76,.22), transparent 60%);
  pointer-events: none;
}
.plr-banner .key {
  width: 80px; height: 80px;
  margin: 0 auto 14px;
  background: rgba(201,168,76,.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  color: var(--gold-bright);
  border: 1px solid rgba(201,168,76,.45);
}
.plr-banner h3 { color: #fff; margin-bottom: 8px; font-size: 28px; }
.plr-banner p { color: rgba(255,255,255,.85); margin: 5px 0; font-size: 15.5px; }
.plr-banner p i { color: var(--gold-bright); margin-right: 8px; }
.plr-banner .pill {
  display: inline-block;
  background: var(--gold-bright);
  color: #2A1010;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* =========================================================
   COLLECTIONS GRID (categories)
   ========================================================= */
.categories {
  padding: 90px 0;
  background:
    radial-gradient(900px 460px at 100% 0, rgba(201,168,76,.10), transparent 60%),
    radial-gradient(700px 400px at 0 100%, rgba(110,79,160,.08), transparent 60%),
    var(--cream);
}
.movement {
  margin-bottom: 36px;
}
.movement-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-dark);
  color: var(--gold-bright);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  border: 1px solid rgba(201,168,76,.4);
}
.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(--gold); }
.cat-item .cat-num {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  letter-spacing: .3px;
  box-shadow: 0 4px 10px rgba(140,111,31,.30);
}
.cat-item .cat-text { line-height: 1.4; min-width: 0; flex: 1; }
.cat-item .cat-text h5 {
  font-size: 16.5px;
  margin: 0;
  color: var(--ink-dark);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.cat-item .cat-text small {
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.cat-item:nth-child(6n+2) .cat-num { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-darkest) 100%); }
.cat-item:nth-child(6n+3) .cat-num { background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%); }
.cat-item:nth-child(6n+4) .cat-num { background: linear-gradient(135deg, var(--plum-soft) 0%, var(--plum) 100%); }
.cat-item:nth-child(6n+5) .cat-num { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%); }
.cat-item:nth-child(6n+6) .cat-num { background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%); color: #2A1010; }

/* =========================================================
   AUDIENCE
   ========================================================= */
.audience {
  padding: 90px 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: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.aud:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.aud .ic {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  border: 1px solid var(--gold);
}
.aud:nth-child(4n+2) .ic { background: rgba(230,57,70,.10); color: var(--red-deep); border-color: rgba(230,57,70,.35); }
.aud:nth-child(4n+3) .ic { background: rgba(15,18,38,.06); color: var(--ink-dark); border-color: rgba(15,18,38,.25); }
.aud:nth-child(4n+4) .ic { background: rgba(91,154,139,.10); color: var(--sage-deep); border-color: rgba(91,154,139,.35); }
.aud h4 { font-size: 15px; margin: 0; color: var(--ink-dark); font-family: "Inter", sans-serif; font-weight: 700; }

/* =========================================================
   PLR RIGHTS USES
   ========================================================= */
.uses {
  padding: 90px 0;
  background: linear-gradient(160deg, #FBF7EE 0%, #F2EAD6 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 22px;
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-dark);
  font-weight: 600;
  font-size: 15px;
  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: 42px; height: 42px;
  background: var(--cream-deep);
  color: var(--gold-deep);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  border: 1px solid var(--gold);
}
.use-item:nth-child(3n+2) i { background: rgba(230,57,70,.10); color: var(--red-deep); border-color: rgba(230,57,70,.35); }
.use-item:nth-child(3n+3) i { background: rgba(15,18,38,.06); color: var(--ink-dark); border-color: rgba(15,18,38,.25); }

.note-card {
  margin-top: 30px;
  background: #fff;
  border-radius: var(--radius-sm);
  border-left: 5px solid var(--gold);
  padding: 20px 24px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}
.note-card h5 {
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--ink-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Inter", sans-serif;
}
.note-card h5 i { color: var(--gold-deep); margin-right: 8px; }

/* =========================================================
   VALUE STACK
   ========================================================= */
.value {
  padding: 90px 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: 20px 26px;
  border-bottom: 1px dashed var(--border);
}
.value-row:last-of-type { border-bottom: none; }
.value-row .v-ic {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
}
.value-row:nth-child(2n) .v-ic { background: rgba(15,18,38,.06); color: var(--ink-dark); border-color: rgba(15,18,38,.30); }
.value-row .v-info { flex: 1; }
.value-row .v-info h5 {
  margin: 0;
  font-size: 16.5px;
  color: var(--ink-dark);
  font-family: "Playfair Display", serif;
}
.value-row .v-info small { color: var(--ink-mute); font-size: 12.5px; }
.value-row .v-price {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  color: var(--sage-deep);
  font-size: 22px;
}
.value-total {
  background: linear-gradient(135deg, var(--ink-dark) 0%, var(--ink-darkest) 100%);
  color: #fff;
  padding: 24px 28px;
  font-weight: 800;
  font-size: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: "Playfair Display", serif;
}
.value-total .price { color: var(--gold-bright); font-size: 32px; }

.price-row {
  background: var(--paper);
  padding: 30px;
  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(--ink-dark); font-size: 18px; font-family: "Playfair Display", serif; }
.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: var(--gold-bright); font-size: 24px; }

.value-note {
  text-align: center;
  margin-top: 24px;
  background: var(--cream-deep);
  color: var(--gold-deep);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  border: 1px dashed var(--gold);
}
.value-note i { color: var(--red); margin-right: 8px; }

/* =========================================================
   PRICING / BUY BOX
   ========================================================= */
.pricing {
  padding: 90px 0;
  background:
    radial-gradient(700px 400px at 0 0, rgba(201,168,76,.18), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(15,18,38,.12), transparent 60%),
    var(--paper);
}
.price-box {
  background: #fff;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 44px 46px;
  box-shadow: 0 30px 60px rgba(230,57,70,.20);
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: "BEST VALUE";
  position: absolute;
  top: 20px; right: -44px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 6px 52px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2.5px;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(230,57,70,.45);
  font-family: "Inter", sans-serif;
}
.price-checklist { list-style: none; padding: 0; margin: 0 0 28px; }
.price-checklist li {
  padding: 11px 0 11px 34px;
  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: 12px;
  color: var(--sage);
  font-size: 18px;
}
.price-display {
  text-align: center;
  margin: 26px 0 24px;
}
.price-old {
  font-family: "Playfair Display", serif;
  text-decoration: line-through;
  color: var(--ink-mute);
  font-size: 32px;
  font-weight: 700;
  margin-right: 18px;
  vertical-align: middle;
}
.price-new {
  font-family: "Playfair Display", serif;
  font-size: 84px;
  font-weight: 800;
  color: var(--red-deep);
  vertical-align: middle;
  line-height: 1;
}
.price-new sup { font-size: 32px; top: -36px; }
.price-urg {
  margin-top: 24px;
  background: rgba(230,57,70,.08);
  color: var(--red-deep);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  font-size: 15px;
  border: 1px solid rgba(230,57,70,.25);
}
.price-urg i { margin-right: 8px; }

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee {
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
}
.guar-icon {
  width: 120px; height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  box-shadow: 0 18px 36px rgba(140,111,31,.30);
  border: 4px solid #fff;
  outline: 1px solid var(--gold);
}
.guarantee p.desc { font-size: 17.5px; color: var(--ink-soft); max-width: 740px; margin: 0 auto 20px; }
.guarantee .closing {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--gold);
  padding: 13px 26px;
  border-radius: 999px;
  color: var(--gold-deep);
  font-weight: 700;
}
.guarantee .closing i { margin-right: 8px; color: var(--gold); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 90px 0;
  background: var(--paper);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  padding: 20px 24px;
  cursor: pointer;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--red); 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(--ink-dark);
  line-height: 1.45;
  font-family: "Inter", sans-serif;
}
.faq-q i.toggle {
  color: var(--red-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.75;
}
.faq-item.active .faq-a { display: block; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  padding: 90px 0 110px;
  background: linear-gradient(135deg, var(--ink-darkest) 0%, var(--ink-dark) 50%, var(--ink) 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: 520px; height: 520px; top: -210px; right: -160px;
  background: radial-gradient(circle, rgba(201,168,76,.28), transparent 70%);
}
.final-cta::after {
  width: 520px; height: 520px; bottom: -210px; left: -160px;
  background: radial-gradient(circle, rgba(230,57,70,.26), transparent 70%);
}
.final-cta h2 {
  color: #fff;
  font-size: 46px;
  margin-bottom: 22px;
  font-family: "Playfair Display", serif;
}
.final-cta h2 .accent { color: var(--gold-bright); font-style: italic; }
.final-cta p { color: rgba(255,255,255,.90); font-size: 17px; max-width: 800px; margin: 10px auto; line-height: 1.7; }
.final-cta .final-price {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--gold-bright);
  margin: 30px 0 18px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-section {
  background: var(--ink-darkest);
  color: rgba(255,255,255,.70);
  padding: 60px 0 36px;
  font-size: 13.5px;
  line-height: 1.7;
  border-top: 1px solid rgba(201,168,76,.18);
}
.footer-disclaimer {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
  padding: 24px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
}
.footer-disclaimer .wplus_spdisclaimer {
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0;
}
.footer-disclaimer .wplus_spdisclaimer strong {
  color: var(--gold-bright);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: .5px;
}
.footer-disclaimer .wplus_spdisclaimer em {
  font-style: italic;
  color: rgba(255,255,255,.68);
}
.footer-disclaimer .footer-extra {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,.10);
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.footer-disclaimer .footer-extra strong { color: var(--gold-bright); font-weight: 700; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links a {
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-links a i { color: var(--gold); }

.footer-copy {
  text-align: center;
  margin: 18px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
  letter-spacing: .3px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 575.98px) {
  .footer-section { padding: 44px 0 30px; }
  .footer-disclaimer { padding: 20px 18px; }
  .footer-disclaimer .wplus_spdisclaimer,
  .footer-disclaimer .footer-extra { font-size: 11.5px; }
  .footer-links { gap: 16px; }
  .footer-links a { font-size: 12.5px; }
}

/* =========================================================
   BOTTOM STICKY POPUP
   ========================================================= */
.sticky-bottom {
  position: fixed;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 1040;
  width: calc(100% - 32px);
  max-width: 1020px;
  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;
  border: 1px solid rgba(255,255,255,.10);
}
.sticky-bottom .left {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 0;
}
.sticky-bottom .left .ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--gold-bright);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.22);
}
.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: var(--gold-bright);
  color: #2A1010;
  padding: 5px 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 22px;
  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,.30); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  h1.hero-title { font-size: 46px; }
  .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(2, 1fr); }
  .price-row { grid-template-columns: 1fr; }
  .prob-card .quests { grid-template-columns: 1fr; }
  .section-title { font-size: 34px; }
  .final-cta h2 { font-size: 36px; }
  .gal-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
  .lb-inner { grid-template-columns: 1fr; gap: 18px; }
  .lb-title { font-size: 24px; }
}

@media (max-width: 767.98px) {
  body { padding-bottom: 150px; }
  .hero { padding: 56px 0 64px; }
  h1.hero-title { font-size: 34px; }
  .hero-sub { font-size: 17px; }
  .hero-copy { font-size: 15px; }
  .btn-cta { font-size: 15.5px; padding: 14px 24px; }
  .section-title { font-size: 27px; }
  .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: 58px; }
  .price-old { font-size: 24px; }

  .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 14px; }

  .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: 210px; }
  .tile .img-wrap { height: 240px; }

  .final-cta h2 { font-size: 30px; }

  .gal-stats { gap: 28px; }
  .gal-stat .num { font-size: 28px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gal-card .gc-body { padding: 10px 12px 14px; }
  .gal-card .gc-title { font-size: 13px; }
  .gal-card .gc-artist { font-size: 9.5px; }
  .demo-gallery { padding: 60px 0 70px; }
}
