:root {
  --orange: #f4881f;
  --orange-deep: #e06d0b;
  --orange-soft: #fce9d6;
  --blue: #1b9bd8;
  --blue-deep: #0d7bb0;
  --blue-soft: #dceffa;
  --navy: #13315c;
  --navy-soft: #3a557e;
  --teal: #2ea88a;
  --teal-deep: #1c7d65;
  --teal-soft: #dbf1ea;
  --coral: #ef5b5b;
  --coral-soft: #fde2e2;
  --yellow: #ffc23c;
  --yellow-soft: #fff1c7;
  --cream: #fdf7ee;
  --cream-2: #f6ecdd;
  --ink: #23364f;
  --soft: #5b6b82;
  --line: #e6e2d8;
  --shadow-sm: 0 2px 8px -2px rgba(19, 49, 92, 0.1);
  --shadow: 0 10px 30px -12px rgba(19, 49, 92, 0.2);
  --shadow-lg: 0 24px 60px -20px rgba(19, 49, 92, 0.3);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy);
  line-height: 1.1;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.topnav {
  position: sticky;
  top: 0;
  background: rgba(253, 247, 238, 0.92);
  backdrop-filter: blur(10px);
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.topnav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1320px;
  margin: 0 auto;
  gap: 14px;
}
.fill-input {
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 4px;
  margin-left: 5px;
}
.download-btn {
  text-align: center;
  margin-top: 20px;
}
.download-btn button {
  background-color: var(--orange);
  color: white;
  font-size: 22px;
  padding: 20px 35px;
  border-radius: 5px;
  font-weight: bold;
  border: none;
}
.download-btn button:hover {
  background-color: var(--orange-deep);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand .logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px -2px rgba(244, 136, 31, 0.5);
}
.brand .name {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.1;
}
.brand .name small {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 2px;
}
.viewswitch {
  display: flex;
  gap: 4px;
  background: var(--cream-2);
  padding: 4px;
  border-radius: 30px;
  border: 1px solid var(--line);
  margin-left: auto;
}
.viewswitch button {
  padding: 8px 16px;
  font-weight: 800;
  font-size: 0.84rem;
  color: var(--navy-soft);
  background: transparent;
  border-radius: 24px;
  transition: 0.2s;
}
.viewswitch button:hover {
  color: var(--navy);
}
.viewswitch button.on {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 6px 16px -4px rgba(244, 136, 31, 0.5);
  transition: 0.2s;
}
.cta:hover {
  transform: translateY(-1px);
  background: var(--orange-deep);
}
.view {
  display: none;
  animation: fadeIn 0.4s ease;
}
.view.on {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 40px;
  padding: 6px 14px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  box-shadow: 3px 3px 0 var(--orange);
}
.kicker .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}
.tag {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
section {
  padding: 42px 0;
}
.sec-head {
  margin-bottom: 26px;
}
.sec-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-top: 8px;
}
.sec-head p {
  max-width: 128ch;
  color: var(--navy-soft);
  font-weight: 600;
  margin-top: 8px;
}
.hero {
  position: relative;
  padding: 60px 0 30px;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  margin: 18px 0 12px;
  max-width: 18ch;
  letter-spacing: -0.02em;
}
.donor-hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  margin: 18px 0 12px;
  max-width: 18ch;
  letter-spacing: -0.02em;
}
.donor-hero h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero .lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  max-width: 62ch;
  color: var(--navy-soft);
  font-weight: 600;
}
.hero .meta {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  background: #fff;
  border-radius: 30px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}
