﻿* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #17312b;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(250, 252, 247, 0.95);
  border-bottom: 1px solid rgba(23, 49, 43, 0.12);
  backdrop-filter: blur(14px);
}

.burger-button,
.close-menu,
.dropdown-button,
.primary-button,
.secondary-button,
.register-button,
.donation-form button {
  cursor: pointer;
}

.burger-button {
  display: inline-grid;
  place-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(23, 49, 43, 0.18);
  border-radius: 8px;
  background: #ffffff;
}

.burger-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: #17312b;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  background: #2c7a4b;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 28px);
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover {
  color: #2c7a4b;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.login-link,
.register-button,
.dropdown-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 700;
}

.login-link {
  padding: 0 8px;
}

.register-button {
  padding: 0 16px;
  color: #ffffff;
  border-radius: 8px;
  background: #2c7a4b;
}

.dropdown {
  position: relative;
}

.dropdown-button {
  gap: 8px;
  padding: 0 14px;
  color: #17312b;
  border: 1px solid rgba(23, 49, 43, 0.18);
  border-radius: 8px;
  background: #ffffff;
}

.chevron {
  font-size: 1rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  min-width: 180px;
  padding: 8px;
  border: 1px solid rgba(23, 49, 43, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(12, 32, 27, 0.16);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  font-weight: 700;
}

.dropdown-menu a:hover {
  background: #eef6ea;
}

.dropdown.is-open .dropdown-menu {
  display: block;
}

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  width: min(330px, 86vw);
  padding: 22px;
  background: #ffffff;
  box-shadow: 24px 0 50px rgba(12, 32, 27, 0.18);
  transform: translateX(-105%);
  transition: transform 0.25s ease;
}

.side-menu.is-open {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.close-menu {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  color: #17312b;
  background: #eef6ea;
  font-size: 1.7rem;
  line-height: 1;
}

.side-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 49, 43, 0.1);
  font-weight: 800;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  background: rgba(13, 26, 22, 0.45);
}

.overlay.is-open {
  display: block;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 76px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(13, 35, 29, 0.84), rgba(13, 35, 29, 0.48), rgba(13, 35, 29, 0.24)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: #66b37a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 730px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-button {
  color: #17312b;
  background: #a8dc7b;
}

.secondary-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.intro-section,
.content-section,
.donation-section {
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 76px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
  background: #ffffff;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.intro-section > p,
.donation-text p,
.action-list p,
.reason-card p {
  line-height: 1.7;
}

.intro-section > p {
  margin: 28px 0 0;
  color: #48615a;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(23, 49, 43, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.reason-card span {
  color: #2c7a4b;
  font-weight: 900;
}

.reason-card h3 {
  margin: 42px 0 12px;
  font-size: 1.25rem;
}

.reason-card p {
  margin: 0;
  color: #536a63;
}

.donation-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(14, 70, 46, 0.9), rgba(14, 70, 46, 0.76)),
    url("https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.donation-text p:not(.section-label) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
}

.donation-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  color: #17312b;
}

.donation-form label {
  font-weight: 800;
}

.donation-form input,
.donation-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(23, 49, 43, 0.18);
  border-radius: 8px;
  color: #17312b;
  background: #f8faf5;
  font: inherit;
}

.donation-form button {
  min-height: 48px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
  font-size: 1rem;
  font-weight: 900;
}

.small-note {
  font-weight: 800;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  max-width: 150px;
  padding: 0 12px;
  overflow: hidden;
  border-radius: 8px;
  color: #17312b;
  background: #eef6ea;
  font-size: 0.9rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-page {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: clamp(54px, 7vw, 90px) 20px;
  background:
    linear-gradient(90deg, rgba(244, 247, 240, 0.94), rgba(244, 247, 240, 0.78)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.auth-panel {
  width: min(460px, 100%);
  padding: 28px;
  border: 1px solid rgba(23, 49, 43, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(12, 32, 27, 0.12);
}

.auth-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.auth-copy {
  color: #536a63;
  line-height: 1.7;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form label {
  font-weight: 800;
}

.auth-form input {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(23, 49, 43, 0.18);
  border-radius: 8px;
  color: #17312b;
  background: #f8faf5;
  font: inherit;
}

.auth-form button {
  min-height: 48px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.alert {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.5;
}

.alert.error {
  color: #7d211b;
  background: #ffe8e4;
}

.alert.success {
  color: #1f603c;
  background: #e4f6df;
}

.form-link {
  margin: 18px 0 0;
  color: #536a63;
}

.form-link a {
  color: #2c7a4b;
  font-weight: 900;
}

.inline-button {
  margin-top: 8px;
}

.action-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.action-list div {
  padding: 22px 0;
  border-top: 2px solid #2c7a4b;
}

.action-list strong {
  font-size: 1.15rem;
}

.action-list p {
  color: #536a63;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 76px);
  color: #ffffff;
  background: #17312b;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section,
  .donation-section,
  .action-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .login-link {
    display: none;
  }

  .register-button,
  .dropdown-button {
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .hero {
    align-items: flex-end;
    min-height: 620px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    min-height: auto;
  }

  .reason-card h3 {
    margin-top: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}

.toast-notification {
  position: fixed;
  top: 92px;
  right: clamp(14px, 3vw, 34px);
  z-index: 100;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  width: min(430px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(23, 49, 43, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(12, 32, 27, 0.18);
  color: #17312b;
  font-weight: 800;
  line-height: 1.45;
  animation: toastIn 0.28s ease both;
}

.toast-notification.success {
  border-left: 5px solid #2c7a4b;
}

.toast-notification.error {
  border-left: 5px solid #b5332c;
}

.toast-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: #2c7a4b;
}

.toast-notification.error .toast-icon {
  background: #b5332c;
}

.toast-notification button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  color: #17312b;
  background: #eef6ea;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.toast-notification.is-hiding {
  animation: toastOut 0.22s ease both;
}

.auth-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #1f603c;
  background: #e4f6df;
  font-weight: 900;
}

.loading-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2c7a4b;
  animation: pulseDot 0.8s ease infinite alternate;
}

.login-panel {
  width: min(520px, 100%);
}

.login-details {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.login-details div {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 49, 43, 0.12);
}

.login-details strong {
  display: block;
  margin-bottom: 4px;
}

.login-details p {
  margin: 0;
  color: #536a63;
  line-height: 1.6;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

@keyframes pulseDot {
  from { opacity: 0.45; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.1); }
}

@media (max-width: 700px) {
  .toast-notification {
    top: 78px;
    right: 14px;
  }
}

.account-dropdown {
  position: relative;
}

.account-button {
  gap: 9px;
  min-width: 0;
  max-width: 230px;
  padding: 0 12px 0 10px;
}

.account-name {
  max-width: 135px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2c7a4b;
}

.user-icon::before,
.user-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
}

.user-icon::before {
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.user-icon::after {
  bottom: 4px;
  width: 13px;
  height: 7px;
  border-radius: 9px 9px 4px 4px;
}

.account-menu {
  min-width: 210px;
}

.logout-menu-link {
  color: #9b2722;
}

.logout-menu-link:hover {
  color: #7d211b;
  background: #ffe8e4 !important;
}

.account-page {
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 76px);
  background: #f4f7f0;
}

.account-panel {
  max-width: 820px;
  padding: 28px;
  border: 1px solid rgba(23, 49, 43, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(12, 32, 27, 0.1);
}

.account-panel h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.account-panel p {
  color: #536a63;
  line-height: 1.7;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 700px) {
  .account-button {
    max-width: 160px;
    padding-inline: 9px;
  }

  .account-name {
    max-width: 82px;
  }
}

.account-actions .secondary-button {
  color: #2c7a4b;
  border-color: rgba(44, 122, 75, 0.38);
  background: #ffffff;
}

/* Boxed navigation refresh */
.main-nav.boxed-nav {
  gap: 8px;
  justify-content: center;
}

.main-nav.boxed-nav a,
.side-menu-links a,
.side-account-links a,
.dropdown-menu a {
  position: relative;
  overflow: hidden;
  border: 0;
  background: #eef6ea;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.main-nav.boxed-nav a {
  padding: 11px 13px;
  border-radius: 8px;
  white-space: nowrap;
}

.main-nav.boxed-nav a::after,
.side-menu-links a::after,
.side-account-links a::after,
.dropdown-menu a::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: skewX(-18deg);
  opacity: 0;
}

.main-nav.boxed-nav a:hover,
.side-menu-links a:hover,
.side-account-links a:hover,
.dropdown-menu a:hover {
  color: #17312b;
  background: #dff1d6;
  box-shadow: 0 12px 26px rgba(44, 122, 75, 0.16);
  transform: translateY(-2px);
}

.main-nav.boxed-nav a:hover::after,
.side-menu-links a:hover::after,
.side-account-links a:hover::after,
.dropdown-menu a:hover::after {
  opacity: 1;
  animation: menuShine 0.7s ease;
}

.side-menu {
  background: #f7faf3;
}

.side-menu-header {
  padding: 14px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(12, 32, 27, 0.08);
}

.side-menu-links,
.side-account-links {
  display: grid;
  gap: 10px;
}

.side-account-links {
  margin-top: 18px;
  padding-top: 18px;
}

.side-menu a,
.side-menu-links a,
.side-account-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 0;
  border-radius: 8px;
  font-weight: 900;
}

.side-menu-links a span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
  font-size: 0.78rem;
}

.boxed-section {
  background: #f4f7f0;
}

.alt-section {
  background: #ffffff;
}

.section-box,
.reason-card,
.action-list div,
.donation-form,
.auth-panel,
.account-panel {
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
}

.section-box {
  padding: 24px;
}

.section-box p:last-child {
  margin-bottom: 0;
  color: #536a63;
  line-height: 1.7;
}

.reason-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(12, 32, 27, 0.12);
}

.action-list div {
  padding: 22px;
  border-top: 0;
}

@keyframes menuShine {
  from { left: -55%; }
  to { left: 130%; }
}

@media (max-width: 1120px) {
  .main-nav.boxed-nav {
    gap: 6px;
    font-size: 0.86rem;
  }

  .main-nav.boxed-nav a {
    padding-inline: 9px;
  }
}

/* Cause section content */
.cause-section {
  display: grid;
  gap: 22px;
}

.cause-hero-box {
  max-width: 980px;
}

.cause-hero-box p {
  color: #48615a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cause-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cause-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cause-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(12, 32, 27, 0.13);
}

.cause-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
  font-weight: 900;
}

.cause-card h3 {
  margin: 28px 0 12px;
  font-size: 1.25rem;
}

.cause-card p,
.cause-detail-box p,
.source-box li {
  color: #536a63;
  line-height: 1.75;
}

.cause-card p {
  margin: 0;
}

.cause-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cause-detail-box h3,
.source-box h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.source-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.source-box a {
  color: #2c7a4b;
  font-weight: 900;
}

.source-box a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .cause-grid,
  .cause-detail-grid {
    grid-template-columns: 1fr;
  }

  .cause-card {
    min-height: auto;
  }
}

/* Turkey section content */
.turkey-section {
  display: grid;
  gap: 22px;
}

.turkey-hero-box {
  max-width: 980px;
}

.turkey-hero-box p,
.turkey-summary-box p {
  color: #48615a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.turkey-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  min-height: 260px;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stat-card:hover,
.turkey-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(12, 32, 27, 0.13);
}

.stat-value {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
}

.stat-card h3,
.turkey-info-card h3,
.turkey-summary-box h3 {
  margin: 22px 0 12px;
  font-size: 1.25rem;
}

.stat-card p,
.turkey-info-card p {
  margin: 0;
  color: #536a63;
  line-height: 1.75;
}

.turkey-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.turkey-info-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.turkey-summary-box h3 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .turkey-stats-grid,
  .turkey-content-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: auto;
  }
}

/* Turkey visual panel */
.turkey-visual-panel {
  display: grid;
  gap: 22px;
  overflow: hidden;
}

.visual-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.visual-panel-header h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.visual-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  color: #ffffff;
  background: #17312b;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.bar-chart {
  display: grid;
  gap: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 12px;
}

.bar-label,
.bar-row strong,
.risk-meter span {
  font-weight: 900;
}

.bar-track {
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef6ea;
}

.bar-track span {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2c7a4b, #a8dc7b);
  box-shadow: 0 0 24px rgba(44, 122, 75, 0.26);
}

.risk-meter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.risk-meter {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: #f8faf5;
}

.meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1eadb;
}

.meter i {
  display: block;
  width: var(--meter);
  height: 100%;
  border-radius: inherit;
  background: #2c7a4b;
}

@media (max-width: 760px) {
  .visual-panel-header,
  .bar-row {
    grid-template-columns: 1fr;
  }

  .visual-panel-header {
    display: grid;
  }

  .bar-row {
    gap: 7px;
  }

  .risk-meter-grid {
    grid-template-columns: 1fr;
  }
}

/* World section content */
.world-section {
  display: grid;
  gap: 22px;
}

.world-hero-box {
  max-width: 980px;
}

.world-hero-box p {
  color: #48615a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.world-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.world-stat-card,
.world-info-card {
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.world-stat-card:hover,
.world-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(12, 32, 27, 0.13);
}

.world-stat-value {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  color: #ffffff;
  background: #17312b;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
}

.world-stat-card h3,
.world-info-card h3,
.world-flow-panel h3 {
  margin: 22px 0 12px;
  font-size: 1.25rem;
}

.world-stat-card p,
.world-info-card p {
  margin: 0;
  color: #536a63;
  line-height: 1.75;
}

.world-chart-panel {
  display: grid;
  gap: 22px;
}

.column-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  min-height: 300px;
  padding-top: 16px;
}

