:root {
  --plum-deep: #581858;
  --plum-dark: #430f43;
  --plum-darker: #320b32;
  --plum-ink: #2b1230;
  --orchid: #885888;
  --orchid-light: #b48ab4;
  --lav-tint: #f8f1f8;
  --lav-soft: #f3e8f3;
  --lav-border: #e8d7e9;
  --gold: #f2b155;
  --gold-dark: #dd972e;
  --gold-soft: #fdf3e3;
  --white: #ffffff;
  --off-white: #fdfbfd;
  --text-body: #55465a;
  --text-muted: #7a6a80;
  --shadow-sm: 0 2px 10px rgba(67, 15, 67, 0.07);
  --shadow-md: 0 8px 28px rgba(67, 15, 67, 0.12);
  --shadow-lg: 0 16px 44px rgba(67, 15, 67, 0.16);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--plum-deep);
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--plum-ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 92px 0;
}

.section-tint {
  background: var(--lav-tint);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-deep);
  background: var(--lav-soft);
  border: 1px solid var(--lav-border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow.gold {
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-color: #f3ddb8;
}

.lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; }

.btn-primary {
  background: var(--plum-deep);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--plum-dark);
}

.btn-gold {
  background: var(--gold);
  color: var(--plum-darker);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--plum-deep);
  border-color: var(--plum-deep);
}

.btn-outline:hover {
  background: var(--plum-deep);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--plum-deep);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1.02rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header.scrolled {
  border-bottom-color: var(--lav-border);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--plum-ink);
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orchid);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a:not(.btn) {
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--plum-ink);
  position: relative;
  padding: 6px 0;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--plum-deep);
}

/* ---- Nav dropdown menus ---- */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; }
.nav-item > a .caret { transition: transform 0.25s ease; }
.nav-item.has-dropdown:hover > a .caret,
.nav-item.has-dropdown.open > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -14px;
  min-width: 236px;
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a:not(.btn) {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--plum-ink);
  padding: 10px 12px;
  border-radius: 9px;
  display: block;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown a:not(.btn)::after { display: none; }

.dropdown a:not(.btn):hover {
  background: var(--lav-soft);
  color: var(--plum-deep);
}

.nav-item.has-dropdown .dropdown a.active {
  background: var(--lav-soft);
  color: var(--plum-deep);
}

@media (max-width: 860px) {
  .nav-item { width: 100%; }
  .nav-item > a { width: 100%; justify-content: space-between; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    display: none;
    box-shadow: none;
    border: none;
    padding: 2px 0 8px 14px;
    min-width: 0;
  }
  .nav-item.has-dropdown.open .dropdown { display: flex; visibility: visible; }
  .nav-item.has-dropdown:hover .dropdown { display: none; visibility: hidden; }
  .dropdown a:not(.btn) {
    width: 100%;
    font-size: 0.92rem;
    padding: 9px 12px;
  }
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 11px 24px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--lav-soft);
  border: 1px solid var(--lav-border);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 3px;
  background: var(--plum-deep);
  transition: all 0.28s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 200px 0 130px;
  overflow: hidden;
  background: var(--plum-darker);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 11, 39, 0.82) 0%, rgba(36, 11, 39, 0.68) 50%, rgba(36, 11, 39, 0.86) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(1.85rem, 3.3vw, 2.65rem);
}

.hero-content .sub {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.86);
  margin: 20px auto 32px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 26px;
}

.hero-badge .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--gold);
  font-size: 0.72rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px dashed rgba(255, 255, 255, 0.28);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.intro-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.intro-point .ip-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--lav-border);
  color: var(--plum-deep);
}

.intro-point .ip-icon svg { width: 19px; height: 19px; }

.intro-point strong {
  display: block;
  font-family: var(--font-display);
  color: var(--plum-ink);
  font-size: 0.98rem;
}

.intro-point p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.intro-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 190px 150px;
  gap: 16px;
}

.intro-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--lav-soft);
}

.intro-collage img:first-child {
  grid-row: 1 / 3;
}

.counters-band {
  background:
    radial-gradient(ellipse 70% 90% at 90% 0%, rgba(136, 88, 136, 0.35), transparent),
    linear-gradient(135deg, var(--plum-dark) 0%, var(--plum-deep) 60%, #6b256b 100%);
  color: var(--white);
  padding: 88px 0;
}

.counters-band h2 {
  color: var(--white);
}

.counters-band .lead {
  color: rgba(255, 255, 255, 0.75);
}

.counters-band .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #f3cf95;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 54px;
}

