:root {
  --c-primary: #203b80;
  --c-primary-700: #182d63;
  --c-primary-900: #11214a;
  --c-secondary: #2af4e2;
  --c-tertiary: #2aa8e2;
  --c-dark: #243154;
  --c-ink: #1c2742;
  --c-body: #475067;
  --c-gray: #888d99;
  --c-muted: #9aa3b2;
  --c-line: #e6ebf2;
  --c-light: #eaf1f4;
  --c-light-2: #f4f8fb;
  --c-cream: #fdf8ef;
  --c-cream-2: #f7efe0;
  --c-success: #44a189;
  --c-warning: #f0a429;
  --c-white: #ffffff;
  --c-secondary-ink: #0c5c63;
  --grad-primary: linear-gradient(135deg, #203b80 0%, #2aa8e2 100%);
  --grad-cyan: linear-gradient(135deg, #2aa8e2 0%, #2af4e2 100%);
  --grad-deep: linear-gradient(150deg, #11214a 0%, #203b80 55%, #2aa8e2 130%);
  --grad-warm: linear-gradient(135deg, #2aa8e2 0%, #44a189 100%);
  --grad-warm-deep: linear-gradient(135deg, #2f8f78 0%, #44a189 52%, #2aa8e2 130%);
  --grad-banner: var(--grad-deep);
  --c-banner-current: var(--c-secondary);
  --ff-display: "Baloo 2", "DM Sans", sans-serif;
  --ff-body: "Nunito Sans", sans-serif;
  --fs-base: 17px;
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;
  --sh-xs: 0 2px 8px rgba(32, 59, 128, .06);
  --sh-sm: 0 6px 18px rgba(32, 59, 128, .08);
  --sh-md: 0 14px 36px rgba(32, 59, 128, .12);
  --sh-lg: 0 28px 60px rgba(17, 33, 74, .18);
  --sh-glow: 0 16px 40px rgba(42, 168, 226, .35);
  --container: 1240px;
  --gutter: 24px;
  --section-y: 96px;
  --header-h: 84px;
}

@media (max-width: 1199.98px) {
  :root {
    --section-y: 80px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --section-y: 60px;
    --gutter: 16px;
    --fs-base: 16px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--c-body);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  color: var(--c-ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 3px solid rgba(42, 168, 226, 0.55);
  outline-offset: 2px;
}

::selection {
  background: var(--c-secondary);
  color: var(--c-primary-900);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.display-1 {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
}

.display-2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.h-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--c-body);
}

.grid {
  display: grid;
  gap: var(--gutter);
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (max-width: 991.98px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}
.text-center {
  text-align: center;
}

.text-grad {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-primary {
  color: var(--c-primary);
}

.text-white {
  color: #fff;
}

.bg-light {
  background: var(--c-light-2);
}

.bg-primary {
  background: var(--c-primary);
}

.bg-dark {
  background: var(--c-dark);
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-5 {
  margin-top: 48px;
}

.maxw-sm {
  max-width: 560px;
}

.maxw-md {
  max-width: 720px;
}

.mx-auto {
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn i, .btn svg {
  font-size: 1.1em;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:active {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(32, 59, 128, 0.28);
}

.btn--primary:hover {
  background: var(--c-primary-700);
  color: #fff;
  box-shadow: 0 16px 32px rgba(32, 59, 128, 0.36);
}

.btn--accent {
  background: var(--c-secondary);
  color: var(--c-primary-900);
  box-shadow: var(--sh-glow);
}

.btn--accent:hover {
  color: var(--c-primary-900);
  filter: brightness(1.04);
}

.btn--gradient {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(42, 168, 226, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--c-primary);
  box-shadow: var(--sh-sm);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.08rem;
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.9rem;
}

.btn--block {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-tertiary);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--c-secondary);
  border-radius: 2px;
}

.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--c-secondary);
  border-radius: 2px;
}

.section-head {
  margin-bottom: 52px;
}

.section-head .title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.section-head .desc {
  margin-top: 16px;
  color: var(--c-body);
  font-size: 1.06rem;
}

.section-head--center {
  text-align: center;
}
.section-head--center .desc {
  max-width: 640px;
  margin-inline: auto;
}

.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
}

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

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 30px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-xs);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.cat-card .ico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  font-size: 28px;
  color: var(--c-primary);
  background: var(--c-light);
  transition: all 0.35s ease;
}
.cat-card h3 {
  font-size: 1.22rem;
}
.cat-card p {
  font-size: 0.96rem;
  margin-top: -4px;
}
.cat-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--c-primary);
  font-size: 0.92rem;
}
.cat-card .more i {
  transition: transform 0.25s ease;
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(42, 168, 226, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.cat-card:hover .ico {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}
.cat-card:hover .more i {
  transform: translateX(5px);
}
.cat-card:hover::after {
  opacity: 1;
}

.project-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
}
.project-card .media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-primary);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
}
.project-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.project-card h3 {
  font-size: 1.2rem;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md);
}
.project-card:hover .media img {
  transform: scale(1.07);
}

.progress {
  /* Bootstrap'ın KENDİ .progress bileşen sınıfını (display:flex; height:1rem; overflow:hidden;
     background-color:...) nötrler — aynı isim çakışması .meta metnini 16px'e kırpıyordu. */
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  background: none;
  font-size: inherit;
  border-radius: 0;
}
.progress .bar {
  height: 10px;
  background: var(--c-light);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.progress .fill {
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: var(--grad-warm);
  transition: width 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.progress .meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.9rem;
}
.progress .meta b {
  color: var(--c-ink);
  font-family: var(--ff-display);
  font-size: 1.02rem;
}
.progress .meta .muted {
  color: var(--c-gray);
}

.stat {
  text-align: center;
}
.stat .num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--c-primary);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat .num .suf {
  color: var(--c-tertiary);
}
.stat .label {
  margin-top: 10px;
  font-size: 0.98rem;
  color: var(--c-body);
  font-weight: 600;
}

.news-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
}
.news-card .media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-card .date {
  font-size: 0.82rem;
  color: var(--c-tertiary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-card h3 {
  font-size: 1.12rem;
  line-height: 1.3;
}
.news-card .more {
  margin-top: auto;
  font-weight: 700;
  color: var(--c-primary);
  font-size: 0.9rem;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.news-card .more i {
  transition: transform 0.25s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}
.news-card:hover .media img {
  transform: scale(1.06);
}
.news-card:hover .more i {
  transform: translateX(4px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--c-light);
  color: var(--c-primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.chip--glass {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.donate-box {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 30px;
  border: 1px solid var(--c-line);
}
.donate-box .dh {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--c-ink);
}
.donate-box .dprod {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--c-primary) 10%, #fff);
  color: var(--c-primary);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}
.donate-box .dprod i {
  font-size: 0.85rem;
}
.donate-box .dsub {
  font-size: 0.92rem;
  color: var(--c-gray);
  margin-top: 8px;
}
.donate-box .cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.donate-box .cat {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-line);
  background: #fff;
  color: var(--c-body);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}
.donate-box .cat:hover {
  border-color: var(--c-tertiary);
  color: var(--c-primary);
}
.donate-box .cat.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.donate-box .amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.donate-box .amount {
  padding: 16px 10px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-line);
  background: #fff;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--c-ink);
  transition: all 0.2s ease;
}
.donate-box .amount:hover {
  border-color: var(--c-tertiary);
}
.donate-box .amount.is-active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-glow);
}
.donate-box .field {
  margin-top: 16px;
  position: relative;
}
.donate-box .field input {
  width: 100%;
  padding: 16px 18px 16px 46px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  transition: border-color 0.2s ease;
}
.donate-box .field input:focus {
  outline: none;
  border-color: var(--c-tertiary);
}
.donate-box .field .cur {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color: var(--c-primary);
  font-family: var(--ff-display);
}
.donate-box .btn {
  margin-top: 18px;
}
.donate-box .secure {
  margin-top: 14px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-gray);
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.field-line input, .field-line select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  background: #fff;
  transition: border-color 0.2s ease;
}
.field-line input:focus, .field-line select:focus {
  outline: none;
  border-color: var(--c-tertiary);
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-item .vi-ico {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--c-light);
  color: var(--c-primary);
  font-size: 22px;
}
.value-item h4 {
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.value-item p {
  font-size: 0.96rem;
}

.dot-sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-secondary);
  margin: 0 10px;
  vertical-align: middle;
}

.donate-pick {
  --dp-h: 46px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dp-opts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 8px;
}

.dp-opt {
  min-height: 50px;
  padding: 7px 6px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-line);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--c-body);
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
  transition: all 0.2s ease;
  cursor: pointer;
}
.dp-opt .u {
  display: block;
}
.dp-opt .a {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  color: var(--c-ink);
  white-space: nowrap;
}
.dp-opt:hover {
  border-color: var(--c-tertiary);
}
.dp-opt.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.dp-opt.is-active .a {
  color: #fff;
}

