/* ============================================================
   FinancingSolutions.com — Redesigned Stylesheet
   Theme: Warm, Friendly, "Green Money Grows" (LendingTree-inspired)
   ============================================================ */

/* ── Google Fonts: Poppins ─── imported via <link> in HTML ── */

/* ── Variables ── */
:root {
  --green:        #00A652;
  --green-dark:   #007A3D;
  --green-darker: #005828;
  --green-light:  #E6F7EF;
  --green-mid:    #B8E8CC;
  --teal:         #00897B;
  --orange:       #FF6B2B;
  --orange-dark:  #E55520;
  --orange-light: #FFF0EA;
  --yellow:       #FFD166;
  --white:        #FFFFFF;
  --warm-white:   #FAFDF7;
  --bg:           #F5FBF7;
  --card-bg:      #FFFFFF;
  --text:         #1A2E1A;
  --text-mid:     #3D5A3D;
  --text-light:   #6B8C6B;
  --border:       #D4EDDF;
  --shadow-sm:    0 2px 10px rgba(0,90,40,.07);
  --shadow:       0 4px 20px rgba(0,90,40,.10);
  --shadow-lg:    0 8px 40px rgba(0,90,40,.14);
  --shadow-card:  0 2px 16px rgba(0,90,40,.08);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --font:         'Poppins', 'Segoe UI', Arial, sans-serif;
  --max-w:        1160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--warm-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; border-radius: var(--radius); }
a    { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
ul   { list-style: none; }

/* ── Layout ── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.22; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
.lead   { font-size: 1.15rem; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.7; }
.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
  display: block;
}
.section-title { margin-bottom: .75rem; }
.section-sub   { font-size: 1.05rem; color: var(--text-light); max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-align: center;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(255,107,43,.30);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(255,107,43,.40);
  transform: translateY(-1px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(0,166,82,.25);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-secondary:hover {
  background: var(--green-light);
  color: var(--green-darker);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 9px 22px; font-size: .875rem; }
.btn-block { display: flex; width: 100%; }

/* ── Navbar ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,90,40,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.025em;
  line-height: 1;
}
.nav-logo-text span { color: var(--green); }
.nav-logo-sub {
  font-size: .65rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .04em;
  display: block;
  margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-mid);
  transition: all .15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-dark);
  background: var(--green-light);
}
.nav-cta { margin-left: 10px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--text); }

@media (max-width: 820px) {
  .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 16px; gap: 4px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: var(--radius-sm); }
  .nav-burger { display: block; }
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: var(--green-darker);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1400&fit=crop&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: .22;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,88,40,.97) 0%, rgba(0,120,60,.82) 55%, rgba(0,137,123,.65) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
.hero-left h1 { color: var(--white); margin-bottom: 1rem; }
.hero-left .lead { color: rgba(255,255,255,.88); font-size: 1.15rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.75rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .83rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero-badge .badge-check { color: var(--yellow); font-size: 1rem; }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 14px 20px;
  width: fit-content;
}
.hero-stars { font-size: 1.1rem; letter-spacing: 2px; }
.hero-rating-text { color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 600; }
.hero-rating-text span { color: var(--yellow); }

/* ── Lead Card ── */
.lead-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.lead-card-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.lead-card-header h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 4px; }
.lead-card-header p { font-size: .87rem; color: var(--text-light); margin: 0; }
.lead-card-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.lead-card-trust span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: .82rem; margin-bottom: 5px; color: var(--text-mid); }
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,166,82,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-disclaimer { font-size: .73rem; color: var(--text-light); margin-top: 10px; line-height: 1.55; text-align: center; }
.form-disclaimer a { color: var(--green); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .hero-left h1 { font-size: 2rem; }
}