.counter {
  text-align: center;
  padding: 30px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, background 0.25s ease;
}

.counter:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.counter .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: block;
}

.counter .lbl {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 8px;
  line-height: 1.45;
}

.disclaimer {
  margin-top: 34px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.band-cta {
  text-align: center;
  margin-top: 40px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orchid-light);
}

.card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lav-soft), #efe0ef);
  color: var(--plum-deep);
  margin-bottom: 22px;
}

.card .card-icon svg { width: 29px; height: 29px; }

.card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.card p {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--plum-deep);
}

.card .card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 30px 22px 26px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step .step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--plum-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
}

.step.final .step-num {
  background: var(--gold);
  color: var(--plum-darker);
}

.step .step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 6px auto 16px;
  border-radius: 16px;
  background: var(--lav-soft);
  color: var(--plum-deep);
}

.step.final .step-icon {
  background: var(--gold-soft);
  color: var(--gold-dark);
}

.step .step-icon svg { width: 26px; height: 26px; }

.step h4 {
  font-size: 0.97rem;
  margin-bottom: 7px;
}

.step p {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step:nth-child(1) { z-index: 5; }
.step:nth-child(2) { z-index: 4; }
.step:nth-child(3) { z-index: 3; }
.step:nth-child(4) { z-index: 2; }

.step-arrow {
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 6;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-arrow svg { width: 14px; height: 14px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.why-item {
  grid-column: span 2;
  display: flex;
  gap: 17px;
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-item.wide {
  grid-column: span 3;
}

.why-item .wi-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--lav-soft);
  color: var(--plum-deep);
}

.why-item .wi-icon svg { width: 22px; height: 22px; }

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
}

.partner-band {
  background:
    radial-gradient(ellipse 55% 80% at 10% 100%, rgba(233, 161, 59, 0.16), transparent),
    linear-gradient(120deg, var(--plum-darker), var(--plum-deep));
  border-radius: calc(var(--radius-lg) * 1.2);
  padding: 74px 52px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 46px;
  align-items: center;
  color: var(--white);
}

.partner-band h2 {
  color: var(--white);
}

.partner-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  font-size: 1.03rem;
}

.partner-band .band-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.supporters-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.supporter-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 86px;
  padding: 0 34px;
  background: var(--white);
  border: 1px dashed var(--lav-border);
  border-radius: var(--radius);
}

.supporter-logo img {
  max-height: 58px;
  max-width: 165px;
  width: auto;
  object-fit: contain;
}

.supporter-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
}

.cta-final {
  background:
    radial-gradient(ellipse 60% 90% at 88% 8%, rgba(233, 161, 59, 0.2), transparent),
    linear-gradient(130deg, var(--plum-darker) 0%, var(--plum-deep) 70%, #6d276d 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
}

.cta-final h2 {
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.78);
  margin: 18px auto 36px;
  max-width: 620px;
}

.cta-final .hero-actions {
  justify-content: center;
}

.footer {
  background: var(--plum-darker);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer .brand-name {
  color: var(--white);
}

.footer .brand-tagline {
  color: var(--orchid-light);
}

.footer-about p {
  font-size: 0.9rem;
  margin: 18px 0 22px;
  max-width: 300px;
}

.brand .footer-brand-logo {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer h5 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.floating-wa {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22c15e;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 22px 13px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(34, 193, 94, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-wa:hover {
  background: #1da851;
}

.floating-wa svg { width: 21px; height: 21px; }

.scroll-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--plum-deep);
  color: var(--white);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.28s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--plum-dark);
}

.scroll-top svg { width: 19px; height: 19px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

.page-hero {
  padding: 168px 0 72px;
  background:
    radial-gradient(ellipse 55% 60% at 88% 0%, rgba(136, 88, 136, 0.13), transparent),
    linear-gradient(165deg, #fbf6fb, var(--lav-tint));
  text-align: center;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0 auto;
}

.page-hero p {
  max-width: 700px;
  margin: 18px auto 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.breadcrumb {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a:hover { color: var(--plum-deep); }

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--orchid-light), var(--plum-deep));
}

.tl-item {
  position: relative;
  padding-bottom: 44px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  border: 3.5px solid var(--white);
  box-shadow: 0 0 0 3px var(--orchid-light);
}

.tl-year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--plum-deep);
  background: var(--lav-soft);
  border: 1px solid var(--lav-border);
  border-radius: 999px;
  padding: 4px 15px;
  margin-bottom: 12px;
}

