/* ============ REFERRAL PROGRAM — REDESIGN v5 ============ */
/* Metaphor system: Handshake (hero) > Cashier's Check (math) > Relay (steps) >
   Headline ($50K) > Rolodex (personas) > Guarantee (no-risk) > Ledger (mechanics) >
   Letters (testimonials) > Introduction (form) > Office Hours (FAQ) > Credential (about) */

/* ——— HERO: THE HANDSHAKE ———
   Left-aligned with the "15%" as an oversized watermark on the right.
   Warm, money-forward, personal. */
.rf-hero {
  position: relative; overflow: hidden;
  background: var(--charcoal-deep);
  color: var(--white); padding: clamp(130px, 15vw, 200px) 0 clamp(80px, 10vw, 130px);
}
.rf-hero::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 55% 65% at 10% 30%, rgba(91,154,79,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 85% 70%, rgba(0,76,151,0.08) 0%, transparent 50%);
}
.rf-hero::after {
  content: '15%'; position: absolute;
  right: -2%; top: 50%; transform: translateY(-55%);
  font-family: var(--font-display); font-size: clamp(160px, 24vw, 380px);
  color: rgba(155,208,142,0.04); line-height: 0.85;
  font-style: italic; white-space: nowrap; pointer-events: none;
}
.rf-hero .container { position: relative; z-index: 2; max-width: var(--container-max); }
.rf-hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 18px; border:1px solid rgba(74,124,63,0.45);
  border-radius: 999px; font-size: 11px; font-weight:700;
  letter-spacing:0.22em; text-transform: uppercase; color:#9BD08E;
  background: rgba(74,124,63,0.10); margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.rf-hero-eyebrow::before {
  content:''; width:8px; height:8px; border-radius:50%;
  background: var(--forest-light);
  box-shadow: 0 0 12px var(--forest-light), 0 0 24px rgba(91,154,79,0.3);
}
.rf-hero h1 {
  font-size: clamp(40px, 5.5vw, 74px); line-height: 1.02;
  color: var(--white); margin-bottom: 26px; max-width: 780px;
}
.rf-hero h1 em {
  font-style: italic; display: block;
  background: linear-gradient(90deg, #9BD08E, #c8efbb);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.rf-hero-sub {
  font-size: clamp(17px, 1.9vw, 21px); font-weight: 300;
  color: rgba(255,255,255,0.58); max-width: 680px;
  line-height: 1.6; margin-bottom: 42px;
}
.rf-hero-ctas { display:flex; flex-wrap:wrap; gap: 14px; }
.rf-hero .btn-primary, .rf-hero .btn-ghost {
  padding: 16px 32px; border-radius: var(--radius-md); font-weight:600; font-size: 15px;
  display:inline-flex; align-items:center; gap:10px; transition: all 0.3s var(--ease-out);
}
.rf-hero .btn-primary {
  background: var(--forest); color: var(--white);
}
.rf-hero .btn-primary:hover {
  background: var(--forest-light); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74,124,63,0.4);
}
.rf-hero .btn-ghost { border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.8); }
.rf-hero .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ——— MATH: THE CASHIER'S CHECK ———
   Dark background with glowing payout numbers. Each card is a "check" —
   dark with green numbers that pop. */
