/* ============================================================
   PRACTICE PARTNERS — style.css
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --green:       #182527;
  --green-card:  #1e3035;
  --gold:        #C9A227;
  --gold-hover:  #d9b23a;
  --white:       #ffffff;
  --warm-white:  #F5F3EE;
  --text-dark:   #111111;
  --text-body:   #3a3a3a;
  --text-muted:  #777777;
  --border:      #e2dfd8;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1180px;
  --pad-section: 100px 24px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text-body); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1;
}
.btn-gold         { background: var(--gold); color: var(--green); }
.btn-gold:hover   { background: var(--gold-hover); }
.btn-green        { background: var(--green); color: var(--white); }
.btn-green:hover  { background: var(--green-card); }
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.btn-green-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-green-outline:hover { background: var(--green); color: var(--white); }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--white); line-height: 1.25;
}
.nav-logo span {
  display: block; font-weight: 400;
  font-size: 0.62rem; letter-spacing: 0.06em; color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.72); font-size: 0.85rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover  { color: var(--white); }
.nav-links a.nav-active { color: var(--white); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

#nav.scrolled {
  background: var(--green);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-mobile {
  display: none; flex-direction: column;
  background: var(--green);
  padding: 16px 24px 28px;
  position: absolute; top: 72px; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.75);
  padding: 14px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn { margin-top: 20px; text-align: center; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: var(--green);
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 65%);
  top: 50%; right: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero-eyebrow-bar {
  display: block; width: 36px; height: 2px; background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold);
}
#hero h1 { color: var(--white); max-width: 660px; margin-bottom: 24px; }
.hero-sub {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  max-width: 540px; line-height: 1.72; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note {
  margin-top: 72px; display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.38); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ============================================================
   PROBLEM
   ============================================================ */
#problem { padding: var(--pad-section); background: var(--white); }
.problem-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
#problem h2 { color: var(--text-dark); margin-bottom: 20px; }
.problem-body { color: var(--text-body); font-size: 1.02rem; line-height: 1.75; margin-bottom: 36px; }

.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.97rem; color: var(--text-dark); font-weight: 500;
}
.pain-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 1px;
  margin-top: 7px;
}

.problem-right { display: flex; flex-direction: column; gap: 20px; }
.problem-callout {
  background: var(--green); color: var(--white);
  padding: 40px; border-radius: 8px;
}
.problem-callout p {
  font-family: var(--font-serif); font-size: 1.18rem;
  font-style: italic; line-height: 1.65;
}
.problem-callout cite {
  display: block; margin-top: 20px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}
.problem-note {
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 6px 6px 0;
}
.problem-note p { font-size: 0.93rem; color: var(--text-body); line-height: 1.68; }
.problem-note strong { color: var(--text-dark); }

@media (max-width: 880px) { .problem-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   FIT — WHO IT'S FOR
   ============================================================ */
#fit { padding: var(--pad-section); background: var(--warm-white); }
.fit-inner { max-width: var(--max-w); margin: 0 auto; }
.fit-inner .section-head h2 { color: var(--text-dark); }

.fit-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 36px;
}
.fit-card {
  background: var(--white); border-radius: 8px;
  padding: 36px; border-top: 3px solid var(--gold);
  box-shadow: 0 2px 14px rgba(0,0,0,0.055);
}
.fit-card h3 { color: var(--text-dark); margin-bottom: 14px; }
.fit-card p   { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; margin-bottom: 18px; }
.fit-card p:last-child { margin-bottom: 0; }
.fit-typical {
  border-top: 1px solid var(--border);
  padding-top: 16px; font-size: 0.85rem; color: var(--text-muted);
}
.fit-typical strong { color: var(--gold); font-weight: 700; }
.fit-note {
  text-align: center; font-size: 0.88rem; color: var(--text-muted);
  font-style: italic; max-width: 660px; margin: 0 auto; line-height: 1.65;
}

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

/* ============================================================
   SERVICES
   ============================================================ */
