/* ============================================================
   HERO / LANDING
   ============================================================ */
.hero {
  background: #f0fdf4;
  color: var(--color-text); padding: var(--space-2xl) 0;
  text-align: center;
}
.icon { display: inline-flex; align-items: center; vertical-align: middle; }
.icon svg { display: block; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: var(--space-md); color: var(--color-primary-dark); }
.hero p { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 600px; margin: 0 auto var(--space-lg); line-height: 1.6; }
.hero-badge {
  display: inline-block; padding: 0.3rem 0.9rem; border-radius: 999px;
  background: #dcfce7; color: #16a34a; border: 1px solid #bbf7d0;
  font-size: var(--text-sm); font-weight: 500; margin-bottom: var(--space-md);
}
.hero-stats {
  display: flex; justify-content: center; gap: var(--space-2xl); flex-wrap: wrap;
  margin-top: var(--space-lg); padding-top: var(--space-lg);
  border-top: 1px solid #cbd5e1;
}
.hero-stat { text-align: center; }
.hero-stat-value { font-size: var(--text-3xl); font-weight: 700; color: var(--color-primary-dark); }
.hero-stat-unit { font-size: var(--text-3xl); font-weight: 700; color: var(--color-primary-dark); margin-left: var(--space-xs); }
.hero-stat-desc { font-size: 0.75rem; color: var(--color-text-muted); display: block; margin-top: 2px; max-width: 200px; }
.metrics-bar {
  display: flex; justify-content: center; gap: var(--space-2xl); flex-wrap: wrap;
  margin-top: var(--space-xl);
}
.metric-item { text-align: center; }
.metric-value { font-size: var(--text-3xl); font-weight: 700; color: var(--color-primary-dark); }
.metric-label { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============================================================
   PROBLEM STATEMENT
   ============================================================ */
.problem-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.problem-header { text-align: center; margin-bottom: var(--space-xl); }
.problem-header h2 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-sm); }
.problem-header p { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 640px; margin: 0 auto; line-height: 1.6; }
.section-badge {
  display: inline-block; padding: 0.3rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--color-border); font-size: var(--text-sm);
  font-weight: 500; color: var(--color-text-muted); margin-bottom: var(--space-md);
}
.problem-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
@media (max-width: 768px) { .problem-cards { grid-template-columns: 1fr; } }
.problem-card {
  padding: var(--space-xl); border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
}
.problem-card-schools { background: #fef2f2; border-color: #fecaca; }
.problem-card-waste { background: #fffbeb; border-color: #fed7aa; }
.problem-card h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-lg); }
.problem-card-title { display: flex; align-items: center; gap: var(--space-sm); }
.problem-card-schools .problem-card-title .icon { color: #dc2626; }
.problem-card-waste .problem-card-title .icon { color: #d97706; }
.problem-stat { margin-bottom: var(--space-lg); }
.problem-stat:last-child { margin-bottom: 0; }
.problem-stat-header { display: flex; align-items: baseline; gap: 0.5rem; }
.problem-stat-value { font-size: var(--text-3xl); font-weight: 700; }
.problem-card-schools .problem-stat-value { color: #dc2626; }
.problem-card-waste .problem-stat-value { color: #d97706; }
.problem-stat-context { font-size: var(--text-base); font-weight: 600; color: var(--color-text); }
.problem-stat p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; margin: var(--space-xs) 0; }
.problem-source {
  display: inline-block; font-size: 0.7rem; padding: 0.15rem 0.5rem;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  color: var(--color-text-muted); background: rgba(255,255,255,0.6);
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution-section {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
}
.solution-card {
  max-width: 800px; margin: 0 auto; text-align: center;
  padding: var(--space-2xl); border-radius: var(--radius-lg);
  border: 2px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
  background: color-mix(in srgb, var(--color-primary) 5%, white);
}
.solution-card h3 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-lg); }
.solution-card > p { color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-md); font-size: var(--text-base); }
.solution-checks {
  display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center;
  margin: var(--space-lg) 0;
}
.solution-check {
  display: flex; align-items: center; gap: var(--space-sm); font-size: var(--text-sm);
}
.solution-check-icon {
  color: var(--color-primary); font-weight: 700; font-size: var(--text-lg);
}
.solution-footnote {
  font-style: italic; font-size: var(--text-sm); color: var(--color-text-muted);
  margin-top: var(--space-md);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
}
.pricing-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg);
  max-width: 860px; margin: 0 auto;
}
@media (max-width: 768px) { .pricing-cards { grid-template-columns: 1fr; } }
.pricing-card {
  padding: var(--space-xl); border-radius: var(--radius-lg);
  border: 2px solid var(--color-border); background: var(--color-surface);
  display: flex; flex-direction: column;
}
.pricing-card-school { border-color: #bbf7d0; background: #f0fdf4; }
.pricing-card-business { border-color: #bfdbfe; background: #eff6ff; }
.pricing-badge {
  display: inline-block; font-size: var(--text-sm); font-weight: 600;
  color: var(--color-text-muted); margin-bottom: var(--space-md);
}
.pricing-price { margin-bottom: var(--space-md); }
.pricing-amount {
  font-size: var(--text-3xl); font-weight: 700;
}
.pricing-card-school .pricing-amount { color: #16a34a; }
.pricing-card-business .pricing-amount { color: #2563eb; }
.pricing-unit {
  font-size: var(--text-base); color: var(--color-text-muted); margin-left: var(--space-xs);
}
.pricing-desc {
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5;
  margin-bottom: var(--space-md);
}
.pricing-features {
  list-style: none; padding: 0; margin: 0 0 var(--space-lg);
  display: flex; flex-direction: column; gap: var(--space-sm);
  font-size: var(--text-sm); flex: 1;
}
.pricing-features li { color: var(--color-text); }
.pricing-examples {
  background: rgba(255,255,255,0.6); border-radius: var(--radius-md);
  padding: var(--space-md); margin-bottom: var(--space-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.pricing-example-title {
  font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-sm);
}
.pricing-example {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: var(--space-sm); font-size: var(--text-sm);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-example:last-child { border-bottom: none; }
.pricing-example span:nth-child(2) { font-weight: 600; }
.pricing-disposal {
  color: var(--color-text-muted); text-decoration: line-through;
  font-size: 0.75rem;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section {
  padding: var(--space-2xl) 0;
  background: #f9fafb;
  border-bottom: 1px solid var(--color-border);
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
@media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  padding: var(--space-lg); border-radius: var(--radius-lg);
  background: var(--color-surface); border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.benefit-icon { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: var(--radius-md); background: color-mix(in srgb, var(--color-primary) 10%, transparent); color: var(--color-primary); margin-bottom: var(--space-sm); }
.benefit-card h3 { font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-sm); }
.benefit-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }
.benefits-dual { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 768px) { .benefits-dual { grid-template-columns: 1fr; } }
.benefits-dual-card {
  padding: var(--space-lg); border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 2px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
}
.benefits-dual-card h3 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--space-md); }
.benefits-dual-title { display: flex; align-items: center; gap: var(--space-sm); }
.benefits-dual-title .icon { color: var(--color-primary); }
.benefits-dual-card ul { list-style: disc; padding-left: var(--space-lg); margin: 0; }
.benefits-dual-card li {
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6;
  margin-bottom: var(--space-xs);
}

/* ============================================================
   HOME CTA
   ============================================================ */
.home-cta-section {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
}
.home-cta-card {
  max-width: 640px; margin: 0 auto; text-align: center;
  padding: var(--space-2xl); border-radius: var(--radius-lg);
  border: 2px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
  background: color-mix(in srgb, var(--color-primary) 5%, white);
}
.home-cta-card h2 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-sm); }
.home-cta-card p { color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-lg); }

.how-it-works { padding: var(--space-2xl) 0; border-bottom: 1px solid var(--color-border); }
.how-it-works h2 { text-align: center; font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-sm); }
.section-subtitle { text-align: center; font-size: var(--text-lg); color: var(--color-text-muted); margin-bottom: var(--space-xl); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-lg); }
.step {
  text-align: center; padding: var(--space-lg);
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.step-number {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--color-primary); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-lg); margin-bottom: var(--space-md);
}
.step h3 { font-weight: 600; margin-bottom: var(--space-sm); }
.step p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - 56px); padding: var(--space-lg);
}
.auth-card { width: 100%; max-width: 420px; }
.auth-card .card-body { padding: var(--space-xl); }
.auth-card h2 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-lg); text-align: center; }