.rf-math {
  background: #0d1a12; padding: clamp(90px, 10vw, 150px) 0;
  position: relative; overflow: hidden;
}
.rf-math::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 30%, rgba(91,154,79,0.08), transparent 60%);
  pointer-events: none;
}
.rf-math .section-head { max-width: 740px; margin: 0 auto clamp(52px, 6vw, 76px); text-align: center; position: relative; z-index: 2; }
.rf-math .eyebrow { color: #9BD08E; border-color: rgba(155,208,142,0.3); }
.rf-math h2 { font-size: clamp(34px, 4.2vw, 56px); color: var(--white); margin-bottom: 14px; }
.rf-math .section-head p { color: rgba(255,255,255,0.55); font-size: 17px; }
.rf-math-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px); max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 2;
}
.rf-math-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 3.5vw, 48px) clamp(28px, 3vw, 38px);
  text-align: center; transition: all 0.4s var(--ease-out);
  position: relative; overflow: hidden;
  backdrop-filter: blur(4px);
}
.rf-math-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--forest-light), transparent);
  opacity: 0.5;
}
.rf-math-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155,208,142,0.25);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.06);
}
.rf-math-size {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.40); font-weight: 700; margin-bottom: 14px;
}
.rf-math-deal {
  font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 46px);
  color: rgba(255,255,255,0.70); margin-bottom: 18px; line-height: 1;
}
.rf-math-flow {
  font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.rf-math-flow span { display: block; }
.rf-math-payout-lbl {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-weight: 700; margin-bottom: 10px;
}
.rf-math-payout {
  font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px);
  color: #9BD08E; line-height: 0.9; margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(155,208,142,0.25);
}
.rf-math-fine {
  font-size: 12px; color: rgba(255,255,255,0.30); max-width: 720px;
  margin: 32px auto 0; text-align: center; line-height: 1.6;
  position: relative; z-index: 2;
}
@media (max-width: 820px) { .rf-math-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ——— BUYER REFERRAL BAND — blue accent strip (adapted from buy-cross) ——— */
.rf-buyer-band {
  background: linear-gradient(135deg, #1e4e8c 0%, #143866 70%, #0c2848 100%);
  color: var(--white);
  padding: clamp(36px, 4.5vw, 56px) 0;
  position: relative; overflow: hidden;
}
.rf-buyer-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 80px, rgba(255,255,255,0.05) 80px 81px);
  pointer-events: none;
}
.rf-buyer-band .container { position: relative; z-index: 1; }
.rf-buyer-grid {
  display: grid; grid-template-columns: 1.6fr auto;
  gap: clamp(20px, 3vw, 40px); align-items: center;
}
.rf-buyer-eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 4px 10px;
  background: rgba(255,255,255,0.14);
  border-radius: 100px;
  margin-bottom: 10px;
}
.rf-buyer-title {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 6px;
  max-width: 60ch;
  font-weight: 400;
}
.rf-buyer-copy p {
  font-size: 14.5px; line-height: 1.55;
  color: rgba(255,255,255,0.85); margin: 0; max-width: 60ch;
}
.rf-buyer-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--white); color: #143866;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm); text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.rf-buyer-btn:hover { background: var(--cloud); transform: translateY(-2px); }
@media (max-width: 720px) {
  .rf-buyer-grid { grid-template-columns: 1fr; text-align: center; }
  .rf-buyer-btn { margin: 16px auto 0; }
}

/* ——— STEPS: THE RELAY ———
   Connected horizontal pipeline with numbered circles, like a relay race. */
.rf-steps { background: var(--white); padding: clamp(90px, 10vw, 140px) 0; }
.rf-steps .section-head { max-width: 740px; margin: 0 auto clamp(52px, 6vw, 76px); text-align: center; }
.rf-steps h2 { font-size: clamp(34px, 4.2vw, 56px); color: var(--charcoal-deep); margin-bottom: 14px; }
.rf-steps .section-head p { color: var(--charcoal-72); font-size: 17px; }
.rf-steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.rf-steps-grid::before {
  content: ''; position: absolute;
  top: 22px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--forest), var(--forest-light) 50%, var(--forest));
  opacity: 0.2;
}
.rf-step {
  background: transparent; border-radius: 0; border: none;
  padding: clamp(24px, 2.5vw, 36px) clamp(16px, 2vw, 24px);
  position: relative; text-align: center;
}
.rf-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  font-family: var(--font-display); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; line-height: 1;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 7px var(--forest-12),
              0 8px 24px rgba(74,124,63,0.20);
  position: relative; z-index: 2;
}
.rf-step-num::after { display: none; }
.rf-step h3 {
  font-size: clamp(18px, 1.8vw, 22px); color: var(--charcoal-deep);
  margin-bottom: 10px; line-height: 1.25;
}
.rf-step p { font-size: 14px; color: var(--charcoal-72); line-height: 1.65; }
@media (max-width: 980px) {
  .rf-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .rf-steps-grid::before { display: none; }
}
@media (max-width: 560px) { .rf-steps-grid { grid-template-columns: 1fr; } }

/* ——— $50K CALLOUT: THE HEADLINE ———
   Newspaper-style: stark, dramatic, one number. */