#services { padding: var(--pad-section); background: var(--green); }
.services-inner { max-width: var(--max-w); margin: 0 auto; }
#services .section-head h2 { color: var(--white); }
#services .section-head p  { color: rgba(255,255,255,0.6); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; overflow: hidden;
}
.service-card {
  padding: 40px 34px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.service-card:hover { background: rgba(255,255,255,0.04); }
.service-num {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.service-card h3 { color: var(--white); margin-bottom: 10px; }
.service-card p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }

@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INCENTIVE MODEL
   ============================================================ */
#incentives { padding: var(--pad-section); background: var(--white); }
.incentives-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.incentives-left h2 { color: var(--text-dark); margin-bottom: 20px; }
.incentives-left p  { color: var(--text-body); font-size: 1.02rem; line-height: 1.75; margin-bottom: 16px; }

.vs-table { width: 100%; border-collapse: collapse; margin-top: 36px; font-size: 0.875rem; }
.vs-table th {
  padding: 11px 16px; text-align: center;
  background: var(--green); color: var(--white); font-weight: 600;
}
.vs-table th:first-child { text-align: left; background: #f0ede7; color: var(--text-dark); }
.vs-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); }
.vs-table td:nth-child(1) { color: var(--text-body); }
.vs-table td:nth-child(2) { text-align: center; color: var(--text-muted); }
.vs-table td:nth-child(3) { text-align: center; color: var(--gold); font-weight: 700; }

.scenarios { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.scenarios-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: block;
}
.scenario-card {
  background: var(--warm-white); border-radius: 8px;
  padding: 28px 30px; border-left: 4px solid var(--gold);
}
.scenario-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.scenario-num {
  font-family: var(--font-serif); font-size: 2.4rem;
  font-weight: 700; color: var(--green); margin-bottom: 10px;
}
.scenario-detail { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.scenario-detail strong { color: var(--text-dark); }
.scenarios-footnote {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.6; text-align: center; padding-top: 4px;
}

@media (max-width: 880px) { .incentives-inner { grid-template-columns: 1fr; gap: 52px; } }

/* ============================================================
   OUTCOMES
   ============================================================ */
#outcomes { padding: var(--pad-section); background: var(--warm-white); }
.outcomes-inner { max-width: var(--max-w); margin: 0 auto; }
.outcomes-inner .section-head h2 { color: var(--text-dark); }

.outcomes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.outcome-card {
  background: var(--white); border-radius: 8px;
  padding: 36px; display: flex; gap: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.outcome-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.outcome-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.outcome-card h3 { color: var(--text-dark); margin-bottom: 8px; font-size: 1.05rem; }
.outcome-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

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

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how { padding: var(--pad-section); background: var(--green); }
.how-inner { max-width: var(--max-w); margin: 0 auto; }
#how .section-head h2 { color: var(--white); }
#how .section-head p  { color: rgba(255,255,255,0.6); }

.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 60px;
}
.step-top { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 700; color: var(--green); flex-shrink: 0;
}
.step-range {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold);
}
.how-step h3 { color: var(--white); margin-bottom: 10px; }
.step-desc { color: rgba(255,255,255,0.45); font-size: 0.87rem; margin-bottom: 18px; line-height: 1.55; }
.step-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.step-items li {
  color: rgba(255,255,255,0.62); font-size: 0.88rem;
  display: flex; gap: 10px; line-height: 1.5;
}
.step-items li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

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

/* ============================================================
   FOUNDERS
   ============================================================ */
#founders { padding: var(--pad-section); background: var(--white); }
.founders-inner { max-width: var(--max-w); margin: 0 auto; }
.founders-inner .section-head h2 { color: var(--text-dark); }