.column-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.column-track {
  position: relative;
  display: flex;
  align-items: end;
  width: min(78px, 100%);
  height: 190px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef6ea;
}

.column-track span {
  display: block;
  width: 100%;
  height: var(--height);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #a8dc7b, #2c7a4b);
  box-shadow: 0 0 28px rgba(44, 122, 75, 0.26);
}

.column-item strong {
  font-size: 1.05rem;
}

.column-item p {
  margin: 0;
  color: #536a63;
  font-weight: 800;
  line-height: 1.35;
}

.world-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.world-flow-panel h3 {
  margin-top: 0;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-steps div {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 130px;
  padding: 16px;
  border-radius: 8px;
  background: #f8faf5;
}

.flow-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
  font-weight: 900;
}

.flow-steps strong {
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .world-stat-grid,
  .column-chart,
  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .world-stat-grid,
  .column-chart,
  .world-content-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .column-track {
    width: 100%;
    height: 92px;
  }
}

/* Solution homepage section */
.solution-section {
  display: grid;
  gap: 22px;
}

.solution-hero-box {
  max-width: 1040px;
}

.solution-hero-box p,
.solution-note-box p {
  color: #48615a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.solution-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.solution-secondary {
  color: #2c7a4b;
  border-color: rgba(44, 122, 75, 0.38);
  background: #ffffff;
}

.solution-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  min-height: 245px;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.solution-card:hover,
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(12, 32, 27, 0.13);
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
  font-weight: 900;
}

.solution-card h3,
.solution-note-box h3 {
  margin: 24px 0 12px;
  font-size: 1.28rem;
}

.solution-card p {
  margin: 0;
  color: #536a63;
  line-height: 1.7;
}

.solution-roadmap {
  display: grid;
  gap: 20px;
}

.roadmap-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.roadmap-steps div {
  min-height: 170px;
  padding: 16px;
  border-radius: 8px;
  background: #f8faf5;
}

.roadmap-steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 32px;
  border-radius: 8px;
  color: #ffffff;
  background: #17312b;
  font-size: 0.82rem;
  font-weight: 900;
}

.roadmap-steps strong {
  display: block;
  margin-top: 16px;
  font-size: 1.15rem;
}

.roadmap-steps p {
  margin: 8px 0 0;
  color: #536a63;
  line-height: 1.6;
}

.solution-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.impact-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.impact-card > span {
  color: #2c7a4b;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-ring {
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: conic-gradient(#2c7a4b var(--ring), #e4efdf 0);
}

.impact-ring strong {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #ffffff;
  color: #17312b;
  font-size: 0.98rem;
}

.impact-card p {
  margin: 0;
  color: #536a63;
  line-height: 1.65;
}

.solution-note-box h3 {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .solution-pillars,
  .roadmap-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .solution-pillars,
  .roadmap-steps,
  .solution-impact-grid {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .roadmap-steps div {
    min-height: auto;
  }
}

/* Detailed solution page */
.solution-detail-page {
  background: #f4f7f0;
}

.solution-detail-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 76px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(13, 35, 29, 0.88), rgba(13, 35, 29, 0.58), rgba(13, 35, 29, 0.3)),
    url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.solution-detail-hero-content {
  width: min(880px, 100%);
}

.solution-detail-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
}

.solution-detail-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.75;
}

.solution-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.solution-wide-box {
  max-width: 1040px;
}

.solution-wide-box p {
  color: #48615a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.solution-model-section,
.donation-model-section,
.volunteer-model-section,
.next-build-section {
  display: grid;
  gap: 22px;
}

.model-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.model-step-card {
  min-height: 245px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.model-step-card:hover,
.simulation-card:hover,
.map-choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(12, 32, 27, 0.13);
}

.model-step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
  font-weight: 900;
}

.model-step-card h3,
.map-choice-card h3 {
  margin: 24px 0 12px;
  font-size: 1.24rem;
}

.model-step-card p,
.simulation-card p,
.map-choice-card p {
  margin: 0;
  color: #536a63;
  line-height: 1.7;
}

.donation-simulation-grid,
.map-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.map-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simulation-card,
.map-choice-card {
  min-height: 165px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.simulation-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.simulation-card.active {
  background: #ffffff;
}

.simulation-card.muted {
  background: #17312b;
  color: #ffffff;
}

.simulation-card.muted p {
  color: rgba(255, 255, 255, 0.82);
}

.volunteer-dashboard-preview {
  display: grid;
  gap: 18px;
}

.dashboard-header-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.dashboard-header-line h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.fake-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.fake-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: #eef6ea;
  font-weight: 900;
}

.request-table-preview {
  display: grid;
  gap: 8px;
}

.request-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr 0.8fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  background: #f8faf5;
}

.request-row.head {
  color: #ffffff;
  background: #17312b;
  font-weight: 900;
}

.request-row strong {
  color: #2c7a4b;
}

.map-choice-card.recommended {
  color: #ffffff;
  background: #2c7a4b;
}

.map-choice-card.recommended p {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1100px) {
  .model-flow-grid,
  .donation-simulation-grid,
  .map-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .model-flow-grid,
  .donation-simulation-grid,
  .map-choice-grid {
    grid-template-columns: 1fr;
  }

  .model-step-card,
  .simulation-card {
    min-height: auto;
  }

  .dashboard-header-line {
    display: grid;
  }

  .fake-filters {
    justify-content: flex-start;
  }

  .request-row {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }
}

/* Leaflet planting map */
.map-model-section {
  display: grid;
  gap: 22px;
}

.map-workspace {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: stretch;
}

.map-form-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}

.map-form-panel h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.map-form-panel p {
  margin: 0;
  color: #536a63;
  line-height: 1.7;
}

.map-location-form {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.map-location-form label {
  font-weight: 900;
}

.map-location-form input,
.map-location-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(23, 49, 43, 0.14);
  border-radius: 8px;
  color: #17312b;
  background: #f8faf5;
  font: inherit;
}

.map-location-form textarea {
  min-height: 104px;
  padding-block: 12px;
  resize: vertical;
}

.coordinate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.map-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.map-location-button,
.map-clear-button {
  border: 0;
}

.map-clear-button {
  color: #2c7a4b;
  border: 1px solid rgba(44, 122, 75, 0.38);
  background: #ffffff;
}

.map-panel {
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  gap: 10px;
  min-width: 0;
}

.planting-map {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: #dfe9dc;
  box-shadow: inset 0 0 0 1px rgba(23, 49, 43, 0.08);
}

.map-status {
  padding: 12px 14px;
  border-radius: 8px;
  color: #17312b;
  background: #eef6ea;
  font-weight: 900;
  line-height: 1.5;
}

.map-choice-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .map-workspace,
  .map-choice-grid-compact {
    grid-template-columns: 1fr;
  }
}

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

  .map-panel {
    grid-template-rows: minmax(340px, 1fr) auto;
  }

  .planting-map {
    min-height: 340px;
  }
}

/* Leaflet render fixes */
.planting-map {
  width: 100%;
  height: 520px;
  min-height: 520px;
  position: relative;
  isolation: isolate;
}

.planting-map .leaflet-container,
.leaflet-container {
  background: #dfe9dc;
}

.planting-map .leaflet-tile {
  max-width: none !important;
}

@media (max-width: 640px) {
  .planting-map {
    height: 360px;
    min-height: 360px;
  }
}

/* Strong Leaflet reset */
.planting-map.leaflet-container {
  font: 12px/1.5 Arial, Helvetica, sans-serif;
  overflow: hidden !important;
}

.planting-map .leaflet-pane,
.planting-map .leaflet-map-pane,
.planting-map .leaflet-tile,
.planting-map .leaflet-marker-icon,
.planting-map .leaflet-marker-shadow,
.planting-map .leaflet-tile-container,
.planting-map .leaflet-pane > svg,
.planting-map .leaflet-pane > canvas,
.planting-map .leaflet-zoom-box,
.planting-map .leaflet-image-layer,
.planting-map .leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.planting-map .leaflet-tile,
.planting-map .leaflet-marker-icon,
.planting-map .leaflet-marker-shadow {
  user-select: none;
  -webkit-user-drag: none;
}

.planting-map .leaflet-control-container .leaflet-top,
.planting-map .leaflet-control-container .leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.planting-map .leaflet-top {
  top: 0;
}

.planting-map .leaflet-left {
  left: 0;
}

.planting-map .leaflet-control {
  position: relative;
  z-index: 1000;
  pointer-events: auto;
  float: left;
  clear: both;
  margin: 10px;
}

/* Action pages and planting example */
.action-page {
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 76px);
  background: #f4f7f0;
}

.action-panel {
  max-width: 980px;
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(12, 32, 27, 0.1);
}

.action-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.action-copy {
  color: #536a63;
  line-height: 1.7;
}

.action-preview-grid,
.planting-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.planting-example-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.action-preview-grid .section-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.action-preview-grid .section-box p,
.planting-example-card p {
  color: #536a63;
  line-height: 1.7;
}

.action-secondary {
  color: #2c7a4b;
  border-color: rgba(44, 122, 75, 0.38);
  background: #ffffff;
}

.account-hint-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background: #eef6ea;
}

.account-hint-box p {
  margin-bottom: 0;
}

.planting-example-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.planting-example-card.dark {
  color: #ffffff;
  background: #17312b;
}

.planting-example-card.dark p {
  color: rgba(255, 255, 255, 0.82);
}

.example-status-row,
.example-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.example-status-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: #eef6ea;
  font-weight: 900;
}

@media (max-width: 900px) {
  .action-preview-grid,
  .planting-example-grid {
    grid-template-columns: 1fr;
  }
}

/* Header quick action buttons */
.quick-action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-action-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(12, 32, 27, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quick-action-button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg);
}

.quick-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(12, 32, 27, 0.22);
}

.quick-action-button:hover::after {
  animation: menuShine 0.7s ease;
}

.quick-action-button.donate {
  background: #2c7a4b;
}

.quick-action-button.plant {
  background: #17312b;
}

@media (max-width: 1120px) {
  .quick-action-buttons {
    display: none;
  }
}

/* Donation request page */
.donation-request-page {
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 76px);
  background: #f4f7f0;
}

.donation-request-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 22px;
}

.donation-request-hero > div,
.price-summary-card,
.donation-request-form,
.donation-map-column {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
}

.donation-request-hero > div:first-child {
  padding: 28px;
}

.donation-request-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.donation-request-hero p:not(.eyebrow),
.map-helper-copy {
  color: #536a63;
  line-height: 1.75;
}

.price-summary-card {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px;
  color: #ffffff;
  background: #17312b;
}

.price-summary-card span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  text-transform: uppercase;
}

.price-summary-card strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.price-summary-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.donation-request-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: start;
}

.donation-request-form,
.donation-map-column {
  display: grid;
  gap: 12px;
}

.donation-request-form h2,
.donation-map-column h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.donation-request-form label {
  font-weight: 900;
}

.donation-request-form input,
.donation-request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(23, 49, 43, 0.14);
  border-radius: 8px;
  color: #17312b;
  background: #f8faf5;
  font: inherit;
}

.donation-request-form textarea {
  min-height: 118px;
  padding-block: 12px;
  resize: vertical;
}

.calculated-price-box {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
}

.calculated-price-box span,
.calculated-price-box small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.calculated-price-box strong {
  font-size: 1.8rem;
}

.donation-submit-button {
  border: 0;
  margin-top: 4px;
}

.donation-map {
  height: 560px;
  min-height: 560px;
}

.donation-login-panel {
  max-width: 820px;
}

@media (max-width: 1050px) {
  .donation-request-hero,
  .donation-request-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .donation-request-page {
    padding-inline: 14px;
  }

  .donation-map {
    height: 360px;
    min-height: 360px;
  }
}

/* Plant request listing page */
.plant-requests-page {
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 76px);
  background: #f4f7f0;
}

.plant-requests-hero {
  max-width: 1040px;
  margin-bottom: 22px;
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
}

.plant-requests-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.plant-requests-hero p:not(.section-label) {
  color: #536a63;
  line-height: 1.75;
}

.plant-filter-panel {
  margin-bottom: 16px;
}

.plant-filter-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
  gap: 12px;
  align-items: end;
}

.plant-filter-form div {
  display: grid;
  gap: 7px;
}

.plant-filter-form label {
  font-weight: 900;
}

.plant-filter-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(23, 49, 43, 0.14);
  border-radius: 8px;
  color: #17312b;
  background: #f8faf5;
  font: inherit;
}

.plant-filter-form button,
.plant-reset-button {
  border: 0;
  min-height: 44px;
}

.plant-reset-button {
  color: #2c7a4b;
  border: 1px solid rgba(44, 122, 75, 0.38);
  background: #ffffff;
}

.plant-request-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.summary-mini-card {
  display: grid;
  gap: 6px;
}

.summary-mini-card span {
  color: #536a63;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-mini-card strong {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.empty-requests-box {
  max-width: 820px;
}

.empty-requests-box h2 {
  margin-top: 0;
}

.empty-requests-box p {
  color: #536a63;
  line-height: 1.7;
}

.plant-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.plant-request-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.plant-request-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(12, 32, 27, 0.13);
}

.plant-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: #536a63;
  font-weight: 900;
}

.request-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
}

.request-status.assigned {
  background: #315f8f;
}

.request-status.planted {
  background: #17312b;
}

.request-status.maintenance {
  background: #8a6a1f;
}

.request-status.rejected {
  background: #9b2722;
}

.plant-request-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.plant-request-card > p {
  margin: 0;
  color: #536a63;
  line-height: 1.7;
}

.plant-card-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.plant-card-meta div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: #f8faf5;
}

.plant-card-meta span {
  color: #536a63;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plant-card-meta strong {
  overflow-wrap: anywhere;
}

.plant-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plant-card-actions .primary-button,
.plant-disabled-button {
  border: 0;
}