.rf-callout {
  background: var(--charcoal-deep); color: var(--white);
  padding: clamp(80px, 9vw, 120px) 0; position: relative; overflow: hidden;
}
.rf-callout::before {
  content: '$50K'; position: absolute; right: -3%; top: 50%;
  transform: translateY(-50%); font-family: var(--font-display);
  font-size: clamp(140px, 20vw, 320px); color: rgba(155,208,142,0.04);
  line-height: 0.85; font-style: italic; white-space: nowrap; pointer-events: none;
}
.rf-callout::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, var(--forest-light), var(--forest), transparent);
}
.rf-callout .container {
  position: relative; max-width: 860px; text-align: left;
  padding-left: clamp(30px, 4vw, 60px);
}
.rf-callout h3 {
  font-size: clamp(28px, 3.5vw, 46px); color: var(--white);
  line-height: 1.18; margin-bottom: 20px;
}
.rf-callout h3 em { font-style: italic; color: #9BD08E; }
.rf-callout p { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 680px; }

/* ——— PERSONAS: THE ROLODEX ———
   Sage background, 2x2 grid with larger cards, each with a distinctive top accent. */
.rf-personas { background: var(--sage); padding: clamp(90px, 10vw, 140px) 0; }
.rf-personas .section-head { max-width: 780px; margin: 0 auto clamp(52px, 6vw, 76px); text-align: center; }
.rf-personas h2 { font-size: clamp(34px, 4.2vw, 56px); color: var(--charcoal-deep); margin-bottom: 14px; }
.rf-personas .section-head p { color: var(--charcoal-72); font-size: 17px; }
.rf-persona-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2vw, 26px); max-width: 1000px; margin: 0 auto;
}
.rf-persona {
  background: var(--white); padding: clamp(30px, 3.5vw, 42px);
  border-radius: var(--radius-lg); border: 1px solid var(--charcoal-12);
  transition: all 0.35s var(--ease-out);
  position: relative; overflow: hidden;
}
.rf-persona::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.rf-persona:hover::before { transform: scaleX(1); }
.rf-persona:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.rf-persona-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  display: grid; place-items: center; margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(74,124,63,0.20);
}
.rf-persona h3 {
  font-size: clamp(19px, 2vw, 24px); color: var(--charcoal-deep);
  margin-bottom: 12px; line-height: 1.2;
}
.rf-persona p { font-size: 15px; color: var(--charcoal-72); line-height: 1.65; }
@media (max-width: 680px) { .rf-persona-grid { grid-template-columns: 1fr; } }

/* ——— NO-RISK: THE GUARANTEE ———
   Centered text with a formal border frame, like a certificate or guarantee seal. */
.rf-norisk {
  background: var(--white); padding: clamp(80px, 9vw, 130px) 0;
  position: relative;
}
.rf-norisk .container {
  max-width: 780px; text-align: center;
  padding: clamp(40px, 5vw, 64px);
  border: 2px solid var(--charcoal-12);
  border-radius: var(--radius-xl);
  position: relative;
}
.rf-norisk .container::before {
  content: ''; position: absolute; inset: 6px;
  border: 1px solid var(--charcoal-05);
  border-radius: calc(var(--radius-xl) - 4px);
  pointer-events: none;
}
.rf-norisk .eyebrow { color: var(--forest); justify-content: center; }
.rf-norisk h3 {
  font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 42px);
  color: var(--charcoal-deep); margin: 16px 0 24px; line-height: 1.15;
}
.rf-norisk p { font-size: 16px; color: var(--charcoal-72); line-height: 1.75; }

/* ——— MECHANICS: THE LEDGER ———
   Horizontal strip with numbered items, each separated by vertical rules.
   Dark background, institutional. */