.dp-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.dp-input {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: var(--dp-h);
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #fff;
}
.dp-input .cur {
  display: grid;
  place-items: center;
  padding: 0 10px;
  font-weight: 800;
  color: var(--c-primary);
  font-family: var(--ff-display);
  background: var(--c-light-2);
}
.dp-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 10px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-ink);
  background: #fff;
  -moz-appearance: textfield;
}
.dp-input input:focus {
  outline: none;
}
.dp-input input::-webkit-outer-spin-button, .dp-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dp-input .step {
  flex: 0 0 30px;
  width: 30px;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  border: 0;
  border-left: 1.5px solid var(--c-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.dp-input .step:hover {
  transform: none;
  box-shadow: none;
}
.dp-input .step button {
  flex: 1;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  color: var(--c-primary);
  font-size: 0.72rem;
  background: var(--c-light-2);
  transition: all 0.15s ease;
  cursor: pointer;
}
.dp-input .step button:hover {
  background: var(--c-primary);
  color: #fff;
}
.dp-input .step button + button {
  border-top: 1.5px solid var(--c-line);
}

.dp-row .btn {
  flex: 0 0 auto;
  height: var(--dp-h);
  padding: 0 18px;
  font-size: 0.9rem;
}

.theme-v3 .dp-opt.is-active {
  background: var(--c-success);
  border-color: var(--c-success);
}

.sw-scope .project-card {
  height: 100%;
}

.project-card .body .donate-pick {
  margin-top: auto;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: start center;
  padding: clamp(56px, 12vh, 140px) 20px 20px;
  background: rgba(11, 21, 46, 0.55);
  backdrop-filter: blur(6px);
}

.search-modal__box {
  width: min(640px, 100%);
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 10px 10px 20px;
  animation: sm-pop 0.25s ease;
}

@keyframes sm-pop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.search-modal__form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 2px solid var(--c-line);
}
.search-modal__form > .bi-search {
  font-size: 1.3rem;
  color: var(--c-primary);
}
.search-modal__form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--ff-body);
  font-size: 1.1rem;
  color: var(--c-ink);
  padding: 10px 0;
}
.search-modal__form input::placeholder {
  color: var(--c-muted);
}

.search-modal__close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-light-2);
  color: var(--c-body);
  transition: all 0.2s ease;
}
.search-modal__close:hover {
  background: var(--c-primary);
  color: #fff;
}

.search-modal__hint {
  padding: 16px 10px 0;
}
.search-modal__hint .lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gray);
  margin-bottom: 10px;
}
.search-modal__hint .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-modal__hint .chips a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--c-light-2);
  color: var(--c-body);
  font-weight: 600;
  font-size: 0.86rem;
  transition: all 0.2s ease;
}
.search-modal__hint .chips a i {
  color: var(--c-primary);
}
.search-modal__hint .chips a:hover {
  background: var(--c-primary);
  color: #fff;
}
.search-modal__hint .chips a:hover i {
  color: #fff;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 991.98px) {
  .quick-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--c-body);
}
.check-list i {
  color: var(--c-tertiary);
  font-size: 1.15rem;
  margin-top: 2px;
  flex: 0 0 auto;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stats-band {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 20px;
}
.stats-band .stat {
  padding: 8px 16px;
  position: relative;
}
.stats-band .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: var(--c-line);
}
@media (max-width: 767.98px) {
  .stats-band {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }
  .stats-band .stat:nth-child(3)::before, .stats-band .stat + .stat::before {
    display: none;
  }
}

.campaign-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.campaign-feature .cf-media {
  position: relative;
  min-height: 340px;
}
.campaign-feature .cf-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.campaign-feature .cf-body {
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.campaign-feature .cf-body .chip {
  margin-bottom: 6px;
}
.campaign-feature .cf-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
@media (max-width: 991.98px) {
  .campaign-feature {
    grid-template-columns: 1fr;
  }
  .campaign-feature .cf-media {
    min-height: 240px;
  }
}

.transparency-media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  object-fit: cover;
}

.section-head--between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head--between .title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.sw-scope {
  position: relative;
}

.sw-scope .swiper {
  padding-bottom: 6px;
}

.sw-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.sw-prev, .sw-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1.5px solid var(--c-line);
  color: var(--c-primary);
  font-size: 1.1rem;
  transition: all 0.25s ease;
}
.sw-prev:hover, .sw-next:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  transform: translateY(-2px);
}
.sw-prev.swiper-button-disabled, .sw-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
  background: #fff;
  color: var(--c-primary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 36px 30px;
  box-shadow: var(--sh-xs);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step .n {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.96rem;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.vlog-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 991.98px) {
  .vlog-grid {
    grid-template-columns: 1fr;
  }
}

.play-btn {
  position: relative;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--c-primary);
  font-size: 1.9rem;
  box-shadow: var(--sh-lg);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.play-btn::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.play-btn--sm {
  width: 46px;
  height: 46px;
  font-size: 1.15rem;
  box-shadow: var(--sh-md);
}

.vid-feature {
  position: relative;
  display: block;
  width: 100%;
  min-height: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.vid-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.vid-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(17, 33, 74, 0.92) 4%, rgba(17, 33, 74, 0.34) 44%, rgba(17, 33, 74, 0.04) 72%);
}
.vid-feature .play-btn {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.vid-feature .vid-feature__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 38px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vid-feature .vid-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-secondary);
  color: var(--c-primary-900);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 7px 14px;
  border-radius: var(--r-pill);
}
.vid-feature h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.14;
  max-width: 20ch;
}
.vid-feature .vid-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.vid-feature .vid-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vid-feature:hover img {
  transform: scale(1.05);
}
.vid-feature:hover .play-btn {
  background: var(--c-primary);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.06);
}
.vid-feature:hover .play-btn::after {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 991.98px) {
  .vid-feature {
    min-height: 320px;
  }
}

.vid-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.vid-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 12px;
  box-shadow: var(--sh-xs);
  cursor: pointer;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.vid-item .vid-thumb {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--r-sm);
  overflow: hidden;
}
.vid-item .vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vid-item .vid-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 33, 74, 0.2);
}
.vid-item .vid-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.vid-item .vid-info {
  min-width: 0;
}
.vid-item .vid-info .vid-cat {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-tertiary);
}
.vid-item .vid-info h4 {
  font-size: 1.02rem;
  line-height: 1.28;
  margin: 5px 0 8px;
  color: var(--c-ink);
}
.vid-item .vid-info .vid-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  font-size: 0.82rem;
  color: var(--c-gray);
  font-weight: 600;
}
.vid-item .vid-info .vid-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.vid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.vid-item:hover .vid-thumb img {
  transform: scale(1.07);
}
.vid-item:hover .play-btn {
  background: var(--c-primary);
  color: #fff;
}
@media (max-width: 575.98px) {
  .vid-item {
    grid-template-columns: 116px 1fr;
    gap: 12px;
  }
}

.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 21, 46, 0.88);
  backdrop-filter: blur(6px);
}

.vid-modal__inner {
  position: relative;
  width: min(960px, 94vw);
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  background: #000;
}
.vid-modal__inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: var(--r-md);
}

.vid-modal__close {
  position: absolute;
  top: -54px;
  right: 0;
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: all 0.2s ease;
}
.vid-modal__close:hover {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
  transform: rotate(90deg);
}
@media (max-width: 767.98px) {
  .vid-modal__close {
    top: 8px;
    right: 8px;
    background: rgba(11, 21, 46, 0.62);
  }
}

.faq-home__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 991.98px) {
  .faq-home__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.faq-home__intro .title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}
.faq-home__intro .desc {
  margin-top: 16px;
  color: var(--c-body);
  font-size: 1.04rem;
}

.faq-card {
  margin-top: 28px;
  background: var(--grad-deep);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px 28px 30px;
  position: relative;
  overflow: hidden;
}
.faq-card::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -12%;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(42, 244, 226, 0.28), transparent 65%);
}
.faq-card > * {
  position: relative;
  z-index: 1;
}
.faq-card .fc-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.faq-card h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.faq-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.faq-card .faq-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.theme-v3 .vid-feature .vid-tag {
  background: var(--c-success);
  color: #fff;
}
.theme-v3 .vid-item .vid-info .vid-cat {
  color: var(--c-success);
}
.theme-v3 .vid-feature:hover .play-btn, .theme-v3 .vid-item:hover .play-btn {
  background: var(--c-success);
}

.topbar {
  background: var(--c-primary-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}
.topbar .inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.topbar a {
  color: rgba(255, 255, 255, 0.82);
}
.topbar a:hover {
  color: #fff;
}
.topbar .tb-left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar .tb-left a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar .tb-social {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
}
.topbar .tb-lang a {
  font-weight: 700;
}
.topbar .tb-lang .sep {
  opacity: 0.4;
  margin: 0 2px;
}
.topbar .tb-kumbara {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 700;
}
.topbar .tb-kumbara i {
  color: var(--c-secondary);
}
@media (max-width: 991.98px) {
  .topbar .tb-left {
    gap: 14px;
  }
  .topbar .tb-left .hide-md {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .topbar {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-stuck {
  box-shadow: var(--sh-sm);
}
.site-header .inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--header-h);
}
.site-header .brand {
  flex: 0 0 auto;
  line-height: 0;
}
.site-header .brand img {
  height: 50px;
  width: auto;
  max-width: none;
  display: block;
}
.site-header .nav {
  margin-left: auto;
}
.site-header .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-header .nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  border-radius: var(--r-pill);
  font-weight: 600;
  color: var(--c-ink);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.site-header .nav-list > li > a:hover {
  color: var(--c-primary);
  background: var(--c-light-2);
}
.site-header .has-drop {
  position: relative;
}
.site-header .has-drop > a .caret {
  font-size: 0.7rem;
  opacity: 0.65;
  transition: transform 0.25s ease;
}
.site-header .has-drop:hover > a .caret {
  transform: rotate(180deg);
}
.site-header .has-drop .drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}
.site-header .has-drop .drop a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--r-xs);
  font-weight: 600;
  color: var(--c-body);
  font-size: 0.94rem;
}
.site-header .has-drop .drop a:hover {
  background: var(--c-light-2);
  color: var(--c-primary);
}
.site-header .has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.site-header .has-mega {
  position: relative;
}
.site-header .has-mega .mega-caret {
  font-size: 0.7rem;
  opacity: 0.8;
  margin-left: 2px;
  transition: transform 0.25s ease;
}
.site-header .has-mega:hover .mega-caret {
  transform: rotate(180deg);
}
.site-header .mega {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 760px;
  max-width: calc(100vw - 40px);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}