.founders-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 28px;
}
.founder-card {
  background: var(--green); border-radius: 8px;
  padding: 44px;
}
.founder-creds {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.founder-name {
  font-family: var(--font-serif); font-size: 1.65rem;
  font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.founder-title { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; font-weight: 500; }
.founder-bio  { font-size: 0.93rem; color: rgba(255,255,255,0.7); line-height: 1.72; }

.founders-story {
  background: var(--warm-white); border-radius: 8px;
  padding: 40px 44px; border-left: 4px solid var(--gold);
}
.founders-story p { font-size: 1.02rem; color: var(--text-body); line-height: 1.75; }

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

/* ============================================================
   FAQ
   ============================================================ */
#faq { padding: var(--pad-section); background: var(--warm-white); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-inner .section-head h2 { color: var(--text-dark); }

.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none;
  text-align: left; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer;
  font-family: var(--font-sans); font-size: 0.97rem;
  font-weight: 600; color: var(--text-dark); line-height: 1.4;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.faq-icon svg { width: 12px; height: 12px; fill: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-body-inner {
  padding-bottom: 22px;
  color: var(--text-body); font-size: 0.93rem; line-height: 1.75;
}

/* ============================================================
   LEAD MAGNET DOWNLOAD
   ============================================================ */
#download { padding: var(--pad-section); background: var(--green); }
.download-inner { max-width: 680px; margin: 0 auto; text-align: center; }
#download h2 { color: var(--white); margin-bottom: 18px; }
.download-sub {
  color: rgba(255,255,255,0.68); font-size: 1.02rem;
  line-height: 1.72; margin-bottom: 48px;
}
.lead-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 44px 48px;
  text-align: left;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 8px;
}
.form-group input {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; color: var(--white);
  font-size: 0.95rem; font-family: var(--font-sans);
  transition: border-color 0.2s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus { outline: none; border-color: var(--gold); }
.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; padding: 16px; font-size: 0.95rem; }
.form-privacy { margin-top: 14px; font-size: 0.78rem; color: rgba(255,255,255,0.35); text-align: center; }

.form-success {
  display: none; text-align: center; padding: 48px 24px;
}
.success-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 26px; height: 26px; fill: var(--green); }
.form-success h3 { font-size: 1.35rem; color: var(--white); margin-bottom: 12px; }
.form-success p  { color: rgba(255,255,255,0.65); font-size: 0.93rem; line-height: 1.65; }
.form-success .btn { margin-top: 24px; }

@media (max-width: 540px) { .lead-form { padding: 32px 24px; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
#cta { background: var(--gold); padding: 80px 24px; }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
#cta h2 { color: var(--green); margin-bottom: 16px; }
.cta-sub {
  color: rgba(24,37,39,0.72); font-size: 1.02rem;
  line-height: 1.72; margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-email { margin-top: 22px; font-size: 0.85rem; color: rgba(24,37,39,0.6); }
.cta-email a { color: var(--green); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--green); padding: 36px 24px 28px; }
.footer-main {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--white); line-height: 1.35;
}
.footer-logo span { display: block; font-weight: 400; font-size: 0.62rem; color: var(--gold); }
.footer-contact { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-contact a { color: var(--gold); }
.footer-nav { display: flex; gap: 24px; list-style: none; }
.footer-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.75); }
.footer-copy {
  max-width: var(--max-w); margin: 20px auto 0;
  font-size: 0.74rem; color: rgba(255,255,255,0.25); text-align: center;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO IMAGE
   ============================================================ */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
  max-height: 520px;
  align-self: center;
}
.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   GUIDE CALLOUT BAR
   ============================================================ */
#guide-callout {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 20px 24px;
}
.guide-callout-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.guide-callout-text strong {
  display: block; font-size: 1.05rem;
  color: var(--text-dark); font-weight: 700;
}
.guide-callout-text span {
  font-size: 0.93rem; color: var(--text-muted);
}

/* ============================================================
   FEE EXAMPLE (replaces scenario cards)
   ============================================================ */
.fee-example { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.fee-example-body {
  background: var(--warm-white); border-radius: 8px;
  padding: 28px 30px; border-left: 4px solid var(--gold);
  display: flex; flex-direction: column; gap: 14px;
}
.fee-example-body p {
  font-size: 0.95rem; color: var(--text-body);
  line-height: 1.72; margin: 0;
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrap { max-width: 420px; width: 100%; margin: 0 auto; }
}

@media (max-width: 640px) {
  .guide-callout-inner { flex-direction: column; align-items: flex-start; }
  .guide-callout-inner .btn { width: 100%; text-align: center; }
}

@media (max-width: 540px) {
  :root { --pad-section: 72px 20px; }
  .hero-actions { flex-direction: column; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .footer-main  { flex-direction: column; gap: 20px; }
}