/* ── Trust Bar ── */
.trust-bar { background: var(--green-darker); padding: 20px 0; }
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 10px;
}
.trust-item {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.trust-item:last-child { border-right: none; }
.trust-item .ti-icon { font-size: 1.1rem; }

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 2.5rem;
  position: relative;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform .22s, box-shadow .22s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--teal));
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-number {
  width: 54px; height: 54px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.3rem;
  margin: 0 auto 18px;
}
.step-card h4 { margin-bottom: 8px; color: var(--text); }
.step-card p  { font-size: .92rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ── Product Cards ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 22px;
  margin-top: 2.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card-accent {
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: var(--green-light);
  border-radius: 0 0 0 100%;
  opacity: .6;
}
.product-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.product-card h3 { font-size: 1.1rem; margin-bottom: 8px; position: relative; z-index: 1; }
.product-card > p { font-size: .9rem; color: var(--text-light); flex: 1; line-height: 1.65; }
.product-rate { font-size: 1.6rem; font-weight: 800; color: var(--green); margin: 12px 0 2px; }
.product-rate-label { font-size: .78rem; color: var(--text-light); margin-bottom: 18px; }
.product-card .btn { margin-top: auto; }

/* ── Comparison Table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  border: 1px solid var(--border);
}
.comparison-table th {
  background: var(--green-darker);
  color: var(--white);
  padding: 16px 18px;
  text-align: left;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.comparison-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg); }
.comparison-table tr:hover td { background: var(--green-light); transition: background .15s; }
.lender-name { font-weight: 700; color: var(--text); }
.lender-badge {
  background: var(--yellow);
  color: var(--text);
  font-size: .68rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.rating { color: #FFA000; font-size: .95rem; }
.rating-num { font-weight: 700; font-size: .82rem; color: var(--text-light); margin-left: 4px; }
.check { color: var(--green); font-weight: 700; }
.cross { color: #E53935; }
.rate-cell { font-weight: 700; color: var(--green-dark); }

@media (max-width: 768px) {
  .comparison-table { display: block; overflow-x: auto; }
}

/* ── Tabs ── */
.tab-bar { display: flex; gap: 8px; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  color: var(--text-mid);
  transition: all .15s;
}
.tab-btn.active, .tab-btn:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

/* ── Calculator ── */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.calc-inputs { padding: 40px 36px; }
.calc-inputs h3 { margin-bottom: 1.5rem; }
.range-group { margin-bottom: 24px; }
.range-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 10px;
  color: var(--text-mid);
}
.range-group label span { color: var(--green); font-size: 1rem; font-weight: 700; }
.range-input {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: var(--border);
  accent-color: var(--green);
  cursor: pointer;
}
.calc-results {
  background: linear-gradient(140deg, var(--green-darker) 0%, var(--teal) 100%);
  padding: 40px 36px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-results h3 { color: var(--white); margin-bottom: 28px; }
.calc-result-item { margin-bottom: 22px; }
.calc-result-label { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
.calc-result-value { font-size: 2.4rem; font-weight: 800; color: var(--yellow); line-height: 1.1; }
.calc-result-value.sm { font-size: 1.3rem; color: rgba(255,255,255,.92); }
.calc-cta { margin-top: 28px; }

@media (max-width: 768px) {
  .calc-wrapper { grid-template-columns: 1fr; }
  .calc-inputs { padding: 28px 24px; }
  .calc-results { padding: 28px 24px; }
}

/* ── Stats Bar ── */
.stats-bar { background: var(--green); padding: 52px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-value { font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.75); margin-top: 6px; font-weight: 500; }

/* ── Social Proof / Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform .2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: #FFA000; font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: .95rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 20px; }
.testimonial-author-row { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--green-mid);
}
.testimonial-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 2px solid var(--green-mid);
}
.testimonial-name { font-weight: 700; font-size: .92rem; color: var(--text); }
.testimonial-role { font-size: .78rem; color: var(--text-light); }
.testimonial-savings {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .78rem;
  padding: 3px 12px;
  border-radius: 50px;
  margin-top: 4px;
}

/* ── Image + Text sections ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 380px; object-fit: cover; border-radius: 0; }
.split-content .eyebrow { margin-bottom: 8px; }
.split-content h2 { margin-bottom: 1rem; }
.split-content .lead { margin-bottom: 1.5rem; }
.split-bullets { list-style: none; margin: 1rem 0 1.5rem; }
.split-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: .95rem; color: var(--text-mid);
}
.split-bullets li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 860px) {
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-section.reverse { direction: ltr; }
  .split-img img { height: 260px; }
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: var(--green-light);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img-emoji {
  height: 190px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.blog-card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .77rem; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.blog-category {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 3px 11px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .75rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--green); }
.blog-card > p, .blog-card-body > p { font-size: .9rem; color: var(--text-light); flex: 1; margin-bottom: 16px; line-height: 1.65; }
.read-more { font-weight: 700; font-size: .88rem; color: var(--green); display: flex; align-items: center; gap: 4px; }
.read-more:hover { color: var(--green-dark); }

/* ── Article Page ── */
.article-header {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 60%, var(--teal) 100%);
  color: var(--white);
  padding: 72px 0 56px;
}
.article-header h1 { color: var(--white); max-width: 820px; }
.article-meta { margin-top: 16px; font-size: .88rem; color: rgba(255,255,255,.72); display: flex; flex-wrap: wrap; gap: 16px; }
.article-body { max-width: 800px; margin: 0 auto; padding: 56px 24px; }
.article-body h2 { margin: 2.5rem 0 1rem; color: var(--green-darker); border-left: 4px solid var(--green); padding-left: 16px; }
.article-body h3 { margin: 2rem 0 .75rem; color: var(--green-dark); }
.article-body p  { margin-bottom: 1.25rem; font-size: 1.03rem; line-height: 1.8; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: .65rem; font-size: 1.03rem; line-height: 1.7; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-callout {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 2rem 0;
}
.article-callout p { margin: 0; font-size: .97rem; }
.article-cta-box {
  background: linear-gradient(135deg, var(--green-darker), var(--teal));
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin: 2.5rem 0;
  color: var(--white);
}
.article-cta-box h3 { color: var(--white); margin-bottom: 8px; }
.article-cta-box p { color: rgba(255,255,255,.8); margin-bottom: 20px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 2rem auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font);
  font-weight: 600;
  font-size: .97rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
}
.faq-q:hover { background: var(--green-light); }
.faq-q.open { background: var(--green-light); color: var(--green-darker); }
.faq-q .arrow { color: var(--green); transition: transform .25s; flex-shrink: 0; margin-left: 12px; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: .95rem; line-height: 1.75; color: var(--text-mid); }
.faq-a.open { display: block; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 50%, var(--teal) 100%);
  padding: 88px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 70%, var(--teal) 100%);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-header h1 { color: var(--white); margin-bottom: .75rem; }