.tl-item h4 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}

.tl-item p {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 620px;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.doc-card .doc-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lav-soft);
  color: var(--plum-deep);
}

.doc-card .doc-icon svg { width: 24px; height: 24px; }

.doc-card h4 {
  font-size: 0.99rem;
  margin-bottom: 3px;
}

.doc-card span {
  font-size: 0.79rem;
  color: var(--text-muted);
}

.doc-card .coming-soon {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--lav-soft);
  border: 1px dashed var(--lav-border);
  border-radius: 999px;
  padding: 6px 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--plum-ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--plum-ink);
  background: var(--white);
  border: 1.5px solid var(--lav-border);
  border-radius: 13px;
  padding: 13px 17px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orchid);
  box-shadow: 0 0 0 4px rgba(136, 88, 136, 0.12);
}

.contact-info-card {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius);
  padding: 26px;
}

.contact-info-card .ci-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lav-soft);
  color: var(--plum-deep);
}

.contact-info-card .ci-icon svg { width: 22px; height: 22px; }

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.donate-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.qr-panel {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.qr-placeholder {
  width: 250px;
  height: 250px;
  margin: 26px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--orchid-light);
  border-radius: var(--radius);
  background: var(--lav-tint);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.bank-details {
  background: var(--plum-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.bank-details h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.93rem;
}

.bank-row:last-of-type {
  border-bottom: none;
}

.bank-row span {
  color: rgba(255, 255, 255, 0.62);
}

.bank-row strong {
  font-family: var(--font-display);
  text-align: right;
}

.chart-shell {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.stat-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-mini {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}

.stat-mini .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--plum-deep);
  display: block;
}

.stat-mini .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

@media (max-width: 1024px) {
  .counters-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-flow {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 36px;
    row-gap: 44px;
  }
  .step:nth-child(3) .step-arrow { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item, .why-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .doc-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--white);
    border-bottom: 1px solid var(--lav-border);
    box-shadow: var(--shadow-md);
    padding: 18px 24px 26px;
    transform: translateY(-130%);
    transition: transform 0.32s ease;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a:not(.btn) {
    width: 100%;
    padding: 11px 4px;
    font-size: 1rem;
  }
  .nav-cta {
    display: none;
  }
  .hamburger { display: flex; }
  .hero { padding: 160px 0 96px; }
  .intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .cards-3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .partner-band { grid-template-columns: 1fr; padding: 52px 34px; }
  .donate-options { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-flow { grid-template-columns: 1fr; row-gap: 48px; }
  .step-arrow {
    top: auto;
    bottom: -39px;
    right: auto;
    left: 50%;
    margin-left: -15px;
    transform: rotate(90deg);
  }
  .step:nth-child(3) .step-arrow { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .doc-grid { grid-template-columns: 1fr; }
  .floating-wa { padding: 13px 16px; }
  .floating-wa .wa-label { display: none; }
  .brand img { height: 36px; }
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
}

.mv-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 17px;
  margin-bottom: 24px;
  background: var(--lav-soft);
  color: var(--plum-deep);
}

.mv-card .card-icon svg { width: 28px; height: 28px; }

.mv-card h3 { font-size: 1.35rem; margin-bottom: 14px; }

.mv-card p { color: var(--text-muted); font-size: 1rem; }

.mv-card.dark {
  background: linear-gradient(135deg, var(--plum-dark), var(--plum-deep));
  border-color: transparent;
}

.mv-card.dark h3 { color: var(--white); }
.mv-card.dark p { color: rgba(255, 255, 255, 0.82); }
.mv-card.dark .card-icon { background: rgba(255, 255, 255, 0.14); color: var(--gold); }

.chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--plum-deep);
  background: var(--white);
  border: 1.5px solid var(--lav-border);
  border-radius: 999px;
  padding: 10px 20px;
}

.chip svg { width: 15px; height: 15px; color: var(--gold-dark); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  display: block;
  width: 148px;
  height: 148px;
  margin: 30px auto 6px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--lav-soft);
  border: 4px solid var(--lav-border);
}

.team-info {
  padding: 18px 20px 22px;
  text-align: center;
}

.team-info h4 { font-size: 1rem; }

.team-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.eco-card {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.eco-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  margin: 0 auto;
  background: var(--lav-soft);
  color: var(--plum-deep);
}

.eco-card .card-icon svg { width: 25px; height: 25px; }

