:root {
  --pr-primary: #526ab2;
  --pr-primary-dark: #3e4f8c;
  --pr-ink: #000;
  --pr-ink-soft: #3a3a38;
  --pr-bg-soft: #f4f6fb;
  --pr-tint: #e8edfb;
  --pr-trust: #26b88a;
  --pr-trust-tint: #e3f7ef;
  --pr-line: #dde3f3;
  --pr-font-display: 'Sora',sans-serif;
  --pr-font-body: 'Inter',sans-serif;
}

.fp-page {
  font-family: var(--pr-font-body);
  color: var(--pr-ink);
  overflow-x: hidden;
}

.fp-page h1,.fp-page h2,.fp-page h3,.fp-page h4 {
  font-family: var(--serif);
  color: var(--pr-ink);
  letter-spacing: -0.01em;
}
.proof-number {
    font-family: 'Fraunces', serif !important;
    font-size: 53px;
    font-weight: 700;
    color: var(--brand) !important;
    line-height: 1;
    margin-bottom: 12px;
}
.fp-page .lead-soft {
  color: var(--pr-ink-soft);
}

.fp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--pr-font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pr-primary);
}

.fp-eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--pr-primary);
  border-radius: 2px;
}

  /* ---------- Hero ---------- */
.fp-hero {
    background: #f5f4ef;
    padding: 88px 0;
    border-bottom: 1px solid var(--pr-line);
}

.fp-hero h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 55px, 60px);
  font-weight: 700;
  line-height: 1.12;
}

.fp-hero h1 em {
  font-style: normal;
  color: var(--pr-primary);
}

.fp-hero p.lead {
    font-size: 1.0625rem;
    /* max-width: 640px; */
    font-weight: 300;
    line-height: 1.8;
}

.fp-btn-primary {
  background: var(--pr-primary);
  border-color: var(--pr-primary);
  color: #fff;
  font-weight: 600;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  transition: background .2s ease, transform .15s ease;
}

.fp-btn-primary:hover {
  background: var(--pr-primary-dark);
  transform: translateY(-1px);
  color: #fff;
}
.fp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--rule);
    border-radius: 100px;
    padding: .3rem .875rem .3rem .5rem;
    font-size: .75rem;
    font-weight: 500;
    color: var(--ink2);
/*    margin-bottom: 1.75rem;*/
    background: var(--white);
}
.fp-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    animation: fp-pulse 2s ease-in-out infinite;
}

.fp-btn-outline {
  border: 1.5px solid var(--pr-line);
  color: var(--pr-ink);
  font-weight: 600;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  transition: border-color .2s ease, color .2s ease;
}

.fp-btn-outline:hover {
  border-color: var(--pr-primary);
  color: var(--pr-primary);
}

  /* ---------- Trust meter (signature element) ---------- */
.fp-trust-meter {
  margin-top: 3rem;
  background: #fff;
  border: 1px solid var(--pr-line);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 30px -18px rgba(26,31,54,.25);
}

.fp-trust-meter .fp-meter-label {
  font-family: var(--pr-font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-ink-soft);
  margin-bottom: 1rem;
}

.fp-meter-track {
  display: flex;
  gap: 6px;
  height: 8px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--pr-tint);
}

.fp-meter-seg {
  flex: 1;
  background: var(--pr-line);
  border-radius: 6px;
  transform-origin: left;
  transform: scaleX(0);
  animation: fp-fill 1.1s ease-out forwards;
}

.fp-meter-seg.is-on {
  background: var(--pr-primary);
}

.fp-meter-seg:nth-child(1) {
  animation-delay: .05s;
}

.fp-meter-seg:nth-child(2) {
  animation-delay: .2s;
}

.fp-meter-seg:nth-child(3) {
  animation-delay: .35s;
}

.fp-meter-seg:nth-child(4) {
  animation-delay: .5s;
}

@keyframes fp-fill {
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fp-meter-seg {
    animation: none;
    transform: scaleX(1);
  }
}

.fp-meter-keys {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: .9rem;
}

