:root {
  --ink: #27001f;
  --paper: #Fff;
  --warm: #F5F0E8;
  --dark-sec: #17171F;
  --fire: #E8440A;
  --fire-soft: #FF6B35;
  --gold: #D4A017;
  --gold-lt: #F0C040;
  --muted: #6A6A7A;
  --border: #E4E0D8;
  --card: #FFFFFF;
  --r24: 24px;
  --r16: 16px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ─── TICKER ──────────────────────────────────────── */
.ticker-bar {
  background: var(--fire);
  padding: 11px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: tick 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

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

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

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

/* ─── HERO ────────────────────────────────────────── */
.hero {
  background: var(--dark-sec);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 68, 10, .18) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 23, .1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 68, 10, .15);
  border: 1px solid rgba(232, 68, 10, .35);
  color: var(--fire-soft);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--fire-soft);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 2.8rem);
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  /* margin-bottom: 24px; */
}

.hero-h1 em {
  font-style: italic;
  color: var(--fire-soft);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #000;
  /* max-width: 560px; */
  /* margin-bottom: 36px; */
  font-weight: 400;
}

.hero-sub strong {
  color: rgba(255, 255, 255, .9);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-pill {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .75);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}

.btn-fire {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fire);
  color: #fff;
  border: none;
  padding: 17px 40px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  box-shadow: 0 8px 32px rgba(232, 68, 10, .45);
  text-decoration: none;
}

.btn-fire:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(232, 68, 10, .55);
  color: #fff;
}

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

.h-stat {
  flex: 1;
  min-width: 140px;
  padding: 28px 0 32px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.h-stat:last-child {
  border-right: none;
}

.h-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.h-stat-num span {
  color: var(--fire-soft);
}

.h-stat-lbl {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 5px;
  font-weight: 500;
}

.hero-img-wrap {
  position: relative;
  padding: 40px 0 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.hero-mockup {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px 20px 0 0;
  padding: 32px 28px 0;
  width: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.md1 {
  background: #ff5f57
}

.md2 {
  background: #febc2e
}

.md3 {
  background: #28c840
}

.mockup-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 68, 10, .15);
  border: 1px solid rgba(232, 68, 10, .3);
  border-radius: 8px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, .75);
  font-family: 'Poppins', monospace;
  font-size: .78rem;
  margin-bottom: 10px;
}

.mockup-pill .key {
  color: var(--fire-soft);
  font-weight: 700;
}

.mockup-pill .val {
  color: rgba(255, 255, 255, .9);
}

.badge-float {
  position: absolute;
  background: var(--fire);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: 9px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(232, 68, 10, .4);
  white-space: nowrap;
}

.bf-top {
  top: -14px;
  right: 24px;
}

/* ─── SECTION UTILITIES ───────────────────────────── */
.sec {
  padding: 50px 0;
}

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

.sec-warm {
  background: var(--warm);
}

.sec-white {
  background: #fff;
}

.sec-paper {
  background: var(--paper);
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 14px;
  display: block;
}

.eyebrow-gold {
  color: var(--gold);
}

.eyebrow-dark {
  color: var(--fire-soft);
}

.sec-title {
  font-size: clamp(1.9rem, 3.8vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.sec-title-white {
  color: #fff;
}

.sec-body {
  font-size: 1.03rem;
  color: var(--muted);
  line-height: 1.75;
}

.sec-body-light {
  color: rgba(255, 255, 255, .6);
}

/* ─── SPLIT ───────────────────────────────────────── */
.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-wrap.reverse {
  direction: rtl;
}

.split-wrap.reverse>* {
  direction: ltr;
}

@media(max-width:991px) {

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

  .split-wrap.reverse>* {
    direction: ltr;
  }
}

/* ─── IMAGE PANELS ────────────────────────────────── */
.img-panel {
  border-radius: var(--r24);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-panel-dark {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .08);
}

.img-panel-warm {
  background: #EDE8DF;
  border: 1px solid #D8D0C4;
}

.img-panel-fire {
  background: linear-gradient(135deg, #B53196 0%, #1995BC 100%);
}

.img-panel-gold {
  background: linear-gradient(135deg, #1A1208 0%, #3D2A06 100%);
  border: 1px solid rgba(212, 160, 23, .2);
}

.panel-inner {
  padding: 25px;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-label {
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  width: fit-content;
}

.pl-fire {
  background: rgba(232, 68, 10, .15);
  border: 1px solid rgba(232, 68, 10, .3);
  color: #FF6B35;
}

.pl-gold {
  background: rgba(212, 160, 23, .15);
  border: 1px solid rgba(212, 160, 23, .3);
  color: var(--gold-lt);
}

.pl-white {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
}

/* problem list items */
.problem-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 10px;
  transition: background .2s;
}

.problem-list-item:hover {
  background: rgba(232, 68, 10, .08);
}

.pli-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(232, 68, 10, .15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fire-soft);
  font-size: .9rem;
  margin-top: 2px;
}

.pli-text {
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  line-height: 1.5;
}

.pli-text strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
  font-size: .9rem;
}

/* check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .95rem;
}

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

.check-list .ci {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .65rem;
  margin-top: 2px;
}

.check-list li span {
  color: rgba(255, 255, 255, .75);
}

/* audience grid */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.aud-tile {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 20px 18px;
  transition: background .2s, border-color .2s;
}

.aud-tile:hover {
  background: rgba(232, 68, 10, .1);
  border-color: rgba(232, 68, 10, .3);
}

.aud-tile .at-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.aud-tile .at-title {
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 4px;
}

.aud-tile .at-desc {
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}

/* checklist cards */
.checklist-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 24px 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}

.checklist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
}