.eco-card h4 { margin: 16px 0 6px; font-size: 0.98rem; }

.eco-card p { font-size: 0.85rem; color: var(--text-muted); }

.btn-sm {
  padding: 10px 20px;
  font-size: 0.84rem;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 11, 39, 0.8) 0%, rgba(36, 11, 39, 0.68) 100%);
}

.page-hero.has-bg {
  background: var(--plum-darker);
}

.page-hero.has-bg h1 {
  color: var(--white);
}

.page-hero.has-bg p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero.has-bg .breadcrumb {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero.has-bg .breadcrumb a {
  color: var(--gold);
}

.tl-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.tl-item .tl-body {
  flex: 1;
  min-width: 0;
}

.tl-thumb {
  flex-shrink: 0;
  width: 132px;
  height: 98px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--lav-border);
  background: var(--lav-soft);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .tl-item { gap: 14px; }
  .tl-thumb { width: 92px; height: 72px; border-radius: 11px; }
}

.programme-stack {
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.programme-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.programme-row.flip .programme-media {
  order: 2;
}

.programme-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--lav-soft);
}

.programme-body h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin-bottom: 14px;
}

.programme-body p {
  font-size: 0.97rem;
  color: var(--text-muted);
}

.point-list {
  margin-top: 22px;
}

.point-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--text-body);
  padding: 7px 0;
}

.point-list svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--gold-dark);
  margin-top: 3px;
}

.video-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 60% 80% at 50% 45%, rgba(136, 88, 136, 0.35), transparent),
    linear-gradient(130deg, var(--plum-darker), var(--plum-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.video-play svg {
  width: 34px;
  height: 34px;
  margin-left: 5px;
}

.video-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.flow-vertical {
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-node {
  width: 100%;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: 15px;
  padding: 17px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--plum-deep);
  box-shadow: var(--shadow-sm);
}

.flow-node.final {
  background: linear-gradient(135deg, var(--gold), #f3c377);
  color: var(--plum-darker);
  border-color: transparent;
}

.flow-gap {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-gap svg {
  width: 18px;
  height: 18px;
  color: var(--orchid);
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.initiative-card {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.initiative-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--lav-soft);
  display: block;
}

.initiative-body {
  padding: 26px 28px 30px;
}

.initiative-body .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--lav-soft);
  color: var(--plum-deep);
  margin-bottom: 18px;
}

.initiative-body .card-icon svg { width: 24px; height: 24px; }

.initiative-body h3 {
  font-size: 1.15rem;
  margin-bottom: 9px;
}

.initiative-body p {
  font-size: 0.91rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .programme-row { grid-template-columns: 1fr; gap: 30px; }
  .programme-row.flip .programme-media { order: 0; }
  .transparency-grid { grid-template-columns: 1fr; }
}

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 999px;
  padding: 5px 13px;
}

.tag.plum {
  color: var(--plum-deep);
  background: var(--lav-soft);
}

.story-body {
  padding: 24px 26px 28px;
}

.story-body h3 {
  font-size: 1.12rem;
  margin: 14px 0 10px;
}

.story-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Impact stories grid (icon tiles, no large images) ---- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.story-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.story-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--lav-soft);
  color: var(--plum-deep);
}

.story-icon svg { width: 22px; height: 22px; }

.story-card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  line-height: 1.3;
}

.story-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---- Homepage featured stories ---- */
.home-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.home-story-card {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.home-story-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lav-soft);
  color: var(--plum-deep);
  margin-bottom: 16px;
}

.home-story-icon svg { width: 24px; height: 24px; }

.home-story-card h3 {
  font-size: 1.05rem;
  margin: 0 0 10px;
  line-height: 1.3;
}

.home-story-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
}

.home-story-card .tag { align-self: flex-start; }

