*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1B5E20;
  --primary-light: #4CAF50;
  --primary-dark: #0D3B12;
  --accent: #FF6F00;
  --accent-light: #FF8F00;
  --gradient-start: #0D3B12;
  --gradient-mid: #1B5E20;
  --gradient-end: #2E7D32;
  --white: #FFFFFF;
  --light: #F5F7FA;
  --light-warm: #FFF8F0;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 6px 12px -2px rgba(0,0,0,0.1), 0 3px 7px -3px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; color: var(--gray-800); line-height: 1.65; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }
h1, h2, h3, h4, h5 { line-height: 1.2; color: var(--gray-900); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.site-header { background: var(--white); border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.logo { font-size: 1.35rem; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.02em; }
.logo span { color: var(--accent); }
.header-phone { font-size: 1.1rem; font-weight: 700; }
.header-phone a { color: var(--primary); display: flex; align-items: center; gap: 6px; }
.header-phone svg { width: 18px; height: 18px; fill: var(--primary); }

.nav-bar { display: flex; align-items: center; justify-content: space-between; padding: 0; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links li { position: relative; }
.nav-links a { display: block; padding: 14px 16px; font-size: 0.9rem; font-weight: 600; color: var(--gray-700); transition: all 0.2s; border-bottom: 3px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }
.nav-cta { padding: 10px 20px; background: var(--accent); color: var(--white) !important; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; border-bottom: none !important; transition: background 0.2s, transform 0.1s; }
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); color: var(--white) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-content { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 240px; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); padding: 8px 0; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-content { display: block; }
.nav-dropdown-content a { padding: 8px 16px; font-size: 0.85rem; font-weight: 500; border-bottom: none; }
.nav-dropdown-content a:hover { background: var(--gray-50); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-700); margin: 5px 0; transition: 0.3s; }

/* Breadcrumbs */
.breadcrumbs { padding: 12px 0; font-size: 0.82rem; color: var(--gray-500); }
.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; }

/* ── HERO LAYOUTS ── */
.hero { position: relative; overflow: hidden; color: var(--white); }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to bottom right, transparent 49%, var(--white) 51%); }

/* Split Right (form on right) */
.hero-split-right { background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%); padding: 70px 0 60px; }
.hero-split-right .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }

/* Split Left (form on left) */
.hero-split-left { background: linear-gradient(225deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%); padding: 70px 0 60px; }
.hero-split-left .hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.hero-split-left .hero-text { order: 2; }
.hero-split-left .lead-form-card { order: 1; }

/* Centered Overlay */
.hero-centered-overlay { background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-mid) 70%, var(--gradient-end) 100%); padding: 60px 0 50px; text-align: center; }
.hero-centered-overlay .hero-grid { max-width: 700px; margin: 0 auto; }
.hero-centered-overlay .hero-text { margin-bottom: 32px; }
.hero-centered-overlay .hero-badges { justify-content: center; }

/* Stacked */
.hero-stacked { background: linear-gradient(160deg, var(--gradient-start) 0%, var(--gradient-mid) 40%, var(--gradient-end) 100%); padding: 50px 0 40px; }
.hero-stacked .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.hero h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.02em; }
.hero h1 .city-name { color: var(--accent-light); }
.hero-subtitle { font-size: 1.15rem; opacity: 0.92; margin-bottom: 24px; line-height: 1.55; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 6px; font-size: 0.92rem; font-weight: 600; }
.hero-badge svg { width: 22px; height: 22px; fill: var(--accent-light); }

/* Hero Image */
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); margin-top: 20px; }
.hero-image img { width: 100%; height: 250px; object-fit: cover; }

/* ── LEAD FORM ── */
.lead-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-xl); color: var(--gray-800); }
.lead-form-card h2 { font-size: 1.4rem; margin-bottom: 4px; color: var(--primary-dark); }
.lead-form-card .form-subtitle { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.03em; }
.form-group input, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit { width: 100%; padding: 14px; background: var(--accent); color: var(--white); border: none; border-radius: var(--radius-sm); font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 6px; letter-spacing: 0.01em; }
.btn-submit:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-trust { font-size: 0.75rem; color: var(--gray-400); text-align: center; margin-top: 10px; }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 80px 0; background: var(--white); }
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); background: rgba(0,0,0,0.04); padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; }
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.section-title.center { text-align: center; }
.section-subtitle { font-size: 1.08rem; color: var(--gray-500); margin-bottom: 48px; max-width: 650px; }
.section-subtitle.center { text-align: center; margin-left: auto; margin-right: auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; padding: 36px 24px; border-radius: var(--radius-lg); background: var(--gray-50); border: 1px solid var(--gray-100); transition: box-shadow 0.2s, transform 0.2s; }
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-number { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin-bottom: 18px; }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.6; }

/* ── LOCAL CONTENT / ABOUT ── */
.local-content { padding: 80px 0; background: var(--light); }
.local-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.local-content p { margin-bottom: 16px; color: var(--gray-600); font-size: 1rem; line-height: 1.75; }
.local-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; margin-top: 32px; }