.fp-meter-keys span {
  font-size: .85rem;
  color: var(--pr-ink-soft);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.fp-meter-keys span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pr-primary);
  display: inline-block;
}

  /* ---------- Section spacing/headers ---------- */
.fp-section {
  padding: 96px 0;
}

/*.fp-section.fp-alt {
  background: var(--pr-bg-soft);
}*/

.fp-section-head {
  max-width: 760px;
  margin-bottom: 2.75rem;
}

.fp-section-head h2 {
  font-size: clamp(1.7rem,3vw,2.4rem);
  font-weight: 700;
  margin-top: .6rem;
}

.fp-section-head h2 em {
  font-style: normal;
  color: var(--pr-primary);
}

  /* ---------- Trust pillar cards ---------- */
.fp-display {
    font-family: var(--serif);
    font-size: clamp(25px, 40px, 45px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.1;
    color: var(--ink);
}
.fp-display em {
    font-style: italic;
    font-weight: 300;
    color: var(--brand);
}
.fp-pillar {
    background: #fff;
    /* border: 1px solid var(--pr-line); */
    /* border-radius: 14px; */
    padding: 1.75rem;
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
}

.box-style {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #d8d6cf;
    border: 1px solid #d8d6cf;
    border-radius: 12px;
    overflow: hidden;
}
.fp-pillar:hover {
    background: #f5f4ef;
}

.fp-pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--pr-tint);
  color: var(--pr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.fp-pillar h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.fp-pillar p {
  font-size: .92rem;
  color: var(--pr-ink-soft);
  margin: 0;
}

  /* ---------- Regulatory milestone chips ---------- */
.fp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.fp-chip {
  background: #fff;
  border: 1px solid var(--pr-line);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--pr-ink);
  display: flex;
  align-items: center;
  gap: .55rem;
}

.fp-chip .fp-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .18rem .5rem;
  border-radius: 999px;
}

.fp-tag.high {
  background: #fdeaea;
  color: #c44545;
}

.fp-tag.signal {
  background: var(--pr-trust-tint);
  color: var(--pr-trust);
}

  /* ---------- Capability strip ---------- */
.fp-capstrip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2.5rem;
}

.fp-capstrip span {
  background: var(--pr-tint);
  color: var(--pr-primary-dark);
  font-weight: 600;
  font-size: .85rem;
  border-radius: 8px;
  padding: .55rem 1rem;
}

  /* ---------- Stat band ---------- */
.fp-statband {
  background: var(--pr-ink);
  border-radius: 18px;
  padding: 2.5rem;
  color: #fff;
}

.fp-statband .fp-stat-num {
  font-family: var(--pr-font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.fp-statband .fp-stat-label {
  font-size: .85rem;
  color: #b9c0dc;
  margin-top: .25rem;
}

  /* ---------- Ledger list (for sequential / failure-point content) ---------- */
.fp-ledger-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--pr-line);
}

.fp-ledger-item:last-child {
  border-bottom: none;
}

.fp-ledger-index {
  font-family: var(--pr-font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--pr-primary);
  flex: 0 0 auto;
  width: 54px;
  padding-top: .15rem;
}

.fp-ledger-index::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pr-line);
  margin-top: .6rem;
}

.fp-ledger-body h4 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.fp-ledger-body p {
  color: var(--pr-ink-soft);
  margin: 0;
  font-size: .95rem;
}

  /* ---------- Service cards ---------- */
.fp-service {
  background: #fff;
  border: 1px solid var(--pr-line);
  border-radius: 14px;
  padding: 1.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fp-service .fp-service-no {
  font-family: var(--pr-font-display);
  font-weight: 700;
  color: var(--pr-line);
  font-size: 1.4rem;
  line-height: 1;
}

.fp-service h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: .6rem 0 .6rem;
}

.fp-service p {
  color: var(--pr-ink-soft);
  font-size: .92rem;
  flex-grow: 1;
}

.fp-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1rem;
}