/* ============================================================
   ONBOARDING
   ============================================================ */
.onboarding-page { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.onboarding-steps {
  display: flex; justify-content: center; gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.onboarding-step {
  display: flex; align-items: center; gap: var(--space-sm);
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.onboarding-step.active { color: var(--color-primary); font-weight: 600; }
.onboarding-step.done { color: var(--color-success); }
.onboarding-step-num {
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  border: 2px solid currentColor; display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm); font-weight: 600;
}
.onboarding-step.active .onboarding-step-num { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.onboarding-step.done .onboarding-step-num { background: var(--color-success); color: white; border-color: var(--color-success); }

/* ============================================================
   SEARCH / BROWSE
   ============================================================ */
.search-page { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.search-layout { display: grid; grid-template-columns: 260px 1fr; gap: var(--space-lg); align-items: start; }
@media (max-width: 768px) {
  .search-layout { grid-template-columns: 1fr; }
}
.search-header { margin-bottom: var(--space-lg); }
.search-bar { display: flex; gap: var(--space-sm); }
.search-bar .input { flex: 1; }
.search-results-count { font-size: var(--text-sm); color: var(--color-text-muted); margin: var(--space-md) 0; }

/* ============================================================
   LISTING DETAIL
   ============================================================ */
.listing-detail { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.listing-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-xl); }
@media (max-width: 768px) {
  .listing-detail-grid { grid-template-columns: 1fr; }
}
.listing-images { display: grid; gap: 4px; }
.listing-main-image-wrap { position: relative; }
.listing-main-image { width: 100%; aspect-ratio: 4/3; object-fit: contain; border-radius: var(--radius-lg); background: #e5e7eb; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.listing-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.85); border: 1px solid var(--color-border); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; color: var(--color-text); z-index: 2; box-shadow: var(--shadow-sm); transition: background 0.15s; }
.listing-nav:hover { background: #fff; }
.listing-nav-prev { left: 8px; }
.listing-nav-next { right: 8px; }
.listing-thumbnails { display: flex; gap: var(--space-sm); justify-content: center; }
.listing-thumbnail { width: 80px; height: 60px; object-fit: contain; background: #e5e7eb; border-radius: var(--radius-md); cursor: pointer; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.listing-thumbnail.active { border-color: var(--color-primary); border-width: 2px; }
.listing-info h1 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-sm); }
.listing-meta { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-md); }
.listing-sidebar { position: sticky; top: var(--space-lg); }

/* Share bar */
.share-bar {
  display: flex; align-items: center; justify-content: center; gap: var(--space-sm); flex-wrap: wrap;
}
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full, 50%);
  border: 1px solid var(--color-border); background: var(--color-surface);
  color: var(--color-text-muted); cursor: pointer; transition: background 0.15s, color 0.15s;
}
.share-btn:hover { background: var(--color-primary); color: white; border-color: var(--color-primary); }

/* ============================================================
   CREATE LISTING
   ============================================================ */
.create-listing-page { padding: var(--space-xl) 0; max-width: 700px; margin: 0 auto; }

.disposal-cost-card { background: var(--color-warning-bg, #fef3c7); border: 1px solid var(--color-warning-border, #fbbf24); border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-top: var(--space-md); }
.disposal-cost-header { font-weight: 700; font-size: var(--text-lg); margin-bottom: 0.25rem; }
.disposal-cost-desc { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: 0.75rem; }
.disposal-cost-rows { display: flex; flex-direction: column; gap: 0.25rem; }
.disposal-cost-row { display: flex; justify-content: space-between; font-size: var(--text-sm); }
.disposal-cost-total { font-weight: 700; border-top: 1px solid var(--color-warning-border, #fbbf24); padding-top: 0.35rem; margin-top: 0.25rem; font-size: 1rem; }
.disposal-cost-strikethrough { text-decoration: line-through; color: var(--color-text-muted); }
.disposal-cost-highlight { color: #16a34a; }
.disposal-cost-highlight span { color: #16a34a; }
.disposal-cost-footer { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: 0.75rem; font-style: italic; }

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-page { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.dashboard-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-md); margin-bottom: var(--space-xl); }

.org-card-layout { display: flex; gap: var(--space-lg); align-items: flex-start; }
.org-card-content { flex: 1; min-width: 0; }
.org-logo-area {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; position: relative;
}
.org-logo-placeholder {
  width: 100%; height: 100%;
  border: 2px dashed var(--color-border); border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: var(--color-text-muted);
  transition: border-color 0.2s, background 0.2s;
}
.org-logo-placeholder:hover { border-color: var(--color-primary); background: var(--color-primary-light, #f0f7ff); }
.org-logo-placeholder svg { opacity: 0.5; }
.org-logo-placeholder span { font-size: 0.6rem; text-align: center; line-height: 1.1; }
.org-logo-img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: var(--radius-md); background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.org-logo-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600;
  border-radius: var(--radius-md);
  opacity: 0; transition: opacity 0.2s;
}
.org-logo-area:hover .org-logo-overlay { opacity: 1; }
.org-logo-actions { display: flex; gap: var(--space-xs); margin-top: var(--space-xs); }
.org-logo-actions button {
  font-size: 0.65rem; padding: 2px 6px;
  background: none; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); cursor: pointer;
  color: var(--color-text-muted); transition: color 0.15s, border-color 0.15s;
}
.org-logo-actions button:hover { color: var(--color-primary); border-color: var(--color-primary); }
.org-logo-actions button.remove:hover { color: var(--color-error); border-color: var(--color-error); }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-page { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.admin-section { margin-bottom: var(--space-xl); }
.admin-section h2 { font-size: var(--text-xl); font-weight: 600; margin-bottom: var(--space-md); }

/* ============================================================
   NEEDS LISTS
   ============================================================ */
.needs-lists-page { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.needs-list-card { cursor: pointer; }
.needs-list-progress { margin-top: var(--space-sm); }
.progress-bar { height: 6px; background: var(--color-border); border-radius: 3px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--color-success); border-radius: 3px; transition: width 0.3s; }

.needs-list-form { padding: var(--space-xl) 0; max-width: 900px; margin: 0 auto; }

.line-items-table { width: 100%; }
.line-items-table input,
.line-items-table select {
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-sm);
  min-width: 0;
}
.line-items-table th:last-child,
.line-items-table td:last-child { width: 40px; text-align: center; }

.remove-row-btn {
  background: none; border: none; cursor: pointer;
  color: var(--color-text-muted); font-size: var(--text-lg);
  line-height: 1; padding: var(--space-xs);
  border-radius: var(--radius-sm);
}
.remove-row-btn:hover { color: var(--color-error); background: var(--color-error-light, #fef2f2); }

.csv-upload-area {
  border: 2px dashed var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-xl); text-align: center; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.csv-upload-area:hover,
.csv-upload-area.dragover {
  border-color: var(--color-primary); background: var(--color-primary-light, #f0f7ff);
}

.csv-preview { font-size: var(--text-sm); }

/* ============================================================
   RESERVATIONS
   ============================================================ */
.reservations-page { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

/* ============================================================
   SUPPORTERS
   ============================================================ */
.supporters-hero {
  background: #f0fdf4;
  color: var(--color-text); padding: var(--space-2xl) 0 0; text-align: center;
}
.supporters-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: var(--space-md); color: var(--color-primary-dark);
}
.supporters-hero > .container > p {
  font-size: var(--text-lg); color: var(--color-text-muted); max-width: 600px; margin: 0 auto var(--space-xl); line-height: 1.6;
}
.supporters-hero-stats {
  display: flex; justify-content: center; gap: var(--space-2xl); flex-wrap: wrap;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid #cbd5e1;
}
.supporters-hero-stat { text-align: center; }
.supporters-hero-stat-value { font-size: var(--text-3xl); font-weight: 700; color: var(--color-primary-dark); }
.supporters-hero-stat-label { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-xs); }

.supporters-cards-area {
  margin-top: var(--space-xl);
  text-align: left;
}
.supporters-list { padding: var(--space-xl) 0 var(--space-2xl); }
.supporters-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--space-md);
}
@media (max-width: 768px) {
  .supporters-grid { grid-template-columns: 1fr; }
}

.supporter-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.supporter-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }
.supporter-card-top { border-color: rgba(0,0,0,0.06); }

.supporter-card-header {
  display: flex; align-items: center; gap: var(--space-md);
  padding: var(--space-lg);
}
.supporter-rank-medal {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.supporter-rank-medal svg { width: 16px; height: 16px; stroke: rgba(0,0,0,0.4); }
.supporter-rank-number {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--color-bg); border: 1px solid var(--color-border);
  font-weight: 700; font-size: var(--text-sm); color: var(--color-text-muted);
}
.supporter-logo {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-sm);
  object-fit: contain; flex-shrink: 0; background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.supporter-card-info { min-width: 0; }
.supporter-card-name {
  font-weight: 600; font-size: var(--text-base);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.supporter-card-location {
  display: flex; align-items: center; gap: var(--space-xs);
  font-size: var(--text-sm); color: var(--color-text-muted); margin-top: 2px;
}
.supporter-location-icon { display: inline-flex; align-items: center; flex-shrink: 0; color: var(--color-text-muted); }

.supporter-card-stats {
  display: flex; gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border);
  flex: 1;
}
.supporter-card-stats-empty {
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-md) var(--space-lg);
  flex: 1;
}
.supporter-stat {
  flex: 1; text-align: center; padding: var(--space-sm) var(--space-xs);
  background: var(--color-bg); border-radius: var(--radius-md);
}
.supporter-stat-value {
  font-size: var(--text-lg); font-weight: 700; color: var(--color-primary);
}
.supporter-stat-co2 .supporter-stat-value { color: var(--color-success); }
.supporter-stat-label { font-size: 0.7rem; color: var(--color-text-muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }

.supporter-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-sm) var(--space-lg);
  border-top: 1px solid var(--color-border);
  background: #f9fafb;
}

.supporters-cta {
  padding: var(--space-2xl) 0;
  background: #f0fdf4;
}
.supporters-cta h2 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-sm); color: var(--color-primary-dark); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { padding: var(--space-2xl) 0; }
.faq-section h2 { text-align: center; font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-xl); }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item[open] { border-color: var(--color-primary); }
.faq-item summary {
  padding: var(--space-md) var(--space-lg);
  font-weight: 600; font-size: var(--text-base);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
  transition: background 0.15s;
}
.faq-item summary:hover { background: #f9fafb; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: var(--text-xl); color: var(--color-text-muted);
  flex-shrink: 0; transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(135deg); color: var(--color-primary); }
.faq-answer {
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6;
  overflow: hidden; transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0; height: 0;
}
.faq-answer-inner { padding: 0 var(--space-lg) var(--space-lg); }
.faq-item[open] .faq-answer { opacity: 1; }

/* ============================================================
   INFO / ABOUT PAGES (om-oss, vilkår, personvern)
   ============================================================ */
.info-hero {
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 8%, white), var(--color-bg));
  padding: var(--space-2xl) 0; text-align: center;
}
.info-hero h1 {
  font-size: clamp(2rem, 5vw, 2.5rem); font-weight: 700;
  margin-bottom: var(--space-sm);
}
.info-hero > .container > p {
  font-size: var(--text-lg); color: var(--color-text-muted);
  max-width: 640px; margin: 0 auto; line-height: 1.6;
}
.info-hero-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  color: var(--color-primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.info-section-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  color: var(--color-primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}

.info-content { padding: var(--space-2xl) 0; }
.info-columns { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.info-column h2 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-md); }
.info-column p { color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-md); }
@media (max-width: 768px) {
  .info-columns { grid-template-columns: 1fr; }
}

