/* ════════════════════════════════════════════════════════════
   Pipeline offering: components added on top of the editorial base.
   Champagne "promise" band + shared resource styles.
   ════════════════════════════════════════════════════════════ */

/* ── Track record: gold lead-in on the dark chapter ── */
.chapter-feature em { color: var(--gold-soft); }

/* ── The guarantee: a champagne band, the visual peak of the page ── */
.promise {
  position: relative;
  background: linear-gradient(180deg, #f6eddd 0%, #efe2cf 100%);
  padding: clamp(0.9rem, 1.7vw, 1.4rem) 0;
  overflow: hidden;
  border-top: 2px solid rgba(201, 162, 39, 0.5);
  border-bottom: 2px solid rgba(201, 162, 39, 0.5);
}
.promise::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(20,30,55,0.05) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(20,30,55,0.05) 0 1px, transparent 1px 60px);
  pointer-events: none;
}
.promise-inner {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.promise-kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-ink);
  padding-bottom: 0.8rem;
  position: relative;
}
.promise-kicker::after {
  content: "";
  position: absolute; left: 50%; bottom: 0;
  width: 2.6rem; height: 2px;
  transform: translateX(-50%);
  background: var(--gold);
}
.promise-line {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.9vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  max-width: 100%;
  margin-inline: auto;
  text-wrap: balance;
}
.promise-line .nb { white-space: nowrap; }
.promise-line em {
  font-style: italic;
  color: var(--gold-ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}
.promise-sub {
  margin-top: 0.9rem;
  font-family: var(--font-sans);
  font-size: clamp(0.96rem, 1.4vw, 1.1rem);
  line-height: 1.5;
  color: var(--navy);
  max-width: 64ch;
  margin-inline: auto;
  text-wrap: balance;
}
.promise-fine {
  margin-top: 1.3rem;
  font-size: 0.74rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(14,31,59,0.6);
  max-width: 52ch;
  margin-inline: auto;
}

/* ── Pricing intro: a navy header band (segments the section) ── */
.chapter--pricing-head { padding-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.chapter--pricing-head .eng-head { margin-inline: auto; text-align: center; margin-bottom: 0; }
.chapter--pricing-head .eng-title, .chapter--pricing-head .eng-lead { margin-inline: auto; }
.chapter--pricing-head .eng-kicker { color: var(--gold-2); }
.chapter--pricing-head .eng-title { color: var(--text-on-dark); }
.chapter--pricing-head .eng-title em { color: var(--gold-soft); }
.chapter--pricing-head .eng-lead { color: var(--text-on-dark-muted); }

/* ── Pricing rows: a sand band, navy text + gold highlights ── */
.chapter--pricing { background: var(--sand); color: var(--navy); padding-top: clamp(1.8rem, 3.5vw, 2.6rem); }
.chapter--pricing .eng-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: var(--navy); color: var(--gold-2);
  -webkit-text-stroke: 0;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(20, 30, 55, 0.2);
  transition: background 0.4s ease, color 0.4s ease, transform 0.45s var(--ease-out);
}
.chapter--pricing .eng-row:hover .eng-num {
  background: var(--gold); color: var(--navy-deep);
  transform: translateY(-3px);
}
.chapter--pricing .eng-row:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(20, 30, 55, 0.12);
}
