:root {
  --bg: #FBF4EC;
  --bg-2: #F6E9DD;
  --surface: #ffffff;
  --ink: #1B1410;
  --ink-2: #3B2D26;
  --muted: #7A6A62;
  --line: #EADBCC;
  --line-2: #F2E4D5;
  --primary: #E63777;
  /* rose */
  --primary-ink: #B71E57;
  --primary-soft: #FFE5EE;
  --gold: #B9893A;
  --gold-soft: #F3E6CC;
  --plum: #180B13;
  --plum-2: #2A1420;
  --success: #2F8A5C;
  --success-soft: #E6F3EC;
  --danger: #C23A3A;
  --danger-soft: #FBE8E8;
  --shadow-sm: 0 1px 2px rgba(26, 20, 16, .04), 0 2px 6px rgba(26, 20, 16, .04);
  --shadow-md: 0 10px 30px -12px rgba(26, 20, 16, .14), 0 2px 6px rgba(26, 20, 16, .05);
  --shadow-lg: 0 30px 60px -20px rgba(26, 20, 16, .22), 0 8px 24px -12px rgba(26, 20, 16, .10);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none
}

.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.italic {
  font-style: italic;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 56px 0;
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .section-sm {
    padding: 40px 0;
  }

  .wrap,
  .wrap-narrow {
    padding: 0 20px;
  }
}

/* Eyebrow pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-soft);
  color: var(--primary-ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.gold {
  background: var(--gold-soft);
  color: #7a5a21;
}

.eyebrow-xl {
  background: linear-gradient(135deg, #F24A84 0%, #D92668 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  letter-spacing: 0.22em;
  box-shadow: 0 12px 26px -10px rgba(230, 55, 119, .55), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.eyebrow.dark {
  background: rgba(255, 255, 255, .08);
  color: #f7e7d6;
  border: 1px solid rgba(255, 255, 255, .12)
}

/* Headings */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 600;
}

h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 600;
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

.h-accent {
  color: var(--primary);
}

.h-italic {
  font-style: italic;
  font-weight: 600;
}

p {
  margin: 0 0 1em 0;
  color: var(--ink-2);
  text-wrap: pretty;
}

.lede {
  font-size: 18px;
  color: var(--ink-2);
}

.muted {
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, #F24A84, #D92668);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(230, 55, 119, .55), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -8px rgba(230, 55, 119, .65), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary .arrow {
  transition: transform .22s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 22px 36px;
  font-size: 16px;
}

/* Announcement bar */
.announce {
  background: var(--plum);
  color: #F7E7D6;
  text-align: center;
  padding: 10px 16px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
}

.announce .dot {
  color: var(--primary);
  margin: 0 10px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 244, 236, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, #8A1A47 100%);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.logo-name em {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
}

.nav .btn {
  padding: 12px 20px;
  font-size: 13px;
}

/* HERO */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background:
    radial-gradient(1200px 500px at 80% 0%, #FDE4EC 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 100%, #F7E7D6 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

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

.hero-attn {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--primary-ink);
  margin-bottom: 16px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .hero-attn {
    font-size: 22px;
  }
}

.hero h1 .qmark {
  color: var(--primary);
}

.hero-lede {
  margin-top: 20px;
  font-size: 17.5px;
  max-width: 540px;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dotg {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

/* Hero slider */
.slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: #2a1420;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a1420;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.slider-dots button {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .4);
  transition: background .3s;
}

.slider-dots button.active {
  background: #fff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all .2s;
  box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
  left: 14px;
}

.slider-arrow.next {
  right: 14px;
}

.badge-premium {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: rgba(24, 11, 19, .85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  backdrop-filter: blur(6px);
}

.badge-premium .spark {
  color: var(--gold);
}

/* Card / general */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-2);
}

/* HERO promise card */
.promise {
  margin-top: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #FFF1F5 100%);
  border-radius: var(--radius);
  border: 1px solid #F5D6E1;
  padding: 32px 36px;
  box-shadow: 0 30px 60px -20px rgba(230, 55, 119, .22), 0 10px 24px -12px rgba(26, 20, 16, .12);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}

.promise::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(230, 55, 119, .35), rgba(230, 55, 119, 0) 50%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.promise p {
  margin: 0 0 .6em 0;
  font-size: 16px;
  color: var(--ink-2);
}

.promise .accent {
  color: var(--ink);
  font-weight: 600;
}