.site-header .mega::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.site-header .has-mega:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.site-header .mega-inner {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  position: relative;
  display: grid;
  grid-template-columns: 244px 1fr;
}
.site-header .mega-inner::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 40px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid var(--c-line);
  border-top: 1px solid var(--c-line);
  transform: rotate(45deg);
  border-radius: 3px 0 0 0;
}
.site-header .mega-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  background: var(--c-light-2);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  border-right: 1px solid var(--c-line);
}
.site-header .mega-tab {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-body);
  text-align: left;
  transition: all 0.18s ease;
}
.site-header .mega-tab .tb-ico {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--c-primary);
  font-size: 1rem;
  box-shadow: var(--sh-xs);
  transition: all 0.18s ease;
}
.site-header .mega-tab .tb-label {
  flex: 1 1 auto;
}
.site-header .mega-tab .tb-arrow {
  font-size: 0.72rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.18s ease;
}
.site-header .mega-tab:hover, .site-header .mega-tab.is-active {
  background: #fff;
  color: var(--c-primary);
  box-shadow: var(--sh-xs);
}
.site-header .mega-tab:hover .tb-ico, .site-header .mega-tab.is-active .tb-ico {
  background: var(--c-primary);
  color: #fff;
}
.site-header .mega-tab:hover .tb-arrow, .site-header .mega-tab.is-active .tb-arrow {
  opacity: 0.7;
  transform: none;
}
.site-header .mega-panes {
  padding: 16px;
}
.site-header .mega-pane {
  display: grid;
  gap: 10px;
}
.site-header .mega-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  background: #fff;
  transition: all 0.18s ease;
}
.site-header .mega-card .mc-img {
  flex: 0 0 auto;
  width: 76px;
  height: 60px;
  border-radius: var(--r-sm);
  object-fit: cover;
}
.site-header .mega-card .mc-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}
.site-header .mega-card .mc-txt b {
  font-size: 0.92rem;
  color: var(--c-ink);
  font-weight: 700;
}
.site-header .mega-card .mc-txt small {
  font-size: 0.78rem;
  color: var(--c-gray);
}
.site-header .mega-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--sh-sm);
  transform: translateY(-1px);
}
.site-header .mega-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 11px;
  border-radius: var(--r-md);
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.site-header .mega-all i {
  transition: transform 0.2s ease;
}
.site-header .mega-all:hover i {
  transform: translateX(4px);
}
@media (max-width: 1199.98px) {
  .site-header .has-mega .mega {
    display: none;
  }
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header .icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-light-2);
  color: var(--c-primary);
  font-size: 1.1rem;
  position: relative;
  transition: all 0.2s ease;
}
.site-header .icon-btn:hover {
  background: var(--c-primary);
  color: #fff;
}
.site-header .icon-btn .dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-secondary);
  border: 2px solid #fff;
}
.site-header .burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--r-xs);
  background: var(--c-light-2);
  color: var(--c-primary);
  font-size: 1.4rem;
  place-items: center;
}
@media (max-width: 1199.98px) {
  .site-header .nav {
    display: none;
  }
  .site-header .burger {
    display: grid;
  }
}
@media (max-width: 767.98px) {
  .site-header .brand img {
    height: 42px;
  }
  .site-header .header-actions .btn-cta-text {
    display: none;
  }
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 33, 74, 0.5);
  backdrop-filter: blur(2px);
  z-index: 200;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: #fff;
  z-index: 210;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  box-shadow: var(--sh-lg);
}
.drawer .d-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.drawer .d-top img {
  height: 44px;
}
.drawer .d-top .close {
  font-size: 1.6rem;
  color: var(--c-ink);
}
.drawer nav a {
  display: block;
  padding: 14px 6px;
  border-bottom: 1px solid var(--c-line);
  font-weight: 600;
  color: var(--c-ink);
}
.drawer nav a:hover {
  color: var(--c-primary);
}
.drawer .d-sub a {
  padding-left: 22px;
  font-size: 0.94rem;
  color: var(--c-body);
  font-weight: 500;
}
.drawer .d-cats-title {
  display: block;
  margin: 20px 0 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gray);
}
.drawer .d-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.drawer .d-cat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-light-2);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--c-ink);
  transition: all 0.18s ease;
}
.drawer .d-cat i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--c-primary);
  font-size: 1.05rem;
  box-shadow: var(--sh-xs);
}
.drawer .d-cat:hover {
  border-color: var(--c-primary);
  background: #fff;
  transform: translateY(-1px);
}
.drawer .d-cat:hover i {
  background: var(--c-primary);
  color: #fff;
}
.drawer .btn {
  margin-top: 22px;
}

.drawer-enter {
  animation: drawerIn 0.3s ease both;
}

@keyframes drawerIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: none;
  }
}
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--grad-deep);
  color: #fff;
  padding: 56px clamp(28px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
  max-width: 520px;
}
.cta-band .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(42, 244, 226, 0.3), transparent 65%);
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -70%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(42, 168, 226, 0.28), transparent 65%);
}
.cta-band > * {
  position: relative;
  z-index: 1;
}

.newsletter {
  display: flex;
  gap: 10px;
  max-width: 460px;
}
.newsletter input {
  flex: 1;
  padding: 15px 18px;
  border-radius: var(--r-pill);
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(4px);
}
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 575.98px) {
  .newsletter {
    flex-direction: column;
  }
}

.site-footer {
  background: var(--c-primary-900);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(42, 168, 226, 0.18), transparent 70%);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}
.site-footer a:hover {
  color: #fff;
}
.site-footer .f-grid {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  /* marka + 3 link grubu (Kurumsal/Bağış/Projelerimiz) + İletişim = 5 kolon;
     4 kolonda İletişim alt satıra kayıyordu. */
  grid-template-columns: 1.6fr repeat(3, 1fr) 1.3fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.site-footer .f-brand .logo-pill {
  display: inline-flex;
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--r-md);
}
.site-footer .f-brand img {
  height: 46px;
}
.site-footer .f-brand p {
  margin-top: 18px;
  max-width: 320px;
  font-size: 0.95rem;
}
.site-footer .f-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.site-footer .f-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}
.site-footer .f-social a:hover {
  background: var(--c-secondary);
  color: var(--c-primary-900);
  transform: translateY(-3px);
}
.site-footer .f-col h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.site-footer .f-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}
.site-footer .f-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer .f-col a:hover {
  padding-left: 4px;
}
.site-footer .f-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  align-items: flex-start;
}
.site-footer .f-contact li i {
  color: var(--c-secondary);
  font-size: 1.1rem;
  margin-top: 3px;
}
.site-footer .f-banks {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .f-banks .lbl {
  font-weight: 700;
  color: #fff;
  margin-right: 8px;
}
.site-footer .f-banks .bank {
  background: #fff;
  border-radius: var(--r-xs);
  padding: 8px 12px;
  height: 44px;
  display: grid;
  place-items: center;
}
.site-footer .f-banks .bank img {
  height: 22px;
  width: auto;
}
.site-footer .f-bottom {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .f-bottom .inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 0.88rem;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .site-footer .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .site-footer .f-grid {
    grid-template-columns: 1fr;
  }
}

.float-donate {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  box-shadow: 0 12px 30px rgba(32, 59, 128, 0.4);
}

/* Sabit yan butonlar (WhatsApp + yukarı çık). WhatsApp şablonu aktifken widget
   inline CSS'i .side-buttons'ı yukarı iter; burada temel konum/görünüm verilir. */
.side-buttons {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  background: var(--c-primary);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.28);
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.3s ease;
}
.side-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}
.side-btn.wp {
  background: #25d366;
}
.side-btn.wp:hover {
  background: #1ebe5b;
}
/* Yukarı çık: sayfa yukarıdayken gizli, 400px kaydırınca görünür (theme.js) */
.side-btn.up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}
.side-btn.up.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
@media (max-width: 767.98px) {
  .side-buttons {
    right: 14px;
  }
  .side-btn {
    width: 44px;
    height: 44px;
  }
}

.tabbar {
  display: none;
}