.plant-disabled-button {
  color: #2c7a4b;
  border: 1px solid rgba(44, 122, 75, 0.38);
  background: #ffffff;
  cursor: not-allowed;
}

@media (max-width: 1080px) {
  .plant-filter-form,
  .plant-request-grid,
  .plant-card-meta {
    grid-template-columns: 1fr;
  }

  .plant-request-summary {
    grid-template-columns: 1fr;
  }
}

/* Assign planting request */
.assign-request-form {
  margin: 0;
}

.assign-request-button {
  color: #ffffff;
  border: 0;
  background: #17312b;
  cursor: pointer;
}

.assign-request-button:hover {
  background: #2c7a4b;
}

.assigned-by-me-badge,
.assigned-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 900;
}

.assigned-by-me-badge {
  color: #ffffff;
  background: #2c7a4b;
}

.assigned-badge {
  color: #536a63;
  background: #eef6ea;
}

.plant-card-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .plant-card-meta {
    grid-template-columns: 1fr;
  }
}

.assigned-badge.info {
  color: #315f8f;
  background: #e8f1fb;
}

.assigned-badge.success {
  color: #1f603c;
  background: #e4f6df;
}

.assigned-badge.warning {
  color: #7a5b15;
  background: #fff3cf;
}

/* Donation and planting tracking pages */
.tracking-page {
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 76px);
  background: #f4f7f0;
}

.tracking-hero {
  max-width: 1040px;
  margin-bottom: 20px;
}

.tracking-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.tracking-hero p:not(.section-label) {
  color: #536a63;
  line-height: 1.75;
}

.tracking-card-list {
  display: grid;
  gap: 16px;
}

.tracking-card {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
  overflow: hidden;
}

.tracking-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

.tracking-card summary::-webkit-details-marker {
  display: none;
}

.tracking-card summary h2 {
  margin: 10px 0 6px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.tracking-card summary p {
  margin: 0;
  color: #536a63;
  font-weight: 800;
}

.tracking-card summary > strong {
  white-space: nowrap;
}

.tracking-card-body {
  display: grid;
  gap: 16px;
  padding: 0 22px 22px;
}

.tracking-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tracking-meta-grid div,
.tracking-address-box,
.photo-section,
.status-update-form,
.completed-lock-box {
  padding: 14px;
  border-radius: 8px;
  background: #f8faf5;
}

.tracking-meta-grid span {
  color: #536a63;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tracking-meta-grid strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.tracking-address-box p {
  margin-bottom: 0;
  color: #536a63;
  line-height: 1.7;
}

.photo-section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 900;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 120px;
  border-radius: 8px;
  color: #536a63;
  background: #eef6ea;
  font-weight: 900;
  text-align: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.photo-grid a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #eef6ea;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.status-update-form {
  display: grid;
  gap: 10px;
}

.status-update-form label {
  font-weight: 900;
}

.status-update-form select,
.status-update-form input[type="file"] {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 49, 43, 0.14);
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
}

.status-update-form small {
  color: #536a63;
  font-weight: 800;
}

.status-update-form button,
.cancel-assignment-button {
  border: 0;
  width: max-content;
}

.cancel-assignment-form {
  margin: 0;
}

.cancel-assignment-button {
  color: #9b2722;
  border: 1px solid rgba(155, 39, 34, 0.28);
  background: #ffe8e4;
}

.completed-lock-box {
  color: #1f603c;
  background: #e4f6df;
  font-weight: 900;
}

@media (max-width: 900px) {
  .tracking-card summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .tracking-meta-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }
}


/* Section rhythm and Why Us */
main > section:not(.hero):not(.donation-section) {
  position: relative;
}

main > section:not(.hero):not(.donation-section)::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 6vw, 76px);
  right: clamp(20px, 6vw, 76px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 122, 75, 0.35), transparent);
}

.why-us-section {
  display: grid;
  gap: 22px;
}

.why-us-hero-box {
  max-width: 1060px;
}

.why-us-hero-box p,
.why-us-note p {
  color: #48615a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.why-us-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.why-flow-step {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: #f8faf5;
}

.why-flow-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: #2c7a4b;
  font-weight: 900;
}

.why-flow-step strong {
  font-size: 1.08rem;
}

.why-flow-step p {
  margin: 0;
  color: #536a63;
  line-height: 1.65;
}

.why-flow-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2c7a4b, #a8dc7b);
  box-shadow: 0 0 18px rgba(44, 122, 75, 0.24);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-us-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(12, 32, 27, 0.13);
}

.why-us-card h3,
.why-us-note h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.why-us-card p {
  margin: 0;
  color: #536a63;
  line-height: 1.7;
}

@media (max-width: 1150px) {
  .why-us-flow {
    grid-template-columns: 1fr;
  }

  .why-flow-line {
    width: 2px;
    height: 28px;
    justify-self: center;
    background: linear-gradient(180deg, #2c7a4b, #a8dc7b);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* Contributors */
.contributors-section {
  display: grid;
  gap: 22px;
}

.contributors-hero-box p {
  color: #536a63;
  line-height: 1.7;
}

.contributors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contributor-card {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 32, 27, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contributor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(12, 32, 27, 0.13);
}

.contributor-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #ffffff;
  background: #2c7a4b;
  font-size: 1.1rem;
  font-weight: 900;
}

.contributor-card h3 {
  margin: 10px 0 0;
  font-size: 1.35rem;
}

.contributor-card p {
  margin: 0;
  color: #536a63;
  font-weight: 800;
}

.contributor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.contributor-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  color: #ffffff;
  background: #17312b;
  font-weight: 900;
}

.contributor-links a:first-child {
  background: #2c7a4b;
}

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

.team-photo-card {
  display: grid;
  gap: 16px;
  justify-items: center;
  width: min(780px, 100%);
  margin: 10px auto 0;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(12, 32, 27, 0.1);
}

.team-photo-card h3 {
  margin: 0;
  color: #4b3128;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  text-align: center;
}

.team-photo-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px dashed rgba(44, 122, 75, 0.35);
  color: #2c473f;
  background:
    linear-gradient(135deg, rgba(44, 122, 75, 0.18), rgba(236, 247, 239, 0.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.45) 0 12px, rgba(222,238,226,0.55) 12px 24px);
  text-align: center;
}

.team-photo-placeholder span {
  font-size: 1.35rem;
  font-weight: 900;
}

.team-photo-placeholder small {
  max-width: 380px;
  color: #587068;
  font-weight: 800;
  line-height: 1.5;
}

.contributor-links a.social-link {
  gap: 8px;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contributor-links a.instagram-link {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
}

.contributor-links a.whatsapp-link {
  background: #1f9d55;
}

@media (max-width: 640px) {
  .team-photo-card {
    padding: 16px;
  }

  .team-photo-placeholder {
    min-height: 210px;
  }
}

/* Platform upgrade */
body {
  background:
    radial-gradient(circle at top left, rgba(44, 122, 75, 0.14), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(43, 126, 161, 0.12), transparent 28rem),
    linear-gradient(180deg, #f7fbf3 0%, #eef5ed 48%, #f7fbf3 100%);
}

.site-header {
  box-shadow: 0 12px 32px rgba(12, 32, 27, 0.08);
}

.brand-mark {
  box-shadow: 0 0 0 6px rgba(44, 122, 75, 0.12);
}

.boxed-nav {
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(23, 49, 43, 0.08);
}

.main-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: #17312b;
  background: #e7f3e7;
  transform: translateY(-1px);
}

.platform-ribbon {
  position: sticky;
  top: 76px;
  z-index: 18;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(23, 49, 43, 0.1);
  backdrop-filter: blur(12px);
}

.platform-ribbon-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  min-height: 66px;
  padding: 10px 16px;
  background: rgba(247, 251, 243, 0.72);
  transition: background 0.2s ease, transform 0.2s ease;
}

.platform-ribbon-item:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.platform-ribbon-item span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: #17312b;
  font-size: 0.75rem;
  font-weight: 900;
}

.platform-ribbon-item strong {
  font-size: 0.92rem;
}

.platform-ribbon-item small {
  color: #5c746b;
  font-weight: 800;
}

.platform-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  min-height: calc(100vh - 142px);
  background:
    linear-gradient(90deg, rgba(13, 35, 29, 0.88), rgba(24, 81, 57, 0.62)),
    url("https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.platform-hero .hero-content {
  width: 100%;
}

.platform-hero h1 {
  max-width: 860px;
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
}

.hero-platform-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-platform-stats div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-platform-stats strong,
.hero-platform-stats span {
  display: block;
}

.hero-platform-stats strong {
  font-size: 1.2rem;
}

.hero-platform-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hero-dashboard {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 8px;
  color: #17312b;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 72px rgba(7, 22, 18, 0.28);
}

.dashboard-topline,
.dashboard-request-card > div,
.dashboard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-topline span {
  color: #5c746b;
  font-weight: 900;
}

.dashboard-topline strong {
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: #1f9d55;
  font-size: 0.78rem;
}

.dashboard-request-card {
  padding: 16px;
  border-radius: 8px;
  background: #eff8ef;
}

.dashboard-request-card p {
  margin: 8px 0 0;
  color: #5c746b;
  font-weight: 800;
}

.request-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f08a32;
  box-shadow: 0 0 0 6px rgba(240, 138, 50, 0.16);
}

.dashboard-flow {
  display: grid;
  gap: 10px;
}

.flow-node {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: #f6f8f3;
}

.flow-node span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #17312b;
  background: #dfe8dd;
  font-weight: 900;
}

.flow-node p {
  margin: 0;
  font-weight: 900;
}

.flow-node.is-done span {
  color: #ffffff;
  background: #2c7a4b;
}

.flow-node.is-active {
  background: #fff4e7;
}

.flow-node.is-active span {
  color: #ffffff;
  background: #d9792d;
}

.dashboard-actions a {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  padding: 10px;
  border-radius: 8px;
  color: #ffffff;
  background: #17312b;
  font-weight: 900;
}

.dashboard-actions a:last-child {
  background: #2c7a4b;
}

.content-section,
.donation-request-page,
.plant-requests-page,
.tracking-page,
.account-page,
.auth-page,
.solution-detail-page {
  position: relative;
}

.section-box,
.cause-card,
.solution-card,
.model-step-card,
.simulation-card,
.plant-request-card,
.tracking-card,
.account-panel,
.auth-panel,
.price-summary-card,
.donation-request-form,
.donation-map-column,
.plant-filter-panel,
.summary-mini-card {
  border: 1px solid rgba(23, 49, 43, 0.08);
  box-shadow: 0 18px 42px rgba(12, 32, 27, 0.08);
}

.donation-request-hero > div:first-child,
.plant-requests-hero,
.tracking-hero,
.account-panel,
.auth-panel,
.solution-detail-hero-content {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 247, 237, 0.86)),
    linear-gradient(90deg, rgba(44, 122, 75, 0.16), rgba(43, 126, 161, 0.12));
  box-shadow: 0 20px 54px rgba(12, 32, 27, 0.1);
}

.donation-request-hero > div:first-child::after,
.plant-requests-hero::after,
.tracking-hero::after,
.account-panel::after,
.auth-panel::after,
.solution-detail-hero-content::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #2c7a4b, #2b7ea1, #f0a34f, #2c7a4b);
  opacity: 0.18;
}

