/* ============================================================
   Pain Section — V1 (centered editorial)
   Cream bg, burgundy accents, quiet white cards.
   ============================================================ */

.pain-section {
  width: 100%;
  background: var(--gt-cream);
  padding: 80px 64px;
  font-family: var(--font-sans);
  direction: rtl;
  position: relative;
  overflow: visible;
}

.pain-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Decorative blobs (reuse .deco-blob from hero.css) */
.pain-blob--a {
  width: 480px;
  height: 480px;
  background: var(--gt-pink-soft);
  top: 80px;
  left: -240px;
  opacity: 0.5;
}
.pain-blob--b {
  width: 360px;
  height: 360px;
  background: var(--gt-pink);
  bottom: 200px;
  right: -200px;
  opacity: 0.22;
}

.pain-headline {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--gt-ink);
  margin: 0;
  text-wrap: balance;
}
.pain-headline em {
  font-style: normal;
  color: var(--gt-burgundy);
}

.pain-subhead {
  font-size: 24px;
  font-weight: 600;
  color: var(--gt-burgundy);
  margin: 20px 0 0;
  letter-spacing: 0.01em;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 44px auto;
  max-width: 760px;
  text-align: right;
  list-style: none;
  padding: 0;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1px solid var(--gt-line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px rgba(110, 28, 64, 0.04);
}
.pain-card-arrow {
  color: var(--gt-burgundy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  flex-shrink: 0;
}
.pain-card-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--gt-ink);
  font-weight: 500;
  text-wrap: pretty;
}

.pain-closer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-top: 1px solid var(--gt-line);
  border-bottom: 1px solid var(--gt-line);
}
.pain-closer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gt-burgundy);
  flex-shrink: 0;
}
.pain-closer-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--gt-burgundy-ink);
  margin: 0;
  line-height: 1.4;
  text-wrap: balance;
}
.pain-closer-text em {
  font-style: normal;
  color: var(--gt-burgundy);
}

/* ============================================================
   Mobile (≤768px) — mirrors PainMobileV1
   ============================================================ */
@media (max-width: 768px) {
  .pain-section { padding: 48px 20px; }

  .pain-blob--a { display: none; }
  .pain-blob--b {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
    bottom: auto;
    left: auto;
    background: var(--gt-pink);
    opacity: 0.4;
  }

  .pain-headline {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .pain-subhead {
    font-size: 22px;
    margin-top: 14px;
  }

  .pain-list {
    gap: 12px;
    margin: 28px 0;
  }
  .pain-card {
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
  }
  .pain-card-arrow { font-size: 18px; line-height: 1.4; }
  .pain-card-text { font-size: 16px; line-height: 1.5; }

  .pain-closer {
    display: block;
    padding: 18px 16px;
  }
  .pain-closer-dot { display: none; }
  .pain-closer-text { font-size: 22px; }
}