@media (max-width: 767.98px) {
  .tabbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: #fff;
    border-top: 1px solid var(--c-line);
    box-shadow: 0 -6px 22px rgba(17, 33, 74, 0.1);
    padding: 7px 4px calc(7px + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    align-items: stretch;
  }
  .tabbar__item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 2px;
    color: var(--c-gray);
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1.1;
  }
  .tabbar__item i {
    font-size: 1.3rem;
  }
  .tabbar__item.is-active {
    color: var(--c-primary);
  }
  body {
    padding-bottom: 70px;
  }
  .site-header .has-mega {
    display: none;
  }
  .site-header .burger {
    display: none;
  }
}
.sec-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.theme-v1 {
  --section-y: 100px;
}
.theme-v1 .v1-hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background: radial-gradient(60% 80% at 90% 0%, rgba(42, 168, 226, 0.1), transparent 60%), radial-gradient(50% 60% at 0% 100%, rgba(42, 244, 226, 0.1), transparent 60%), var(--c-white);
}
.theme-v1 .v1-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.theme-v1 .v1-hero__copy h1 {
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  color: var(--c-ink);
}
.theme-v1 .v1-hero__copy .lead {
  margin-top: 22px;
  font-size: 1.15rem;
  max-width: 520px;
}
.theme-v1 .v1-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.theme-v1 .v1-hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.theme-v1 .v1-hero__trust .avatars {
  display: flex;
}
.theme-v1 .v1-hero__trust .avatars span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -12px;
  background: var(--grad-cyan);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: var(--sh-xs);
}
.theme-v1 .v1-hero__trust .avatars span:first-child {
  margin-left: 0;
}
.theme-v1 .v1-hero__trust .t-text b {
  color: var(--c-ink);
  font-family: var(--ff-display);
}
.theme-v1 .v1-hero__trust .t-text {
  font-size: 0.92rem;
}
.theme-v1 .v1-hero__media {
  position: relative;
}
.theme-v1 .v1-hero__media > img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  object-fit: cover;
  aspect-ratio: 4/4.4;
}
.theme-v1 .v1-hero__media .float {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floaty 5s ease-in-out infinite;
}
.theme-v1 .v1-hero__media .float .fi {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--c-light);
  color: var(--c-primary);
  font-size: 22px;
}
.theme-v1 .v1-hero__media .float b {
  font-family: var(--ff-display);
  color: var(--c-ink);
  font-size: 1.25rem;
  display: block;
  line-height: 1;
}
.theme-v1 .v1-hero__media .float small {
  color: var(--c-gray);
  font-size: 0.82rem;
}
.theme-v1 .v1-hero__media .float--1 {
  top: 26px;
  left: -28px;
}
.theme-v1 .v1-hero__media .float--2 {
  bottom: 34px;
  right: -24px;
  animation-delay: 1.5s;
}
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.theme-v1 .sec-alt {
  background: var(--c-light-2);
}
.theme-v1 .v1-quickdon {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
@media (max-width: 991.98px) {
  .theme-v1 .v1-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .theme-v1 .v1-hero__media {
    max-width: 460px;
    margin-inline: auto;
  }
  .theme-v1 .v1-hero__media .float--1 {
    left: 0;
  }
  .theme-v1 .v1-hero__media .float--2 {
    right: 0;
  }
}

.theme-v2 {
  --section-y: 110px;
  --ff-display: "Archivo", "DM Sans", sans-serif;
  --ff-body: "Manrope", sans-serif;
}
.theme-v2 .display-1, .theme-v2 .v2-hero h1 {
  letter-spacing: -0.02em;
}
.theme-v2 .v2-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 30px) 0 90px;
  overflow: hidden;
  color: #fff;
}
.theme-v2 .v2-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.theme-v2 .v2-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-v2 .v2-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(17, 33, 74, 0.95) 0%, rgba(32, 59, 128, 0.86) 42%, rgba(42, 168, 226, 0.55) 100%);
}
.theme-v2 .v2-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(40% 60% at 85% 30%, rgba(42, 244, 226, 0.35), transparent 60%);
}
.theme-v2 .v2-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}
.theme-v2 .v2-hero__copy .chip {
  margin-bottom: 22px;
}
.theme-v2 .v2-hero__copy h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.04;
}
.theme-v2 .v2-hero__copy h1 em {
  font-style: normal;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.theme-v2 .v2-hero__copy .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  margin-top: 24px;
  max-width: 560px;
}
.theme-v2 .v2-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.theme-v2 .v2-hero__stats {
  display: flex;
  gap: 38px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.theme-v2 .v2-hero__stats .s b {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
  color: #fff;
}
.theme-v2 .v2-hero__stats .s b .suf {
  color: var(--c-secondary);
}
.theme-v2 .v2-hero__stats .s span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
.theme-v2 .v2-hero__stats .s + .s {
  padding-left: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-v2 .v2-hero__card .donate-box {
  background: rgba(255, 255, 255, 0.97);
}
.theme-v2 .v2-hero__cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  animation: cueBounce 1.8s ease-in-out infinite;
}
@keyframes cueBounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}
.theme-v2 .sec-dark {
  background: var(--grad-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.theme-v2 .sec-dark h2, .theme-v2 .sec-dark h3, .theme-v2 .sec-dark h4, .theme-v2 .sec-dark .num {
  color: #fff;
}
.theme-v2 .sec-dark .desc, .theme-v2 .sec-dark p {
  color: rgba(255, 255, 255, 0.82);
}
.theme-v2 .sec-dark .eyebrow {
  color: var(--c-secondary);
}
.theme-v2 .sec-dark .stat .num .suf {
  color: var(--c-secondary);
}
.theme-v2 .sec-dark::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(42, 168, 226, 0.25), transparent 65%);
}
.theme-v2 .sec-alt {
  background: var(--c-light-2);
}
.theme-v2 .section-head .title {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
}
.theme-v2 .cat-card {
  padding: 34px;
}
.theme-v2 .cat-card .ico {
  background: var(--grad-primary);
  color: #fff;
}
.theme-v2 .cat-card:hover .ico {
  transform: scale(1.08);
}
.theme-v2 .v2-campaign {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 48px;
}
.theme-v2 .v2-campaign img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.theme-v2 .v2-campaign::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 33, 74, 0.92), rgba(17, 33, 74, 0.2));
  z-index: 1;
}
.theme-v2 .v2-campaign > * {
  position: relative;
  z-index: 2;
}
.theme-v2 .v2-campaign h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 560px;
}
@media (max-width: 991.98px) {
  .theme-v2 .v2-hero {
    min-height: auto;
  }
  .theme-v2 .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .theme-v2 .v2-hero__card {
    max-width: 460px;
  }
}

.theme-v3 {
  --section-y: 96px;
  --ff-display: "Baloo 2", "DM Sans", sans-serif;
  --ff-body: "Nunito Sans", sans-serif;
  --c-light-2: #fbf5ea;
  background: var(--c-cream);
  --grad-banner: var(--grad-warm-deep);
  --c-banner-current: #d7fff4;
}
.theme-v3 .eyebrow {
  color: var(--c-success);
}
.theme-v3 .eyebrow::before, .theme-v3 .eyebrow::after {
  background: var(--c-success);
}
.theme-v3 .card, .theme-v3 .cat-card, .theme-v3 .project-card, .theme-v3 .news-card, .theme-v3 .donate-box {
  border-radius: var(--r-xl);
}
.theme-v3 .cat-card .ico, .theme-v3 .value-item .vi-ico {
  border-radius: 50%;
}
.theme-v3 .btn {
  box-shadow: 0 10px 22px rgba(68, 161, 137, 0.22);
}
.theme-v3 .btn--primary {
  background: var(--c-primary);
}
.theme-v3 .btn--accent {
  background: var(--c-success);
  color: #fff;
  box-shadow: 0 12px 26px rgba(68, 161, 137, 0.34);
}
.theme-v3 .cat-card .ico {
  background: #eafaf4;
  color: var(--c-success);
}
.theme-v3 .cat-card:hover .ico {
  background: var(--grad-warm);
  color: #fff;
}
.theme-v3 .progress .fill {
  background: var(--grad-warm);
}
.theme-v3 .v3-hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
  background: var(--c-cream);
}
.theme-v3 .v3-hero .blob {
  position: absolute;
  z-index: 0;
  filter: blur(2px);
  opacity: 0.55;
}
.theme-v3 .v3-hero .blob--1 {
  top: -120px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 30% 30%, #d6f6ef, #b9ecff);
  border-radius: 47% 53% 64% 36%/42% 47% 53% 58%;
}
.theme-v3 .v3-hero .blob--2 {
  bottom: -140px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 70% 30%, #fde6c8, #ffe0e8);
  border-radius: 63% 37% 41% 59%/53% 41% 59% 47%;
}
.theme-v3 .v3-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.theme-v3 .v3-hero__copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  color: var(--c-ink);
}
.theme-v3 .v3-hero__copy h1 .wavy {
  color: var(--c-success);
}
.theme-v3 .v3-hero__copy .lead {
  margin-top: 22px;
  font-size: 1.14rem;
  max-width: 500px;
}
.theme-v3 .v3-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.theme-v3 .v3-hero__pills {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.theme-v3 .v3-hero__pills .p {
  background: #fff;
  border-radius: var(--r-pill);
  padding: 10px 18px;
  box-shadow: var(--sh-xs);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.theme-v3 .v3-hero__pills .p i {
  color: var(--c-success);
}
.theme-v3 .v3-hero__media {
  position: relative;
}
.theme-v3 .v3-hero__media .ph {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 58% 42% 47% 53%/49% 51% 49% 51%;
  box-shadow: var(--sh-lg);
}
.theme-v3 .v3-hero__media .badge-soft {
  position: absolute;
  bottom: 18px;
  left: -10px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-v3 .v3-hero__media .badge-soft .e {
  font-size: 1.8rem;
}
.theme-v3 .v3-hero__media .badge-soft b {
  font-family: var(--ff-display);
  color: var(--c-ink);
  display: block;
  line-height: 1;
}
.theme-v3 .v3-hero__media .badge-soft small {
  color: var(--c-gray);
}
.theme-v3 .sec-soft {
  background: #fff;
}
.theme-v3 .sec-alt {
  background: var(--c-light-2);
}
.theme-v3 .v3-wave {
  display: block;
  width: 100%;
  height: 60px;
}
.theme-v3 .v3-value {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--sh-xs);
  height: 100%;
}
.theme-v3 .page-banner::before {
  background: radial-gradient(circle, rgba(42, 244, 226, 0.3), transparent 65%);
}
.theme-v3 .page-banner::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 65%);
}
.theme-v3 .widget-title i {
  color: var(--c-success);
}
.theme-v3 .filter-chip.is-active {
  background: var(--c-success);
  border-color: var(--c-success);
}
.theme-v3 .d-cat i {
  color: var(--c-success);
}
.theme-v3 .d-cat:hover {
  border-color: var(--c-success);
}
.theme-v3 .d-cat:hover i {
  background: var(--grad-warm);
  color: #fff;
}
.theme-v3 .tabbar__item.is-active {
  color: var(--c-success);
}
.theme-v3 .search-modal__form > .bi-search {
  color: var(--c-success);
}
.theme-v3 .search-modal__hint .chips a i {
  color: var(--c-success);
}
.theme-v3 .search-modal__hint .chips a:hover {
  background: var(--c-success);
}
.theme-v3 .search-modal__close:hover {
  background: var(--c-success);
}
.theme-v3 .mega-tab .tb-ico {
  color: var(--c-success);
}
.theme-v3 .mega-tab:hover, .theme-v3 .mega-tab.is-active {
  color: var(--c-success);
}
.theme-v3 .mega-tab:hover .tb-ico, .theme-v3 .mega-tab.is-active .tb-ico {
  background: var(--grad-warm);
  color: #fff;
}
.theme-v3 .mega-card:hover {
  border-color: var(--c-success);
}
.theme-v3 .mega-all {
  background: var(--c-success);
  box-shadow: 0 10px 22px rgba(68, 161, 137, 0.28);
}
.theme-v3 .donate-box .amount.is-active {
  background: var(--grad-warm);
}
.theme-v3 .donate-box .cat.is-active {
  background: var(--c-success);
  border-color: var(--c-success);
}
@media (max-width: 991.98px) {
  .theme-v3 .v3-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .theme-v3 .v3-hero__media {
    max-width: 440px;
    margin-inline: auto;
  }
}

