/* ================================================================
   READYLAYER — foundation-review.css
   Page-specific styles for /services/foundation-review.
   Load order: after main.css, services.css, framework.css
   All new classes prefixed fr- to avoid collision.

   Reused from main.css (no new CSS needed):
     rl-eyebrow, rl-btn-primary, rl-btn-ghost, rl-header / nav,
     rl-footer-*, reveal, all CSS variables incl. --rl-l1 through --rl-l4

   Reused from services.css (no new CSS needed):
     svc-hero — dark shell + radial glow (used with fr-hero modifier
                to add the hero-specific bottom padding/grid override)
     svc-page-cta / svc-page-cta-inner / svc-cta-row — bottom CTA
     svc-inline-link / svc-inline-link--light — link in assess section

   Reused from framework.css (no new CSS needed):
     frm-layer-badge / frm-layer-badge--l1/l2/l3/l4 — layer badges
                on the layer cards in the assess section
     frm-two-col — 1fr/1fr shared layout used in problem + deliverables

   New in this file:
     fr-hero-grid + fr-hero-left + fr-hero-pills — 2-col hero
     fr-pricing-card + fr-pc-* — sticky right-column pricing card
     fr-problem / fr-failure-list — failure pattern numbered list
     fr-assess / fr-layer-cards / fr-lc-* — 4-col dark layer cards
     fr-process / fr-timeline / fr-week-* — 4-col week timeline
     fr-deliverables / fr-dc / fr-deliv-* — deliverable cards
     fr-sample-box / fr-sb-* / fr-score-* — sample findings with score bars
     fr-not-included — dark "what's not included" box
     fr-fit / fr-fit-grid / fr-fit-col — well-suited / less-suited grid
     fr-faq / fr-faq-items / fr-faq-item — accordion FAQ
     fr-cta-reassurance — checkmark strip below CTA buttons
   ================================================================ */


/* ----------------------------------------------------------------
   HERO  (dark section, override svc-hero padding + add grid)
   ---------------------------------------------------------------- */
.fr-hero {
  padding-bottom: 0 !important; /* svc-hero has 90px — hero grid needs flush bottom */
}

.fr-hero-grid {
  display:               grid;
  grid-template-columns: 1fr 420px;
  gap:                   80px;
  align-items:           start;
}

.fr-hero-left {
  padding-bottom: 80px;
}

.fr-breadcrumb {
  display:        flex;
  align-items:    center;
  gap:            0.5rem;
  font-family:    var(--rl-font-mono);
  font-size:      0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          rgba(245,242,236,.3);
  margin-bottom:  1.75rem;
  animation:      rl-fadeUp 0.6s ease forwards;
}
.fr-breadcrumb a {
  color:           rgba(245,242,236,.3);
  text-decoration: none;
  transition:      color 0.2s;
}
.fr-breadcrumb a:hover { color: rgba(245,242,236,.6); }
.fr-breadcrumb span:last-child { color: rgba(245,242,236,.55); }

.fr-hero-h1 {
  font-family:    var(--rl-font-display);
  font-size:      clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight:    800;
  color:          var(--rl-off-white);
  line-height:    1.1;
  letter-spacing: -0.025em;
  margin-bottom:  1.5rem;
  animation:      rl-fadeUp 0.8s 0.05s ease forwards;
}
.fr-hero-h1 em { font-style: italic; color: var(--rl-accent); }

.fr-hero-sub {
  font-size:     1.05rem;
  color:         rgba(245,242,236,.55);
  line-height:   1.8;
  max-width:     560px;
  font-weight:   300;
  margin-bottom: 2.5rem;
  animation:     rl-fadeUp 0.8s 0.1s ease forwards;
}

/* Hero pills */
.fr-hero-pills {
  display:  flex;
  flex-wrap: wrap;
  gap:      0.5rem;
  animation: rl-fadeUp 0.8s 0.2s ease forwards;
}

.fr-hero-pill {
  display:        inline-flex;
  align-items:    center;
  gap:            0.45rem;
  font-family:    var(--rl-font-mono);
  font-size:      0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding:        0.3rem 0.8rem;
  background:     rgba(255,255,255,.04);
  border:         1px solid rgba(255,255,255,.08);
  color:          rgba(245,242,236,.5);
}
.fr-hero-pill--accent {
  background:   rgba(200,80,42,.12);
  border-color: rgba(200,80,42,.25);
  color:        #e8855c;
}