/* Team section */
.info-team {
  background: var(--color-bg); border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
}
.info-team h2 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-sm); }
.info-team > .container > .info-section-icon { display: flex; margin: 0 auto var(--space-md); }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg); max-width: 700px; margin: var(--space-xl) auto 0;
}
.team-card .card-body { padding: var(--space-lg); }
.team-avatar {
  width: 5rem; height: 5rem; border-radius: 50%;
  object-fit: cover; margin-bottom: var(--space-md);
}
.team-card h3 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--space-xs); }
.team-role {
  font-size: var(--text-sm); color: var(--color-primary);
  font-weight: 500; margin-bottom: var(--space-sm);
}
.team-contact {
  display: flex; flex-direction: column; gap: 2px;
  margin-top: var(--space-md); font-size: var(--text-sm);
}
.team-card-link {
  color: var(--color-text-muted); text-decoration: none;
  transition: color 0.15s;
}
.team-card-link:hover { color: var(--color-primary); }

/* CTA card in about page */
.info-cta-card {
  max-width: 560px; margin: var(--space-xl) auto 0;
  padding: var(--space-xl); text-align: center;
  background: var(--color-surface);
  border: 2px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
  border-radius: var(--radius-lg);
}
.info-cta-card h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-sm); }
.info-cta-card p { color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-lg); }