.theme-v4 {
  --c-ink: #11214a;
  --c-body: #475067;
  --c-line: #e2e8f1;
  --c-light: #eef3f8;
  --c-light-2: #f4f8fb;
  --ff-display: "Libre Bodoni", Georgia, serif;
  --ff-body: "Public Sans", sans-serif;
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --section-y: 104px;
  background: #ffffff;
}
.theme-v4 h1, .theme-v4 h2, .theme-v4 h3, .theme-v4 .title, .theme-v4 .hs-title {
  letter-spacing: -0.01em;
  font-weight: 700;
}
.theme-v4 .section-head .title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.theme-v4 .btn {
  border-radius: var(--r-sm);
  font-weight: 800;
  letter-spacing: -0.01em;
  border-width: 2px;
}
.theme-v4 .btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: none;
  border-color: var(--c-primary);
}
.theme-v4 .btn--primary:hover {
  background: var(--c-primary-700);
  color: #fff;
  box-shadow: none;
}
.theme-v4 .btn--accent {
  background: var(--c-secondary);
  color: var(--c-primary-900);
  box-shadow: none;
}
.theme-v4 .btn--accent:hover {
  color: var(--c-primary-900);
  filter: brightness(1.04);
}
.theme-v4 .btn--gradient {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: none;
}
.theme-v4 .btn--outline {
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}
.theme-v4 .btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
}
.theme-v4 .btn--light {
  background: #fff;
  color: var(--c-primary);
}
.theme-v4 .btn:hover {
  transform: translateY(-2px);
}
.theme-v4 .topbar {
  background: var(--c-ink);
}
.theme-v4 .site-header {
  border-bottom: 2px solid var(--c-ink);
}
.theme-v4 .site-header.is-stuck {
  box-shadow: 0 2px 0 var(--c-ink);
}
.theme-v4 .nav-list > li > a {
  font-weight: 700;
  border-radius: var(--r-xs);
}
.theme-v4 .nav-list > li > a:hover {
  background: var(--c-light);
  color: var(--c-ink);
}
.theme-v4 .has-drop .drop {
  border: 2px solid var(--c-ink);
  border-radius: var(--r-md);
  box-shadow: 8px 8px 0 rgba(14, 15, 19, 0.12);
}
.theme-v4 .icon-btn {
  border-radius: var(--r-xs);
  background: var(--c-light);
  color: var(--c-ink);
}
.theme-v4 .icon-btn:hover {
  background: var(--c-ink);
  color: #fff;
}
.theme-v4 .icon-btn .dot {
  background: var(--c-secondary);
}
.theme-v4 .burger {
  border-radius: var(--r-xs);
}
.theme-v4 .eyebrow {
  color: var(--c-ink);
  font-weight: 800;
  letter-spacing: 0.2em;
}
.theme-v4 .eyebrow::before, .theme-v4 .eyebrow::after {
  background: var(--c-secondary);
  height: 3px;
  width: 24px;
  border-radius: 0;
}
.theme-v4 .hero-slider {
  background: transparent;
  padding: 14px 0 10px;
}
.theme-v4 .hs-thumbs {
  counter-reset: hsnum;
  gap: 0;
  border-bottom: 2px solid var(--c-line);
  padding: 0 0 0 2px;
  margin-bottom: 0;
}
.theme-v4 .hs-thumb {
  counter-increment: hsnum;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 14px 22px 16px;
  margin-bottom: -2px;
  border-bottom: 2px solid transparent;
  gap: 12px;
  align-items: baseline;
}
.theme-v4 .hs-thumb .t-img {
  display: none;
}
.theme-v4 .hs-thumb::before {
  content: counter(hsnum, decimal-leading-zero);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--c-line);
  transition: color 0.2s ease;
}
.theme-v4 .hs-thumb .t-label {
  color: var(--c-gray);
  font-weight: 700;
}
.theme-v4 .hs-thumb:hover {
  transform: none;
  border-color: var(--c-line);
}
.theme-v4 .hs-thumb:hover .t-label {
  color: var(--c-ink);
}
.theme-v4 .hs-thumb:hover::before {
  color: var(--c-ink);
}
.theme-v4 .hs-thumb.is-active {
  background: transparent;
  border-bottom-color: var(--c-ink);
}
.theme-v4 .hs-thumb.is-active::before {
  color: var(--c-secondary);
}
.theme-v4 .hs-thumb.is-active .t-label {
  color: var(--c-ink);
}
.theme-v4 .hero-swiper, .theme-v4 .hs-card {
  border-radius: var(--r-lg);
}
.theme-v4 .hs-card {
  border: 2px solid var(--c-ink);
  min-height: 520px;
  grid-template-columns: 1.05fr 0.95fr;
}
@media (max-width: 991.98px) {
  .theme-v4 .hs-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}
.theme-v4 .hs-media {
  position: relative;
  min-height: 320px;
}
@media (max-width: 991.98px) {
  .theme-v4 .hs-media {
    min-height: 240px;
  }
}
.theme-v4 .hs-media .hs-pill {
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-sm);
}
.theme-v4 .video-play i {
  border-radius: var(--r-sm);
}
.theme-v4 .hs-body {
  background: var(--c-ink);
  color: #fff;
  justify-content: center;
  padding: clamp(28px, 3.2vw, 52px);
}
.theme-v4 .hs-title {
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.04;
}
.theme-v4 .hs-text {
  color: rgba(255, 255, 255, 0.82);
}
.theme-v4 .hs-cat {
  color: var(--c-secondary);
}
.theme-v4 .hs-cat i {
  color: var(--c-secondary);
}
.theme-v4 .hs-amounts .amt {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
  border-radius: var(--r-sm);
  border-width: 2px;
}
.theme-v4 .hs-amounts .amt:hover {
  border-color: #fff;
  color: #fff;
}
.theme-v4 .hs-amounts .amt.is-active {
  background: var(--c-secondary);
  border-color: var(--c-secondary);
  color: var(--c-ink);
}
.theme-v4 .hs-input {
  border-radius: var(--r-sm);
  border-width: 2px;
  background: #fff;
  border-color: transparent;
}
.theme-v4 .hs-links a {
  color: #fff;
}
.theme-v4 .hs-nav {
  border-radius: var(--r-sm);
  border: 2px solid var(--c-ink);
  background: #fff;
  color: var(--c-ink);
}
.theme-v4 .hs-nav:hover {
  background: var(--c-ink);
  color: #fff;
}
@media (max-width: 767.98px) {
  .theme-v4 .hs-nav {
    display: none;
  }
}
.theme-v4 .cat-card, .theme-v4 .project-card, .theme-v4 .news-card, .theme-v4 .acc-item, .theme-v4 .stats-band, .theme-v4 .campaign-feature, .theme-v4 .vid-item, .theme-v4 .form-card, .theme-v4 .widget {
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: none;
}
.theme-v4 .cat-card:hover, .theme-v4 .project-card:hover, .theme-v4 .news-card:hover, .theme-v4 .vid-item:hover {
  border-color: var(--c-ink);
  box-shadow: 8px 8px 0 rgba(14, 15, 19, 0.08);
  transform: translateY(-4px);
}
.theme-v4 .cat-card .ico {
  border-radius: var(--r-sm);
  background: var(--c-light);
  color: var(--c-ink);
}
.theme-v4 .cat-card:hover .ico {
  background: var(--c-secondary);
  color: var(--c-ink);
  transform: none;
}
.theme-v4 .project-card .tag, .theme-v4 .news-card .date {
  color: var(--c-ink);
}
.theme-v4 .project-card .media .tag {
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-xs);
}
.theme-v4 .progress .fill {
  background: var(--c-ink);
}
.theme-v4 .stat .num {
  color: var(--c-ink);
}
.theme-v4 .stat .num .suf {
  color: var(--c-tertiary);
}
.theme-v4 .dp-opt {
  border-radius: var(--r-sm);
  border-width: 2px;
}
.theme-v4 .dp-opt.is-active {
  background: var(--c-ink);
  border-color: var(--c-ink);
}
.theme-v4 .dp-input {
  border-radius: var(--r-sm);
  border-width: 2px;
}
.theme-v4 .sw-prev, .theme-v4 .sw-next {
  border-radius: var(--r-sm);
  border: 2px solid var(--c-ink);
  color: var(--c-ink);
}
.theme-v4 .sw-prev:hover, .theme-v4 .sw-next:hover {
  background: var(--c-ink);
  color: #fff;
}
.theme-v4 .sec-alt {
  background: var(--c-light-2);
}
.theme-v4 .cta-band {
  background: var(--c-ink);
  border-radius: var(--r-lg);
}
.theme-v4 .cta-band::before, .theme-v4 .cta-band::after {
  display: none;
}
.theme-v4 .cta-band h2 {
  color: #fff;
}
.theme-v4 .cta-band p {
  color: rgba(255, 255, 255, 0.82);
}
.theme-v4 .cta-band .btn--accent {
  background: var(--c-secondary);
  color: var(--c-ink);
}
.theme-v4 .site-footer {
  background: var(--c-ink);
}
.theme-v4 .faq-card {
  background: var(--c-ink);
  border-radius: var(--r-lg);
}
.theme-v4 .faq-card::before {
  display: none;
}