/* Stats Card */
.stats-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.stats-card h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--primary-dark); display: flex; align-items: center; gap: 8px; }
.stat-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.stat-item:last-child { border-bottom: none; }
.stat-label { color: var(--gray-500); font-size: 0.9rem; }
.stat-value { font-weight: 700; color: var(--gray-800); font-size: 0.9rem; }

/* ── CHARITY DIRECTORY ── */
.charity-section { padding: 80px 0; background: var(--white); }
.charity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.charity-card { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); background: var(--white); transition: all 0.2s; }
.charity-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.charity-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary-dark); }
.charity-card .charity-type { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); margin-bottom: 10px; display: inline-block; }
.charity-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.6; }

/* ── TAX GUIDE ── */
.tax-section { padding: 80px 0; background: var(--light-warm); }
.tax-content { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin-top: 32px; }
.tax-content p { margin-bottom: 14px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }
.tax-callout { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--accent); }
.tax-callout h3 { font-size: 1.05rem; margin-bottom: 12px; }
.tax-callout ul { list-style: none; padding: 0; }
.tax-callout li { padding: 8px 0; font-size: 0.9rem; color: var(--gray-600); display: flex; align-items: flex-start; gap: 8px; }
.tax-callout li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* ── NEIGHBORHOODS ── */
.neighborhoods-section { padding: 80px 0; background: var(--white); }
.neighborhoods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.neighborhood-tag { padding: 14px 18px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; color: var(--gray-700); transition: all 0.2s; }
.neighborhood-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.neighborhood-tag .area-desc { display: block; font-size: 0.78rem; font-weight: 400; color: var(--gray-400); margin-top: 3px; }
.neighborhood-tag:hover .area-desc { color: rgba(255,255,255,0.7); }

/* ── WHY DONATE ── */
.why-section { padding: 80px 0; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); }
.why-section .section-tag { background: rgba(255,255,255,0.15); color: var(--white); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.8); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; }
.why-card { background: rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); }
.why-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.6; }
.why-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-icon svg { width: 22px; height: 22px; fill: var(--accent-light); }

/* ── VEHICLE GUIDE ── */
.vehicle-section { padding: 80px 0; background: var(--light); }
.vehicle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.vehicle-card { text-align: center; padding: 24px 16px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all 0.2s; }
.vehicle-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.vehicle-card svg { width: 36px; height: 36px; fill: var(--primary); margin-bottom: 10px; }
.vehicle-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.vehicle-card p { font-size: 0.8rem; color: var(--gray-500); }

/* ── BENEFITS ── */
.benefits { padding: 80px 0; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.benefit-card { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); transition: all 0.2s; }
.benefit-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icon svg { width: 26px; height: 26px; fill: var(--white); }
.benefit-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 80px 0; background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--gray-600); line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--gray-800); }
.testimonial-meta { font-size: 0.78rem; color: var(--gray-400); }

/* ── FAQ ── */
.faq { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--gray-50); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; border: 1px solid var(--gray-200); transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--gray-300); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; background: none; border: none; cursor: pointer; font-size: 1rem; font-weight: 600; text-align: left; color: var(--gray-800); transition: color 0.2s; }
.faq-question:hover { color: var(--primary); }
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; color: var(--gray-400); }
.faq-item.open { border-color: var(--primary-light); background: var(--white); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer { padding: 0 22px 18px; font-size: 0.93rem; color: var(--gray-600); line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA BANNER ── */
.cta-banner { padding: 64px 0; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end)); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%); }
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-cta { display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; border-radius: var(--radius-sm); font-size: 1.05rem; font-weight: 700; transition: all 0.2s; }
.btn-cta-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
.btn-cta-secondary { background: rgba(255,255,255,0.12); color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-cta:hover { transform: translateY(-2px); text-decoration: none; box-shadow: var(--shadow-lg); }

/* ── TRUST BAR ── */
.trust-bar { padding: 48px 0; background: var(--white); border-top: 1px solid var(--gray-100); }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.6rem; color: var(--primary-dark); font-weight: 800; }
.trust-item span { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; }

/* ── INTERNAL LINKS ── */
.nearby-section { padding: 60px 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.nearby-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.nearby-link { display: inline-flex; align-items: center; gap: 4px; padding: 8px 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); transition: all 0.2s; }
.nearby-link:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; background: rgba(0,0,0,0.02); }