.cc-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--fire);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
}

.cc-body h5 {
  font-family: 'Poppins', sans-serif;
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cc-body p {
  font-size: .84rem;
  color: var(--muted);
  margin: 0;
}

/* stats panel bars */
.big-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--fire);
  line-height: 1;
  margin-bottom: 4px;
}

.big-count-dark {
  color: #fff;
}

.big-count-lbl {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* cat grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.cat-tile {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 22px 20px;
  transition: background .2s, border-color .2s, transform .2s;
}

.cat-tile:hover {
  background: rgba(232, 68, 10, .09);
  border-color: rgba(232, 68, 10, .3);
  transform: translateY(-4px);
}

.cat-tile .ct-category {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fire-soft);
  margin-bottom: 8px;
}

.cat-tile .ct-name {
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 6px;
}

.cat-tile .ct-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
}

.cat-tile .ct-desc {
  font-size: .76rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 6px;
}

/* steps */
.steps-timeline {
  position: relative;
  padding-left: 56px;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--fire) 0%, rgba(232, 68, 10, .1) 100%);
}

.step-node {
  position: relative;
  margin-bottom: 36px;
}

.step-node:last-child {
  margin-bottom: 0;
}

.step-circle {
  position: absolute;
  left: -44px;
  top: 4px;
  width: 30px;
  height: 30px;
  background: var(--fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: .85rem;
  box-shadow: 0 0 0 5px rgba(232, 68, 10, .15);
}

.step-node h4 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 7px;
}

.step-node p {
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  margin: 0;
}

.step-preview-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.spc-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--fire);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}

.spc-content {
  flex: 1;
}

.spc-label {
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
  margin-bottom: 3px;
}

.spc-title {
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
}

.spc-bar {
  height: 4px;
  background: rgba(255, 255, 255, .08);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.spc-fill {
  height: 100%;
  background: var(--fire);
  border-radius: 2px;
}

.spc-check {
  color: #22c55e;
  font-size: 1rem;
}

/* module cards */
.module-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 26px 28px;
  margin-bottom: 14px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background .2s;
}

.module-card:hover {
  background: rgba(232, 68, 10, .07);
  border-color: rgba(232, 68, 10, .25);
}

.mc-tag {
  flex-shrink: 0;
  background: rgba(212, 160, 23, .15);
  border: 1px solid rgba(212, 160, 23, .3);
  color: var(--gold-lt);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

.module-card h5 {
  color: #fff;
  font-size: .95rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}

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

/* bonus rows */
.bonus-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 14px;
  transition: transform .2s, box-shadow .2s;
}

.bonus-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.bonus-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #D4A017, #F0C040);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.bonus-row h5 {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bonus-row p {
  font-size: .84rem;
  color: var(--muted);
  margin: 0;
}

.bonus-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--fire);
}

/* fit check */
.fit-col {
  border-radius: var(--r24);
  padding: 40px;
}