.theme-v4 .v4-manifesto {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
@media (max-width: 991.98px) {
  .theme-v4 .v4-manifesto {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.theme-v4 .v4-manifesto .mf-kicker {
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-tertiary);
  font-size: 0.8rem;
}
.theme-v4 .v4-manifesto h2 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 18px;
  color: var(--c-ink);
}
.theme-v4 .v4-manifesto .mf-mark {
  background: var(--c-secondary);
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.theme-v4 .v4-manifesto .mf-side p {
  font-size: 1.08rem;
  color: var(--c-body);
}
.theme-v4 .v4-manifesto .mf-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.theme-v4 .v4-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
@media (max-width: 991.98px) {
  .theme-v4 .v4-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}
@media (max-width: 575.98px) {
  .theme-v4 .v4-bento {
    grid-template-columns: 1fr;
  }
}

.theme-v4 .bento-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  isolation: isolate;
}
.theme-v4 .bento-card .b-ico {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--c-light);
  color: var(--c-ink);
  font-size: 26px;
  z-index: 2;
  transition: all 0.25s ease;
}
.theme-v4 .bento-card h3 {
  font-size: 1.35rem;
  color: var(--c-ink);
  position: relative;
  z-index: 2;
}
.theme-v4 .bento-card p {
  font-size: 0.95rem;
  color: var(--c-body);
  margin-top: 6px;
  position: relative;
  z-index: 2;
}
.theme-v4 .bento-card .b-go {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--c-ink);
  position: relative;
  z-index: 2;
}
.theme-v4 .bento-card .b-go i {
  transition: transform 0.2s ease;
}
.theme-v4 .bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.theme-v4 .bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(14, 15, 19, 0.86), rgba(14, 15, 19, 0.18) 60%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.theme-v4 .bento-card:hover {
  border-color: var(--c-ink);
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(14, 15, 19, 0.1);
}
.theme-v4 .bento-card:hover .b-ico {
  background: var(--c-secondary);
}
.theme-v4 .bento-card:hover .b-go i {
  transform: translateX(5px);
}
.theme-v4 .bento-card.is-media {
  color: #fff;
  justify-content: flex-end;
}
.theme-v4 .bento-card.is-media .b-ico {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.theme-v4 .bento-card.is-media h3 {
  color: #fff;
}
.theme-v4 .bento-card.is-media p {
  color: rgba(255, 255, 255, 0.85);
}
.theme-v4 .bento-card.is-media .b-go {
  color: #fff;
}
.theme-v4 .bento-card.is-media img {
  opacity: 1;
}
.theme-v4 .bento-card.is-media::after {
  opacity: 1;
}
.theme-v4 .bento-card.is-media:hover img {
  transform: scale(1.05);
}
.theme-v4 .bento-card.span-2 {
  grid-column: span 2;
}
.theme-v4 .bento-card.row-2 {
  grid-row: span 2;
}
@media (max-width: 991.98px) {
  .theme-v4 .bento-card.span-2 {
    grid-column: span 2;
  }
  .theme-v4 .bento-card.row-2 {
    grid-row: span 1;
  }
}
@media (max-width: 575.98px) {
  .theme-v4 .bento-card.span-2 {
    grid-column: span 1;
  }
}

.theme-v4 .v4-transparency {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 991.98px) {
  .theme-v4 .v4-transparency {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.theme-v4 .alloc {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.theme-v4 .alloc-row .alloc-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.theme-v4 .alloc-row .alloc-top .k {
  font-weight: 800;
  color: var(--c-ink);
}
.theme-v4 .alloc-row .alloc-top .v {
  font-family: var(--ff-display);
  font-weight: 900;
  color: var(--c-ink);
  font-size: 1.15rem;
}
.theme-v4 .alloc-row .alloc-bar {
  height: 14px;
  background: var(--c-light);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.theme-v4 .alloc-row .alloc-fill {
  height: 100%;
  background: var(--c-ink);
  border-radius: var(--r-pill);
  width: 0;
  transition: width 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.theme-v4 .alloc-row:nth-child(1) .alloc-fill {
  background: var(--c-ink);
}
.theme-v4 .alloc-row:nth-child(2) .alloc-fill {
  background: var(--c-tertiary);
}
.theme-v4 .alloc-row:nth-child(3) .alloc-fill {
  background: var(--c-secondary);
}
.theme-v4 .alloc-row:nth-child(4) .alloc-fill {
  background: var(--c-success);
}

.theme-v4 .v4-trust-note {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.theme-v4 .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--c-ink);
}
.theme-v4 .trust-chip i {
  color: var(--c-success);
}

.theme-v4 .v4-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 991.98px) {
  .theme-v4 .v4-stories-grid {
    grid-template-columns: 1fr;
  }
}

.theme-v4 .story-card {
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.theme-v4 .story-card .q {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--c-secondary);
  font-family: var(--ff-display);
  font-weight: 900;
}
.theme-v4 .story-card p {
  color: var(--c-ink);
  font-size: 1.02rem;
  line-height: 1.55;
}
.theme-v4 .story-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.theme-v4 .story-card .who img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--c-line);
}
.theme-v4 .story-card .who b {
  display: block;
  color: var(--c-ink);
}
.theme-v4 .story-card .who span {
  font-size: 0.85rem;
  color: var(--c-gray);
}
.theme-v4 .story-card:hover {
  border-color: var(--c-ink);
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(14, 15, 19, 0.08);
}

.hero-slider {
  position: relative;
  padding: 30px 0 14px;
}

.hs-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px 16px;
  margin-bottom: 18px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.hs-thumbs::-webkit-scrollbar {
  height: 6px;
}
.hs-thumbs::-webkit-scrollbar-thumb {
  background: var(--c-line);
  border-radius: 10px;
}

.hs-thumb {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
  scroll-snap-align: start;
  padding: 8px 16px 8px 8px;
  border-radius: var(--r-pill);
  background: var(--c-white);
  border: 1.5px solid var(--c-line);
  transition: all 0.25s ease;
  cursor: pointer;
}
.hs-thumb .t-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid #fff;
  box-shadow: var(--sh-xs);
}
.hs-thumb .t-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hs-thumb .t-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-ink);
  white-space: nowrap;
}
.hs-thumb:hover {
  border-color: var(--c-tertiary);
  transform: translateY(-2px);
}
.hs-thumb.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
}
.hs-thumb.is-active .t-label {
  color: #fff;
}
.hs-thumb.is-active .t-img {
  border-color: rgba(255, 255, 255, 0.5);
}

.hs-frame {
  position: relative;
}

.hs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-primary);
  font-size: 1.2rem;
  box-shadow: var(--sh-md);
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}
.hs-nav:hover {
  background: var(--c-primary);
  color: #fff;
}
.hs-nav.hs-prev {
  left: -10px;
}
.hs-nav.hs-next {
  right: -10px;
}
@media (max-width: 767.98px) {
  .hs-nav {
    display: none;
  }
}

.hero-swiper {
  border-radius: var(--r-lg);
  overflow: hidden;
}

.hs-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 460px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .hs-card {
    grid-template-columns: 1fr;
  }
}

.hs-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.hs-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-media .video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.hs-media .video-play::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 33, 74, 0.28);
}
.hs-media .video-play i {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-primary);
  font-size: 2.1rem;
  box-shadow: var(--sh-lg);
  transition: transform 0.3s ease;
}
.hs-media .video-play:hover i {
  transform: scale(1.08);
}

.hs-media .hs-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--c-secondary);
  color: var(--c-primary-900);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}

.hs-body {
  padding: clamp(26px, 3.4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.hs-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-tertiary);
}

.hs-title {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.08;
  color: var(--c-ink);
}

.hs-text {
  color: var(--c-body);
  font-size: 1.02rem;
  max-width: 46ch;
}

.hs-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.hs-amounts .amt {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-line);
  background: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--c-body);
  transition: all 0.2s ease;
  line-height: 1.12;
  text-align: center;
}
.hs-amounts .amt:hover {
  border-color: var(--c-tertiary);
  color: var(--c-primary);
}
.hs-amounts .amt.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.hs-buy {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 4px;
  flex-wrap: wrap;
}