.rf-mechanics {
  background: var(--charcoal-deep); padding: clamp(80px, 9vw, 130px) 0;
  position: relative; overflow: hidden;
}
.rf-mechanics::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(91,154,79,0.06), transparent 50%);
  pointer-events: none;
}
.rf-mechanics .section-head {
  max-width: 780px; margin: 0 auto clamp(52px, 6vw, 72px);
  text-align: center; position: relative; z-index: 2;
}
.rf-mechanics .eyebrow { color: #9BD08E; border-color: rgba(155,208,142,0.3); }
.rf-mechanics h2 { font-size: clamp(32px, 4vw, 50px); color: var(--white); margin-bottom: 14px; }
.rf-mechanics .section-head p { color: rgba(255,255,255,0.55); font-size: 17px; }
.rf-mechanics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 2;
}
.rf-mech {
  text-align: center; padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.rf-mech:last-child { border-right: none; }
.rf-mech-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(155,208,142,0.10); color: #9BD08E;
  display: grid; place-items: center; margin: 0 auto 20px;
  border: 1px solid rgba(155,208,142,0.15);
}
.rf-mech h4 {
  font-size: 18px; color: var(--white);
  margin-bottom: 10px; font-family: var(--font-display);
}
.rf-mech p { font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.65; }
@media (max-width: 820px) {
  .rf-mechanics-grid { grid-template-columns: repeat(2, 1fr); }
  .rf-mech { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 28px; }
  .rf-mech:nth-last-child(-n+2) { border-bottom: none; }
}

/* ——— TESTIMONIALS: THE LETTERS ———
   Keep the green background but refine the glass cards.
   Staggered heights, more editorial feel. */
.rf-testimonials {
  background: linear-gradient(170deg, var(--forest) 0%, #2a5423 100%);
  color: var(--white); padding: clamp(90px, 10vw, 140px) 0;
  position: relative; overflow: hidden;
}
.rf-testimonials::before {
  content: '\201C'; position: absolute; font-family: var(--font-display);
  font-size: clamp(200px, 28vw, 450px); color: rgba(255,255,255,0.04); line-height: 0.7;
  left: -3%; top: -8%; pointer-events: none;
}
.rf-testimonials .section-head { text-align: center; position: relative; margin-bottom: clamp(48px, 6vw, 72px); z-index: 2; }
.rf-testimonials .eyebrow { color: rgba(255,255,255,0.60); justify-content: center; border-color: rgba(255,255,255,0.15); }
.rf-testimonials h2 {
  font-size: clamp(32px, 4vw, 52px); color: var(--white); margin-top: 12px;
}
.rf-t-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px); position: relative; z-index: 2;
}
.rf-t-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg); padding: clamp(30px, 3.5vw, 42px);
  backdrop-filter: blur(6px);
  transition: all .35s var(--ease-out);
}
.rf-t-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.rf-t-card:nth-child(2) { transform: translateY(20px); }
.rf-t-card:nth-child(2):hover { transform: translateY(16px); }
.rf-t-card blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(16px, 1.8vw, 19px); line-height: 1.5;
  color: var(--white); margin-bottom: 24px;
}
.rf-t-card cite {
  font-style: normal; display: block;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.60); font-weight: 600;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 920px) {
  .rf-t-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .rf-t-card:nth-child(2) { transform: none; }
}

/* ——— FORM: THE INTRODUCTION ———
   Sage gradient background, elevated white card. Two-section form with
   clear visual separation between "about you" and "about who you're referring." */