@media (max-width: 1024px) {
  .home-stories-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.form-shell {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 44px 42px;
  max-width: 820px;
  margin: 0 auto;
}

.wa-static {
  position: static;
  display: inline-flex;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.partner-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.partner-logo {
  height: 54px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-meta h3 {
  font-size: 1.12rem;
  margin-bottom: 5px;
}

.partner-loc {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.partner-card > p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

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

@media (max-width: 640px) {
  .form-shell { padding: 30px 22px; }
}

/* ---- Light counters band variant (Our Impact) ---- */
.counters-band.light {
  background: var(--lav-tint);
  color: var(--plum-ink);
  padding: 84px 0;
}

.counters-band.light .counter {
  background: var(--plum-deep);
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(88, 24, 88, 0.16);
}

.counters-band.light .counter:hover {
  background: #6b256b;
  transform: translateY(-5px);
}

.counters-band.light .counter .lbl {
  color: rgba(255, 255, 255, 0.85);
}

.counters-band.light .disclaimer {
  color: var(--text-muted);
}

.brand-tagline {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ---- Forms: spacing under message + custom select arrow ---- */
.form-shell form > .btn-lg {
  margin-top: 30px;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23581858' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 15px 15px;
  padding-right: 46px;
}

/* ---- Page hero CTA spacing ---- */
.page-hero .hero-actions {
  margin-top: 38px;
}

/* ---- Why grid alt variant (Partner With Us) ---- */
.why-grid.alt {
  counter-reset: whyitem;
}

.why-grid.alt .why-item {
  flex-direction: column;
  gap: 14px;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
}

.why-grid.alt .why-item::before {
  content: "0" counter(whyitem);
  counter-increment: whyitem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 10px;
  padding: 6px 13px;
  width: max-content;
}

.why-grid.alt .why-item h4 {
  font-size: 1.08rem;
  margin-bottom: 2px;
}

.why-grid.alt .why-item p {
  font-size: 0.92rem;
  line-height: 1.68;
}

/* ---- Transparency alignment fix ---- */
.transparency-grid {
  align-items: start;
}

.point-list li {
  display: block;
  position: relative;
  padding: 9px 0 9px 30px;
  line-height: 1.55;
}

.point-list svg {
  position: absolute;
  left: 2px;
  top: 13px;
}

/* ---- Partners carousel ---- */
.partner-carousel {
  max-width: 980px;
  margin: 50px auto 0;
}

.pc-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pc-window {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
}

.pc-track {
  display: flex;
  transition: transform 0.5s ease;
}

.pc-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.pc-slide.partner-card {
  height: 100%;
  padding: 42px 44px;
}

.pc-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--lav-border);
  background: var(--white);
  color: var(--plum-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pc-arrow:hover {
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  color: var(--white);
}

.pc-arrow svg {
  width: 20px;
  height: 20px;
}

.pc-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}

.pc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--lav-border);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pc-dot.active {
  background: var(--gold-dark);
  transform: scale(1.3);
}

@media (max-width: 680px) {
  .pc-row { gap: 10px; }
  .pc-arrow { width: 40px; height: 40px; }
  .pc-slide.partner-card { padding: 28px 24px; }
}

/* ---- Full logo lockup (header/footer) ---- */
.brand img.brand-logo-full {
  height: 50px;
  width: auto;
  display: block;
}

.team-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--plum-deep);
  text-decoration: none;
}

.partner-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.partner-link:hover {
  color: var(--gold-dark);
}

.partner-link:hover svg {
  transform: translateX(4px);
}

/* ---- Donate page: steps, QR block, standalone bank panel ---- */
.donate-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 940px;
  margin: 48px auto 0;
}

.ds-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}

.ds-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

.step-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 10px;
  padding: 6px 13px;
}

.qr-block {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.qr-block img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.qr-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.bank-details.standalone {
  max-width: 620px;
  margin: 36px auto 0;
}

.form-msg {
  display: none;
  margin-bottom: 22px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-msg.success {
  background: #e9f8ef;
  color: #177a3d;
  border: 1px solid #bfe7cd;
}

.form-msg.error {
  background: #fdecec;
  color: #b03030;
  border: 1px solid #f3cccc;
}

@media (max-width: 720px) {
  .donate-steps { grid-template-columns: 1fr; }
}

.qr-inline {
  display: block;
  width: min(210px, 72%);
  margin: 6px auto 24px;
  background: var(--white);
  padding: 12px;
  border-radius: 16px;
}

.scan-card {
  background: var(--white);
  border: 1px solid var(--lav-border);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
}

.scan-card h3 {
  color: var(--plum-ink);
  margin-bottom: 20px;
}

.bank-row.on-light {
  border-bottom-color: var(--lav-border);
}

.bank-row.on-light span {
  color: var(--text-muted);
}

.bank-row.on-light strong {
  color: var(--plum-ink);
}

.bd-sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  margin: -10px 0 16px;
  line-height: 1.6;
}

.copy-btn {
  margin-left: auto;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.copy-btn.copied {
  background: #2e9e5b;
}

.transfer-steps {
  margin: 24px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 11px;
}

.transfer-steps li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