.hs-input {
  position: relative;
  flex: 0 0 auto;
  height: 48px;
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #fff;
}
.hs-input .cur {
  display: grid;
  place-items: center;
  padding: 0 13px;
  font-weight: 800;
  color: var(--c-primary);
  font-family: var(--ff-display);
  background: var(--c-light-2);
  font-size: 0.95rem;
}
.hs-input input {
  width: 88px;
  flex: 0 0 88px;
  border: none;
  padding: 0 12px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--c-ink);
  text-align: left;
  -moz-appearance: textfield;
}
.hs-input input:focus {
  outline: none;
}
.hs-input input::-webkit-outer-spin-button, .hs-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hs-input .step {
  display: flex;
  flex-direction: column;
  flex: 0 0 36px;
  width: 36px;
  padding: 0;
  margin: 0;
  border: 0;
  border-left: 1.5px solid var(--c-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hs-input .step:hover {
  transform: none;
  box-shadow: none;
}
.hs-input .step button {
  flex: 1;
  display: grid;
  place-items: center;
  color: var(--c-primary);
  font-size: 0.85rem;
  background: var(--c-light-2);
  transition: all 0.15s ease;
}
.hs-input .step button:hover {
  background: var(--c-primary);
  color: #fff;
}
.hs-input .step button + button {
  border-top: 1.5px solid var(--c-line);
}

.hs-buy .btn {
  flex: 0 0 auto;
  height: 48px;
  padding: 0 26px;
  font-size: 0.96rem;
}

.hs-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 4px;
  font-size: 0.92rem;
}

.hs-links a {
  font-weight: 700;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hs-links a i {
  transition: transform 0.2s ease;
}
.hs-links a:hover i {
  transform: translateX(4px);
}

.theme-v1 .hero-slider {
  background: radial-gradient(55% 70% at 92% 0%, rgba(42, 168, 226, 0.08), transparent 60%), var(--c-white);
}

.theme-v2 .hero-slider {
  padding-top: 0;
  background: var(--grad-deep);
}
.theme-v2 .hero-slider .container {
  max-width: 100%;
  padding: 0;
}
.theme-v2 .hs-thumbs {
  max-width: var(--container);
  margin-inline: auto;
  padding: 22px 24px 18px;
}
.theme-v2 .hs-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
.theme-v2 .hs-thumb .t-label {
  color: rgba(255, 255, 255, 0.92);
}
.theme-v2 .hs-thumb.is-active {
  background: var(--c-secondary);
  border-color: var(--c-secondary);
}
.theme-v2 .hs-thumb.is-active .t-label {
  color: var(--c-primary-900);
}
.theme-v2 .hs-frame {
  max-width: 100%;
}
.theme-v2 .hero-swiper, .theme-v2 .hs-card {
  border-radius: 0;
  border: 0;
}
.theme-v2 .hs-card {
  min-height: 600px;
  position: relative;
  grid-template-columns: 1fr;
}
.theme-v2 .hs-media {
  position: absolute;
  inset: 0;
}
.theme-v2 .hs-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17, 33, 74, 0.94) 0%, rgba(32, 59, 128, 0.72) 45%, rgba(17, 33, 74, 0.25) 100%);
}
.theme-v2 .hs-body {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding: clamp(40px, 6vw, 90px) 24px;
}
.theme-v2 .hs-title {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  max-width: 16ch;
}
.theme-v2 .hs-text {
  color: rgba(255, 255, 255, 0.88);
}
.theme-v2 .hs-cat {
  color: var(--c-secondary);
}
.theme-v2 .hs-amounts .amt {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.theme-v2 .hs-amounts .amt.is-active {
  background: var(--c-secondary);
  border-color: var(--c-secondary);
  color: var(--c-primary-900);
}
.theme-v2 .hs-input {
  background: rgba(255, 255, 255, 0.96);
  border-color: transparent;
}
.theme-v2 .hs-links a {
  color: #fff;
}
.theme-v2 .hs-nav {
  top: auto;
  bottom: 30px;
  transform: none;
}
.theme-v2 .hs-nav.hs-prev {
  left: auto;
  right: 84px;
}
.theme-v2 .hs-nav.hs-next {
  right: 24px;
}

.theme-v3 .hero-slider {
  background: var(--c-cream);
}
.theme-v3 .hs-card {
  border-radius: var(--r-xl);
}
.theme-v3 .hero-swiper {
  border-radius: var(--r-xl);
}
.theme-v3 .hs-thumb.is-active {
  background: var(--c-success);
  border-color: var(--c-success);
}
.theme-v3 .hs-cat {
  color: var(--c-success);
}
.theme-v3 .hs-amounts .amt.is-active {
  background: var(--c-success);
  border-color: var(--c-success);
}
.theme-v3 .hs-media .hs-pill {
  background: var(--c-success);
  color: #fff;
}
.theme-v3 .hs-input .cur {
  color: var(--c-success);
}

.page-banner {
  position: relative;
  overflow: hidden;
  background: var(--grad-banner);
  color: #fff;
  padding: clamp(26px, 3.4vw, 44px) 0;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -6%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(42, 168, 226, 0.28), transparent 65%);
}
.page-banner::after {
  content: "";
  position: absolute;
  bottom: -60%;
  left: -8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(42, 244, 226, 0.18), transparent 65%);
}
.page-banner .inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}
.page-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  max-width: 640px;
  font-size: 0.98rem;
}
.page-banner.page-banner--image .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner.page-banner--image .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner.page-banner--image .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17, 33, 74, 0.92), rgba(32, 59, 128, 0.72));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  margin-bottom: 10px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb .sep {
  opacity: 0.5;
}
.breadcrumb .current {
  color: var(--c-banner-current);
  font-weight: 600;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
}
.page-layout > * {
  min-width: 0;
}

.page-layout--left {
  grid-template-columns: 340px 1fr;
}
@media (max-width: 991.98px) {
  .page-layout--left {
    grid-template-columns: 1fr;
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
@media (max-width: 991.98px) {
  .sidebar {
    position: static;
  }
}

.widget {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 24px;
}
.widget .widget-title {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget .widget-title i {
  color: var(--c-tertiary);
}

.widget-list {
  display: flex;
  flex-direction: column;
}

.widget-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-body);
  font-weight: 600;
  font-size: 0.95rem;
}
.widget-list a:last-child {
  border-bottom: 0;
}
.widget-list a:hover {
  color: var(--c-primary);
  padding-left: 4px;
}
.widget-list a .count {
  background: var(--c-light);
  color: var(--c-gray);
  font-size: 0.8rem;
  padding: 2px 9px;
  border-radius: var(--r-pill);
}

.mini-post {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: center;
}
.mini-post:last-child {
  border-bottom: 0;
}
.mini-post img {
  width: 70px;
  height: 60px;
  border-radius: var(--r-xs);
  object-fit: cover;
  flex: 0 0 auto;
}
.mini-post .d {
  font-size: 0.78rem;
  color: var(--c-tertiary);
  font-weight: 700;
}
.mini-post h4 {
  font-size: 0.95rem;
  line-height: 1.3;
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--c-ink);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  background: var(--c-light-2);
  color: var(--c-body);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
}
.tag-cloud a:hover {
  background: var(--c-primary);
  color: #fff;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  align-items: center;
}

.filter-chip {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-line);
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-body);
  transition: all 0.2s ease;
  cursor: pointer;
}
.filter-chip:hover {
  border-color: var(--c-tertiary);
  color: var(--c-primary);
}
.filter-chip.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.campaign-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
}
.campaign-card .media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.campaign-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.campaign-card .cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-secondary);
  color: var(--c-primary-900);
  font-weight: 700;
  font-size: 0.76rem;
  padding: 6px 13px;
  border-radius: var(--r-pill);
}
.campaign-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.campaign-card h3 {
  font-size: 1.16rem;
  line-height: 1.3;
}
.campaign-card .desc {
  font-size: 0.92rem;
  color: var(--c-body);
}
.campaign-card .foot {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.campaign-card .progress {
  flex-shrink: 0;
}
.campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md);
}
.campaign-card:hover .media img {
  transform: scale(1.06);
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}

.pagination a, .pagination span {
  min-width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-line);
  background: #fff;
  font-weight: 700;
  color: var(--c-body);
  transition: all 0.2s ease;
}
.pagination a:hover, .pagination span:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.pagination .is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.form-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: clamp(24px, 4vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 767.98px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group > label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-ink);
}

.form-group .req {
  color: var(--c-primary);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  background: #fff;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--c-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control::placeholder {
  color: var(--c-muted);
}
.form-control:focus {
  outline: none;
  border-color: var(--c-tertiary);
  box-shadow: 0 0 0 4px rgba(42, 168, 226, 0.12);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888d99'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.input-icon {
  position: relative;
}
.input-icon .form-control {
  padding-left: 46px;
}
.input-icon > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-gray);
  font-size: 1.1rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--c-body);
}
.form-check input {
  width: 19px;
  height: 19px;
  accent-color: var(--c-primary);
  margin-top: 2px;
  flex: 0 0 auto;
}
.form-check a {
  color: var(--c-primary);
  font-weight: 600;
}

.form-hint {
  font-size: 0.84rem;
  color: var(--c-gray);
}

.seg {
  display: inline-flex;
  background: var(--c-light-2);
  border-radius: var(--r-pill);
  padding: 5px;
  gap: 4px;
}