.rf-form-sec {
  background: linear-gradient(180deg, var(--sage) 0%, var(--cloud) 40%, var(--white) 100%);
  padding: clamp(90px, 10vw, 140px) 0;
}
.rf-form-sec .section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); }
.rf-form-sec h2 { font-size: clamp(32px, 4vw, 52px); color: var(--charcoal-deep); margin-bottom: 12px; }
.rf-form-sec .section-head p { color: var(--charcoal-72); font-size: 16px; }
.rf-form {
  max-width: 760px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-xl);
  padding: clamp(36px, 4.5vw, 58px);
  border: 1px solid var(--charcoal-12);
  box-shadow: 0 24px 80px rgba(20,30,25,0.10), 0 0 0 1px rgba(74,124,63,0.06);
}
.rf-form-subhead {
  font-family: var(--font-display); font-size: 19px;
  color: var(--charcoal-deep); margin: 28px 0 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--forest-12);
}
.rf-form-subhead:first-child { margin-top: 0; }
.rf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.rf-form-row--full { grid-template-columns: 1fr; }
.rf-form label {
  display: block; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal); font-weight: 700; margin-bottom: 8px;
}
.rf-form input, .rf-form select, .rf-form textarea {
  width: 100%; padding: 14px 16px; font-size: 15px;
  border: 1px solid var(--charcoal-12); border-radius: var(--radius-md);
  font-family: var(--font-body); background: var(--cloud);
  color: var(--charcoal-deep); transition: all .25s;
}
.rf-form input:focus, .rf-form select:focus, .rf-form textarea:focus {
  outline: none; border-color: var(--forest);
  box-shadow: 0 0 0 3px var(--forest-pale); background: var(--white);
}
.rf-form textarea { min-height: 120px; resize: vertical; }
.rf-form-check {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--cloud); border-radius: var(--radius-md);
  font-size: 13px; color: var(--charcoal); margin-bottom: 12px;
  border: 1px solid var(--charcoal-12);
}
.rf-form-check input { width: auto; margin-top: 3px; }
.rf-form-submit {
  width: 100%; padding: 18px; background: var(--forest); color: var(--white);
  border-radius: var(--radius-md); font-size: 15px; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer;
  transition: all .3s var(--ease-out);
  border: none; font-family: var(--font-body); margin-top: 22px;
}
.rf-form-submit:hover {
  background: var(--forest-light); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74,124,63,0.30);
}
.rf-form-alt {
  text-align: center; margin-top: 22px; font-size: 14px; color: var(--charcoal-72);
}
.rf-form-alt a { color: var(--forest); font-weight: 600; text-decoration: underline; }
@media (max-width: 620px) { .rf-form-row { grid-template-columns: 1fr; } }

/* Formidable Form ID 131 Referral Program Integration */
.rf-form .frm_forms {
  max-width: 100% !important;
  font-family: var(--font-body) !important;
}

.rf-form h3,
.rf-form .frm_section_heading h3 {
  font-family: var(--font-display) !important;
  font-size: 19px !important;
  color: var(--charcoal-deep) !important;
  margin: 28px 0 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid var(--forest-12) !important;
}

.rf-form .frm_first_section h3,
.rf-form h3:first-of-type {
  margin-top: 0 !important;
}

.rf-form label,
.rf-form .frm_primary_label {
  display: block !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--charcoal) !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  font-family: var(--font-body) !important;
}

.rf-form input[type="text"],
.rf-form input[type="email"],
.rf-form input[type="tel"],
.rf-form input[type="url"],
.rf-form select,
.rf-form textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  border: 1px solid var(--charcoal-12) !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--font-body) !important;
  background: var(--cloud) !important;
  color: var(--charcoal-deep) !important;
  transition: all .25s !important;
  box-sizing: border-box !important;
}

.rf-form input[type="text"]::placeholder,
.rf-form input[type="email"]::placeholder,
.rf-form input[type="tel"]::placeholder,
.rf-form input[type="url"]::placeholder,
.rf-form textarea::placeholder {
  font-family: var(--font-body) !important;
}

.rf-form select option {
  font-family: var(--font-body) !important;
}

.rf-form input:focus,
.rf-form select:focus,
.rf-form textarea:focus {
  outline: none !important;
  border-color: var(--forest) !important;
  box-shadow: 0 0 0 3px var(--forest-pale) !important;
  background: var(--white) !important;
}

.rf-form textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

.rf-form .frm_form_field {
  margin-bottom: 18px !important;
}

.rf-form .frm_checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  background: var(--cloud) !important;
  border-radius: var(--radius-md) !important;
  font-size: 13px !important;
  color: var(--charcoal) !important;
  margin-bottom: 12px !important;
  border: 1px solid var(--charcoal-12) !important;
  font-family: var(--font-body) !important;
}

.rf-form .frm_checkbox input[type="checkbox"] {
  width: auto !important;
  margin-top: 3px !important;
  accent-color: var(--forest) !important;
}

.rf-form .frm_checkbox label,
.rf-form .frm_checkbox .frm_opt_container {
  font-size: 13px !important;
  text-transform: none !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  color: var(--charcoal) !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.5 !important;
  font-family: var(--font-body) !important;
}

.rf-form .frm_submit {
  margin-top: 22px !important;
}

.rf-form .frm_submit input[type="submit"],
.rf-form .frm_submit button,
.rf-form button[type="submit"] {
  width: 100% !important;
  padding: 18px !important;
  background: var(--forest) !important;
  color: var(--white) !important;
  border-radius: var(--radius-md) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  transition: all .3s var(--ease-out) !important;
  border: none !important;
  font-family: var(--font-body) !important;
  text-transform: uppercase !important;
}