.fp-service-tags span {
  font-size: .74rem;
  font-weight: 600;
  background: var(--pr-tint);
  color: var(--pr-primary-dark);
  padding: .3rem .65rem;
  border-radius: 6px;
}

  /* ---------- Process timeline ---------- */
.fp-process {
  position: relative;
}

.fp-process-item {
  display: flex;
  gap: 1.75rem;
  padding-bottom: 2.75rem;
  position: relative;
}

.fp-process-item:last-child {
  padding-bottom: 0;
}

.fp-process-marker {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pr-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pr-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.fp-process-item:not(:last-child) .fp-process-marker::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 8px);
  background: var(--pr-line);
}

.fp-process-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  padding-top: .5rem;
}

.fp-process-body p {
    color: var(--ink2);
    margin: 0;
    font-size: .875rem;
    font-weight: 300;
    line-height: 1.68;
}

  /* ---------- Quote / outcome ---------- */
.fp-quote {
  border-left: 4px solid var(--pr-primary);
  padding: 1.25rem 1.75rem;
  background: var(--pr-tint);
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  font-style: normal;
  color: var(--pr-ink);
}

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

.fp-outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .6rem 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--pr-line);
}

.fp-outcome-list li:last-child {
  border-bottom: none;
}

.fp-outcome-list li::before {
  content: "✓";
  color: var(--pr-trust);
  font-weight: 700;
  flex: 0 0 auto;
  background: var(--pr-trust-tint);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  margin-top: .1rem;
}

  /* ---------- Category pills ---------- */
.fp-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.fp-category-grid span {
  border: 1px solid var(--pr-line);
  border-radius: 999px;
  padding: .55rem 1.15rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--pr-ink);
  background: #fff;
}

  /* ---------- Why us ---------- */
.fp-why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--pr-line);
}

.fp-why-item:last-child {
  border-bottom: none;
}

.chal-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    font-weight: 300;
}

.fp-why-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.fp-why-item p {
  color: var(--pr-ink-soft);
  margin: 0;
  font-size: .94rem;
}
.stic_side p {
    font-size: .9375rem;
    color: var(--ink2);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.375rem;
}

  /* ---------- FAQ ---------- */
.fp-accordion .accordion-item {
  border: 1px solid var(--pr-line);
  border-radius: 10px !important;
  margin-bottom: .75rem;
  overflow: hidden;
}

.fp-accordion .accordion-button {
  font-family: var(--pr-font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--pr-ink);
  padding: 1.1rem 1.4rem;
}

.fp-accordion .accordion-button:not(.collapsed) {
  background: var(--pr-tint);
  color: var(--pr-primary-dark);
  box-shadow: none;
}

.fp-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(82,106,178,.15);
}

.fp-accordion .accordion-body {
  color: var(--pr-ink-soft);
  font-size: .95rem;
  padding: 1.1rem 1.4rem 1.4rem;
}

  /* ---------- Contact / CTA ---------- */
.fp-cta-band {
  background: linear-gradient(135deg, var(--pr-ink) 0%, var(--pr-primary-dark) 100%);
  border-radius: 20px;
  padding: 3rem;
  color: #fff;
}

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

.fp-cta-band .fp-stat-num {
  font-family: var(--pr-font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}

.fp-cta-band .fp-stat-label {
  font-size: .8rem;
  color: #cdd4ec;
}

.fp-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 50px -28px rgba(26,31,54,.5);
}

.fp-form-card label {
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .35rem;
}

.fp-form-card .form-control, .fp-form-card .form-select {
  border: 1.5px solid var(--pr-line);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .92rem;
}

.fp-form-card .form-control:focus, .fp-form-card .form-select:focus {
  border-color: var(--pr-primary);
  box-shadow: 0 0 0 3px rgba(82,106,178,.12);
}
/*.fp-hero .counter_bnr {
    margin-top: 80px;
    padding-bottom: 0 !important;
}*/

@media (max-width: 767.98px) {
  .fp-section {
    padding: 3rem 0;
  }

  .fp-statband, .fp-cta-band {
    padding: 1.75rem;
  }

  .fp-process-item {
    gap: 1.1rem;
  }
}