.seg label {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.seg input {
  display: none;
}

.seg input:checked + label, .seg label.is-active {
  background: #fff;
  color: var(--c-primary);
  box-shadow: var(--sh-xs);
}

.auth {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
@media (max-width: 991.98px) {
  .auth {
    grid-template-columns: 1fr;
  }
}

.auth__visual {
  position: relative;
  overflow: hidden;
  background: var(--grad-banner);
  color: #fff;
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 991.98px) {
  .auth__visual {
    display: none;
  }
}
.auth__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  z-index: 0;
}
.auth__visual > * {
  position: relative;
  z-index: 1;
}
.auth__visual h2 {
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  max-width: 18ch;
}
.auth__visual p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 42ch;
}
.auth__visual .auth-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.auth__visual .auth-points span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.auth__visual .auth-points span i {
  color: var(--c-secondary);
}

.auth__form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.auth__form .box {
  width: 100%;
  max-width: 420px;
}
.auth__form .box .brand-mark {
  height: 50px;
  margin-bottom: 22px;
}
.auth__form .box h1 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.auth__form .box .sub {
  color: var(--c-body);
  margin-bottom: 26px;
}
.auth__form .box .alt {
  text-align: center;
  margin-top: 22px;
  font-size: 0.94rem;
  color: var(--c-body);
}
.auth__form .box .alt a {
  color: var(--c-primary);
  font-weight: 700;
}
.auth__form .box .divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--c-gray);
  font-size: 0.85rem;
}
.auth__form .box .divider::before, .auth__form .box .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-line);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acc-item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-ink);
  text-align: left;
  cursor: pointer;
}
.acc-head .ico {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-light);
  color: var(--c-primary);
  transition: all 0.3s ease;
}

.acc-item.is-open .acc-head .ico {
  background: var(--c-primary);
  color: #fff;
  transform: rotate(45deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.acc-body .inner {
  padding: 0 24px 22px;
  color: var(--c-body);
}

.acc-item.is-open .acc-body {
  max-height: 600px;
}

.tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 13px 20px;
  font-weight: 700;
  color: var(--c-body);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s ease;
}
.tab-btn:hover {
  color: var(--c-primary);
}
.tab-btn.is-active {
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: 0.86rem;
  color: var(--c-gray);
  font-weight: 600;
}
.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-meta i {
  color: var(--c-tertiary);
}
.post-meta .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-line);
}

.theme-v3 .post-meta i {
  color: var(--c-success);
}

.detail-gallery {
  position: relative;
}

.gallery-main {
  border-radius: var(--r-md);
  overflow: hidden;
  height: clamp(280px, 40vw, 460px);
  background: var(--c-light);
}
.gallery-main .swiper-wrapper {
  height: 100%;
}
.gallery-main .swiper-slide {
  position: relative;
  height: 100%;
}
.gallery-main .swiper-slide > a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-main .g-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-primary);
  font-size: 1.05rem;
  box-shadow: var(--sh-sm);
  pointer-events: none;
}
.gallery-main .g-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.gallery-main .g-play::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 33, 74, 0.28);
}
.gallery-main .g-play i {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-primary);
  font-size: 1.8rem;
  box-shadow: var(--sh-lg);
}
.gallery-main .gm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-primary);
  box-shadow: var(--sh-sm);
  transition: all 0.2s ease;
}
.gallery-main .gm-nav:hover {
  background: var(--c-primary);
  color: #fff;
}
.gallery-main .gm-nav.gm-prev {
  left: 14px;
}
.gallery-main .gm-nav.gm-next {
  right: 14px;
}
.gallery-main .gm-nav.swiper-button-disabled {
  opacity: 0.4;
}

.gallery-thumbs {
  margin-top: 12px;
}
.gallery-thumbs .swiper-slide {
  aspect-ratio: 16/11;
  border-radius: var(--r-xs);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--c-primary);
}

.iti {
  width: 100%;
  display: block;
}

.iti input, .iti input[type=tel], .iti input[type=text] {
  width: 100%;
}

.iti__selected-flag {
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}

.form-subhead {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--c-ink);
  margin: 30px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-subhead i {
  color: var(--c-tertiary);
}
.form-subhead:first-child {
  margin-top: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}
@media (max-width: 767.98px) {
  .check-grid {
    grid-template-columns: 1fr;
  }
}

.check-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .check-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .check-grid--3 {
    grid-template-columns: 1fr;
  }
}

.donate-panel {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 26px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.donate-panel .amt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}
@media (max-width: 991.98px) {
  .donate-panel {
    position: static;
  }
}

.prose {
  color: var(--c-body);
  font-size: 1.05rem;
  line-height: 1.8;
}
.prose h2 {
  font-size: 1.5rem;
  margin: 28px 0 14px;
}
.prose h3 {
  font-size: 1.2rem;
  margin: 22px 0 10px;
}
.prose p {
  margin-bottom: 16px;
}
.prose ul, .prose ol {
  margin: 0 0 16px 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose ul {
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose blockquote {
  border-left: 4px solid var(--c-secondary);
  background: var(--c-light-2);
  padding: 18px 22px;
  border-radius: var(--r-sm);
  margin: 20px 0;
  font-style: italic;
  color: var(--c-ink);
}
.prose img {
  border-radius: var(--r-md);
  margin: 20px 0;
}
.prose a {
  color: var(--c-primary);
  font-weight: 600;
  text-decoration: underline;
}

.bank-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bank-card .bank-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bank-card .bank-head .logo {
  height: 40px;
  width: auto;
}
.bank-card .bank-head .cur {
  margin-left: auto;
  background: var(--c-light);
  color: var(--c-primary);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.bank-card .iban {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--c-light-2);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}
.bank-card .iban code {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  font-size: 1.02rem;
}
.bank-card .iban .copy {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: var(--r-xs);
  background: #fff;
  border: 1px solid var(--c-line);
  color: var(--c-primary);
}
.bank-card .iban .copy:hover {
  background: var(--c-primary);
  color: #fff;
}
.bank-card .bank-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
}
.bank-card .bank-row .k {
  color: var(--c-gray);
}
.bank-card .bank-row .v {
  font-weight: 600;
  color: var(--c-ink);
}

.bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}
.bank-row .k {
  color: var(--c-gray);
}
.bank-row .v {
  font-weight: 600;
  color: var(--c-ink);
}

.dash {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .dash {
    grid-template-columns: 1fr;
  }
}

.dash-nav {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 14px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
@media (max-width: 991.98px) {
  .dash-nav {
    position: static;
  }
}
.dash-nav .u {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 8px;
}
.dash-nav .u .ava {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-cyan);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--ff-display);
}
.dash-nav .u b {
  color: var(--c-ink);
  display: block;
}
.dash-nav .u small {
  color: var(--c-gray);
}
.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-xs);
  color: var(--c-body);
  font-weight: 600;
  font-size: 0.95rem;
}
.dash-nav a i {
  color: var(--c-gray);
}
.dash-nav a:hover {
  background: var(--c-light-2);
  color: var(--c-primary);
}
.dash-nav a:hover i {
  color: var(--c-primary);
}
.dash-nav a.is-active {
  background: var(--c-primary);
  color: #fff;
}
.dash-nav a.is-active i {
  color: #fff;
}

.table-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.table th {
  text-align: left;
  background: var(--c-light-2);
  color: var(--c-ink);
  font-weight: 700;
  padding: 15px 18px;
  white-space: nowrap;
}
.table td {
  padding: 15px 18px;
  border-top: 1px solid var(--c-line);
  color: var(--c-body);
}
.table tr:hover td {
  background: var(--c-light-2);
}

.badge-status {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.badge-status.ok {
  background: rgba(68, 161, 137, 0.14);
  color: #2f7a66;
}

.badge-status.wait {
  background: rgba(240, 164, 41, 0.16);
  color: #a9710f;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767.98px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 28px;
  text-align: center;
}
.contact-card .ico {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-light);
  color: var(--c-primary);
  font-size: 1.5rem;
}
.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.contact-card p {
  color: var(--c-body);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.2);
}

.zekat-result {
  background: var(--grad-banner);
  color: #fff;
  border-radius: var(--r-md);
  padding: 28px;
  text-align: center;
}
.zekat-result .label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.zekat-result .amount {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 8px 0;
  color: #fff;
}
.zekat-result .amount .c {
  color: var(--c-secondary);
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 0;
}
.error-page .big {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(6rem, 18vw, 12rem);
  line-height: 1;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-page h1 {
  margin: 8px 0 12px;
}
.error-page p {
  color: var(--c-body);
  max-width: 460px;
  margin: 0 auto 26px;
}

.lead-narrow {
  max-width: 720px;
}

.table-card {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {
  .table {
    min-width: 560px;
  }
}
@media (max-width: 767.98px) {
  .seg {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  .seg label {
    flex: 1 1 auto;
    text-align: center;
  }
  .hs-buy {
    flex-direction: column;
    align-items: stretch;
  }
  .hs-input {
    width: 100%;
  }
  .hs-input input {
    flex: 1 1 auto;
    width: auto;
  }
  .hs-buy .btn {
    width: 100%;
    justify-content: center;
  }
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .filter-bar .filter-chip {
    flex: 0 0 auto;
  }
  .donate-panel, .dash-nav, .sidebar {
    position: static;
  }
  .page-banner {
    padding: 22px 0 24px;
  }
}
@media (max-width: 767.98px) {
  .pagination {
    flex-wrap: wrap;
  }
}
.table td, .table th {
  word-break: break-word;
}