.pill svg {
  width: 15px;
  height: 15px;
}
.blob {
  position: absolute;
  border-radius: 46% 54% 60% 40%/52% 44% 56% 48%;
  opacity: 0.85;
  z-index: -1;
  animation: float 9s ease-in-out infinite;
}
.blob.b1 {
  width: 110px;
  height: 110px;
  background: var(--yellow);
  top: 50px;
  right: 6%;
}
.blob.b2 {
  width: 70px;
  height: 70px;
  background: var(--coral);
  top: 180px;
  right: 18%;
  animation-delay: 1.2s;
}
.blob.b3 {
  width: 55px;
  height: 55px;
  background: var(--teal);
  top: 120px;
  right: 26%;
  animation-delay: 0.6s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(7deg);
  }
}
.diag {
  background: var(--navy);
  border-radius: 24px;
  padding: 32px;
  color: #eaf1fb;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.diag h2 {
  color: #fff;
  font-size: 1.85rem;
}
.diag .tag {
  color: var(--yellow);
}
.bars {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.barrow {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  align-items: center;
}
.barrow .lbl {
  font-weight: 700;
  font-size: 0.95rem;
}
.barrow .lbl small {
  display: block;
  font-weight: 600;
  color: #9db4d4;
  font-size: 0.78rem;
}
.track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  height: 32px;
  position: relative;
  overflow: hidden;
}
.fill {
  height: 100%;
  border-radius: 30px;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fill.f76 {
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
}
.fill.f20 {
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
}
.fill.f4 {
  background: linear-gradient(90deg, var(--coral), #d23b3b);
  min-width: 48px;
}
.diag .takeaway {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--yellow);
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.95rem;
}
.diag .takeaway b {
  color: var(--yellow);
}
.umbrella {
  background: linear-gradient(135deg, var(--navy), #1d4a85);
  border-radius: 24px 24px 0 0;
  padding: 32px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.umbrella .lbl {
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--yellow);
  text-transform: uppercase;
}
.umbrella h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin: 8px 0;
  letter-spacing: -0.01em;
}
.umbrella p {
  color: #ffd08a;
  font-style: italic;
  font-weight: 600;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pillars-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pcol {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  border-top: 6px solid;
  background: #fff;
}
.pcol:last-child {
  border-right: none;
}
.pcol:nth-child(1) {
  border-color: var(--orange);
  background: linear-gradient(180deg, #fff, var(--orange-soft) 240%);
}
.pcol:nth-child(2) {
  border-color: var(--teal);
  background: linear-gradient(180deg, #fff, var(--teal-soft) 240%);
}
.pcol:nth-child(3) {
  border-color: var(--blue);
  background: linear-gradient(180deg, #fff, var(--blue-soft) 240%);
}
.pcol:nth-child(4) {
  border-color: var(--coral);
  background: linear-gradient(180deg, #fff, var(--coral-soft) 240%);
}
.pcol .ph {
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--navy);
  text-transform: uppercase;
}
.pcol .pt {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 6px 0 4px;
}
.pcol .ps {
  font-style: italic;
  font-size: 0.84rem;
  color: var(--navy-soft);
  font-weight: 600;
  margin-bottom: 14px;
}
.pcol ul {
  list-style: none;
}
.pcol li {
  padding: 6px 0 6px 16px;
  position: relative;
  font-weight: 600;
  font-size: 0.88rem;
}
.pcol li::before {
  content: "›";
  position: absolute;
  left: 0;
  font-weight: 900;
}
.pcol:nth-child(1) li::before {
  color: var(--orange);
}
.pcol:nth-child(2) li::before {
  color: var(--teal);
}
.pcol:nth-child(3) li::before {
  color: var(--blue);
}
.pcol:nth-child(4) li::before {
  color: var(--coral);
}
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.tier {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--orange);
  transition: 0.25s;
  position: relative;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tier.t3,
.tier.t4 {
  border-color: var(--teal);
}
.tier.t5 {
  border-color: var(--coral);
  background: linear-gradient(180deg, #fff, var(--orange-soft) 280%);
}
.tier h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tier .ident {
  font-style: italic;
  font-size: 0.86rem;
  color: var(--navy-soft);
  font-weight: 600;
  margin-bottom: 14px;
}
.tier .amt {
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.tier .amt .per {
  font-size: 0.7rem;
  color: var(--soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-left: 4px;
}
.tier ul {
  list-style: none;
  margin-top: 14px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.tier li {
  padding: 5px 0 5px 14px;
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
}
.tier li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 0.7;
}
.tier.t3 li::before,
.tier.t4 li::before {
  color: var(--teal);
}
.tier.t5 li::before {
  color: var(--coral);
}
.calc {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  margin-top: 22px;
  overflow: hidden;
}
.calc h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.slider-val {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
}
.slider-val .per {
  font-size: 1.1rem;
  color: var(--soft);
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  margin-left: 6px;
}
.slider-tier {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 6px 0 4px;
}
.slider-tier-sub {
  font-style: italic;
  color: var(--navy-soft);
  font-weight: 600;
  font-size: 0.92rem;
}
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: var(--cream-2);
  border-radius: 5px;
  margin-top: 24px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(244, 136, 31, 0.4);
}
input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(244, 136, 31, 0.4);
}
.scale {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--soft);
  margin-top: 8px;
}
.calc-out {
  background: var(--cream);
  border-radius: 18px;
  padding: 22px;
}
.calc-out .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.calc-out .row:last-child {
  border-bottom: none;
}
.calc-out .k {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
}
.calc-out .v {
  font-weight: 800;
  color: var(--navy);
}
.calc-out .v.big {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
}
.fiscal-tip {
  background: var(--teal-soft);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
  display: flex;
  gap: 10px;
}
.events {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.evcard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}
.evcard:hover {
  transform: translateY(-4px);
}
.evcard .top {
  padding: 14px 18px;
  color: #fff;
  font-weight: 800;
}
.evcard .top small {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 800;
}
.evcard.e1 .top {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}
.evcard.e2 .top {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}
.evcard.e3 .top {
  background: linear-gradient(135deg, #ff6b35, var(--orange));
}
.evcard.e4 .top {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
}
.evcard.e5 .top {
  background: linear-gradient(135deg, #9b59b6, #6c3483);
}
.evcard.e6 .top {
  background: linear-gradient(135deg, var(--coral), #c93838);
}
.evcard.e7 .top {
  background: linear-gradient(135deg, #e91e63, var(--coral));
}
.evcard.e8 .top {
  background: linear-gradient(135deg, #ffb627, #ff8c00);
}
.evcard.e9 .top {
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
}
.evcard.e10 .top {
  background: linear-gradient(135deg, var(--teal-deep), #16604f);
}
.evcard.e11 .top {
  background: linear-gradient(135deg, #a93226, #7b241c);
}
.evcard.e12 .top {
  background: linear-gradient(135deg, #5d3fd3, var(--navy));
}
.subsec {
  margin-top: 36px;
  margin-bottom: 14px;
  padding-top: 18px;
  border-top: 2px dashed var(--line);
}
.subsec h3 {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.subsec p {
  color: var(--navy-soft);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 4px;
  max-width: 64ch;
}
.recurring {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.rcard {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--teal);
  position: relative;
}
.rcard.rc2 {
  border-color: var(--blue);
}
.rcard.rc3 {
  border-color: var(--orange);
}
.rcard .rbadge {
  font-weight: 900;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}
.rcard.rc2 .rbadge {
  color: var(--blue-deep);
  background: var(--blue-soft);
}
.rcard.rc3 .rbadge {
  color: var(--orange-deep);
  background: var(--orange-soft);
}
.rcard h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.rcard .when {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--navy-soft);
  margin-top: 8px;
}
.rcard p {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}
.ambition {
  background: linear-gradient(135deg, var(--navy), #1d4a85);
  color: #fff;
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.ambition .year {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 5rem;
  color: var(--yellow);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.ambition .ybl {
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ambition h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.ambition p {
  color: #cbd9ee;
  font-weight: 600;
  max-width: 60ch;
  font-size: 0.96rem;
}
.ambition .scale {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--yellow);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  display: block;
  width: auto;
}
.evcard .body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.evcard h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.evcard p {
  font-size: 0.86rem;
  font-weight: 600;
}
.evcard .when {
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 8px;
}
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.partner {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--blue);
}
.partner.p2 {
  border-color: var(--blue-deep);
}
.partner.p3 {
  border-color: var(--coral);
}
.partner h4 {
  font-size: 1.3rem;
  font-weight: 700;
}
.partner .price {
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 8px 0;
}
.partner ul {
  list-style: none;
  margin-top: 10px;
}
.partner li {
  padding: 5px 0 5px 14px;
  position: relative;
  font-size: 0.86rem;
  font-weight: 600;
}
.partner li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
.matrix {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.matrix table {
  width: 100%;
  border-collapse: collapse;
}
.matrix th {
  background: var(--navy);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 800;
  font-size: 0.8rem;
}
.matrix td {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
  vertical-align: top;
}
.matrix tr:nth-child(odd) td {
  background: #fdfaf3;
}
.matrix .kanaal {
  font-weight: 800;
  color: var(--navy);
}
.targets {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.target-years {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.tyear {
  padding: 24px;
  border-radius: 18px;
  text-align: center;
}
.tyear.y1 {
  background: linear-gradient(135deg, var(--cream-2), var(--orange-soft));
}
.tyear.y2 {
  background: linear-gradient(135deg, var(--teal-soft), #c1ead8);
}
.tyear.y3 {
  background: linear-gradient(135deg, var(--orange-soft), #fad5b0);
}
.tyear .when {
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--navy-soft);
  text-transform: uppercase;
}
.tyear .amt {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin: 6px 0;
}
.tyear .perc {
  font-weight: 800;
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tyear ul {
  list-style: none;
  margin-top: 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 14px;
}
.tyear li {
  padding: 4px 0;
  font-size: 0.82rem;
  font-weight: 600;
}
.target-chart {
  margin-top: 24px;
  background: var(--cream);
  border-radius: 16px;
  padding: 22px;
}
.target-chart h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.doelgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
}
.dgcard {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--orange);
}
.dgcard.dg2,
.dgcard.dg6 {
  border-color: var(--teal);
}
.dgcard.dg4 {
  border-color: var(--blue);
}
.dgcard.dg5,
.dgcard.dg7 {
  border-color: var(--coral);
}
.dgcard h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.dgcard .lbl {
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 8px;
}
.dgcard.dg2 .lbl,
.dgcard.dg6 .lbl {
  color: var(--teal);
}
.dgcard.dg4 .lbl {
  color: var(--blue);
}
.dgcard.dg5 .lbl,
.dgcard.dg7 .lbl {
  color: var(--coral);
}
.dgcard p {
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: 3px;
}
.dgcard .msg {
  font-style: italic;
  background: var(--cream);
  padding: 8px 12px;
  border-radius: 10px;
  margin-top: 4px;
}
.commit {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 24px;
  padding: 34px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.commit h2 {
  color: #fff;
}
.commit .tag {
  color: #ffe8cc;
}
.commit p.intro {
  font-weight: 700;
  max-width: 54ch;
  margin-top: 6px;
  color: #fff4e8;
}
.checks {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 11px;
}
.chk {
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 13px 15px;
  cursor: pointer;
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.2s;
  user-select: none;
}
.chk:hover {
  background: rgba(255, 255, 255, 0.22);
}
.chk .box {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.2s;
}
.chk.on {
  background: #fff;
  color: var(--orange-deep);
}
.chk.on .box {
  background: var(--orange-deep);
  border-color: #fff;
  color: #fff;
}
.chk.on .box::after {
  content: "✓";
  font-weight: 900;
}
.chk-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  /* Debug: make button more visible */
  outline: 1px solid rgba(255, 0, 0, 0.3);
  z-index: 10;
  position: relative;
}

/* Ensure the button is clickable and not covered */
.chk {
  position: relative;
}

/* Footer styles */
.footer-content {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  flex: 1;
}

.footer-column.left-column {
  text-align: left;
  margin-left: calc(100% / 6);
}

.footer-column.center-column {
  text-align: center;
  align-items: center;
}

.footer-column.right-column {
  text-align: right;
  margin-right: calc(100% / 6);
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.instagram-icon {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-column a {
  color: #8aa3c6;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-column p {
  color: #8aa3c6;
  margin: 0;
}

.footer-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 0.9rem;
  justify-content: center;
}

.footer-links a {
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.linkedin-icon {
  width: 18px;
  height: 18px;
}

.cta-footer {
  background: var(--orange);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
}

.cta-footer:hover {
  background: var(--orange-deep);
}

.powered-by {
  font-size: 0.8rem;
  color: var(--soft);
}

.powered-by-text {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--soft);
}

.powered-by-text a {
  color: var(--soft);
  text-decoration: none;
}

.powered-by-text a:hover {
  color: var(--navy);
}

/* Disable purple color for visited links */
a:visited {
  color: inherit;
}

.powered-by a {
  color: var(--soft);
  font-weight: 600;
}

.powered-by a:hover {
  color: var(--navy);
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-footer,
  .powered-by {
    margin-left: 0;
  }
}
.counter {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.counter .big {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 2.8rem;
  background: #fff;
  color: var(--orange-deep);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.counter .txt {
  font-weight: 800;
  font-size: 1rem;
}

.view-donor {
  background: linear-gradient(180deg, #fdf7ee 0%, #faefe0 100%);
  min-height: 80vh;
}
.donor-hero {
  padding: 40px 0 24px;
}
.profile {
  background: #fff;
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.profile .who {
  flex: 1;
  min-width: 200px;
}
.profile .hello {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
}
.profile .sub {
  font-weight: 700;
  color: var(--navy-soft);
  font-size: 0.92rem;
  margin-top: 2px;
}
.profile .tierbadge {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.84rem;
  text-align: center;
  box-shadow: 0 6px 16px -4px rgba(46, 168, 138, 0.5);
}
.profile .tierbadge .lbl {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
  display: block;
  margin-bottom: 3px;
}
.dh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.dh h3 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
}
.dh .meta {
  font-weight: 700;
  color: var(--navy-soft);
  font-size: 0.86rem;
}
.kpis-d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.kpi-d {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  border-bottom: 4px solid var(--orange);
  transition: 0.25s;
}
.kpi-d:hover {
  transform: translateY(-3px);
}
.kpi-d:nth-child(2) {
  border-color: var(--teal);
}
.kpi-d:nth-child(3) {
  border-color: var(--blue);
}
.kpi-d:nth-child(4) {
  border-color: var(--coral);
}
.kpi-d .v {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.kpi-d .v .euro {
  font-size: 1.4rem;
  vertical-align: top;
  color: var(--soft);
  font-weight: 700;
  margin-right: 2px;
}
.kpi-d .k {
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 6px;
}
.kpi-d .sub {
  font-size: 0.78rem;
  color: var(--navy-soft);
  font-weight: 600;
  margin-top: 4px;
}
.stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.story {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s;
  display: flex;
  flex-direction: column;
}
.story:hover {
  transform: translateY(-4px);
}
.story .img {
  height: 140px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.95;
  position: relative;
}
.story.s2 .img {
  background: linear-gradient(135deg, var(--teal), #6fc9b4);
}
.story.s3 .img {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}
.story .img .proj {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 14px;
}
.story .body {
  padding: 18px;
}
.story h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.story p {
  font-size: 0.86rem;
  font-weight: 600;
}
.story .date {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 10px;
}
.actions {
  display: grid;
  gap: 14px;
}
.action {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.action h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.action .meta {
  font-weight: 700;
  color: var(--navy-soft);
  font-size: 0.84rem;
  margin-bottom: 10px;
}
.progbar {
  background: var(--cream-2);
  border-radius: 10px;
  height: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 6px;
}
.progbar .pf {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  transition: width 1.2s ease-out;
}
.action.a2 .progbar .pf {
  background: linear-gradient(90deg, var(--teal), var(--teal-deep));
}
.action.a3 .progbar .pf {
  background: linear-gradient(90deg, var(--coral), #c93838);
}
.action .nums {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.92rem;
}
.action .nums small {
  color: var(--soft);
  font-weight: 700;
}
.action .cta-sm {
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.84rem;
  transition: 0.2s;
  white-space: nowrap;
}
.action .cta-sm:hover {
  background: var(--orange-deep);
}
.action.a2 .cta-sm {
  background: var(--teal);
}
.action.a2 .cta-sm:hover {
  background: var(--teal-deep);
}
.action.a3 .cta-sm {
  background: var(--coral);
}
.action.a3 .cta-sm:hover {
  background: #c93838;
}
.runners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.runner {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.25s;
}
.runner:hover {
  transform: translateY(-3px);
}
.runner .av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: "Fraunces", serif;
}
.runner .av.r2 {
  background: linear-gradient(135deg, var(--orange), var(--coral));
}
.runner .av.r3 {
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.runner .av.r4 {
  background: linear-gradient(135deg, var(--coral), var(--orange));
}
.runner h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.runner .dist {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 10px;
}
.runner .raised {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy);
}
.runner .spons {
  font-size: 0.78rem;
  color: var(--soft);
  font-weight: 700;
  margin-bottom: 10px;
}
.runner button {
  width: 100%;
  background: var(--cream-2);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 9px;
  border-radius: 10px;
  transition: 0.2s;
}
.runner button:hover {
  background: var(--navy);
  color: #fff;
}
.runner button.sponsored {
  background: var(--teal);
  color: #fff;
  cursor: default;
}
.posts {
  display: grid;
  gap: 12px;
}
.post {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.post .pav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: "Fraunces", serif;
  flex-shrink: 0;
}
.post .pav.p1 {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}
.post .pav.p2 {
  background: linear-gradient(135deg, var(--teal), #6fc9b4);
}
.post .pav.p3 {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}
.post .pav.p4 {
  background: linear-gradient(135deg, var(--coral), var(--orange));
}
.post .pav.p5 {
  background: linear-gradient(135deg, #9b59b6, #6c3483);
}
.post .ptxt {
  font-size: 0.92rem;
}
.post .ptxt .who {
  font-weight: 800;
  color: var(--navy);
}
.post .ptxt .time {
  font-size: 0.72rem;
  color: var(--soft);
  font-weight: 700;
  margin-left: 8px;
}
.post .ptxt .msg {
  margin-top: 2px;
  font-weight: 600;
}
.post .like {
  background: none;
  cursor: pointer;
  color: var(--soft);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 10px;
  transition: 0.2s;
}
.post .like:hover {
  background: var(--cream-2);
}
.post .like.on {
  color: var(--coral);
}
.compose {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.compose input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--cream);
}
.compose input:focus {
  outline: none;
  border-color: var(--orange);
}
.compose button {
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.86rem;
}
.oneoff {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.proj {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.proj .head {
  height: 90px;
  background: linear-gradient(135deg, var(--coral), #c93838);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #fff;
}
.proj.pp2 .head {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}
.proj.pp3 .head {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
}
.proj .head h4 {
  color: #fff;
  font-size: 1.1rem;
}
.proj .b {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.proj p {
  font-size: 0.86rem;
  font-weight: 600;
  flex: 1;
}
.proj .pbar {
  margin: 12px 0 8px;
}
.proj .pbar .progbar {
  margin: 0;
}
.proj .nums {
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--navy);
}
.proj button {
  background: var(--coral);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.84rem;
  margin-top: 10px;
}
.proj.pp2 button {
  background: var(--blue);
}
.proj.pp3 button {
  background: var(--teal);
}
.upgrade {
  background: linear-gradient(135deg, var(--navy), #1d4a85);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.upgrade .lbl {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.upgrade h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 6px 0;
}
.upgrade p {
  color: #cbd9ee;
  font-weight: 600;
  max-width: 50ch;
}
.upgrade .ub {
  background: var(--orange);
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: 0.2s;
}
.upgrade .ub:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}
.view-admin {
  background: #f5f6fa;
  min-height: 80vh;
}
.admin-hero {
  padding: 32px 0 14px;
}
.admin-hero h1 {
  font-size: 2rem;
  color: var(--navy);
  font-weight: 700;
}
.admin-hero .sub {
  font-weight: 700;
  color: var(--navy-soft);
  margin-top: 4px;
}
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 20px 0 24px;
}
.kpi-a {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.kpi-a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}
.kpi-a.k2::after {
  background: var(--teal);
}
.kpi-a.k3::after {
  background: var(--blue);
}
.kpi-a.k4::after {
  background: var(--coral);
}
.kpi-a.k5::after {
  background: var(--yellow);
}
.kpi-a .k {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
}
.kpi-a .v {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1;
  margin-top: 4px;
}
.kpi-a .v .euro {
  font-size: 1.2rem;
  color: var(--soft);
  font-weight: 700;
  margin-right: 2px;
  vertical-align: top;
}
.kpi-a .delta {
  font-weight: 800;
  font-size: 0.78rem;
  margin-top: 5px;
}
.kpi-a .delta.up {
  color: var(--teal);
}
.kpi-a .delta.dn {
  color: var(--coral);
}
.kpi-a .delta.flat {
  color: var(--soft);
}
.acard {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.acard h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.acard .ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.acard .ttl h3 {
  margin: 0;
}
.acard .ttl .right {
  font-weight: 800;
  color: var(--soft);
  font-size: 0.78rem;
}
.row2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}
.row2-eq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.row4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.maintarget .bigp {
  background: var(--cream-2);
  border-radius: 12px;
  height: 38px;
  overflow: hidden;
  margin-top: 14px;
}
.maintarget .bigp-f {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding-left: 14px;
  color: #fff;
  font-weight: 800;
  transition: width 1.4s ease-out;
  font-size: 0.92rem;
}
.maintarget .lbls {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--navy);
  margin-top: 8px;
}
.proj-note {
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--navy-soft);
  font-weight: 600;
  background: var(--yellow-soft);
  padding: 10px 14px;
  border-radius: 10px;
  border-left: 3px solid var(--yellow);
}
.pijler-mini {
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--orange);
  transition: 0.2s;
}
.pijler-mini.pm2 {
  border-color: var(--teal);
}
.pijler-mini.pm3 {
  border-color: var(--blue);
}
.pijler-mini.pm4 {
  border-color: var(--coral);
}
.pijler-mini .pl {
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
}
.pijler-mini .pn {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0;
}
.pijler-mini .pv {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 4px;
}
.pijler-mini .px {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-soft);
}
.pijler-mini .pd {
  font-weight: 800;
  font-size: 0.76rem;
  margin-top: 6px;
  color: var(--teal);
}
.funnel {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fstep {
  display: grid;
  grid-template-columns: 140px 1fr 80px;
  gap: 14px;
  align-items: center;
  font-size: 0.86rem;
}
.fstep .fl {
  font-weight: 700;
  color: var(--navy-soft);
}
.fstep .fbar {
  height: 32px;
  background: var(--cream-2);
  border-radius: 6px;
  overflow: hidden;
}
.fstep .ff {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--navy-soft));
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  transition: width 1.4s ease-out;
}
.fstep .fv {
  text-align: right;
  font-weight: 800;
  color: var(--navy);
}
.lb {
  list-style: none;
}
.lb li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  font-size: 0.88rem;
}
.lb li:first-child {
  border-top: none;
}
.lb .rank {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--orange);
  text-align: center;
}
.lb li:nth-child(1) .rank {
  color: var(--yellow);
}
.lb li:nth-child(2) .rank {
  color: var(--blue);
}
.lb .who {
  font-weight: 800;
}
.lb .who small {
  display: block;
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--soft);
}
.lb .stat {
  font-weight: 800;
  color: var(--teal);
  font-size: 0.84rem;
  background: var(--teal-soft);
  padding: 5px 10px;
  border-radius: 12px;
}
.evstatus {
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
}
.evstatus.es2 {
  border-color: var(--teal);
}
.evstatus.es3 {
  border-color: var(--blue);
}
.evstatus.es4 {
  border-color: var(--coral);
}
.evstatus .esname {
  font-weight: 800;
  font-size: 0.96rem;
  color: var(--navy);
}
.evstatus .esdate {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--soft);
  margin-bottom: 6px;
}
.evstatus .esprog {
  background: var(--cream-2);
  border-radius: 8px;
  height: 10px;
  overflow: hidden;
  margin-top: 6px;
}
.evstatus .esprog .pf {
  height: 100%;
  background: var(--orange);
  border-radius: 8px;
  transition: width 1s ease-out;
}
.evstatus.es2 .esprog .pf {
  background: var(--teal);
}
.evstatus.es3 .esprog .pf {
  background: var(--blue);
}
.evstatus.es4 .esprog .pf {
  background: var(--coral);
}
.evstatus .esnums {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 6px;
}
.evstatus .esstatus {
  display: inline-block;
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.es-plan {
  background: var(--yellow-soft);
  color: #b8860b;
}
.es-act {
  background: var(--teal-soft);
  color: var(--teal-deep);
}
.es-done {
  background: var(--cream-2);
  color: var(--navy-soft);
}
.pipe {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.pipe th {
  text-align: left;
  color: var(--soft);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-bottom: 2px solid var(--line);
}
.pipe td {
  padding: 10px;
  border-bottom: 1px dashed var(--line);
  font-weight: 600;
}
.pipe tr:hover td {
  background: var(--cream);
}
.pipe .pname {
  font-weight: 800;
  color: var(--navy);
}
.stage {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stage.lead {
  background: var(--cream-2);
  color: var(--navy-soft);
}
.stage.contact {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.stage.pitch {
  background: var(--yellow-soft);
  color: #b8860b;
}
.stage.close {
  background: var(--orange-soft);
  color: var(--orange-deep);
}
.stage.won {
  background: var(--teal-soft);
  color: var(--teal-deep);
}
.pipe-tot {
  display: flex;
  gap: 10px;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--line);
}
.pipe-tot span {
  background: var(--cream-2);
  padding: 6px 12px;
  border-radius: 10px;
}
.alerts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--coral);
}
.alert.warn {
  border-color: var(--yellow);
}
.alert.ok {
  border-color: var(--teal);
}
.alert .ai {
  font-size: 1.2rem;
}
.alert .at {
  font-weight: 700;
  font-size: 0.86rem;
}
.alert .at small {
  display: block;
  color: var(--soft);
  font-weight: 600;
  font-size: 0.78rem;
  margin-top: 2px;
}
.todos {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.todo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.86rem;
  cursor: pointer;
}
.todo:last-child {
  border-bottom: none;
}
.todo .tb {
  width: 18px;
  height: 18px;
  border: 2px solid var(--soft);
  border-radius: 5px;
  flex-shrink: 0;
  transition: 0.2s;
}
.todo.done .tb {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
}
.todo.done .tb::after {
  content: "✓";
}
.todo.done .txt {
  text-decoration: line-through;
  color: var(--soft);
}
.todo .who {
  font-weight: 700;
  color: var(--soft);
  font-size: 0.74rem;
}
footer {
  background: var(--navy);
  color: #cbd9ee;
  padding: 34px 0;
  text-align: center;
}
footer .h {
  font-family: "Fraunces", serif;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
footer .tagl {
  color: var(--yellow);
  font-weight: 700;
  margin-top: 6px;
  font-size: 0.88rem;
}
footer small {
  display: block;
  margin-top: 14px;
  color: #8aa3c6;
  font-size: 0.78rem;
}
@media (max-width: 900px) {
  .pillars,
  .row2,
  .row2-eq,
  .row3,
  .row4 {
    grid-template-columns: 1fr;
  }
  .kpi-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .target-years {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .viewswitch {
    font-size: 0.7rem;
  }
  .barrow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .upgrade,
  .profile,
  .action {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .topnav .inner {
    padding: 10px 14px;
    gap: 8px;
  }
  .cta {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
  .viewswitch button {
    padding: 6px 10px;
    font-size: 0.74rem;
  }
  .brand .name {
    font-size: 0.95rem;
  }
}

/* Custom styles for this page to match the calculator design */
.calc-top {
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-deep) 100%
  );
  padding: 26px 26px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.calc-top::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.calc-top h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  position: relative;
}
.calc-top p {
  font-size: 0.9rem;
  opacity: 0.92;
  margin-top: 4px;
  position: relative;
  max-width: 430px;
}
.toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.16);
  border-radius: 14px;
  padding: 5px;
  margin-top: 18px;
  position: relative;
  width: fit-content;
}
.toggle button {
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s;
  opacity: 0.8;
}
.toggle button.on {
  background: #fff;
  color: var(--orange-deep);
  opacity: 1;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.3);
}
.calc-body {
  padding: 26px;
}
.ctrl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}
.field {
  flex: 1;
  min-width: 230px;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 10px;
}
.amount-display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1;
}
.amount-display .per {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--soft);
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: var(--cream-2);
  margin-top: 16px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.seg {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.seg button {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--soft);
  cursor: pointer;
  transition: 0.2s;
}
.seg button.on {
  border-color: var(--orange);
  background: var(--cream-2);
  color: var(--orange-deep);
}
.bar-wrap {
  margin-top: 26px;
}
.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--soft);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bar {
  display: flex;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
}
.bar .seg-net {
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-width: 54px;
}
.bar .seg-tax {
  background: repeating-linear-gradient(
    135deg,
    var(--teal),
    var(--teal) 9px,
    #1c7d65 9px,
    #1c7d65 18px
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-width: 54px;
}
.legend {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  font-weight: 600;
}
.legend i {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: -1px;
}
.legend .l-net i {
  background: var(--ink);
}
.legend .l-tax i {
  background: var(--teal);
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.res {
  background: var(--cream);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
}
.res .k {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--soft);
}
.res .v {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  margin-top: 4px;
}
.res.hl {
  background: var(--ink);
  color: #fff;
}
.res.hl .k {
  color: #ffd9bf;
}
.res.hl .v {
  color: #fff;
}
.res .v.net {
  color: var(--orange-deep);
}
.flip {
  margin-top: 22px;
  background: linear-gradient(120deg, var(--cream-2), #fff);
  border-radius: 16px;
  padding: 18px 20px;
  border-left: 5px solid var(--yellow);
  font-size: 1rem;
}
.flip b {
  color: var(--orange-deep);
}
.note {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.note .dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 7px;
}
.warn {
  display: none;
  margin-top: 16px;
  background: #fff1ee;
  border: 1px solid #ffd2cc;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #b3402f;
  font-weight: 600;
}
.warn.show {
  display: block;
}
.memo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.memo {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--c);
}
.memo .ic {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--c);
  line-height: 1;
}
.memo h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  margin: 10px 0 6px;
}
.memo p {
  font-size: 0.93rem;
  color: var(--soft);
}
.ex-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ex {
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.ex .hd {
  padding: 18px 22px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ex.prive .hd {
  background: var(--blue);
}
.ex.bedrijf .hd {
  background: var(--teal);
}
.ex .bd {
  padding: 20px 22px;
  background: #fff;
}
.ex table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.ex td {
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
}
.ex td:last-child {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.ex tr.tot td {
  border-bottom: 0;
  padding-top: 12px;
  font-size: 1.05rem;
}
.ex tr.tot td:last-child {
  color: var(--orange-deep);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
}
.ex .kick {
  margin-top: 14px;
  font-size: 0.9rem;
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--soft);
}
.ex .kick b {
  color: var(--ink);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.fcard {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}
.fcard .tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--c);
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 30px;
}
.fcard h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 8px 0 4px;
}
.fcard .win {
  display: inline-block;
  font-weight: 800;
  color: var(--c);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.fcard ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fcard li {
  font-size: 0.92rem;
  color: var(--soft);
  padding-left: 24px;
  position: relative;
}
.fcard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--c);
  opacity: 0.85;
}
.fcard li b {
  color: var(--ink);
}
.agr {
  margin-top: 22px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}
.agr-hd {
  background: var(--ink);
  color: #fff;
  padding: 24px 28px;
}
.agr-hd .finger-row span:nth-child(1) {
  background: var(--coral);
}
.agr-hd h3 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 12px;
}
.agr-hd p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-top: 4px;
}
.agr-bd {
  padding: 8px 28px 28px;
}
details.acc {
  border-bottom: 1px solid var(--line);
}
details.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
details.acc summary::-webkit-details-marker {
  display: none;
}
details.acc summary .n {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--cream-2);
  color: var(--orange-deep);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex: none;
  font-family: var(--font-body);
}
details.acc summary .arr {
  margin-left: auto;
  transition: 0.25s;
  color: var(--soft);
}
details.acc[open] summary .arr {
  transform: rotate(90deg);
}
.acc-body {
  padding: 0 0 20px 38px;
  font-size: 0.95rem;
  color: var(--soft);
}
.acc-body p {
  margin-bottom: 10px;
}

.acc-body .clause {
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 10px 0;
  font-size: 0.92rem;
  color: var(--ink);
}
.sign {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.sign div {
  flex: 1;
  min-width: 200px;
}
.sign .line {
  border-bottom: 1.5px solid var(--ink);
  height: 34px;
  margin-top: 18px;
}
.sign small {
  font-size: 0.8rem;
  color: var(--soft);
}
@media (max-width: 640px) {
  .memo-grid,
  .ex-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .result-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .res {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .res .v {
    font-size: 1.4rem;
  }
  .amount-display {
    font-size: 2.1rem;
  }
}

/* Donation Section */
.donation-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.donation-info {
  flex: 1;
  max-width: 600px;
}

.donation-info .tag {
  background-color: var(--orange-soft);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.donation-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.donation-info p {
  color: var(--soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

.donation-button {
  flex-shrink: 0;
}

.donate-btn {
  background-color: var(--orange);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.donate-btn:hover {
  background-color: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .donation-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .donation-button {
    width: 100%;
  }

  .donate-btn {
    width: 100%;
    padding: 18px 24px;
  }
}
