/* =========================================================================
 * ReadyNDA — site-wide overrides layered on top of the Webflow shared CSS
 * Add rules here; this file is linked after the shared stylesheet so these
 * rules win on specificity ties.
 * ========================================================================= */

/* --- P0: body-copy inline links were inheriting `color: var(--white)` ---- */
p a:not([class]),
li a:not([class]),
.paragraph-black a:not([class]),
.paragraph-2 a:not([class]),
.paragraph-5 a:not([class]),
.paragraph-6 a:not([class]) {
  color: #1e40af;
  text-decoration: underline;
}
p a:not([class]):hover,
li a:not([class]):hover {
  color: #0f2b72;
}

/* --- P0: hero subtitle paragraph-light sits on a dark-blue hero; force white */
.hero-split .paragraph-light {
  color: #e9eefb !important;
  font-size: 15px;
  line-height: 1.55;
}

/* --- Hero trust bar under CTA --- */
.rnda-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 22px;
  max-width: 720px;
  color: #e9eefb;
  font-size: 13px;
  letter-spacing: .03em;
}
.rnda-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rnda-trust-row strong {
  color: #ffffff;
  font-weight: 700;
}
@media (max-width: 568px) {
  .rnda-trust-row { gap: 10px 16px; font-size: 12px; justify-content: center; }
}

/* --- Hero inline testimonial strip below CTA --- */
.rnda-hero-quote {
  margin-top: 26px;
  max-width: 720px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border-left: 3px solid #ffcc00;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.55;
}
.rnda-hero-quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  color: #b9c6e8;
  font-size: 12px;
}

/* --- Pricing: highlight the "Most Popular" tier --- */
.rnda-popular {
  position: relative;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(2, 54, 137, 0.18);
  border: 2px solid #023689 !important;
  padding-top: 22px !important;
}
.rnda-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #023689;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Pricing cost comparison hero stat --- */
.rnda-stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 28px auto 0;
  padding: 22px 18px;
  background: #ffffff;
  border-radius: 12px;
  color: #023689;
}
.rnda-stat-row .stat {
  text-align: center;
}
.rnda-stat-row .stat .num {
  display: block;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: #023689;
}
.rnda-stat-row .stat .label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #4a5b88;
}
.rnda-stat-row .stat.bad .num { color: #b94c4c; text-decoration: line-through; text-decoration-thickness: 2px; }
.rnda-stat-row .vs {
  font-weight: 700;
  font-size: 14px;
  color: #7a8bb3;
}
@media (max-width: 568px) {
  .rnda-stat-row { grid-template-columns: 1fr; gap: 10px; }
  .rnda-stat-row .vs { display: none; }
}

/* --- Mid-page CTA card for landing pages --- */
.rnda-cta-card {
  max-width: 760px;
  margin: 32px auto;
  padding: 24px 28px;
  background: #f1f5ff;
  border: 1px solid #dae3f7;
  border-radius: 12px;
  text-align: center;
}
.rnda-cta-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #023689;
}
.rnda-cta-card p {
  margin: 0 0 14px;
  color: #2a3657;
  font-size: 14px;
}
.rnda-cta-card .rnda-cta-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #023689;
  color: #ffffff !important;
  border-radius: 24px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
}
.rnda-cta-card .rnda-cta-btn:hover { background: #012463; }

/* --- Footer email response-time hint --- */
.rnda-response-hint {
  display: block;
  margin-top: 6px;
  color: #b9c6e8;
  font-size: 12px;
  font-weight: 400;
}