/* Pricing card */
.fr-pricing-card-wrap {
  animation: rl-fadeUp 0.8s 0.3s ease forwards;
}

.fr-pricing-card {
  position:   sticky;
  top:        88px;
  background: var(--rl-off-white);
  border:     1px solid var(--rl-border);
}

.fr-pc-header {
  padding:       1.75rem;
  border-bottom: 1px solid var(--rl-border);
}

.fr-pc-label {
  font-family:    var(--rl-font-mono);
  font-size:      0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--rl-mid);
  display:        block;
  margin-bottom:  0.75rem;
}

.fr-pc-price-line {
  display:     flex;
  align-items: baseline;
  gap:         0.5rem;
  margin-bottom: 0.4rem;
}

.fr-pc-price {
  font-family:  var(--rl-font-display);
  font-size:    2.6rem;
  font-weight:  800;
  color:        var(--rl-black);
  line-height:  1;
}

.fr-pc-price-note {
  font-size: 0.78rem;
  color:     var(--rl-mid);
}

.fr-pc-sub {
  font-size: 0.78rem;
  color:     var(--rl-mid);
}

.fr-pc-rows { padding: 0 1.75rem; }

.fr-pc-row {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         0.85rem 0;
  border-bottom:   1px solid var(--rl-border);
  font-size:       0.85rem;
  gap:             1rem;
}
.fr-pc-row:last-child { border-bottom: none; }

.fr-pc-key { color: var(--rl-mid); }
.fr-pc-val { font-weight: 600; color: var(--rl-black); text-align: right; }
.fr-pc-val--green { color: var(--rl-l3); }

.fr-pc-cta {
  display:         block;
  margin:          1.5rem;
  background:      var(--rl-accent);
  color:           #fff;
  padding:         1rem;
  text-align:      center;
  font-weight:     600;
  font-size:       0.95rem;
  text-decoration: none;
  transition:      background 0.2s;
}
.fr-pc-cta:hover { background: var(--rl-accent-d); }

.fr-pc-ghost {
  display:         block;
  margin:          0 1.5rem 1.5rem;
  border:          1.5px solid var(--rl-border);
  color:           var(--rl-mid);
  padding:         0.8rem;
  text-align:      center;
  font-size:       0.85rem;
  text-decoration: none;
  transition:      all 0.2s;
}
.fr-pc-ghost:hover { border-color: var(--rl-accent); color: var(--rl-accent); }

.fr-pc-note {
  padding:    1.25rem 1.75rem;
  background: var(--rl-warm);
  border-top: 1px solid var(--rl-border);
  font-size:  0.75rem;
  color:      var(--rl-mid);
  line-height: 1.6;
}

@media (max-width: 1023.98px) {
  .fr-hero-grid       { grid-template-columns: 1fr; }
  .fr-pricing-card    { position: static; }
  .fr-hero-left       { padding-bottom: 0; }
}


/* ----------------------------------------------------------------
   THE PROBLEM
   ---------------------------------------------------------------- */
.fr-problem {
  background:    var(--rl-off-white);
  padding:       var(--rl-section-pad) 0;
  border-bottom: 1px solid var(--rl-border);
}

.fr-problem .frm-two-col { align-items: center; }

.fr-problem h2 {
  font-size:      clamp(1.8rem, 3vw, 2.4rem);
  font-weight:    800;
  letter-spacing: -0.02em;
  margin-bottom:  1.25rem;
}
.fr-problem h2 em { font-style: italic; color: var(--rl-accent); }

.fr-problem p {
  font-size:     0.97rem;
  color:         #444;
  line-height:   1.8;
  margin-bottom: 1.1rem;
}

/* Failure list */
.fr-failure-list {
  display:        flex;
  flex-direction: column;
  gap:            1px;
}

.fr-fl-item {
  display:               grid;
  grid-template-columns: 28px 1fr;
  gap:                   0.85rem;
  align-items:           start;
  padding:               1.2rem 1.4rem;
  background:            var(--rl-warm);
  border:                1px solid var(--rl-border);
  transition:            border-color 0.2s;
}
.fr-fl-item:hover { border-color: rgba(200,80,42,.3); }