.fit-yes {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.fit-no {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
}

.fit-head {
  font-size: 1.25rem;
  margin-bottom: 22px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.fit-yes .fit-head {
  color: #15803D;
}

.fit-no .fit-head {
  color: #9F1239;
}

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

.fi-yes {
  color: #16A34A;
  font-size: 1rem;
  margin-top: 2px;
}

.fi-no {
  color: #E11D48;
  font-size: 1rem;
  margin-top: 2px;
}

.fit-note {
  background: rgba(159, 18, 57, .06);
  border: 1px solid rgba(159, 18, 57, .15);
  border-radius: 12px;
  padding: 16px;
  font-size: .85rem;
  color: #7F1D1D;
  margin-top: 18px;
}

/* plr items */
.plr-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

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

.plr-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fire);
  font-size: 1.2rem;
}

.plr-item h5 {
  font-family: 'Poppins', sans-serif;
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

/* plr bubbles */
.plr-bubble-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.plr-bubble {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: background .2s;
}

.plr-bubble:hover {
  background: rgba(232, 68, 10, .1);
}

.plr-bubble .pb-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.plr-bubble .pb-title {
  color: #fff;
  font-size: .87rem;
  font-weight: 600;
  line-height: 1.3;
}

/* smart choice */
.smart-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

/* .smart-col {
  border-radius: 20px;
  padding: 32px;
} */

.sc-old {
  background: #FFF8F6;
  border: 2px solid #FECDD3;
}

.sc-new {
  /* background: var(--ink);
  border: 2px solid var(--fire); */
  position: relative;
  overflow: hidden;
}

/* .sc-new::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 68, 10, .2) 0%, transparent 65%);
} */

.sc-old h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #9F1239;
  margin-bottom: 16px;
}

.sc-new h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #4D106A;
  margin-bottom: 16px;
}

.sc-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .88rem;
}

.sc-old .sc-item {
  color: #7F1D1D;
}

.sc-new .sc-item {
  color: #000;
}

.sc-x {
  color: #E11D48;
  margin-top: 2px;
}

.sc-check {
  color: #22c55e;
  margin-top: 2px;
}

/* guarantee */
.guarantee-box {
  background: #4D0D6A;
  border-radius: var(--r24);
  padding: 35px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.guarantee-box::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(34, 197, 94, .1) 0%, transparent 65%);
  pointer-events: none;
}

.guarantee-shield {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 28px;
  box-shadow: 0 10px 40px rgba(34, 197, 94, .35);
  position: relative;
  z-index: 1;
}

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

.guarantee-box p {
  color: rgba(255, 255, 255, .6);
  /* max-width: 540px; */
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
}

.guarantee-note {
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
  position: relative;
  z-index: 1;
}

/* cta */
.cta-outer {
  background: var(--fire);
  border-radius: var(--r24);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-outer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-outer::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, .1);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-outer p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--fire);
  border: none;
  padding: 17px 44px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
  color: var(--fire);
}

.cta-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--card);
}

.faq-q {
  padding: 20px 24px;
  font-weight: 700;
  font-size: .96rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
  user-select: none;
}

.faq-q:hover {
  color: var(--fire);
}

.faq-q .faq-arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .7rem;
  transition: background .2s, transform .3s;
}

.faq-item.open .faq-q {
  color: var(--fire);
}

.faq-item.open .faq-arrow {
  background: var(--fire);
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  font-size: .92rem;
  color: var(--muted);
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* footer */
.site-footer {
 background: #31a4c82e;
  color: rgb(0, 0, 0);
  padding: 30px 0;
  font-size: 1.0rem;
  text-align: center;
}

.site-footer a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: color .15s;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, .8);
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--fire-soft);
}

/* animations */
.g-reveal {
  opacity: 0;
  transform: translateY(32px);
}

.g-left {
  opacity: 0;
  transform: translateX(-44px);
}

.g-right {
  opacity: 0;
  transform: translateX(44px);
}

.g-scale {
  opacity: 0;
  transform: scale(.92);
}

.g-fade {
  opacity: 0;
}

@keyframes float-a {

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

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

@keyframes float-b {

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

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

.float-a {
  animation: float-a 3.2s ease-in-out infinite;
}

.float-b {
  animation: float-b 3.8s ease-in-out infinite;
}

@media(max-width:768px) {
  .panel-inner {
    min-height: 300px;
    padding: 28px;
  }

  .guarantee-box,
  .cta-outer {
    padding: 48px 24px;
  }

  .hero-mockup {
    min-height: 300px;
  }

  .h-stat {
    min-width: 100px;
  }

  .split-wrap {
    gap: 40px;
  }
}