.center {
  text-align: center
}

.center-cta {
  margin-top: 28px;
  text-align: center;
}

/* Comparison Table */
.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-2);
}

.comp-table th,
.comp-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
  font-size: 14.5px;
}

.comp-table th {
  background: #1B1410;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.comp-table th.primary-col {
  background: var(--primary);
}

.comp-table td {
  text-align: center;
}

.comp-table td:first-child {
  text-align: left;
  color: var(--ink);
  font-weight: 500;
}

.comp-table tr:last-child td {
  border-bottom: 0;
}

.comp-table tr:hover td {
  background: var(--bg-2);
}

.comp-table .primary-col-cell {
  background: rgba(230, 55, 119, .04);
}

.comp-table tr:hover .primary-col-cell {
  background: rgba(230, 55, 119, .08);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.pill.y {
  background: var(--success-soft);
  color: var(--success);
}

.pill.n {
  background: var(--danger-soft);
  color: var(--danger);
}

.pill.p {
  background: #FFF0D6;
  color: #B77A14;
}

.legend {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Pain points */
.pain-head {
  text-align: center;
  margin-bottom: 44px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 720px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

.pain {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.pain:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}

.pain-ico {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFE9E9;
  color: #C84040;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.pain-foot {
  margin-top: 28px;
  text-align: center;
  font-size: 22px;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .pain-foot {
    font-size: 18px;
  }
}

.pain-foot .yes {
  color: var(--primary-ink);
  font-weight: 700;
}

/* Before / After */
.ba {
  background: linear-gradient(180deg, #FDE4EC 0%, #FCE8D7 100%);
}

.ba h2 {
  text-align: center;
  color: var(--primary-ink);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}

.ba-col {
  text-align: center;
}

.ba-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ba-label.you {
  color: #6b3d3d;
}

.ba-label.her {
  color: var(--primary-ink);
}

.ba-sub {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 20px;
  min-height: 44px;
}

.ba-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-img .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(24, 11, 19, .85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.ba-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  text-align: left;
}

.ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}

.ba-list li .ico {
  flex: none;
  width: 18px;
}

.ba-cta {
  text-align: center;
  margin-top: 42px;
}

.ba-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--primary-ink);
  font-size: 28px;
}

/* Problem dark section */
.dark {
  background: linear-gradient(180deg, var(--plum) 0%, var(--plum-2) 100%);
  color: #F7E7D6;
  position: relative;
  overflow: hidden;
}

.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 10% 0%, rgba(230, 55, 119, .12), transparent 60%),
    radial-gradient(500px 400px at 100% 100%, rgba(185, 137, 58, .08), transparent 60%);
  pointer-events: none;
}

.dark h2,
.dark h3 {
  color: #fff;
}

.dark p {
  color: #D9C7B9;
}

.dark .eyebrow {
  background: rgba(230, 55, 119, .15);
  color: #FFC1D6;
}

.prob-head {
  text-align: center;
  margin-bottom: 36px;
}

.prob-head .h-italic {
  color: var(--primary);
}

.prob-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
}

.prob-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-left: 3px solid var(--primary);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 15px;
  color: #E9D8C7;
}

.prob-quote {
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
  background: linear-gradient(180deg, rgba(230, 55, 119, .1), rgba(230, 55, 119, .02));
  border: 1px solid rgba(230, 55, 119, .25);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.prob-quote p.big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.35;
}

.prob-quote p.big em {
  font-style: italic;
  color: var(--primary);
}

.prob-quote p.small {
  color: #D9C7B9;
  font-style: italic;
  margin: 0;
  font-size: 14px;
}

/* Solution */
.soln {
  background:
    radial-gradient(900px 400px at 50% 0%, #FDE4EC 0%, transparent 60%),
    var(--bg);
}

.soln-card {
  max-width: 760px;
  margin: 36px auto 0;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.soln-card p {
  font-size: 16px;
}

.soln-quote {
  background: var(--primary-soft);
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 20px 0;
  color: var(--ink);
  font-weight: 600;
}

.delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--plum);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

.delivery-pill .bolt {
  color: var(--gold);
}

/* 17 Sections grid */
.benefits h2 {
  text-align: center;
}

.benefits .sub {
  text-align: center;
  color: var(--primary-ink);
  margin-top: 10px;
}

.bgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

@media (max-width: 1000px) {
  .bgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .bgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .bgrid {
    grid-template-columns: 1fr;
  }
}

.bcard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}

.bcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bcard-head {
  padding: 14px 14px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  background: var(--pink, #FBE3EA);
}

.bcard-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}

.bcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.bcard-img {
  aspect-ratio: 1/1;
  background: #F3E6D9;
  overflow: hidden;
}

.bcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.bcard:hover .bcard-img img {
  transform: scale(1.05);
}

.bcard-foot {
  padding: 14px 16px 18px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.45;
}

/* Bright CTA band */
.cta-band {
  background: linear-gradient(135deg, #F24A84 0%, #D92668 100%);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-band::before {
  top: -80px;
  left: -60px;
}

.cta-band::after {
  bottom: -90px;
  right: -70px;
}

.cta-band>* {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
}

.cta-band .btn-light {
  background: #fff;
  color: var(--primary-ink);
}

.cta-band .trust {
  margin-top: 20px;
  display: inline-flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .85);
  letter-spacing: 0.06em;
}

.cta-band .trust span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* Process */
.process h2 {
  text-align: center;
}

.process .sub {
  text-align: center;
  color: var(--muted);
  margin-top: 8px;
}

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

@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #F24A84, #D92668);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px -4px rgba(230, 55, 119, .5);
}

.step h4 {
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Report inclusion — dark */
.report-dark h2 {
  color: #fff;
  text-align: center;
}

.report-dark h2 .brand {
  color: var(--primary);
  font-style: italic;
  font-weight: 700;
}

.report-dark .sub {
  text-align: center;
  color: #D9C7B9;
  font-style: italic;
  margin-top: 8px;
}

.rep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 820px) {
  .rep-grid {
    grid-template-columns: 1fr;
  }
}

.rep-col {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 24px;
}

.rep-heading {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.rep-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rep-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: #E9D8C7;
  border-bottom: 1px dashed rgba(255, 255, 255, .06);
}

.rep-list li:last-child {
  border-bottom: 0;
}

.sublist {
  list-style: none;
  padding: 0;
  margin: 12px 0 4px -30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sublist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 0 !important;
  font-size: 13.5px;
  color: #D9C7B9;
}

.subcheck {
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(230, 55, 119, .18);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.rep-list .check {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.rep-section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  padding-top: 14px;
  margin-top: 8px;
  margin-bottom: 4px;
  display: block;
}

.report-cta {
  text-align: center;
  margin-top: 44px;
}

/* For you / not for you */
.foru h2 {
  text-align: center;
}

.foru-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 720px) {
  .foru-grid {
    grid-template-columns: 1fr;
  }
}

.foru-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid transparent;
}

.foru-yes {
  background: #EAF7EF;
  border-color: #C9E7D5;
}

.foru-no {
  background: #FBEBEB;
  border-color: #F2CFCF;
}

.foru-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.foru-yes .foru-label {
  color: var(--success);
}

.foru-no .foru-label {
  color: var(--danger);
}

.foru-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foru-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}

.foru-list li .ico {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

.foru-yes .ico {
  background: var(--success);
  color: #fff;
}

.foru-no .ico {
  background: var(--danger);
  color: #fff;
}

/* Guarantee */
.guarantee {
  background:
    radial-gradient(700px 300px at 50% 0%, #FFF4D6 0%, transparent 60%),
    var(--bg);
}

.guarantee-card {
  max-width: 720px;
  margin: 0 auto;
  background: #FFF9E6;
  border: 1px solid #F1E0A3;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  position: relative;
}

.guarantee-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F8D06A, #C89A2E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px -8px rgba(200, 154, 46, .6);
}

.guarantee h3 {
  color: var(--ink);
  margin-bottom: 10px;
}

.guarantee p {
  color: var(--ink-2);
  max-width: 540px;
  margin: 8px auto;
}

.guarantee .seal {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--gold-soft);
  color: #8a6822;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
}

/* FAQ */
.faq h2 {
  text-align: center;
  color: var(--primary-ink);
}

.faq-list {
  max-width: 780px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  transition: transform .25s;
  font-weight: 400;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 22px 20px;
  color: var(--ink-2);
  font-size: 14.5px;
}

/* Final emotional */
.final-dark {
  background: linear-gradient(180deg, #0f0810 0%, #1c0f18 100%);
  color: #fff;
}

.final-dark h2 {
  color: #fff;
  text-align: center;
}

.final-dark h2 .accent {
  color: var(--primary);
  font-style: italic;
}

.final-dark p {
  color: #D9C7B9;
  text-align: center;
}

.final-dark .accent-yours {
  color: var(--primary);
  font-weight: 700;
}

.pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 0;
  flex-wrap: wrap;
}