.fr-fl-num {
  font-family:    var(--rl-font-mono);
  font-size:      0.6rem;
  font-weight:    700;
  color:          var(--rl-accent);
  padding-top:    3px;
}

.fr-fl-text strong {
  display:       block;
  font-size:     0.88rem;
  font-weight:   600;
  color:         var(--rl-black);
  margin-bottom: 0.2rem;
}
.fr-fl-text span {
  font-size:   0.8rem;
  color:       var(--rl-mid);
  line-height: 1.6;
}


/* ----------------------------------------------------------------
   WHAT WE ASSESS  (dark, 4-col layer cards)
   ---------------------------------------------------------------- */
.fr-assess {
  background: var(--rl-near-black);
  padding:    var(--rl-section-pad) 0;
  position:   relative;
  overflow:   hidden;
}
.fr-assess::before {
  content:        '';
  position:       absolute;
  bottom:         -100px;
  right:          -100px;
  width:          600px;
  height:         600px;
  background:     radial-gradient(ellipse, rgba(200,80,42,.06) 0%, transparent 65%);
  pointer-events: none;
}

.fr-assess-header {
  max-width:     640px;
  margin-bottom: 4rem;
  position:      relative;
  z-index:       1;
}
.fr-assess-header h2 {
  font-family:    var(--rl-font-display);
  font-size:      clamp(1.8rem, 3vw, 2.5rem);
  font-weight:    800;
  color:          var(--rl-off-white);
  letter-spacing: -0.02em;
  margin-bottom:  1rem;
}
.fr-assess-header p {
  font-size:   0.97rem;
  color:       rgba(245,242,236,.5);
  line-height: 1.75;
}

.fr-layer-cards {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   2px;
  position:              relative;
  z-index:               1;
}

.fr-lc {
  background:     rgba(255,255,255,.03);
  border:         1px solid rgba(255,255,255,.06);
  padding:        2rem;
  display:        flex;
  flex-direction: column;
  gap:            1rem;
  transition:     background 0.2s;
}
.fr-lc:hover { background: rgba(255,255,255,.055); }

.fr-lc-top {
  display:     flex;
  align-items: center;
  gap:         0.85rem;
}

/* frm-layer-badge / frm-layer-badge--l* reused from framework.css */
.fr-lc-name {
  font-family:  var(--rl-font-display);
  font-size:    0.95rem;
  font-weight:  700;
  color:        var(--rl-off-white);
}

.fr-lc-desc {
  font-size:   0.8rem;
  color:       rgba(245,242,236,.4);
  line-height: 1.65;
}

.fr-lc-assessed {
  list-style:     none;
  padding:        0;
  display:        flex;
  flex-direction: column;
  gap:            0.35rem;
  margin-top:     0.5rem;
  padding-top:    1rem;
  border-top:     1px solid rgba(255,255,255,.06);
}

.fr-lca {
  display:     flex;
  align-items: flex-start;
  gap:         0.55rem;
  font-size:   0.75rem;
  color:       rgba(245,242,236,.35);
  line-height: 1.5;
}
.fr-lca::before {
  content:    '→';
  color:      rgba(200,80,42,.5);
  flex-shrink: 0;
  margin-top: 1px;
  font-size:  0.7rem;
}

@media (max-width: 1023.98px) { .fr-layer-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px)  { .fr-layer-cards { grid-template-columns: 1fr; } }


/* ----------------------------------------------------------------
   PROCESS TIMELINE  (4-col with connecting dot line)
   ---------------------------------------------------------------- */
.fr-process {
  background:    var(--rl-off-white);
  padding:       var(--rl-section-pad) 0;
  border-bottom: 1px solid var(--rl-border);
}

.fr-process-header {
  max-width:     640px;
  margin-bottom: 4rem;
}
.fr-process-header h2 {
  font-family:    var(--rl-font-display);
  font-size:      clamp(1.8rem, 3vw, 2.5rem);
  font-weight:    800;
  letter-spacing: -0.02em;
  margin-bottom:  1rem;
}
.fr-process-header p {
  font-size:   0.97rem;
  color:       var(--rl-mid);
  line-height: 1.75;
}

