  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

  :root {
    --rose: #D4537E;
    --rose-light: #FBEAF0;
    --rose-dark: #72243E;
    --plum: #534AB7;
    --plum-light: #EEEDFE;
    --ink: #1A1A2E;
    --ink-muted: #4A4A6A;
    --ink-faint: #8888AA;
    --surface: #FDFCFB;
    --card: #FFFFFF;
    --border: rgba(212, 83, 126, 0.15);
    --gold: #C9963A;
  }

@media (max-width: 600px) {
	.product-links {
    	flex-direction: column;
	}
	.step-body {
    font-size: 16px;
	}
}
h2 {
    margin: 1.5rem 0 !important;
}
/* PULL QUOTE */
  .pull-quote {
    background: var(--plum-light);
    border-left: 4px solid var(--plum);
    border-radius: 0 12px 12px 0;
    padding: 28px 32px;
    margin: 40px 0;
  }
  .pull-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--plum);
    margin: 0;
    line-height: 1.55;
  }
/* SIGNS LIST */
  .sign-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
	  margin-bottom: 1rem;
  }
  .sign-num {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 700;
    color: var(--rose-light);
    line-height: 1;
    min-width: 32px;
    -webkit-text-stroke: 1.5px var(--rose);
  }
  .sign-text strong {
    display: block;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .sign-text span {
    font-size: 16px;
    color: var(--ink-faint);
    line-height: 1.6;
  }
/* PRODUCT CARD */
  .product-card {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 100%);
    border-radius: 16px;
    padding: 36px 32px;
    margin: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
  }
  .product-card::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212,83,126,0.2) 0%, transparent 70%);
  }
  .product-card-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .product-card h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
  }
  .product-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.65;
  }
  .product-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .btn-primaryy {
    display: inline-block;
    background: var(--rose);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .btn-primaryy:hover { opacity: 0.85; }
  .btn-ghost {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: border-color 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); }
 /* RECOVERY STEPS */
.steps_container {
	display: flex;
	width: 100%;
}
  .steps {
    counter-reset: step;
    list-style: none;
	margin: 18px 0 0px !important;
    padding: 0 !important;
  }
  .steps li {
    counter-increment: step;
    display: flex;
    gap: 12px;
    margin: 0 0 24px 0px;
    align-items: flex-start;
  }
  .steps li::before {
    content: counter(step);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: var(--rose);
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .steps li .step-body strong {
    display: block;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
    font-size: 20px;
  }
  .steps li .step-body span {
    color: var(--ink-faint);
    font-size: 15px;
    line-height: 1.65;
  }
 /* CLOSING CTA */
  .closing-cta {
    background: var(--rose-light);
    border-radius: 16px;
    padding: 40px 36px;
    text-align: center;
    margin-top: 56px;
  }
  .closing-cta h2 {
    font-size: 26px;
    margin: 0 0 12px;
    color: var(--rose-dark);
  }
  .closing-cta p {
    color: var(--rose-dark);
    opacity: 0.75;
    margin-bottom: 24px;
    font-size: 16px;
  }
  .closing-cta .btn-primary {
    background: var(--rose-dark);
  }