.pills .pill2 {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.final-footer {
  text-align: center;
  margin-top: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #b8a699;
  font-size: 17px;
}

/* Final CTA band */
.final-cta {
  background: linear-gradient(135deg, #F24A84 0%, #C62460 100%);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}

.final-cta::before {
  top: -120px;
  left: -80px;
}

.final-cta::after {
  bottom: -160px;
  right: -100px;
}

.final-cta>* {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: #fff;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta p {
  color: rgba(255, 255, 255, .92);
  max-width: 520px;
  margin: 14px auto 24px;
}

.final-cta .trust {
  margin-top: 18px;
  display: inline-flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .85);
  letter-spacing: 0.06em;
}

.final-cta .trust span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* Footer */
.footer {
  background: #0f0810;
  color: #b8a699;
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
}

/* Scroll reveal — only hide when JS is active */
.js-reveal .reveal:not(.in) {
  opacity: 0;
  transform: translateY(20px);
}

.reveal {
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky CTA on mobile */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 60;
}

.sticky-cta .btn {
  width: 100%;
}

@media (max-width: 720px) {
  .sticky-cta.show {
    display: block;
  }

  body {
    padding-bottom: 90px;
  }
}

/* Underline animation */
.u-anim {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.u-anim::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .7s ease;
}

.u-anim.in::after {
  transform: scaleX(1);
}

/* Utility */
.tc {
  text-align: center;
}

.mt-8 {
  margin-top: 32px;
}

.mt-4 {
  margin-top: 16px;
}

.ic-check::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.ic-cross::before {
  content: '✕';
  color: var(--danger);
  font-weight: 700;
}

.ic-spark::before {
  content: '✦';
  color: var(--primary);
}

/* Text select color */
::selection {
  background: var(--primary);
  color: #fff;
}

/* ===== FOOTER (Element 1 — section-584f9b54) ===== */
.uv-footer {
  background-color: #3a3a3a;
  padding: 0;
}

.uv-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo col (size=3 = 25%) */
.uv-footer-logo-col {
  flex: 0 0 89px;
  width: 89px;
}

.uv-footer-logo-col img {
  width: 89px;
  display: block;
}

/* Text col (size=9 = 75%) */
.uv-footer-text-col {
  flex: 1;
}

/* Disclaimer + copyright block */
.uv-footer-dblock {
  margin-bottom: 6px;
}

.uv-footer-dblock p {
  font-size: 12px;
  font-family: 'Roboto', 'Inter', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgba(234, 234, 234, 1);
  line-height: 1.6;
  margin: 0;
}

/* Links block */
.uv-footer-lblock p {
  font-size: 12px;
  font-family: 'Roboto', 'Inter', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
}

.uv-footer-lblock a {
  color: rgba(200, 201, 201, 1);
  text-decoration: none;
  cursor: pointer;
}

.uv-footer-lblock a:hover {
  text-decoration: underline;
}

.uv-footer-lblock span {
  color: rgba(200, 201, 201, 1);
}

/* ===== STICKY BAR (Element 2 — section-79919918) ===== */
.uv-sticky-bar {
  background: #111111;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.uv-sticky-bar.show {
  transform: translateY(0);
}

.uv-sticky-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Text col (size=6 = 50%) */
.uv-sticky-text-col {
  flex: 0 0 50%;
}

.uv-sticky-text-col p {
  font-size: 18px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  margin: 0;
}

/* Button col (size=6 = 50%) */
.uv-sticky-btn-col {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
}

.uv-sticky-btn {
  background: #E63777;
  color: rgba(255, 255, 255, 1);
  font-family: 'Roboto', 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  padding: 12px 36px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.uv-sticky-btn:hover {
  background: #C62460;
}

/* Responsive */
@media (max-width: 768px) {
  .uv-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
  }
  .uv-sticky-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 14px 20px;
  }
  .uv-sticky-text-col,
  .uv-sticky-btn-col {
    flex: none;
    width: 100%;
    justify-content: center;
  }
  .uv-sticky-btn {
    width: 100%;
    text-align: center;
  }
  .uv-sticky-text-col p {
    font-size: 15px;
  }
}