/* ── NHFTB EMBED ── */
.nhftb-section { padding: 80px 0; background: var(--gray-50, #f8f9fa); }
.nhftb-section #benefit-finder-widget { max-width: 900px; margin: 32px auto 0; }

/* ── FOOTER ── */
.site-footer { background: var(--gray-900); color: var(--gray-400); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 0.88rem; line-height: 1.65; }
.footer-address { font-style: normal; font-size: 0.85rem; line-height: 1.7; margin-top: 16px; color: var(--gray-400); }
.footer-address strong { color: var(--white); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; }
.footer-address a { color: var(--gray-400); transition: color 0.2s; }
.footer-address a:hover { color: var(--white); }
.footer-links h4 { color: var(--white); font-size: 0.88rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links a { display: block; font-size: 0.85rem; color: var(--gray-400); padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--gray-700); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--gray-500); }

/* ── TIMELINE ── */
.timeline-section { padding: 80px 0; background: var(--white); }
.timeline { max-width: 800px; margin: 36px auto 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 3px; background: var(--gray-200); }
.timeline-step { display: flex; gap: 24px; margin-bottom: 32px; position: relative; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; flex-shrink: 0; position: relative; z-index: 1; border: 4px solid var(--white); box-shadow: var(--shadow); }
.timeline-content { flex: 1; padding-top: 10px; }
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 4px; }
.timeline-content .timeline-time { font-size: 0.78rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; display: inline-block; }
.timeline-content p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.6; }

/* ── COMPARISON TABLE ── */
.comparison-section { padding: 80px 0; background: var(--light); }
.comparison-table-wrap { overflow-x: auto; margin-top: 36px; }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.comparison-table th, .comparison-table td { padding: 16px 20px; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--gray-100); }
.comparison-table th { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.comparison-table th:first-child { width: 30%; color: var(--gray-500); }
.compare-donate { background: rgba(0,128,0,0.04); color: var(--primary-dark); }
.compare-sell { color: var(--gray-700); }
.compare-trade { color: var(--gray-700); }
.comparison-table tbody tr:hover { background: var(--gray-50); }
.comparison-table .check { color: var(--primary); font-weight: 700; }
.comparison-table .cross { color: #DC2626; font-weight: 700; }
.comparison-context { margin-top: 24px; font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }

/* ── DMV GUIDE ── */
.dmv-section { padding: 80px 0; background: var(--white); }
.dmv-content { margin-top: 24px; }
.dmv-content p { margin-bottom: 14px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }
.dmv-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--gray-800); }
.dmv-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.dmv-step { padding: 20px; background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--gray-200); }
.dmv-step-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 0.78rem; font-weight: 700; margin-bottom: 8px; }
.dmv-step h4 { font-size: 0.95rem; margin-bottom: 4px; }
.dmv-step p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }

/* ── ENVIRONMENTAL IMPACT ── */
.env-section { padding: 80px 0; background: #F0F7F0; }
.env-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.env-card { text-align: center; padding: 28px 16px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(0,128,0,0.1); }
.env-stat { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.env-card h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--gray-800); }
.env-card p { font-size: 0.8rem; color: var(--gray-500); }
.env-content { margin-top: 32px; }
.env-content p { margin-bottom: 14px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ── DONATION STORIES ── */
.stories-section { padding: 80px 0; background: var(--light); }
.stories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.story-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.story-header { padding: 20px 24px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); }
.story-header h3 { font-size: 1.05rem; margin-bottom: 2px; }
.story-header .story-meta { font-size: 0.78rem; opacity: 0.8; }
.story-body { padding: 20px 24px; }
.story-body p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 10px; }
.story-impact { display: inline-block; padding: 4px 10px; background: rgba(0,128,0,0.08); border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: var(--primary); }

/* ── SEASONAL TIPS ── */
.seasonal-section { padding: 80px 0; background: var(--white); }
.seasonal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.seasonal-card { padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); text-align: center; }
.seasonal-card .season-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.seasonal-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--gray-800); }
.seasonal-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.55; }
.seasonal-highlight { display: inline-block; margin-top: 8px; padding: 3px 10px; background: var(--accent); color: var(--white); border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }

/* ── RESOURCES ── */
.resources-section { padding: 80px 0; background: var(--gray-50); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.resource-card { padding: 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all 0.2s; }
.resource-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }
.resource-card h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--primary-dark); }
.resource-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.55; margin-bottom: 10px; }
.resource-card a { font-size: 0.82rem; font-weight: 600; color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.1rem; }
  .charity-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-top { flex-direction: column; gap: 8px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); border-top: 1px solid var(--gray-200); }
  .nav-links.open a { padding: 14px 24px; border-bottom: 1px solid var(--gray-100); }
  .mobile-toggle { display: block; }
  .nav-dropdown-content { position: static; box-shadow: none; border: none; padding-left: 16px; display: block; }
  .hero-split-right .hero-grid, .hero-split-left .hero-grid, .hero-stacked .hero-grid { grid-template-columns: 1fr; }
  .hero-split-left .hero-text { order: 1; }
  .hero-split-left .lead-form-card { order: 2; }
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 40px 0 36px; }
  .steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; }
  .tax-content { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dmv-steps { grid-template-columns: 1fr; }
  .env-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }
  .seasonal-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .env-grid { grid-template-columns: 1fr; }
  .seasonal-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 24px; }
  .hero h1 { font-size: 1.5rem; }
  .container { padding: 0 16px; }
}
