/* HelpCharityFoundation — red, white, black */

:root {
  --red: #c41e3a;
  --red-dark: #9b1530;
  --red-soft: #fde8ec;
  --black: #0a0a0a;
  --gray-900: #141414;
  --gray-700: #3d3d3d;
  --gray-500: #737373;
  --gray-200: #e8e8e8;
  --gray-100: #f4f4f4;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 10, 10, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1200px;
  --header-h: 72px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--black);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--black);
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.85;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.logo-text span {
  font-weight: 600;
  color: var(--red);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 0.35rem 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}

.nav-list a:hover {
  color: var(--black);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-inner > .btn-header {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--black);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--gray-500);
  color: var(--black);
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

a.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  box-shadow: var(--shadow-sm);
}

a.btn-header:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 4.5rem) 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--red-soft) 45%, var(--white) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(10, 10, 10, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0 0 1rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  margin: 0 0 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-campaigns {
  background: var(--gray-100);
}

.section-products {
  background: var(--white);
}

.section-money {
  background: var(--black);
  color: var(--white);
}

.section-transform {
  background: var(--gray-100);
}

.section-proof {
  background: var(--white);
}

.section-trust {
  background: var(--red-soft);
  border-top: 1px solid rgba(196, 30, 58, 0.12);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head--light .section-title,
.section-head--light .section-desc {
  color: var(--white);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.section-desc {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.0625rem;
}

.section-head--light .section-desc {
  opacity: 0.88;
}

/* Campaign cards */
.campaign-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

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

.campaign-card--alt {
  direction: rtl;
}

.campaign-card--alt > * {
  direction: ltr;
}

.campaign-gallery {
  position: relative;
  background: var(--gray-900);
  min-height: 320px;
}

.campaign-slides {
  position: relative;
  aspect-ratio: 4 / 3;
}

.campaign-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.45s var(--ease);
}

.campaign-slide.active {
  opacity: 1;
  z-index: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s;
}

.gallery-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav.prev {
  left: 12px;
}

.gallery-nav.next {
  right: 12px;
}

.gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.gallery-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.gallery-dots button[aria-selected="true"] {
  background: var(--white);
  transform: scale(1.2);
}

.campaign-body {
  padding: 2rem;
}

.campaign-title {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
}

.impact-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.impact-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 1rem;
  color: var(--gray-700);
}

.impact-list li:last-child {
  border-bottom: none;
}

.impact-list strong {
  color: var(--black);
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
}

/* Products */
.products-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.product-image-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 1rem;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.product-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 1rem;
}

.product-price .per {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
}

.progress-block {
  margin-bottom: 1rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}

.progress-pct {
  font-weight: 700;
  color: var(--black);
}

.progress-bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  border-radius: 999px;
  transition: width 0.5s var(--ease);
}

/* Cart */
.cart-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.cart-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.cart-empty {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-500);
}

.cart-lines {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
}

.cart-line-info strong {
  display: block;
  color: var(--black);
}

.cart-line-meta {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: var(--gray-200);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cart-total-row strong {
  font-size: 1.25rem;
  color: var(--red);
}

/* Money section */
.money-panel {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.amount-btn {
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.amount-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
}

.amount-btn.selected {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}

.amount-custom {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.currency-prefix {
  font-weight: 700;
  color: var(--white);
  font-size: 1.125rem;
}

.amount-custom input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  min-width: 0;
}

.amount-custom input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.amount-custom input:focus {
  outline: none;
}

.money-summary {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  opacity: 0.95;
}

.money-summary strong {
  color: var(--white);
  font-size: 1.25rem;
}

.btn-donate-mega {
  width: 100%;
  max-width: 100%;
  padding: 1.15rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border: none;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-donate-mega:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(196, 30, 58, 0.5);
}

.money-note {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  opacity: 0.65;
}

/* Before / after */
.compare-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-cell {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.compare-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.compare-cell img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.compare-cell figcaption {
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-before figcaption {
  background: var(--gray-900);
  color: var(--white);
}

.compare-after figcaption {
  background: var(--red);
  color: var(--white);
}

/* Document gallery */
.doc-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.doc-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.doc-thumb:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.doc-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Trust */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(196, 30, 58, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 0 0 0.5rem;
}

.stat-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--black);
}

.stat-meta {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.trust-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.trust-pills li {
  padding: 0.65rem 1.35rem;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-sm);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand .logo-mark {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
}

.footer-copy {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.footer-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link:hover {
  color: var(--red-soft);
}

/* Sticky donate */
.sticky-donate {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 99;
  padding: 0.9rem 1.5rem;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.4);
  transition: transform 0.2s var(--ease), background 0.2s;
}

.sticky-donate:hover {
  background: var(--red-dark);
  transform: scale(1.05);
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: grid;
  place-items: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  width: 72px;
  height: 72px;
  font-size: 2rem;
  margin: 0 auto 1rem;
  animation: loaderPulse 1.2s var(--ease) infinite;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  animation: loaderFade 1.5s var(--ease) infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; }
}

@keyframes loaderFade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Live donation feed */
.live-feed {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.live-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: feedPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes feedPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.live-feed-text {
  transition: opacity 0.35s var(--ease);
}

.live-feed-text.is-switching {
  opacity: 0;
}

/* Urgent badge */
.urgent-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.4);
  animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(196, 30, 58, 0.4); transform: scale(1); }
  50% { box-shadow: 0 4px 28px rgba(196, 30, 58, 0.65); transform: scale(1.04); }
}

.campaign-card {
  position: relative;
}

/* Campaign actions */
.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:active {
  transform: scale(0.98);
}

/* Video section */
.section-video {
  background: var(--gray-100);
}

.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-900);
}

.video-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* Trust badges */
.section-trust-badges {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-badge {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.trust-badge-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.trust-badge-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--black);
}

.trust-badge-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* FAQ section */
.section-faq {
  background: var(--gray-100);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-q {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 1.5rem 1.25rem;
}

.faq-a p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Mobile sticky bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 16px rgba(10, 10, 10, 0.08);
}

.btn-mobile-donate {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* Responsive */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 24px 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  a.btn-header {
    display: none;
  }

  .campaign-card,
  .campaign-card--alt {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .campaign-body,
  .campaign-card--alt .campaign-body {
    padding: 1.5rem;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: relative;
    top: 0;
  }

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

  .compare-row {
    grid-template-columns: 1fr;
  }

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

  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-badge {
    padding: 1.75rem 1.25rem;
  }

  .mobile-sticky-bar {
    display: block;
  }

  .sticky-donate {
    display: none;
  }

  .campaign-actions {
    flex-direction: column;
  }

  .campaign-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