.rf-form .frm_submit input[type="submit"]:hover,
.rf-form .frm_submit button:hover,
.rf-form button[type="submit"]:hover {
  background: var(--forest-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(74,124,63,0.30) !important;
}

.rf-form .frm_description,
.rf-form .frm_error {
  font-family: var(--font-body) !important;
}

/* ——— FAQ: OFFICE HOURS ———
   Two-column editorial layout, heading sticky on the left. */
.rf-faq { background: var(--cloud); padding: clamp(90px, 10vw, 140px) 0; }
.rf-faq .container { max-width: 1100px; }
.rf-faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 5vw, 80px); align-items: start;
}
.rf-faq .section-head {
  text-align: left; max-width: none;
  margin: 0; position: sticky; top: 120px;
}
.rf-faq h2 { font-size: clamp(28px, 3.2vw, 42px); color: var(--charcoal-deep); margin-bottom: 12px; }
.rf-faq .section-head p { color: var(--charcoal-72); font-size: 16px; line-height: 1.6; }
.rf-faq-list { max-width: none; margin: 0; }
.rf-faq details {
  background: var(--white); border: 1px solid var(--charcoal-12);
  border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden;
  transition: all .25s;
}
.rf-faq details[open] {
  box-shadow: 0 6px 20px rgba(20,30,25,0.05);
  border-color: var(--forest-12);
}
.rf-faq summary {
  padding: 20px 24px; font-family: var(--font-body);
  font-size: 16px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; color: var(--charcoal-deep);
}
.rf-faq summary::-webkit-details-marker { display: none; }
.rf-faq summary::after {
  content: '+'; font-size: 20px; font-weight: 300; color: var(--forest);
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--forest-pale); display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.rf-faq details[open] summary::after {
  transform: rotate(45deg); background: var(--forest); color: var(--white);
}
.rf-faq-ans { padding: 0 24px 22px; font-size: 15px; color: var(--charcoal-72); line-height: 1.7; }
.rf-faq-ans a { color: var(--forest); text-decoration: underline; }
@media (max-width: 860px) {
  .rf-faq-layout { grid-template-columns: 1fr; }
  .rf-faq .section-head { position: static; text-align: center; margin-bottom: 32px; }
}

/* ——— ABOUT MINI: THE CREDENTIAL ———
   Keep dark, but add more visual weight with a border frame. */
.rf-about {
  background: var(--charcoal-deep); color: var(--white);
  padding: clamp(80px, 9vw, 120px) 0;
  position: relative;
}
.rf-about::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,208,142,0.15), transparent);
}
.rf-about .section-head { text-align: center; max-width: 740px; margin: 0 auto clamp(40px, 5vw, 60px); }
.rf-about .eyebrow { color: #9BD08E; justify-content: center; border-color: rgba(155,208,142,0.3); }
.rf-about h2 {
  font-size: clamp(30px, 3.8vw, 46px); color: var(--white); margin-top: 12px;
}
.rf-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px); max-width: 980px; margin: 0 auto;
}
.rf-about-col {
  padding: clamp(28px, 3vw, 40px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.rf-about-col h3 {
  font-size: 20px; color: #9BD08E; margin-bottom: 22px;
  font-family: var(--font-display);
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rf-about-col ul { list-style: none; padding: 0; }
.rf-about-col li {
  padding: 14px 0 14px 28px; position: relative;
  font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rf-about-col li:last-child { border-bottom: none; }
.rf-about-col li::before {
  content: ''; position: absolute; left: 0; top: 20px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--forest-light);
}
@media (max-width: 740px) { .rf-about-grid { grid-template-columns: 1fr; } }

/* ——— RESPONSIVE HERO ——— */
@media (max-width: 768px) {
  .rf-hero .container { text-align: center; }
  .rf-hero h1 { max-width: none; }
  .rf-hero-sub { max-width: none; margin-left: auto; margin-right: auto; }
  .rf-hero-ctas { justify-content: center; }
  .rf-hero::after { display: none; }
  .rf-callout .container { text-align: center; padding-left: var(--gutter); }
  .rf-callout::after { display: none; }
}