/* Timeline grid with a horizontal connector line between dots */
.fr-timeline {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   2px;
  position:              relative;
}
.fr-timeline::before {
  content:    '';
  position:   absolute;
  top:        28px; /* vertically aligned with dot centres */
  left:       calc(12.5% + 1px);
  right:      calc(12.5% + 1px);
  height:     1px;
  background: var(--rl-border);
  z-index:    0;
  pointer-events: none;
}

.fr-week {
  background:     var(--rl-warm);
  border:         1px solid var(--rl-border);
  padding:        2rem;
  display:        flex;
  flex-direction: column;
  gap:            1rem;
  position:       relative;
}
.fr-week--active { border-color: var(--rl-accent); }

.fr-week-dot {
  width:           20px;
  height:          20px;
  border-radius:   50%;
  background:      var(--rl-off-white);
  border:          1.5px solid var(--rl-border);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   0.5rem;
  position:        relative;
  z-index:         1;
}
.fr-week--active .fr-week-dot {
  background:   var(--rl-accent);
  border-color: var(--rl-accent);
}

.fr-week-dot-inner {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    var(--rl-border);
}
.fr-week--active .fr-week-dot-inner { background: #fff; }

.fr-week-label {
  font-family:    var(--rl-font-mono);
  font-size:      0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--rl-mid);
}

.fr-week h3 {
  font-family:  var(--rl-font-display);
  font-size:    1rem;
  font-weight:  700;
  color:        var(--rl-black);
}

.fr-week p {
  font-size:   0.8rem;
  color:       var(--rl-mid);
  line-height: 1.65;
}

.fr-week-activities {
  list-style:     none;
  padding:        0;
  display:        flex;
  flex-direction: column;
  gap:            0.4rem;
  margin-top:     0.25rem;
}

.fr-wa {
  display:     flex;
  align-items: flex-start;
  gap:         0.55rem;
  font-size:   0.75rem;
  color:       #555;
  line-height: 1.5;
}
.fr-wa::before {
  content:     '·';
  color:       var(--rl-accent);
  flex-shrink: 0;
  font-weight: 700;
}

@media (max-width: 1023.98px) {
  .fr-timeline                { grid-template-columns: repeat(2, 1fr); }
  .fr-timeline::before        { display: none; }
}
@media (max-width: 575.98px)  { .fr-timeline { grid-template-columns: 1fr; } }


/* ----------------------------------------------------------------
   DELIVERABLES
   ---------------------------------------------------------------- */
.fr-deliverables {
  background:    var(--rl-warm);
  padding:       var(--rl-section-pad) 0;
  border-bottom: 1px solid var(--rl-border);
}

.fr-deliverables h2 {
  font-size:      clamp(1.8rem, 3vw, 2.4rem);
  font-weight:    800;
  letter-spacing: -0.02em;
  margin-bottom:  1.25rem;
}

.fr-deliv-intro {
  font-size:     0.97rem;
  color:         #444;
  line-height:   1.8;
  margin-bottom: 1.75rem;
}

.fr-deliv-cards {
  display:        flex;
  flex-direction: column;
  gap:            2px;
  margin-top:     2rem;
}

/* Individual deliverable card */
.fr-dc {
  background: var(--rl-off-white);
  border:     1px solid var(--rl-border);
  padding:    1.75rem;
}

.fr-dc-header {
  display:         flex;
  align-items:     flex-start;
  justify-content: space-between;
  gap:             1rem;
  margin-bottom:   0.85rem;
}

.fr-dc h3 {
  font-family:  var(--rl-font-display);
  font-size:    1.05rem;
  font-weight:  700;
  color:        var(--rl-black);
}

.fr-dc-format {
  font-family:    var(--rl-font-mono);
  font-size:      0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--rl-mid);
  background:     var(--rl-warm);
  border:         1px solid var(--rl-border);
  padding:        0.2rem 0.5rem;
  white-space:    nowrap;
  flex-shrink:    0;
  margin-top:     3px;
}

.fr-dc p {
  font-size:     0.83rem;
  color:         var(--rl-mid);
  line-height:   1.65;
  margin-bottom: 0.85rem;
}

.fr-dc-contents {
  list-style:     none;
  padding:        0;
  display:        flex;
  flex-direction: column;
  gap:            0.35rem;
}