.page-header p { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 600px; }

/* ── Breadcrumb ── */
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; }

/* ── Alerts ── */
.alert { border-radius: var(--radius); padding: 16px 20px; margin-bottom: 1.5rem; font-size: .93rem; }
.alert-info { background: var(--green-light); border-left: 4px solid var(--green); color: var(--green-darker); }
.alert-success { background: #E8F5E9; border-left: 4px solid #388E3C; color: #1B5E20; }

/* ── Lead Form Section (inner pages) ── */
.lead-section { background: var(--bg); padding: 72px 0; }

/* ── Footer ── */
.footer { background: var(--text); color: rgba(255,255,255,.72); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-logo .nav-logo-text { color: var(--white); font-size: 1.05rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .92rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .15s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--white); }
.footer-disclaimer { padding: 14px 0 20px; font-size: .76rem; color: rgba(255,255,255,.35); line-height: 1.65; border-top: 1px solid rgba(255,255,255,.07); margin-top: 4px; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Sticky CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green-darker);
  color: var(--white);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .3s;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { margin: 0; font-size: .93rem; }
.sticky-cta-close { background: none; border: none; color: rgba(255,255,255,.55); font-size: 1.2rem; cursor: pointer; margin-left: 8px; }

/* ── Green check list ── */
.green-check-list { list-style: none; }
.green-check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .95rem; }
.green-check-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* ── Utility ── */
.bg-warm { background: var(--warm-white); }
.bg-green-light { background: var(--green-light); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.text-green { color: var(--green); } .text-orange { color: var(--orange); } .text-light { color: var(--text-light); }
.fw-bold { font-weight: 700; } .fw-800 { font-weight: 800; }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp .5s ease both; }
.fade-in-d1 { animation-delay: .1s; }
.fade-in-d2 { animation-delay: .2s; }
.fade-in-d3 { animation-delay: .3s; }
