/* =====================================================
   IrishSolarQuotes.ie – Design System
   ===================================================== */

:root {
  --amber:     #F59E0B;
  --amber-dark:#D97706;
  --amber-light:#FEF3C7;
  --green:     #059669;
  --green-dark:#047857;
  --green-light:#D1FAE5;
  --slate:     #1E293B;
  --slate-mid: #334155;
  --slate-light:#64748B;
  --sky:       #0EA5E9;
  --white:     #FFFFFF;
  --off-white: #F8FAFC;
  --border:    #E2E8F0;
  --radius:    10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --font:      -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-w:     1140px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--amber-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; color: var(--slate-mid); }

/* =====================================================
   LAYOUT
   ===================================================== */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 6rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.mt-1 { margin-top: 0.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; }

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s ease;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--slate);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--slate);
  text-decoration: none;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5,150,105,.35);
}

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.1rem; }
.btn-xl { padding: 1.25rem 2.75rem; font-size: 1.2rem; }
.btn-block { width: 100%; }

/* =====================================================
   HEADER / NAV
   ===================================================== */

.site-header {
  background: var(--slate);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
}
.logo:hover { text-decoration: none; }

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.logo span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }

.nav-cta { margin-left: 0.5rem; }

/* =====================================================
   HERO
   ===================================================== */

.hero {
  background: linear-gradient(135deg, var(--slate) 0%, #0F172A 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero-lead {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
}

.trust-item .check {
  color: var(--green);
  font-size: 1rem;
}

/* Quiz Card */
.quiz-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: var(--slate);
}

.quiz-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.quiz-card-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.quiz-card-header p {
  font-size: 0.9rem;
  color: var(--slate-light);
}

.grant-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-top: 0.5rem;
}

/* =====================================================
   QUIZ STEPS
   ===================================================== */

.quiz-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.quiz-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  flex: 1;
  transition: background .3s;
}

.quiz-progress-bar.active { background: var(--amber); }
.quiz-progress-bar.done   { background: var(--green); }

.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 0.5rem;
}

.quiz-step-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.quiz-options.single-col { grid-template-columns: 1fr; }

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s;
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--slate);
}

.quiz-option:hover {
  border-color: var(--amber);
  background: var(--amber-light);
}

.quiz-option.selected {
  border-color: var(--amber);
  background: var(--amber-light);
}

.quiz-option-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Lead Form */
.quiz-form-group {
  margin-bottom: 1rem;
}

.quiz-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--slate-mid);
}

.quiz-form-group input,
.quiz-form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--slate);
  background: var(--white);
  transition: border-color .15s;
  -webkit-appearance: none;
}

.quiz-form-group input:focus,
.quiz-form-group select:focus {
  outline: none;
  border-color: var(--amber);
}

.gdpr-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.gdpr-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--amber);
}

.gdpr-check label {
  font-size: 0.78rem;
  color: var(--slate-light);
  line-height: 1.4;
}

/* =====================================================
   STATS BAR
   ===================================================== */

.stats-bar {
  background: var(--amber);
  padding: 1.25rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--slate);
  line-height: 1;
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--slate-mid);
  font-weight: 500;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate);
  margin: 0 auto 1.25rem;
}

.step-card h3 { margin-bottom: 0.5rem; }
.step-card p  { color: var(--slate-light); font-size: 0.95rem; }

/* =====================================================
   GRANT SECTION
   ===================================================== */

.grant-section {
  background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
  color: var(--white);
}

.grant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grant-section h2 { color: var(--white); margin-bottom: 1rem; }
.grant-section p  { color: rgba(255,255,255,.8); }

.grant-amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.grant-table {
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.grant-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.grant-table-row:last-child { border-bottom: none; }

.grant-table-row .label { color: rgba(255,255,255,.7); font-size: 0.9rem; }
.grant-table-row .value { font-weight: 700; color: var(--amber); }

/* =====================================================
   COST BREAKDOWN
   ===================================================== */

.cost-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cost-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  transition: all .2s;
}

.cost-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.cost-card.featured {
  border-color: var(--amber);
  background: var(--amber-light);
}

.cost-card .tag {
  display: inline-block;
  background: var(--amber);
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cost-card .system-size {
  font-size: 1rem;
  color: var(--slate-light);
  margin-bottom: 0.25rem;
}

.cost-card .cost-range {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.cost-card .after-grant {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cost-card ul {
  list-style: none;
  text-align: left;
}

.cost-card ul li {
  font-size: 0.85rem;
  color: var(--slate-light);
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cost-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* =====================================================
   WHY USE US
   ===================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-card {
  padding: 1.75rem;
  border-radius: 12px;
  background: var(--off-white);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.9rem; color: var(--slate-light); }

/* =====================================================
   COUNTY MAP / GRID
   ===================================================== */

.county-section { background: var(--off-white); }

.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.county-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all .15s;
  text-decoration: none;
}

.county-link:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.county-count {
  background: var(--amber-light);
  color: var(--amber-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--slate-mid);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card .location {
  font-size: 0.8rem;
  color: var(--slate-light);
}

/* =====================================================
   FAQ
   ===================================================== */

.faq-section { background: var(--off-white); }

.faq-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  user-select: none;
  gap: 1rem;
}

.faq-question:hover { background: var(--off-white); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--amber);
  transition: transform .2s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--slate-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* =====================================================
   CTA BANNER
   ===================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--slate) 0%, #0F172A 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background: #0F172A;
  color: rgba(255,255,255,.6);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}

.footer-brand .logo { font-size: 1.1rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: rgba(255,255,255,.55);
  font-size: 0.85rem;
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.seai-disclaimer {
  font-size: 0.72rem;
  opacity: .6;
  margin-top: 1rem;
  line-height: 1.5;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 0;
}

.section-header .eyebrow {
  display: inline-block;
  color: var(--amber-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 0.75rem;
}

.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { color: var(--slate-light); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */

.page-hero {
  background: linear-gradient(135deg, var(--slate) 0%, #1a2942 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

/* =====================================================
   CONTENT PAGES
   ===================================================== */

.content-body {
  max-width: 760px;
  margin: 0 auto;
}

.content-body h2 { margin: 2.5rem 0 1rem; }
.content-body h3 { margin: 2rem 0 0.75rem; }
.content-body p, .content-body li { color: var(--slate-mid); }
.content-body ul, .content-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-body li { margin-bottom: 0.4rem; }

.info-box {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.info-box.green {
  background: var(--green-light);
  border-left-color: var(--green);
}

.info-box strong { color: var(--slate); }
.info-box p { color: var(--slate-mid); margin-top: 0.25rem; }

/* Data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--slate);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.data-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--slate-mid);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }

/* =====================================================
   COUNTY PAGE
   ===================================================== */

.county-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.county-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
}

.county-stat .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber-dark);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.county-stat .label {
  font-size: 0.85rem;
  color: var(--slate-light);
}

/* =====================================================
   THANK YOU PAGE
   ===================================================== */

.thank-you-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--slate-light); }
.breadcrumb a:hover { color: var(--slate); }
.breadcrumb .sep { opacity: .5; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {
  .hero-grid       { grid-template-columns: 1fr; }
  .grant-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2          { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .section  { padding: 2.5rem 0; }
  .grid-3   { grid-template-columns: 1fr; }
  .grid-4   { grid-template-columns: 1fr 1fr; }
  .cost-cards       { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .county-stats     { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .quiz-options     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .nav-links        { display: none; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .hero             { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .county-grid { grid-template-columns: 1fr 1fr; }
}