.price-summary-card,
.summary-mini-card,
.calculated-price-box {
  background: linear-gradient(135deg, #17312b, #2c7a4b);
  color: #ffffff;
}

.price-summary-card p,
.calculated-price-box small,
.summary-mini-card span {
  color: rgba(255, 255, 255, 0.74);
}

.primary-button,
.register-button,
.quick-action-button.donate,
.donation-form button {
  box-shadow: 0 12px 26px rgba(44, 122, 75, 0.24);
}

.secondary-button,
.quick-action-button.plant {
  box-shadow: 0 12px 26px rgba(23, 49, 43, 0.12);
}

.donation-section {
  background:
    linear-gradient(135deg, rgba(23, 49, 43, 0.95), rgba(44, 122, 75, 0.88)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.donation-section .section-label,
.donation-section h2,
.donation-section p,
.donation-section label {
  color: #ffffff;
}

.donation-form {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.donation-form input,
.donation-form select {
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 1050px) {
  .platform-hero {
    grid-template-columns: 1fr;
  }

  .platform-ribbon {
    position: static;
    grid-template-columns: 1fr;
    padding-inline: 14px;
  }
}

@media (max-width: 760px) {
  .hero-platform-stats {
    grid-template-columns: 1fr;
  }

  .platform-ribbon-item {
    min-height: 58px;
  }

  .hero-dashboard {
    padding: 16px;
  }
}

/* Premium polish pass */
body {
  color: #102821;
  background:
    radial-gradient(circle at 8% 0%, rgba(218, 168, 82, 0.13), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(45, 126, 100, 0.16), transparent 34rem),
    linear-gradient(180deg, #f8faf4 0%, #edf4eb 42%, #f7f7ef 100%);
}

.site-header {
  background: rgba(255, 255, 249, 0.9);
  border-bottom-color: rgba(16, 40, 33, 0.1);
  box-shadow: 0 14px 40px rgba(16, 40, 33, 0.09);
}

.brand-mark,
.platform-ribbon-item span,
.flow-node.is-done span {
  background: linear-gradient(135deg, #12362d, #2f8a5d);
}

.register-button,
.primary-button,
.quick-action-button.donate,
.donation-form button {
  background: linear-gradient(135deg, #1d5f43, #36a36a);
  box-shadow: 0 14px 30px rgba(29, 95, 67, 0.25);
}

.platform-ribbon {
  background: rgba(248, 250, 244, 0.86);
  box-shadow: 0 16px 34px rgba(16, 40, 33, 0.07);
}

.platform-ribbon-item {
  background: rgba(255, 255, 255, 0.86);
}

.platform-ribbon-item:hover {
  background: #fffaf0;
}

.platform-ribbon-item strong {
  color: #102821;
}

.platform-ribbon-item small {
  color: #62766c;
}

.platform-hero {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 29, 24, 0.9), rgba(16, 74, 50, 0.7), rgba(21, 75, 62, 0.42)),
    url("https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.platform-hero .hero-content > p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-dashboard {
  color: #102821;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 241, 0.9)),
    radial-gradient(circle at top right, rgba(218, 168, 82, 0.18), transparent 18rem);
  box-shadow:
    0 34px 90px rgba(5, 20, 17, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.hero-dashboard p,
.hero-dashboard span,
.hero-dashboard strong,
.hero-dashboard a {
  color: inherit;
}

.dashboard-topline span {
  color: #3f5b51;
  font-weight: 900;
}

.dashboard-topline strong {
  color: #ffffff;
  background: linear-gradient(135deg, #1f8f57, #39b66f);
  box-shadow: 0 10px 22px rgba(31, 143, 87, 0.24);
}

.dashboard-request-card {
  border: 1px solid rgba(47, 138, 93, 0.14);
  background: linear-gradient(135deg, #eef8ed, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.dashboard-request-card strong {
  color: #102821;
}

.dashboard-request-card p {
  color: #426459;
  font-weight: 900;
}

.request-dot {
  background: #d99032;
  box-shadow: 0 0 0 7px rgba(217, 144, 50, 0.18);
}

.flow-node {
  color: #102821;
  border: 1px solid rgba(16, 40, 33, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 40, 33, 0.06);
}

.flow-node p {
  color: #102821;
}

.flow-node span {
  color: #17312b;
  background: #e5eee6;
}

.flow-node.is-done {
  background: linear-gradient(135deg, #edf8ef, #ffffff);
}

.flow-node.is-done p {
  color: #174934;
}

.flow-node.is-active {
  border-color: rgba(217, 121, 45, 0.18);
  background: linear-gradient(135deg, #fff4e7, #ffffff);
}

.flow-node.is-active p {
  color: #8c4b16;
}

.flow-node.is-active span {
  color: #ffffff;
  background: linear-gradient(135deg, #c66c24, #f0a34f);
}

.dashboard-actions a {
  color: #ffffff;
  background: linear-gradient(135deg, #102821, #1f4c40);
  box-shadow: 0 12px 26px rgba(16, 40, 33, 0.18);
}

.dashboard-actions a:last-child {
  color: #ffffff;
  background: linear-gradient(135deg, #1d6a47, #37a86b);
}

.hero-platform-stats div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 16px 38px rgba(5, 20, 17, 0.12);
}

.hero-platform-stats strong {
  color: #ffffff;
}

.hero-platform-stats span {
  color: rgba(255, 255, 255, 0.82);
}

.section-box,
.cause-card,
.solution-card,
.model-step-card,
.simulation-card,
.plant-request-card,
.tracking-card,
.account-panel,
.auth-panel,
.price-summary-card,
.donation-request-form,
.donation-map-column,
.plant-filter-panel,
.summary-mini-card {
  border-color: rgba(16, 40, 33, 0.08);
  box-shadow: 0 20px 48px rgba(16, 40, 33, 0.085);
}

.cause-card:hover,
.solution-card:hover,
.model-step-card:hover,
.plant-request-card:hover,
.tracking-card:hover {
  box-shadow: 0 28px 64px rgba(16, 40, 33, 0.13);
}

/* Platform completion pass */
.platform-command-center {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -44px clamp(20px, 6vw, 76px) 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 72px rgba(16, 40, 33, 0.14);
  backdrop-filter: blur(18px);
}

.command-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 158px;
  padding: 20px;
  border: 1px solid rgba(16, 40, 33, 0.08);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f6faf2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.command-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 138, 93, 0.24);
  box-shadow: 0 24px 52px rgba(16, 40, 33, 0.13);
}

.command-card span {
  color: #2f8a5d;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.command-card strong {
  color: #102821;
  font-size: 1.08rem;
  line-height: 1.25;
}

.command-card p {
  margin: 0;
  color: #5a7068;
  line-height: 1.55;
  font-weight: 800;
}

.command-card-primary {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 40, 33, 0.96), rgba(35, 107, 74, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(218, 168, 82, 0.34), transparent 16rem);
}

.command-card-primary span,
.command-card-primary strong,
.command-card-primary p {
  color: #ffffff;
}

.command-card-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.content-section.boxed-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(246, 250, 242, 0.2));
}

.alt-section {
  background: linear-gradient(180deg, rgba(238, 246, 234, 0.72), rgba(255, 255, 255, 0.38));
}

.section-heading.section-box {
  overflow: hidden;
  border: 1px solid rgba(16, 40, 33, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 242, 0.9)),
    radial-gradient(circle at 92% 10%, rgba(218, 168, 82, 0.18), transparent 14rem);
}

.section-heading h2 {
  color: #102821;
}

.section-label,
.eyebrow {
  color: #2f8a5d;
}

.cause-number,
.solution-icon,
.world-stat-value,
.stat-value {
  box-shadow: 0 12px 24px rgba(47, 138, 93, 0.14);
}

.cause-card,
.turkey-info-card,
.world-stat-card,
.world-info-card,
.solution-card,
.why-us-card,
.contributor-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f8fbf5);
}

.cause-card::after,
.turkey-info-card::after,
.world-stat-card::after,
.world-info-card::after,
.solution-card::after,
.why-us-card::after,
.contributor-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #2f8a5d, #d9a852);
  opacity: 0.72;
}

.turkey-visual-panel,
.world-chart-panel,
.solution-roadmap,
.why-us-flow,
.team-photo-card {
  border: 1px solid rgba(16, 40, 33, 0.08);
  background:
    linear-gradient(145deg, #ffffff, #f7fbf3),
    radial-gradient(circle at top right, rgba(47, 138, 93, 0.12), transparent 18rem);
  box-shadow: 0 24px 58px rgba(16, 40, 33, 0.1);
}

.visual-badge,
.request-status,
.toast-icon {
  box-shadow: 0 10px 20px rgba(16, 40, 33, 0.12);
}

.donation-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.donation-section::before {
  content: "";
  position: absolute;
  inset: 20px clamp(20px, 6vw, 76px);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.donation-text,
.donation-form {
  position: relative;
  z-index: 1;
}

.donation-form button:hover,
.primary-button:hover,
.register-button:hover,
.dashboard-actions a:hover,
.command-card:hover {
  filter: saturate(1.05);
}

.auth-page,
.account-page,
.donation-request-page,
.plant-requests-page,
.tracking-page {
  background:
    radial-gradient(circle at top left, rgba(47, 138, 93, 0.13), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(217, 168, 82, 0.13), transparent 26rem),
    #f7faf3;
}

@media (max-width: 1100px) {
  .platform-command-center {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }
}

@media (max-width: 700px) {
  .platform-command-center {
    grid-template-columns: 1fr;
    margin-inline: 14px;
    padding: 10px;
  }

  .command-card {
    min-height: auto;
  }
}

/* Header controls and dark mode */
.header-control-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(16, 40, 33, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(16, 40, 33, 0.08);
}

.icon-control,
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  color: #102821;
  background: #f1f7ef;
  font-weight: 900;
  cursor: pointer;
}

.icon-control {
  width: 42px;
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #17312b;
  box-shadow: inset -5px -4px 0 #f1f7ef;
}

.language-toggle {
  gap: 4px;
  padding: 4px;
}

.language-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 32px;
  border-radius: 7px;
  color: #62766c;
  font-size: 0.82rem;
}

.language-toggle span.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #17312b, #2f8a5d);
  box-shadow: 0 8px 16px rgba(16, 40, 33, 0.16);
}

.icon-control:hover,
.language-toggle:hover {
  background: #ffffff;
}

html.theme-dark body {
  color: #eaf4ef;
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 168, 82, 0.12), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(47, 138, 93, 0.16), transparent 34rem),
    linear-gradient(180deg, #071511 0%, #0d211b 45%, #071511 100%);
}

html.theme-dark .site-header {
  background: rgba(8, 21, 17, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

html.theme-dark .brand,
html.theme-dark .main-nav a,
html.theme-dark .login-link,
html.theme-dark .dropdown-button,
html.theme-dark .account-button {
  color: #eaf4ef;
}

html.theme-dark .boxed-nav,
html.theme-dark .header-control-group,
html.theme-dark .dropdown-button,
html.theme-dark .burger-button {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

html.theme-dark .burger-button span {
  background: #eaf4ef;
}

html.theme-dark .icon-control,
html.theme-dark .language-toggle {
  color: #eaf4ef;
  background: rgba(255, 255, 255, 0.08);
}

html.theme-dark .theme-toggle-icon {
  background: #f0c76f;
  box-shadow: 0 0 0 5px rgba(240, 199, 111, 0.12);
}

html.theme-dark .language-toggle span {
  color: rgba(234, 244, 239, 0.62);
}

html.theme-dark .language-toggle span.is-active {
  color: #071511;
  background: linear-gradient(135deg, #f0c76f, #d9a852);
}

html.theme-dark .platform-ribbon {
  background: rgba(8, 21, 17, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

html.theme-dark .platform-ribbon-item {
  background: rgba(255, 255, 255, 0.055);
}

html.theme-dark .platform-ribbon-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

html.theme-dark .platform-ribbon-item strong,
html.theme-dark .platform-ribbon-item small {
  color: #eaf4ef;
}

html.theme-dark .platform-hero {
  background:
    linear-gradient(90deg, rgba(4, 14, 11, 0.94), rgba(9, 48, 34, 0.78), rgba(12, 51, 43, 0.58)),
    url("https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=1800&q=80") center/cover;
}

html.theme-dark .hero-dashboard,
html.theme-dark .command-card,
html.theme-dark .section-heading.section-box,
html.theme-dark .section-box,
html.theme-dark .cause-card,
html.theme-dark .turkey-info-card,
html.theme-dark .world-stat-card,
html.theme-dark .world-info-card,
html.theme-dark .solution-card,
html.theme-dark .why-us-card,
html.theme-dark .contributor-card,
html.theme-dark .tracking-card,
html.theme-dark .account-panel,
html.theme-dark .auth-panel,
html.theme-dark .donation-request-form,
html.theme-dark .donation-map-column,
html.theme-dark .plant-filter-panel {
  color: #eaf4ef;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(18, 45, 37, 0.96), rgba(10, 28, 23, 0.94));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
}

html.theme-dark .command-card-primary,
html.theme-dark .price-summary-card,
html.theme-dark .summary-mini-card,
html.theme-dark .calculated-price-box {
  background: linear-gradient(135deg, #0b1d18, #1f6846);
}

html.theme-dark .hero-dashboard p,
html.theme-dark .hero-dashboard span,
html.theme-dark .hero-dashboard strong,
html.theme-dark .command-card strong,
html.theme-dark .section-heading h2,
html.theme-dark h1,
html.theme-dark h2,
html.theme-dark h3 {
  color: #f5fbf8;
}

html.theme-dark p,
html.theme-dark .cause-card p,
html.theme-dark .turkey-info-card p,
html.theme-dark .world-info-card p,
html.theme-dark .world-stat-card p,
html.theme-dark .auth-copy,
html.theme-dark .map-helper-copy {
  color: rgba(234, 244, 239, 0.74);
}

html.theme-dark input,
html.theme-dark select,
html.theme-dark textarea {
  color: #eaf4ef;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

html.theme-dark input::placeholder,
html.theme-dark textarea::placeholder {
  color: rgba(234, 244, 239, 0.46);
}

html.theme-dark .dropdown-menu,
html.theme-dark .side-menu {
  color: #eaf4ef;
  border-color: rgba(255, 255, 255, 0.1);
  background: #0b1d18;
}

html.theme-dark .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
  .header-control-group {
    order: 3;
  }
}

@media (max-width: 760px) {
  .header-control-group {
    gap: 6px;
  }

  .language-toggle span {
    min-width: 30px;
  }
}

.theme-toggle.is-active {
  background: linear-gradient(135deg, #102821, #2f8a5d);
}

.theme-toggle.is-active .theme-toggle-icon {
  background: #f0c76f;
  box-shadow: 0 0 0 5px rgba(240, 199, 111, 0.16);
}

.language-toggle[data-active-lang="EN"] {
  box-shadow: 0 0 0 2px rgba(47, 138, 93, 0.12), 0 12px 24px rgba(16, 40, 33, 0.1);
}

html.theme-dark .theme-toggle.is-active {
  background: linear-gradient(135deg, #f0c76f, #d9a852);
}

/* Premium brand logo */
.brand-logo {
  position: relative;
  gap: 12px;
  min-width: 238px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(16, 40, 33, 0.1);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(244, 250, 240, 0.86));
  box-shadow: 0 14px 34px rgba(16, 40, 33, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 138, 93, 0.24);
  box-shadow: 0 20px 44px rgba(16, 40, 33, 0.14);
}

.brand-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 30%, rgba(240, 199, 111, 0.95), transparent 20%),
    linear-gradient(135deg, #102821, #2f8a5d 70%, #4fb979);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 12px 24px rgba(47, 138, 93, 0.22);
}

.brand-emblem::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
}

.brand-leaf {
  position: absolute;
  width: 20px;
  height: 27px;
  border-radius: 20px 20px 20px 4px;
  background: #ffffff;
  transform: rotate(38deg) translate(1px, -1px);
  box-shadow: inset -5px -5px 0 rgba(220, 242, 225, 0.95);
}

.brand-leaf::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 2px;
  height: 17px;
  border-radius: 999px;
  background: rgba(47, 138, 93, 0.64);
  transform: rotate(-12deg);
}

.brand-pin {
  position: absolute;
  right: 9px;
  bottom: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #f0c76f;
  border-radius: 50%;
  background: #17312b;
  box-shadow: 0 0 0 3px rgba(240, 199, 111, 0.18);
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  color: #102821;
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-copy small {
  color: #5f756c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: none;
}

html.theme-dark .brand-logo {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(18, 45, 37, 0.94), rgba(8, 21, 17, 0.92));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

html.theme-dark .brand-copy strong {
  color: #f5fbf8;
}

html.theme-dark .brand-copy small {
  color: rgba(234, 244, 239, 0.68);
}

html.theme-dark .brand-emblem {
  background:
    radial-gradient(circle at 35% 30%, rgba(240, 199, 111, 0.95), transparent 20%),
    linear-gradient(135deg, #06110e, #1f6846 70%, #36a36a);
}

@media (max-width: 1180px) {
  .brand-logo {
    min-width: auto;
    padding-right: 10px;
  }

  .brand-copy small {
    display: none;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    padding: 6px;
  }

  .brand-copy {
    display: none;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

/* Clear leaf logo refinement */
.brand-emblem {
  border-radius: 14px;
  background:
    radial-gradient(circle at 72% 22%, rgba(240, 199, 111, 0.42), transparent 20%),
    linear-gradient(135deg, #0f3329, #2f8a5d 68%, #69c889);
}

.brand-leaf,
.brand-pin,
.brand-leaf::after {
  display: none;
}

.brand-leaf-logo {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 4px 8px rgba(5, 24, 18, 0.24));
}

.brand-leaf-logo .leaf-main,
.brand-leaf-logo .leaf-side {
  fill: #ffffff;
}

.brand-leaf-logo .leaf-side {
  fill: #dff6e4;
}

.brand-leaf-logo .leaf-vein {
  fill: none;
  stroke: #2f8a5d;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html.theme-dark .brand-leaf-logo .leaf-main {
  fill: #f6fff9;
}

html.theme-dark .brand-leaf-logo .leaf-side {
  fill: #c8f0d1;
}

html.theme-dark .brand-leaf-logo .leaf-vein {
  stroke: #1f6846;
}

/* Hero dashboard readability refinement */
.hero-dashboard {
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #12241f;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 245, 234, 0.95)),
    radial-gradient(circle at 100% 0%, rgba(217, 168, 82, 0.22), transparent 18rem);
  box-shadow:
    0 32px 84px rgba(3, 18, 14, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.dashboard-topline {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(18, 36, 31, 0.1);
}

.dashboard-topline span {
  color: #12241f;
  font-size: 1.02rem;
  font-weight: 950;
}

.dashboard-topline strong {
  color: #ffffff;
  background: linear-gradient(135deg, #14533b, #2fa66a);
}

.dashboard-request-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(217, 138, 45, 0.22);
  background:
    linear-gradient(135deg, #fff7ea, #ffffff 72%),
    radial-gradient(circle at 0 0, rgba(217, 138, 45, 0.18), transparent 14rem);
  box-shadow: 0 18px 38px rgba(82, 55, 22, 0.09);
}

.dashboard-request-card > div {
  align-items: flex-start;
}

.dashboard-request-card strong {
  color: #12241f;
  font-size: 1.02rem;
  font-weight: 950;
}

.dashboard-request-card p {
  margin: 2px 0 0;
  color: #7c4d16;
  font-size: 1.22rem;
  line-height: 1.25;
  font-weight: 950;
}

.request-dot {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  background: #e3872f;
  box-shadow: 0 0 0 8px rgba(227, 135, 47, 0.16);
}

.dashboard-flow {
  gap: 12px;
}

.flow-node {
  min-height: 70px;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 36, 31, 0.08);
  background: linear-gradient(135deg, #ffffff, #f7faf6);
}

.flow-node span {
  width: 38px;
  height: 38px;
  color: #12241f;
  background: #e8efe7;
  font-size: 1rem;
}

.flow-node p {
  color: #12241f;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 950;
}

.flow-node.is-done {
  border-color: rgba(31, 116, 75, 0.2);
  background: linear-gradient(135deg, #edf9ef, #ffffff);
}

.flow-node.is-done p {
  color: #164d35;
}

.flow-node.is-active {
  border-color: rgba(227, 135, 47, 0.26);
  background: linear-gradient(135deg, #fff2df, #ffffff);
}

.flow-node.is-active p {
  color: #8a4a12;
}

.dashboard-actions a {
  min-height: 46px;
  align-items: center;
  font-size: 0.98rem;
}

html.theme-dark .hero-dashboard {
  color: #f7fbf8;
  border-color: rgba(240, 199, 111, 0.16);
  background:
    linear-gradient(145deg, rgba(20, 43, 36, 0.98), rgba(9, 24, 20, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(240, 199, 111, 0.14), transparent 18rem);
}

html.theme-dark .dashboard-topline {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html.theme-dark .dashboard-topline span,
html.theme-dark .dashboard-request-card strong,
html.theme-dark .flow-node p {
  color: #f7fbf8;
}

html.theme-dark .dashboard-request-card {
  border-color: rgba(240, 199, 111, 0.2);
  background: linear-gradient(135deg, rgba(66, 42, 16, 0.58), rgba(18, 45, 37, 0.92));
}

html.theme-dark .dashboard-request-card p {
  color: #ffdca0;
}

html.theme-dark .flow-node {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

html.theme-dark .flow-node.is-done {
  background: linear-gradient(135deg, rgba(28, 105, 69, 0.36), rgba(255, 255, 255, 0.04));
}

html.theme-dark .flow-node.is-active {
  background: linear-gradient(135deg, rgba(227, 135, 47, 0.22), rgba(255, 255, 255, 0.04));
}

/* Hard fix: keep hero dashboard text readable */
.hero .hero-dashboard,
.hero .hero-dashboard * {
  color: #12241f;
}

.hero .hero-dashboard p,
.hero .hero-dashboard strong,
.hero .hero-dashboard span {
  max-width: none;
  margin-top: 0;
}

.hero .hero-dashboard .dashboard-topline span {
  color: #12241f;
}

.hero .hero-dashboard .dashboard-topline strong {
  color: #ffffff;
}

.hero .hero-dashboard .dashboard-request-card strong {
  color: #12241f;
}

.hero .hero-dashboard .dashboard-request-card p {
  color: #7c4d16;
}

.hero .hero-dashboard .flow-node p {
  color: #12241f;
}

.hero .hero-dashboard .flow-node.is-done p {
  color: #164d35;
}

.hero .hero-dashboard .flow-node.is-active p {
  color: #8a4a12;
}

.hero .hero-dashboard .flow-node.is-done span,
.hero .hero-dashboard .flow-node.is-active span,
.hero .hero-dashboard .dashboard-actions a {
  color: #ffffff;
}

html.theme-dark .hero .hero-dashboard,
html.theme-dark .hero .hero-dashboard * {
  color: #f7fbf8;
}

html.theme-dark .hero .hero-dashboard .dashboard-request-card p {
  color: #ffdca0;
}

html.theme-dark .hero .hero-dashboard .flow-node.is-active p {
  color: #ffdca0;
}

html.theme-dark .hero .hero-dashboard .flow-node.is-done p {
  color: #c9f4d3;
}

/* Solution hero repair */
.solution-detail-hero {
  min-height: calc(100vh - 142px);
  align-items: center;
}

.solution-detail-hero-content {
  padding: clamp(28px, 5vw, 52px);
  color: #102821;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 239, 0.92)),
    radial-gradient(circle at 92% 16%, rgba(217, 168, 82, 0.18), transparent 15rem);
  box-shadow: 0 30px 82px rgba(4, 18, 14, 0.28);
  backdrop-filter: blur(16px);
}

.solution-detail-hero-content .eyebrow {
  color: #2f8a5d;
}

.solution-detail-hero-content h1 {
  max-width: 780px;
  color: #102821;
  font-size: clamp(2.15rem, 5vw, 4.35rem);
}

.solution-detail-hero-content p:not(.eyebrow) {
  max-width: 760px;
  color: #4e665d;
  font-weight: 800;
}

.solution-detail-actions .primary-button {
  color: #ffffff;
}

.solution-detail-actions .secondary-button {
  color: #102821;
  border-color: rgba(16, 40, 33, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

html.theme-dark .solution-detail-hero-content {
  color: #f5fbf8;
  border-color: rgba(240, 199, 111, 0.16);
  background:
    linear-gradient(145deg, rgba(18, 45, 37, 0.96), rgba(9, 24, 20, 0.94)),
    radial-gradient(circle at 92% 16%, rgba(240, 199, 111, 0.14), transparent 15rem);
}

html.theme-dark .solution-detail-hero-content .eyebrow {
  color: #9be3ad;
}

html.theme-dark .solution-detail-hero-content h1 {
  color: #f5fbf8;
}

html.theme-dark .solution-detail-hero-content p:not(.eyebrow) {
  color: rgba(234, 244, 239, 0.76);
}

html.theme-dark .solution-detail-actions .secondary-button {
  color: #f5fbf8;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

/* Compact hero badges */
.hero-platform-stats.compact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-platform-stats.compact-badges div {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: auto;
  padding: 0 16px 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px 8px 999px 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 14px 28px rgba(5, 20, 17, 0.16);
  backdrop-filter: blur(12px);
}

.hero-platform-stats.compact-badges div::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c76f, #2f8a5d);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.hero-platform-stats.compact-badges span {
  margin: 0;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-platform-stats.compact-badges strong {
  display: none;
}

html.theme-dark .hero-platform-stats.compact-badges div {
  border-color: rgba(240, 199, 111, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 760px) {
  .hero-platform-stats.compact-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-platform-stats.compact-badges div {
    justify-content: flex-start;
  }
}

/* Dashboard request label placement */
.dashboard-request-card > div {
  justify-content: flex-start;
  gap: 14px;
}

.hero .hero-dashboard .dashboard-request-card strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px 8px 999px 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #12241f, #2f8a5d);
  box-shadow: 0 10px 20px rgba(18, 36, 31, 0.18);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.hero .hero-dashboard .dashboard-request-card p {
  margin-left: 32px;
}

html.theme-dark .hero .hero-dashboard .dashboard-request-card strong {
  color: #071511;
  background: linear-gradient(135deg, #f0c76f, #ffdca0);
}

@media (max-width: 640px) {
  .hero .hero-dashboard .dashboard-request-card p {
    margin-left: 0;
  }
}

/* Compact main navigation shell */
.main-nav.boxed-nav {
  flex: 0 1 auto;
  width: max-content;
  max-width: min(760px, 100%);
  margin-inline: auto;
  gap: 6px;
  padding: 5px;
}

.main-nav.boxed-nav a {
  padding: 9px 12px;
}

.site-header {
  gap: 14px;
}

@media (max-width: 1180px) {
  .main-nav.boxed-nav {
    max-width: 560px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav.boxed-nav::-webkit-scrollbar {
    display: none;
  }
}

/* Sidebar brand and nav breathing room */
.main-nav.boxed-nav {
  gap: 10px;
  padding: 6px 8px;
  max-width: min(880px, 100%);
}

.main-nav.boxed-nav a {
  padding: 10px 15px;
}

.side-menu-header {
  gap: 12px;
  padding: 0;
}

.side-brand-logo {
  flex: 1;
  min-width: 0;
  padding: 7px 10px 7px 7px;
}

.side-brand-logo .brand-emblem {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}

.side-brand-logo .brand-leaf-logo {
  width: 31px;
  height: 31px;
}

.side-brand-logo .brand-copy strong {
  font-size: 0.96rem;
}

.side-brand-logo .brand-copy small {
  font-size: 0.68rem;
}

.side-menu-header .close-menu {
  flex: 0 0 40px;
}

@media (max-width: 1180px) {
  .main-nav.boxed-nav {
    gap: 8px;
    max-width: 640px;
  }

  .main-nav.boxed-nav a {
    padding-inline: 12px;
  }
}

/* Account and action icons */
.account-menu a,
.side-account-links a,
.quick-action-button {
  display: flex;
  align-items: center;
  gap: 9px;
}

.account-menu a::before,
.side-account-links a::before,
.quick-action-button::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: var(--menu-icon) center / contain no-repeat;
  mask: var(--menu-icon) center / contain no-repeat;
}

.account-menu a[href="account.php"],
.side-account-links a[href="account.php"] {
  --menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c1.7-4.1 4.4-6 8-6s6.3 1.9 8 6'/%3E%3C/svg%3E");
}

.account-menu a[href="bagislarim.php"],
.side-account-links a[href="bagislarim.php"] {
  --menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 7h-4.5a3.5 3.5 0 0 0-7 0H4v14h16V7Z'/%3E%3Cpath d='M9 7a3 3 0 0 1 6 0'/%3E%3Cpath d='M12 11v6'/%3E%3Cpath d='M9 14h6'/%3E%3C/svg%3E");
}

.account-menu a[href="agac-dikimlerim.php"],
.side-account-links a[href="agac-dikimlerim.php"] {
  --menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22V11'/%3E%3Cpath d='M12 11c-4-1-6-4-6-8 4 0 7 2 8 6'/%3E%3Cpath d='M13 13c4-.5 7-3.5 8-8-5 0-8 2-9 6'/%3E%3Cpath d='M5 22h14'/%3E%3C/svg%3E");
}

.account-menu a[href="settings.php"],
.side-account-links a[href="settings.php"] {
  --menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z'/%3E%3Cpath d='M19.4 15a1.7 1.7 0 0 0 .3 1.9l.1.1-2.1 2.1-.1-.1a1.7 1.7 0 0 0-1.9-.3 1.7 1.7 0 0 0-1 1.6V20h-3v-.2a1.7 1.7 0 0 0-1-1.6 1.7 1.7 0 0 0-1.9.3l-.1.1-2.1-2.1.1-.1A1.7 1.7 0 0 0 5 14.5a1.7 1.7 0 0 0-1.6-1H3v-3h.4a1.7 1.7 0 0 0 1.6-1 1.7 1.7 0 0 0-.3-1.9l-.1-.1 2.1-2.1.1.1a1.7 1.7 0 0 0 1.9.3 1.7 1.7 0 0 0 1-1.6V4h3v.2a1.7 1.7 0 0 0 1 1.6 1.7 1.7 0 0 0 1.9-.3l.1-.1 2.1 2.1-.1.1a1.7 1.7 0 0 0-.3 1.9 1.7 1.7 0 0 0 1.6 1h.4v3H21a1.7 1.7 0 0 0-1.6 1Z'/%3E%3C/svg%3E");
}

.account-menu a[href="logout.php"],
.side-account-links a[href="logout.php"] {
  --menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17l5-5-5-5'/%3E%3Cpath d='M15 12H3'/%3E%3Cpath d='M21 4v16'/%3E%3C/svg%3E");
}

.quick-action-button.donate {
  --menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 7h-4.5a3.5 3.5 0 0 0-7 0H4v14h16V7Z'/%3E%3Cpath d='M12 11v6'/%3E%3Cpath d='M9 14h6'/%3E%3C/svg%3E");
}

.quick-action-button.plant {
  --menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22V11'/%3E%3Cpath d='M12 11c-4-1-6-4-6-8 4 0 7 2 8 6'/%3E%3Cpath d='M13 13c4-.5 7-3.5 8-8-5 0-8 2-9 6'/%3E%3C/svg%3E");
}

.logout-menu-link,
.side-account-links a[href="logout.php"] {
  color: #b6261d;
}

html.theme-dark .logout-menu-link,
html.theme-dark .side-account-links a[href="logout.php"] {
  color: #ff9a8f;
}

/* Main nav icons */
.main-nav.boxed-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.main-nav.boxed-nav a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  opacity: 0.9;
  -webkit-mask: var(--nav-icon) center / contain no-repeat;
  mask: var(--nav-icon) center / contain no-repeat;
}

.main-nav.boxed-nav a[href="index.php#sebepler"] {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 2 21h20L12 3Z'/%3E%3Cpath d='M12 9v5'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E");
}

.main-nav.boxed-nav a[href="index.php#turkiye"] {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-5.2 7-11a7 7 0 0 0-14 0c0 5.8 7 11 7 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.main-nav.boxed-nav a[href="index.php#dunya"] {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3c2.5 2.6 3.8 5.6 3.8 9S14.5 18.4 12 21'/%3E%3Cpath d='M12 3C9.5 5.6 8.2 8.6 8.2 12S9.5 18.4 12 21'/%3E%3C/svg%3E");
}

.main-nav.boxed-nav a[href="cozum.php"] {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22V11'/%3E%3Cpath d='M12 11c-4-1-6-4-6-8 4 0 7 2 8 6'/%3E%3Cpath d='M13 13c4-.5 7-3.5 8-8-5 0-8 2-9 6'/%3E%3C/svg%3E");
}

.main-nav.boxed-nav a[href="index.php#neden-biz"] {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3Cpath d='M21 12a9 9 0 1 1-2.6-6.4'/%3E%3C/svg%3E");
}

.main-nav.boxed-nav a[href="index.php#emegi-gecenler"] {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9.5' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.9'/%3E%3Cpath d='M16 3.2a4 4 0 0 1 0 7.6'/%3E%3C/svg%3E");
}

@media (max-width: 1180px) {
  .main-nav.boxed-nav a::before {
    width: 15px;
    height: 15px;
  }
}

/* Prominent section labels with pulse dots */
.section-label,
.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 12px 0 34px;
  border: 1px solid rgba(47, 138, 93, 0.18);
  border-radius: 999px 8px 999px 8px;
  color: #14533b;
  background: linear-gradient(135deg, rgba(237, 248, 239, 0.96), rgba(255, 250, 240, 0.82));
  box-shadow: 0 10px 24px rgba(47, 138, 93, 0.1);
  font-size: 0.78rem;
  font-weight: 950;
}

.section-label::before,
.eyebrow::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2f8a5d;
  box-shadow: 0 0 0 0 rgba(47, 138, 93, 0.34);
  animation: labelPulse 1.65s ease-in-out infinite;
}

.section-label::after,
.eyebrow::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9a852;
  box-shadow: 0 0 14px rgba(217, 168, 82, 0.78);
  animation: labelTwinkle 1.3s ease-in-out infinite alternate;
}

.section-heading .section-label,
.section-heading .eyebrow {
  margin-bottom: 16px;
}

@keyframes labelPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 138, 93, 0.34);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(47, 138, 93, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 138, 93, 0);
    transform: scale(1);
  }
}

@keyframes labelTwinkle {
  from {
    opacity: 0.35;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1.25);
  }
}

.hero .eyebrow,
.solution-detail-hero .eyebrow {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 28px rgba(5, 20, 17, 0.14);
  backdrop-filter: blur(10px);
}

.solution-detail-hero-content .eyebrow,
.donation-request-hero .eyebrow,
.auth-panel .section-label,
.account-panel .section-label {
  color: #14533b;
  border-color: rgba(47, 138, 93, 0.18);
  background: linear-gradient(135deg, rgba(237, 248, 239, 0.96), rgba(255, 250, 240, 0.82));
  box-shadow: 0 10px 24px rgba(47, 138, 93, 0.1);
}

html.theme-dark .section-label,
html.theme-dark .eyebrow,
html.theme-dark .solution-detail-hero-content .eyebrow,
html.theme-dark .donation-request-hero .eyebrow,
html.theme-dark .auth-panel .section-label,
html.theme-dark .account-panel .section-label {
  color: #dfffe8;
  border-color: rgba(240, 199, 111, 0.18);
  background: linear-gradient(135deg, rgba(31, 104, 70, 0.3), rgba(240, 199, 111, 0.12));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

html.theme-dark .section-label::before,
html.theme-dark .eyebrow::before {
  background: #9be3ad;
  box-shadow: 0 0 0 0 rgba(155, 227, 173, 0.32);
}

/* Reduce green overload: coral pulse labels */
.section-label,
.eyebrow,
.solution-detail-hero-content .eyebrow,
.donation-request-hero .eyebrow,
.auth-panel .section-label,
.account-panel .section-label {
  color: #3f332c;
  border-color: rgba(220, 74, 59, 0.2);
  background: linear-gradient(135deg, rgba(255, 246, 241, 0.96), rgba(255, 252, 244, 0.88));
  box-shadow: 0 10px 24px rgba(129, 52, 39, 0.08);
}

.section-label::before,
.eyebrow::before {
  background: #dc4a3b;
  box-shadow: 0 0 0 0 rgba(220, 74, 59, 0.34);
  animation-name: labelPulseCoral;
}

.section-label::after,
.eyebrow::after {
  background: #f0a34f;
  box-shadow: 0 0 14px rgba(240, 163, 79, 0.76);
}

.hero .eyebrow,
.solution-detail-hero .eyebrow {
  color: #ffffff;
  border-color: rgba(255, 166, 126, 0.3);
  background: rgba(80, 30, 24, 0.18);
}

@keyframes labelPulseCoral {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 74, 59, 0.34);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(220, 74, 59, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 74, 59, 0);
    transform: scale(1);
  }
}

html.theme-dark .section-label,
html.theme-dark .eyebrow,
html.theme-dark .solution-detail-hero-content .eyebrow,
html.theme-dark .donation-request-hero .eyebrow,
html.theme-dark .auth-panel .section-label,
html.theme-dark .account-panel .section-label {
  color: #ffe7df;
  border-color: rgba(255, 122, 103, 0.22);
  background: linear-gradient(135deg, rgba(114, 41, 33, 0.34), rgba(240, 163, 79, 0.1));
}

html.theme-dark .section-label::before,
html.theme-dark .eyebrow::before {
  background: #ff7668;
  animation-name: labelPulseCoral;
}

/* Dark mode visibility repair */
html.theme-dark .site-header,
html.theme-dark .site-header *:not(svg):not(path),
html.theme-dark .header-actions,
html.theme-dark .header-actions *:not(svg):not(path) {
  color: #f4fbf7;
}

html.theme-dark .main-nav.boxed-nav a,
html.theme-dark .quick-action-button,
html.theme-dark .login-link,
html.theme-dark .register-button,
html.theme-dark .account-button,
html.theme-dark .language-toggle,
html.theme-dark .icon-control {
  color: #f4fbf7;
}

html.theme-dark .register-button,
html.theme-dark .quick-action-button.donate,
html.theme-dark .quick-action-button.plant {
  color: #ffffff;
}

html.theme-dark .dropdown-menu,
html.theme-dark .account-menu,
html.theme-dark .side-menu {
  color: #f4fbf7;
  background: #091b16;
  border-color: rgba(255, 255, 255, 0.12);
}

html.theme-dark .dropdown-menu a,
html.theme-dark .account-menu a,
html.theme-dark .side-menu a,
html.theme-dark .side-menu strong,
html.theme-dark .side-menu span,
html.theme-dark .side-menu small {
  color: #f4fbf7;
}

html.theme-dark .dropdown-menu a:hover,
html.theme-dark .side-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

html.theme-dark .logout-menu-link,
html.theme-dark .side-account-links a[href="logout.php"] {
  color: #ff9a8f;
}

html.theme-dark .close-menu {
  color: #f4fbf7;
  background: rgba(255, 255, 255, 0.1);
}

html.theme-dark .turkey-stats-grid .stat-card,
html.theme-dark .risk-meter-grid .risk-meter,
html.theme-dark .flow-steps div,
html.theme-dark .roadmap-steps div,
html.theme-dark .why-flow-step,
html.theme-dark .plant-requests-hero,
html.theme-dark .plant-request-card,
html.theme-dark .plant-requests-page,
html.theme-dark .donation-request-hero > div,
html.theme-dark .tracking-card-body,
html.theme-dark .photo-section,
html.theme-dark .tracking-address-box,
html.theme-dark .tracking-meta-grid div {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(18, 45, 37, 0.96), rgba(9, 24, 20, 0.94));
}

html.theme-dark .turkey-stats-grid .stat-card *,
html.theme-dark .risk-meter-grid .risk-meter *,
html.theme-dark .flow-steps div *,
html.theme-dark .roadmap-steps div *,
html.theme-dark .why-flow-step *,
html.theme-dark .plant-requests-hero *,
html.theme-dark .plant-request-card *,
html.theme-dark .donation-request-hero > div *,
html.theme-dark .tracking-card-body *,
html.theme-dark .photo-section *,
html.theme-dark .tracking-address-box *,
html.theme-dark .tracking-meta-grid div * {
  color: inherit;
}

html.theme-dark .plant-requests-page p,
html.theme-dark .plant-request-card p,
html.theme-dark .plant-requests-hero p,
html.theme-dark .donation-request-hero p,
html.theme-dark .tracking-card-body p,
html.theme-dark .tracking-address-box p,
html.theme-dark .photo-section p,
html.theme-dark .tracking-meta-grid span,
html.theme-dark .turkey-stats-grid p,
html.theme-dark .risk-meter-grid span,
html.theme-dark .flow-steps strong,
html.theme-dark .roadmap-steps p,
html.theme-dark .why-flow-step p {
  color: rgba(244, 251, 247, 0.76);
}

html.theme-dark .plant-requests-page h1,
html.theme-dark .plant-requests-page h2,
html.theme-dark .plant-requests-page h3,
html.theme-dark .plant-request-card h2,
html.theme-dark .donation-request-hero h1,
html.theme-dark .tracking-card-body h2,
html.theme-dark .tracking-address-box h3,
html.theme-dark .photo-section h3,
html.theme-dark .turkey-stats-grid h3,
html.theme-dark .roadmap-steps strong,
html.theme-dark .why-flow-step strong {
  color: #ffffff;
}

html.theme-dark .stat-value,
html.theme-dark .world-stat-value,
html.theme-dark .visual-badge,
html.theme-dark .request-status,
html.theme-dark .roadmap-steps span,
html.theme-dark .flow-steps span,
html.theme-dark .why-flow-step span {
  color: #071511;
  background: linear-gradient(135deg, #f0c76f, #ffdca0);
}

html.theme-dark .bar-track,
html.theme-dark .meter,
html.theme-dark .column-track {
  background: rgba(255, 255, 255, 0.12);
}

html.theme-dark .bar-track span,
html.theme-dark .meter i,
html.theme-dark .column-track span {
  background: linear-gradient(90deg, #ff7668, #f0c76f);
}

html.theme-dark .plant-filter-panel select,
html.theme-dark .plant-filter-panel input,
html.theme-dark .donation-request-form input,
html.theme-dark .donation-request-form textarea,
html.theme-dark .status-update-form select,
html.theme-dark .status-update-form input,
html.theme-dark .status-update-form textarea {
  color: #f4fbf7;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

html.theme-dark .plant-filter-panel option,
html.theme-dark .donation-request-form option,
html.theme-dark .status-update-form option {
  color: #102821;
  background: #ffffff;
}

html.theme-dark .tracking-card summary,
html.theme-dark .tracking-card summary * {
  color: #f4fbf7;
}

/* Dark mode visibility repair - second pass */
html.theme-dark .completed-lock-box,
html.theme-dark .tracking-page,
html.theme-dark .main-nav.boxed-nav,
html.theme-dark .side-menu-links a,
html.theme-dark .side-account-links a,
html.theme-dark .dropdown-menu.account-menu,
html.theme-dark .photo-placeholder,
html.theme-dark .model-step-card,
html.theme-dark .solution-detail-page,
html.theme-dark .request-row,
html.theme-dark .request-row.head,
html.theme-dark .request-row-head,
html.theme-dark .fake-filters,
html.theme-dark .plant-card-meta {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(18, 45, 37, 0.96), rgba(9, 24, 20, 0.94));
}

html.theme-dark .completed-lock-box *,
html.theme-dark .tracking-page *:not(svg):not(path),
html.theme-dark .main-nav.boxed-nav *:not(svg):not(path),
html.theme-dark .side-menu-links a *:not(svg):not(path),
html.theme-dark .side-account-links a *:not(svg):not(path),
html.theme-dark .dropdown-menu.account-menu *:not(svg):not(path),
html.theme-dark .photo-placeholder *:not(svg):not(path),
html.theme-dark .model-step-card *:not(svg):not(path),
html.theme-dark .solution-detail-page *:not(svg):not(path),
html.theme-dark .request-row *:not(svg):not(path),
html.theme-dark .request-row-head *:not(svg):not(path),
html.theme-dark .fake-filters *:not(svg):not(path),
html.theme-dark .plant-card-meta *:not(svg):not(path) {
  color: inherit;
}

html.theme-dark .tracking-page p,
html.theme-dark .completed-lock-box p,
html.theme-dark .model-step-card p,
html.theme-dark .solution-detail-page p,
html.theme-dark .request-row span,
html.theme-dark .request-row p,
html.theme-dark .fake-filters span,
html.theme-dark .plant-card-meta span,
html.theme-dark .plant-card-meta p {
  color: rgba(244, 251, 247, 0.76);
}

html.theme-dark .tracking-page h1,
html.theme-dark .tracking-page h2,
html.theme-dark .tracking-page h3,
html.theme-dark .completed-lock-box strong,
html.theme-dark .model-step-card h3,
html.theme-dark .solution-detail-page h1,
html.theme-dark .solution-detail-page h2,
html.theme-dark .solution-detail-page h3,
html.theme-dark .request-row strong,
html.theme-dark .request-row-head strong,
html.theme-dark .plant-card-meta strong {
  color: #ffffff;
}

html.theme-dark .main-nav.boxed-nav {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 12px 28px rgba(0, 0, 0, 0.22);
}

html.theme-dark .main-nav.boxed-nav a,
html.theme-dark .side-menu-links a,
html.theme-dark .side-account-links a,
html.theme-dark .dropdown-menu.account-menu a {
  color: #f4fbf7;
  background: rgba(255, 255, 255, 0.055);
}

html.theme-dark .main-nav.boxed-nav a:hover,
html.theme-dark .side-menu-links a:hover,
html.theme-dark .side-account-links a:hover,
html.theme-dark .dropdown-menu.account-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

html.theme-dark .request-row.head,
html.theme-dark .request-row-head {
  background: linear-gradient(135deg, #0b1d18, #1f6846);
}

html.theme-dark .fake-filters input,
html.theme-dark .fake-filters select,
html.theme-dark .fake-filters button {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

html.theme-dark .photo-placeholder {
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, rgba(240,199,111,0.05) 12px 24px);
}

html.theme-dark .model-step-card span,
html.theme-dark .request-row strong,
html.theme-dark .plant-card-meta strong {
  color: #ffdca0;
}

/* Dark mode visibility repair - third pass */
html.theme-dark .plant-card-meta,
html.theme-dark .assigned-badge.info,
html.theme-dark .close-menu,
html.theme-dark .donation-request-page,
html.theme-dark .secondary-button.solution-secondary,
html.theme-dark .example-status-row,
html.theme-dark .secondary-button.map-clear-button,
html.theme-dark .map-status,
html.theme-dark .fake-filters {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.14);
}

html.theme-dark .donation-request-page {
  background:
    radial-gradient(circle at top left, rgba(255, 118, 104, 0.11), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(240, 199, 111, 0.12), transparent 26rem),
    #071511;
}

html.theme-dark .assigned-badge.info,
html.theme-dark .example-status-row,
html.theme-dark .map-status,
html.theme-dark .fake-filters {
  background: linear-gradient(145deg, rgba(18, 45, 37, 0.96), rgba(9, 24, 20, 0.94));
}

html.theme-dark .assigned-badge.info *,
html.theme-dark .example-status-row *,
html.theme-dark .map-status *,
html.theme-dark .fake-filters *,
html.theme-dark .plant-card-meta * {
  color: inherit;
}

html.theme-dark .secondary-button.solution-secondary,
html.theme-dark .secondary-button.map-clear-button {
  color: #f4fbf7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

html.theme-dark .secondary-button.solution-secondary:hover,
html.theme-dark .secondary-button.map-clear-button:hover {
  color: #071511;
  background: linear-gradient(135deg, #f0c76f, #ffdca0);
}

html.theme-dark .close-menu {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

html.theme-dark .close-menu:hover {
  color: #071511;
  background: #ffdca0;
}

html.theme-dark .map-status {
  padding: 12px 14px;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

html.theme-dark .assigned-badge.info {
  color: #ffdca0;
  box-shadow: inset 0 0 0 1px rgba(240, 199, 111, 0.18);
}

html.theme-dark .plant-card-meta div {
  color: #f4fbf7;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.1);
}

html.theme-dark .plant-card-meta span {
  color: rgba(244, 251, 247, 0.68);
}

html.theme-dark .plant-card-meta strong {
  color: #ffdca0;
}

html.theme-dark .fake-filters span {
  color: rgba(244, 251, 247, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

/* Dark mode targeted fixes: example status and side brand */
html.theme-dark .example-status-row span {
  color: #071511;
  background: linear-gradient(135deg, #f0c76f, #ffdca0);
  box-shadow: 0 8px 18px rgba(240, 199, 111, 0.2);
}

html.theme-dark .example-status-row strong,
html.theme-dark .example-status-row p {
  color: #f4fbf7;
}

html.theme-dark .brand.brand-logo.side-brand-logo,
html.theme-dark .side-brand-logo {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(18, 45, 37, 0.96), rgba(9, 24, 20, 0.94));
}

html.theme-dark .side-brand-logo .brand-copy,
html.theme-dark .side-brand-logo .brand-copy strong,
html.theme-dark .side-brand-logo .brand-copy small {
  color: #f4fbf7;
}

html.theme-dark .side-brand-logo .brand-copy small {
  color: rgba(244, 251, 247, 0.72);
}

/* Dark mode side menu header */
html.theme-dark .side-menu-header {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
}

html.theme-dark .side-menu-header *:not(svg):not(path) {
  color: inherit;
}

html.theme-dark .side-menu-header .close-menu {
  color: #f4fbf7;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

html.theme-dark .side-menu-header .close-menu:hover {
  color: #071511;
  background: #ffdca0;
}

/* Scroll to top button */
.scroll-top-button {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px 8px 999px 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #102821, #2f8a5d);
  box-shadow: 0 18px 38px rgba(16, 40, 33, 0.26);
  font-size: 1.45rem;
  font-weight: 950;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover {
  box-shadow: 0 22px 48px rgba(16, 40, 33, 0.34);
  transform: translateY(-3px) scale(1.03);
}

html.theme-dark .scroll-top-button {
  color: #071511;
  background: linear-gradient(135deg, #f0c76f, #ffdca0);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

/* Account and settings dashboard pages */
.dashboard-account-page,
.settings-page {
  display: grid;
  gap: 22px;
}

.account-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: stretch;
}

.account-hero-card,
.settings-hero-card,
.account-profile-card,
.account-stat-card,
.account-section-card,
.settings-card {
  border: 1px solid rgba(16, 40, 33, 0.08);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f8fbf5);
  box-shadow: 0 20px 48px rgba(16, 40, 33, 0.085);
}

.account-profile-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 26px;
  text-align: center;
}

.profile-avatar-large {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #102821, #2f8a5d);
  font-size: 2rem;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(47, 138, 93, 0.2);
}

.account-profile-card strong,
.account-stat-card strong,
.account-section-card strong,
.settings-card strong {
  color: #102821;
}

.account-profile-card span,
.account-stat-card p,
.account-section-card p,
.settings-card p,
.settings-card small,
.muted-copy {
  color: #546b62;
  line-height: 1.65;
}

.profile-role-row,
.settings-chip-row,
.settings-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.profile-role-row em,
.settings-chip-row span,
.security-status strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px 8px 999px 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #102821, #2f8a5d);
  font-style: normal;
  font-weight: 900;
  font-size: 0.8rem;
}

.account-stat-grid,
.settings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.settings-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-stat-card,
.account-section-card,
.settings-card {
  padding: 22px;
}

.account-stat-card span,
.settings-list span,
.account-info-list span {
  color: #64776f;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-stat-card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.account-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.account-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.account-card-heading a {
  color: #2f8a5d;
  font-weight: 900;
}

.account-activity-list,
.account-info-list,
.settings-list {
  display: grid;
  gap: 10px;
}

.activity-row,
.account-info-list div,
.settings-list div,
.security-status {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: #f2f7ef;
}

.activity-row {
  grid-template-columns: 0.6fr 1fr auto;
  align-items: center;
}

.activity-row span,
.activity-row em {
  font-weight: 900;
}

.activity-row em {
  color: #8a4a12;
  font-style: normal;
}

.settings-card {
  display: grid;
  gap: 14px;
}

.settings-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #102821, #2f8a5d);
  box-shadow: 0 14px 28px rgba(47, 138, 93, 0.16);
}

.settings-icon.user { clip-path: circle(50% at 50% 50%); }
.settings-icon.role { border-radius: 999px 8px 999px 8px; }
.settings-icon.view { background: linear-gradient(135deg, #dc4a3b, #f0a34f); }
.settings-icon.shield { background: linear-gradient(135deg, #102821, #315f8f); }

.settings-card h2 {
  margin: 0;
}

.settings-fake-button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(16, 40, 33, 0.12);
  border-radius: 8px;
  color: #102821;
  background: #ffffff;
  font-weight: 900;
}

.security-status {
  grid-template-columns: 1fr auto;
  align-items: center;
}

html.theme-dark .account-hero-card,
html.theme-dark .settings-hero-card,
html.theme-dark .account-profile-card,
html.theme-dark .account-stat-card,
html.theme-dark .account-section-card,
html.theme-dark .settings-card {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(18, 45, 37, 0.96), rgba(9, 24, 20, 0.94));
}

html.theme-dark .account-profile-card strong,
html.theme-dark .account-stat-card strong,
html.theme-dark .account-section-card strong,
html.theme-dark .settings-card strong,
html.theme-dark .settings-card h2,
html.theme-dark .account-panel h1 {
  color: #ffffff;
}

html.theme-dark .account-profile-card span,
html.theme-dark .account-stat-card p,
html.theme-dark .account-section-card p,
html.theme-dark .settings-card p,
html.theme-dark .settings-card small,
html.theme-dark .muted-copy,
html.theme-dark .account-panel p {
  color: rgba(244, 251, 247, 0.76);
}

html.theme-dark .activity-row,
html.theme-dark .account-info-list div,
html.theme-dark .settings-list div,
html.theme-dark .security-status {
  background: rgba(255, 255, 255, 0.065);
}

html.theme-dark .account-stat-card span,
html.theme-dark .settings-list span,
html.theme-dark .account-info-list span {
  color: rgba(244, 251, 247, 0.62);
}

html.theme-dark .settings-fake-button {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

html.theme-dark .activity-row em,
html.theme-dark .account-card-heading a {
  color: #ffdca0;
}

@media (max-width: 1050px) {
  .account-hero-grid,
  .account-content-grid,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .account-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .account-stat-grid,
  .activity-row {
    grid-template-columns: 1fr;
  }
}

/* Premium page backdrops for action and account pages */
.donation-request-page,
.plant-requests-page,
.account-page,
.dashboard-account-page,
.settings-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #eef4ed;
}

.donation-request-page::before,
.plant-requests-page::before,
.account-page::before,
.dashboard-account-page::before,
.settings-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(240, 163, 79, 0.28), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(47, 138, 93, 0.22), transparent 34%),
    linear-gradient(135deg, #fbfaf4 0%, #eef5ed 45%, #dfeade 100%);
}

.donation-request-page::after,
.plant-requests-page::after,
.account-page::after,
.dashboard-account-page::after,
.settings-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(16, 40, 33, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 40, 33, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 86%);
}

.donation-request-page::before {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 184, 92, 0.34), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(220, 74, 59, 0.16), transparent 30%),
    radial-gradient(circle at 70% 82%, rgba(47, 138, 93, 0.20), transparent 34%),
    linear-gradient(135deg, #fff7ea 0%, #edf6ee 50%, #dce9dc 100%);
}

.plant-requests-page::before {
  background:
    radial-gradient(circle at 10% 18%, rgba(47, 138, 93, 0.24), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(49, 95, 143, 0.16), transparent 32%),
    radial-gradient(circle at 58% 92%, rgba(240, 163, 79, 0.18), transparent 34%),
    linear-gradient(135deg, #f6fbf7 0%, #e7f1e7 48%, #d9e8df 100%);
}

.dashboard-account-page::before,
.settings-page::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(49, 95, 143, 0.18), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(240, 163, 79, 0.22), transparent 28%),
    radial-gradient(circle at 72% 86%, rgba(47, 138, 93, 0.22), transparent 34%),
    linear-gradient(135deg, #f9faf6 0%, #edf5ef 46%, #dde9e2 100%);
}

.donation-request-hero > div,
.price-summary-card,
.donation-request-form,
.donation-map-column,
.plant-requests-hero,
.plant-filter-panel,
.plant-request-card,
.account-panel,
.account-profile-card,
.account-stat-card,
.account-section-card,
.settings-card {
  border: 1px solid rgba(16, 40, 33, 0.09);
  backdrop-filter: blur(12px);
}

html.theme-dark .donation-request-page,
html.theme-dark .plant-requests-page,
html.theme-dark .account-page,
html.theme-dark .dashboard-account-page,
html.theme-dark .settings-page {
  background-color: #07130f;
}

html.theme-dark .donation-request-page::before,
html.theme-dark .plant-requests-page::before,
html.theme-dark .account-page::before,
html.theme-dark .dashboard-account-page::before,
html.theme-dark .settings-page::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(240, 163, 79, 0.14), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(47, 138, 93, 0.20), transparent 34%),
    radial-gradient(circle at 60% 86%, rgba(49, 95, 143, 0.14), transparent 36%),
    linear-gradient(135deg, #07130f 0%, #0d211b 48%, #102821 100%);
}

html.theme-dark .donation-request-page::after,
html.theme-dark .plant-requests-page::after,
html.theme-dark .account-page::after,
html.theme-dark .dashboard-account-page::after,
html.theme-dark .settings-page::after {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
}

/* Login page premium backdrop */
.auth-page.login-page,
.auth-page:not(.dashboard-account-page) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #eef4ed;
  background-image: none;
}

.auth-page.login-page::before,
.auth-page:not(.dashboard-account-page)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(49, 95, 143, 0.16), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(240, 163, 79, 0.26), transparent 30%),
    radial-gradient(circle at 66% 88%, rgba(47, 138, 93, 0.22), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #edf6ee 48%, #dfeade 100%);
}

.auth-page.login-page::after,
.auth-page:not(.dashboard-account-page)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(16, 40, 33, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 40, 33, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 86%);
}

.auth-panel,
.login-panel {
  border: 1px solid rgba(16, 40, 33, 0.09);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

html.theme-dark .auth-page.login-page,
html.theme-dark .auth-page:not(.dashboard-account-page) {
  background-color: #07130f;
}

html.theme-dark .auth-page.login-page::before,
html.theme-dark .auth-page:not(.dashboard-account-page)::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(49, 95, 143, 0.16), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(240, 163, 79, 0.12), transparent 30%),
    radial-gradient(circle at 66% 88%, rgba(47, 138, 93, 0.20), transparent 34%),
    linear-gradient(135deg, #07130f 0%, #0d211b 50%, #102821 100%);
}

html.theme-dark .auth-page.login-page::after,
html.theme-dark .auth-page:not(.dashboard-account-page)::after {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
}

html.theme-dark .auth-panel,
html.theme-dark .login-panel {
  background: linear-gradient(145deg, rgba(18, 45, 37, 0.96), rgba(9, 24, 20, 0.94));
}

/* Dark mode polish for planting status update form */
html.theme-dark .status-update-form {
  color: #f4fbf7;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html.theme-dark .status-update-form label {
  color: #ffffff;
}

html.theme-dark .status-update-form select,
html.theme-dark .status-update-form input[type="file"] {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(7, 19, 15, 0.72);
}

html.theme-dark .status-update-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 9px 12px;
  border: 0;
  border-radius: 8px;
  color: #102821;
  background: #ffdca0;
  font-weight: 900;
  cursor: pointer;
}

html.theme-dark .status-update-form small {
  color: rgba(244, 251, 247, 0.72);
}

html.theme-dark .cancel-assignment-form {
  color: #f4fbf7;
}

html.theme-dark .cancel-assignment-button {
  color: #ffd7d2;
  border-color: rgba(255, 118, 104, 0.38);
  background: rgba(255, 118, 104, 0.12);
}

html.theme-dark .cancel-assignment-button:hover {
  color: #ffffff;
  background: rgba(255, 118, 104, 0.2);
}

/* Rebuilt register page */
.register-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  place-items: stretch;
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  padding-inline: clamp(20px, 6vw, 76px);
}

.register-intro-panel {
  max-width: 760px;
}

.register-intro-panel h1 {
  margin: 0;
  max-width: 760px;
  color: #102821;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
}

.register-intro-panel p:not(.section-label) {
  max-width: 640px;
  color: #48615a;
  font-size: 1.08rem;
  line-height: 1.75;
}

.register-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.register-benefit-grid div {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(16, 40, 33, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 30px rgba(12, 32, 27, 0.08);
  backdrop-filter: blur(12px);
}

.register-benefit-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: #2f8a5d;
  font-weight: 950;
}

.register-benefit-grid strong {
  color: #102821;
  font-size: 0.95rem;
}

.register-card {
  width: min(520px, 100%);
  justify-self: end;
}

.register-card h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
}

.register-form {
  margin-top: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.register-type-fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.register-type-fieldset legend,
.register-form label {
  margin-bottom: 2px;
  color: #17312b;
  font-weight: 900;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(23, 49, 43, 0.14);
  border-radius: 8px;
  color: #17312b;
  background: #f8faf5;
  font-weight: 900;
  cursor: pointer;
}

.check-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: #2f8a5d;
}

.client-error {
  display: none;
  margin: 0 0 12px;
}

.client-error.is-visible {
  display: block;
}

html.theme-dark .register-intro-panel h1,
html.theme-dark .register-benefit-grid strong,
html.theme-dark .register-type-fieldset legend,
html.theme-dark .register-form label {
  color: #ffffff;
}

html.theme-dark .register-intro-panel p:not(.section-label) {
  color: rgba(244, 251, 247, 0.76);
}

html.theme-dark .register-benefit-grid div,
html.theme-dark .check-option {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

html.theme-dark .check-option {
  color: #f4fbf7;
}

@media (max-width: 1050px) {
  .register-page {
    grid-template-columns: 1fr;
  }

  .register-card {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .register-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* General project certificate page */
.certificate-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  padding: clamp(46px, 7vw, 82px) clamp(18px, 5vw, 70px);
  background-color: #eef4ed;
}

.certificate-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 16%, rgba(240, 163, 79, 0.26), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(49, 95, 143, 0.16), transparent 30%),
    radial-gradient(circle at 70% 86%, rgba(47, 138, 93, 0.22), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #edf6ee 48%, #dfeade 100%);
}

.certificate-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(16, 40, 33, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 40, 33, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 88%);
}

.certificate-hero {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.certificate-hero h1 {
  margin: 0;
  color: #102821;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
}

.certificate-hero p:not(.section-label) {
  max-width: 760px;
  margin: 16px auto 0;
  color: #48615a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.certificate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.certificate-shell {
  display: grid;
  place-items: center;
}

.certificate-document {
  position: relative;
  width: min(100%, 1080px);
  min-height: 680px;
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid rgba(16, 40, 33, 0.18);
  border-radius: 8px;
  color: #102821;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 242, 0.92)),
    radial-gradient(circle at 50% 50%, rgba(47, 138, 93, 0.1), transparent 46%);
  box-shadow: 0 30px 80px rgba(12, 32, 27, 0.18);
  overflow: hidden;
}

.certificate-document::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(47, 138, 93, 0.22);
  border-radius: 8px;
  pointer-events: none;
}

.certificate-document::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(138, 74, 18, 0.22);
  border-radius: 8px;
  pointer-events: none;
}

.certificate-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(240, 163, 79, 0.5);
  pointer-events: none;
}

.certificate-corner.top-left { top: 26px; left: 26px; border-right: 0; border-bottom: 0; }
.certificate-corner.top-right { top: 26px; right: 26px; border-left: 0; border-bottom: 0; }
.certificate-corner.bottom-left { bottom: 26px; left: 26px; border-right: 0; border-top: 0; }
.certificate-corner.bottom-right { bottom: 26px; right: 26px; border-left: 0; border-top: 0; }

.certificate-header,
.certificate-footer-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.certificate-logo {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px 8px 999px 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #102821, #2f8a5d);
  box-shadow: 0 18px 38px rgba(47, 138, 93, 0.2);
}

.certificate-logo svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certificate-header > div:last-child {
  display: grid;
  gap: 4px;
  text-align: right;
}

.certificate-header span,
.signature-block span {
  color: #6b5b3c;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-header strong,
.signature-block strong {
  font-size: 1.1rem;
}

.certificate-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin: clamp(44px, 6vw, 74px) auto;
  text-align: center;
}

.certificate-kicker {
  margin: 0;
  color: #2f8a5d;
  font-weight: 950;
  text-transform: uppercase;
}

.certificate-body h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #102821;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
}

.certificate-text {
  max-width: 820px;
  margin: 0 auto;
  color: #48615a;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.certificate-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.certificate-promise-grid div {
  padding: 18px;
  border: 1px solid rgba(16, 40, 33, 0.1);
  border-radius: 8px;
  background: rgba(244, 247, 240, 0.78);
  text-align: left;
}

.certificate-promise-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #ffffff;
  background: #2f8a5d;
  font-weight: 950;
}

.certificate-promise-grid strong {
  display: block;
  font-size: 1.05rem;
}

.certificate-promise-grid p {
  margin: 8px 0 0;
  color: #48615a;
  line-height: 1.6;
}

.signature-block {
  display: grid;
  min-width: 190px;
  gap: 8px;
  padding-top: 14px;
  border-top: 2px solid rgba(16, 40, 33, 0.28);
}

.signature-block.right {
  text-align: right;
}

.certificate-seal {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(47, 138, 93, 0.45);
  border-radius: 50%;
  color: #ffffff;
  background: radial-gradient(circle, #2f8a5d 0 48%, #102821 49% 100%);
  box-shadow: 0 18px 36px rgba(16, 40, 33, 0.2);
}

.certificate-seal span,
.certificate-seal strong {
  line-height: 1;
  font-weight: 950;
}

.certificate-seal span {
  font-size: 1.5rem;
}

.certificate-seal strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

html.theme-dark .certificate-page {
  background-color: #07130f;
}

html.theme-dark .certificate-page::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(240, 163, 79, 0.14), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(49, 95, 143, 0.16), transparent 30%),
    radial-gradient(circle at 70% 86%, rgba(47, 138, 93, 0.20), transparent 34%),
    linear-gradient(135deg, #07130f 0%, #0d211b 50%, #102821 100%);
}

html.theme-dark .certificate-hero h1,
html.theme-dark .certificate-body h2,
html.theme-dark .certificate-header strong,
html.theme-dark .signature-block strong,
html.theme-dark .certificate-promise-grid strong {
  color: #ffffff;
}

html.theme-dark .certificate-hero p:not(.section-label),
html.theme-dark .certificate-text,
html.theme-dark .certificate-promise-grid p {
  color: rgba(244, 251, 247, 0.76);
}

html.theme-dark .certificate-document {
  color: #f4fbf7;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(18, 45, 37, 0.96), rgba(9, 24, 20, 0.94)),
    radial-gradient(circle at 50% 50%, rgba(47, 138, 93, 0.14), transparent 46%);
}

html.theme-dark .certificate-promise-grid div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

html.theme-dark .certificate-header span,
html.theme-dark .signature-block span {
  color: #ffdca0;
}

@media (max-width: 820px) {
  .certificate-document {
    min-height: 0;
  }

  .certificate-header,
  .certificate-footer-line,
  .certificate-promise-grid {
    grid-template-columns: 1fr;
    display: grid;
    text-align: center;
  }

  .certificate-logo,
  .certificate-seal {
    margin: 0 auto;
  }

  .certificate-header > div:last-child,
  .signature-block.right {
    text-align: center;
  }
}

@media print {
  body {
    background: #ffffff !important;
  }

  .site-header,
  .side-menu,
  .overlay,
  .platform-ribbon,
  .site-footer,
  .scroll-top-button,
  .certificate-hero {
    display: none !important;
  }

  .certificate-page {
    min-height: auto;
    padding: 0;
    background: #ffffff !important;
  }

  .certificate-page::before,
  .certificate-page::after {
    display: none;
  }

  .certificate-document {
    width: 100%;
    min-height: 96vh;
    box-shadow: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

/* Per-person contributor photo placeholders */
.contributor-photo-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 210px;
  margin-top: 8px;
  overflow: hidden;
  border: 2px dashed rgba(47, 138, 93, 0.32);
  border-radius: 8px;
  color: #2c473f;
  background:
    linear-gradient(135deg, rgba(47, 138, 93, 0.16), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.48) 0 12px, rgba(222,238,226,0.58) 12px 24px);
  text-align: center;
}

.contributor-photo-placeholder span {
  padding-inline: 12px;
  color: #17312b;
  font-size: 1.05rem;
  font-weight: 950;
}

.contributor-photo-placeholder small {
  max-width: 260px;
  padding-inline: 12px;
  color: #587068;
  font-weight: 800;
  line-height: 1.5;
}

html.theme-dark .contributor-photo-placeholder {
  color: #f4fbf7;
  border-color: rgba(255, 220, 160, 0.34);
  background:
    linear-gradient(135deg, rgba(47, 138, 93, 0.16), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 12px, rgba(255,255,255,0.09) 12px 24px);
}

html.theme-dark .contributor-photo-placeholder span {
  color: #ffffff;
}

html.theme-dark .contributor-photo-placeholder small {
  color: rgba(244, 251, 247, 0.7);
}

/* Personal certificate action buttons */
.certificate-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 40, 33, 0.1);
}

.certificate-link-button {
  width: max-content;
  box-shadow: 0 14px 28px rgba(47, 138, 93, 0.16);
}

.personal-certificate-document .certificate-body h2 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.certificate-info-grid p {
  overflow-wrap: anywhere;
}

html.theme-dark .certificate-card-actions {
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* Gmail contributor button */
.contributor-links a.gmail-link {
  background: linear-gradient(135deg, #c5221f, #ea4335 52%, #fbbc04);
}

/* Contributor real photos */
.contributor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