/* Legal pages (vilkår, personvern) */
.legal-sections {
  display: flex; flex-direction: column; gap: var(--space-lg);
  max-width: 800px; margin: 0 auto;
}
.legal-card .card-body { padding: var(--space-xl); }
.legal-card h2 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-md); }
.legal-card p { color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-sm); }
.legal-list {
  list-style: none; padding: 0; margin: var(--space-sm) 0 0;
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.legal-list li {
  display: flex; align-items: flex-start; gap: var(--space-sm);
  color: var(--color-text-muted); line-height: 1.5;
}
.legal-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-primary); flex-shrink: 0;
  margin-top: 0.55em;
}
.legal-contact { margin-top: var(--space-sm); }
.legal-contact p { margin-bottom: var(--space-xs); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: #f9fafb;
  padding: var(--space-2xl) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  display: flex; align-items: center; gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.footer-logo-img { height: 28px; width: auto; }
.footer-logo-text { font-size: var(--text-lg); font-weight: 700; }
.footer-brand > .text-sm { line-height: 1.5; }
.footer-heading {
  font-size: var(--text-sm); font-weight: 600;
  margin-bottom: var(--space-sm);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-xs); }
.footer-link {
  font-size: var(--text-sm); color: var(--color-text-muted);
  text-decoration: none; transition: color 0.15s;
}
.footer-link:hover { color: var(--color-text); }
.footer-bottom {
  margin-top: var(--space-xl); padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  text-align: center; font-size: var(--text-sm); color: var(--color-text-muted);
}