.fr-dci {
  display:     flex;
  align-items: flex-start;
  gap:         0.65rem;
  font-size:   0.78rem;
  color:       #444;
  line-height: 1.5;
}
.fr-dci::before {
  content:    '→';
  color:      var(--rl-accent);
  flex-shrink: 0;
  font-weight: 600;
  font-size:  0.72rem;
  margin-top: 1px;
}

/* Right column */
.fr-deliv-right {
  display:        flex;
  flex-direction: column;
  gap:            2rem;
}

/* Sample findings box */
.fr-sample-box {
  background: var(--rl-off-white);
  border:     1px solid var(--rl-border);
}

.fr-sb-label {
  font-family:    var(--rl-font-mono);
  font-size:      0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--rl-mid);
  padding:        1rem 1.5rem;
  border-bottom:  1px solid var(--rl-border);
  display:        block;
}

.fr-sb-body { padding: 1.5rem; }

.fr-sb-finding {
  margin-bottom:  1rem;
  padding-bottom: 1rem;
  border-bottom:  1px solid var(--rl-border);
}
.fr-sb-finding:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.fr-sb-layer {
  font-family:    var(--rl-font-mono);
  font-size:      0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom:  0.3rem;
  display:        block;
}
.fr-sb-layer--l1 { color: var(--rl-l1); }
.fr-sb-layer--l2 { color: var(--rl-l2); }
.fr-sb-layer--l3 { color: var(--rl-l3); }
.fr-sb-layer--l4 { color: var(--rl-l4); }

.fr-sb-text {
  font-size:   0.8rem;
  color:       #333;
  line-height: 1.65;
}
.fr-sb-text strong { font-weight: 600; }

/* Score bar */
.fr-sb-score {
  display:     inline-flex;
  align-items: center;
  gap:         0.4rem;
  margin-top:  0.35rem;
  font-family: var(--rl-font-mono);
  font-size:   0.6rem;
}

.fr-score-bar {
  width:         80px;
  height:        4px;
  background:    var(--rl-border);
  border-radius: 2px;
  overflow:      hidden;
}

.fr-score-fill {
  height:        100%;
  border-radius: 2px;
}

.fr-score-label { color: var(--rl-mid); }

/* Not included box */
.fr-not-included {
  background: var(--rl-near-black);
  padding:    1.75rem;
}

.fr-ni-label {
  font-family:    var(--rl-font-mono);
  font-size:      0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          rgba(245,242,236,.3);
  display:        block;
  margin-bottom:  1rem;
}

.fr-ni-list {
  list-style:     none;
  padding:        0;
  display:        flex;
  flex-direction: column;
  gap:            0;
}

.fr-ni-item {
  display:       flex;
  align-items:   flex-start;
  gap:           0.75rem;
  font-size:     0.8rem;
  color:         rgba(245,242,236,.4);
  line-height:   1.55;
  margin-bottom: 0.65rem;
}
.fr-ni-item:last-child { margin-bottom: 0; }
.fr-ni-item::before {
  content:    '✕';
  color:      rgba(184,92,92,.6);
  flex-shrink: 0;
  font-size:  0.65rem;
  margin-top: 2px;
}


/* ----------------------------------------------------------------
   IS IT RIGHT FOR YOU
   ---------------------------------------------------------------- */
.fr-fit {
  background:    var(--rl-off-white);
  padding:       var(--rl-section-pad) 0;
  border-bottom: 1px solid var(--rl-border);
}

.fr-fit-header {
  max-width:     640px;
  margin-bottom: 3rem;
}
.fr-fit-header h2 {
  font-family:    var(--rl-font-display);
  font-size:      clamp(1.8rem, 3vw, 2.4rem);
  font-weight:    800;
  letter-spacing: -0.02em;
  margin-bottom:  0; /* eyebrow above provides spacing */
}

.fr-fit-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   2px;
}

.fr-fit-col {
  padding:    2.5rem;
  background: var(--rl-warm);
  border:     1px solid var(--rl-border);
}

.fr-fit-col-head {
  font-family:    var(--rl-font-mono);
  font-size:      0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom:  1.5rem;
  display:        block;
}
.fr-fit-col-head--good { color: var(--rl-l3); }
.fr-fit-col-head--not  { color: #b85c5c; }

.fr-fit-col h3 {
  font-family:   var(--rl-font-display);
  font-size:     1.1rem;
  font-weight:   700;
  margin-bottom: 1.25rem;
}

.fr-fit-item {
  display:        flex;
  align-items:    flex-start;
  gap:            0.85rem;
  font-size:      0.88rem;
  color:          #333;
  line-height:    1.6;
  margin-bottom:  0.85rem;
  padding-bottom: 0.85rem;
  border-bottom:  1px solid var(--rl-border);
}
.fr-fit-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.fr-fit-dot {
  width:         7px;
  height:        7px;
  border-radius: 50%;
  flex-shrink:   0;
  margin-top:    5px;
}
.fr-fit-dot--good { background: var(--rl-l3); }
.fr-fit-dot--not  { background: #b85c5c; }

@media (max-width: 767.98px) { .fr-fit-grid { grid-template-columns: 1fr; } }


/* ----------------------------------------------------------------
   FAQ ACCORDION
   Managed by foundation-review.js
   ---------------------------------------------------------------- */
.fr-faq {
  background:    var(--rl-warm);
  padding:       var(--rl-section-pad) 0;
  border-bottom: 1px solid var(--rl-border);
}

.fr-faq-grid {
  display:               grid;
  grid-template-columns: 1fr 2fr;
  gap:                   80px;
  align-items:           start;
}

.fr-faq-grid > div:first-child h2 {
  font-family:    var(--rl-font-display);
  font-size:      clamp(1.8rem, 3vw, 2.4rem);
  font-weight:    800;
  letter-spacing: -0.02em;
  margin-bottom:  0.75rem;
}
.fr-faq-grid > div:first-child p {
  font-size:   0.9rem;
  color:       var(--rl-mid);
  line-height: 1.75;
}

.fr-faq-items {
  display:        flex;
  flex-direction: column;
  gap:            1px;
}

.fr-faq-item {
  background: var(--rl-off-white);
  border:     1px solid var(--rl-border);
  overflow:   hidden;
}

/* Button — replaces old onclick div */
.fr-faq-q {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  width:           100%;
  padding:         1.25rem 1.5rem;
  background:      transparent;
  border:          none;
  cursor:          pointer;
  gap:             1rem;
  text-align:      left;
}

.fr-faq-q-text {
  font-size:   0.92rem;
  font-weight: 600;
  color:       var(--rl-black);
  line-height: 1.4;
}

.fr-faq-icon {
  font-size:   0.9rem;
  color:       var(--rl-mid);
  flex-shrink: 0;
  transition:  transform 0.25s;
  line-height: 1;
}

/* Open state — toggled by JS adding .is-open on .fr-faq-item */
.fr-faq-item.is-open .fr-faq-icon     { transform: rotate(45deg); }
.fr-faq-item.is-open .fr-faq-q-text   { color: var(--rl-accent); }
.fr-faq-item.is-open .fr-faq-q        { border-bottom: 1px solid var(--rl-border); }

/* Answer panel — uses max-height animation; JS removes hidden attribute */
.fr-faq-a {
  max-height:  0;
  overflow:    hidden;
  transition:  max-height 0.35s ease;
}
.fr-faq-item.is-open .fr-faq-a { max-height: 500px; }

.fr-faq-a-inner {
  padding:     1rem 1.5rem 1.25rem;
  font-size:   0.88rem;
  color:       #444;
  line-height: 1.75;
}

.fr-faq-link {
  color:           var(--rl-accent);
  text-decoration: none;
  border-bottom:   1px solid rgba(200,80,42,.3);
  transition:      border-color 0.2s;
}
.fr-faq-link:hover { border-color: var(--rl-accent); }

@media (max-width: 767.98px) {
  .fr-faq-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* ----------------------------------------------------------------
   BOTTOM CTA — reassurance strip (appended below svc-cta-row)
   ---------------------------------------------------------------- */
.fr-cta-reassurance {
  margin-top:      1.75rem;
  display:         flex;
  justify-content: center;
  gap:             1.5rem;
  flex-wrap:       wrap;
}

.fr-cta-r {
  font-family:    var(--rl-font-mono);
  font-size:      0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          rgba(245,242,236,.25);
  display:        flex;
  align-items:    center;
  gap:            0.4rem;
}
.fr-cta-r::before {
  content:    '✓';
  color:      rgba(42,107,74,.7);
  font-size:  0.65rem;
}