/* ==========================================================
   JUCARENTE — PREMIUM DESIGN SYSTEM
   ==========================================================
   1. Variables & Reset
   2. Typography & Base
   3. Layout
   4. Navbar
   5. Hero
   6. Overview (Video + Tabs)
   7. Children Stories
   8. Endorsements
   9. Donation Section
   10. Impact & Transparency
   11. FAQ
   12. Footer
   13. Modal
   14. Mobile CTA
   15. Animations & Reveals
   16. Utilities
   ========================================================== */

/* ----------------------------------------------------------
   1. VARIABLES & RESET
   ---------------------------------------------------------- */
:root {
  --accent: #07f25f;
  --accent-hover: #0fcf57;
  --accent-light: #55c62812;
  --accent-glow: #55c62812;;
  --accent-border: #28c65024;

  --gold: #C9A84C;
  --gold-light: rgba(201, 168, 76, 0.12);

  --green: #1B8C42;
  --green-hover: #146B33;
  --green-glow: rgba(27, 140, 66, 0.28);

  --dark: #0C0C0E;
  --dark-card: #161618;
  --dark-border: rgba(255,255,255,0.08);

  --surface: #FFFFFF;
  --surface-alt: #F9F8F5;
  --surface-warm: #FDF9F3;

  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.10);

  --text-primary: #1A1A1E;
  --text-secondary: #555560;
  --text-muted: #8A8A96;
  --text-on-dark: #EAEAEC;
  --text-on-dark-muted: #9A9AA6;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.10);
  --shadow-xl: 0 32px 64px rgba(0,0,0,0.14);
  --shadow-accent: 0 12px 36px var(--accent-glow);
  --shadow-green: 0 12px 36px var(--green-glow);

  --container-max: 1320px;
  --container-narrow: 860px;
  --section-py: clamp(48px, 8vw, 96px);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6,p { margin: 0; }

/* ----------------------------------------------------------
   2. TYPOGRAPHY & BASE
   ---------------------------------------------------------- */
h2, h3 { font-family: var(--font-heading); }

h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

/* ----------------------------------------------------------
   3. LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-py) 0;
}

/* ----------------------------------------------------------
   4. NAVBAR
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav--scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--surface);
}

.nav__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__text strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav__text span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav__donate {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav__donate:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px var(--accent-glow);
}

.nav__donate-pulse {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent);
  animation: navPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes navPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.08); }
}

/* ----------------------------------------------------------
   5. HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  overflow: hidden;
  background: var(--dark);
}

.hero__img-wrap {
  position: relative;
  z-index: 1;
}

.hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  scale:1.05;
}

.hero__gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--surface) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ----------------------------------------------------------
   6. OVERVIEW (Video + Tabs)
   ---------------------------------------------------------- */
.overview {
  background: var(--surface);
  padding-top: 40px;
}

.overview__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .overview__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

/* Video */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 1024px) {
  .video-frame {
    max-width: 480px;
  }
}

.video-frame__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  transition: opacity 0.3s ease, background 0.25s ease;
}

.video-overlay:hover {
  background: rgba(0,0,0,0.45);
}

.video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-overlay__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  font-size: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.video-overlay:hover .video-overlay__icon {
  transform: scale(1.06);
}

.video-overlay__text {
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.2px;
}

/* Tabs Card */
.tabs-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 24px 20px 28px;
  display: grid;
  gap: 20px;
}

@media (min-width: 1024px) {
  .tabs-card {
    padding: 32px 28px 36px;
  }
}

.tabs__nav {
  display: flex;
  gap: 6px;
  background: var(--surface-alt);
  padding: 5px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs__nav::-webkit-scrollbar { display: none; }

.tabs__btn {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: none;
  background: transparent;
  border-radius: 9px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.tabs__btn:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.03);
}

.tabs__btn.active {
  background: var(--surface);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.tabs__panels { position: relative; }

.tabs__panel {
  display: none;
  animation: tabFade 0.3s ease;
}

.tabs__panel.active {
  display: block;
}

@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-body {
  display: grid;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.panel-body strong {
  color: var(--text-primary);
}

/* Badges */
.tabs__badges {
  display: grid;
  gap: 14px;
}

.badge-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease;
}

.badge-item:hover {
  transform: translateY(-2px);
}

.badge-item__icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
}

.badge-item h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.badge-item p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

/* Pilares Block */
.pilares {
  margin-top: 24px;
}

.pilares__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pilares__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pilar-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.pilar-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.pilar-card__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
}

.pilar-card strong {
  display: block;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 4px;
}

.pilar-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ----------------------------------------------------------
   7. CHILDREN STORIES
   ---------------------------------------------------------- */
.stories {
  background: var(--surface-warm);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.section-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 40px;
  display: grid;
  gap: 12px;
}

.section-header__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  justify-self: center;
}

.section-header__tag--gold {
  color: var(--gold);
  background: var(--gold-light);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* Stories Slider */
.stories__slider {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.stories__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.stories__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-slide {
  flex: 0 0 100%;
  min-width: 100%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .story-slide {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 520px;
  }
}

.story-slide__img {
  position: relative;
  overflow: hidden;
}

.story-slide__img img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: var(--surface-alt);
}

@media (min-width: 768px) {
  .story-slide__img img {
    height: 480px;
  }
}

@media (min-width: 1024px) {
  .story-slide__img {
    height: 100%;
  }

  .story-slide__img img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

.story-slide__body {
  padding: 24px 20px;
  text-align: center;
  display: grid;
  gap: 10px;
}

@media (min-width: 1024px) {
  .story-slide__body {
    text-align: left;
    align-content: center;
    padding: 40px 36px;
    gap: 16px;
  }
}

.story-slide__body h3 {
  color: var(--text-primary);
}

.story-slide__body p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  font-size: 24px;
  font-weight: 300;
  color: var(--text-primary);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: var(--surface);
  transform: translateY(-50%) scale(1.06);
  box-shadow: var(--shadow-lg);
}

.slider-arrow--prev { left: 12px; }
.slider-arrow--next { right: 12px; }

@media (max-width: 520px) {
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .slider-arrow--prev { left: 8px; }
  .slider-arrow--next { right: 8px; }
}

/* Dots */
.stories__dots,
.endorsements__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot,
.endorsements__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(198, 40, 40, 0.16);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.dot.active,
.endorsements__dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ----------------------------------------------------------
   8. ENDORSEMENTS
   ---------------------------------------------------------- */
.endorsements {
  background: var(--dark);
  color: var(--text-on-dark);
}

.section-header--light h2 {
  color: var(--text-on-dark);
}

.section-header--light p {
  color: var(--text-on-dark-muted);
}

.endorsements__carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow--round {
  position: static;
  transform: none;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-color: var(--dark-border);
  color: var(--text-on-dark);
}

.slider-arrow--round:hover {
  background: rgba(255,255,255,0.14);
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.endorsements__viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 8px 0;
}

.endorsements__track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.endorsement-card {
  flex: 0 0 78%;
  max-width: 78%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-on-dark);
}

.endorsement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.endorsement-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.08) 0%, var(--dark-card) 100%);
}

.endorsement-card--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(201,168,76,0.15);
}

.endorsement-card__avatar img {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.endorsement-card--featured .endorsement-card__avatar img {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(201,168,76,0.2);
}

.endorsement-card__role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-on-dark-muted);
}

.endorsement-card--featured .endorsement-card__role {
  color: var(--gold);
}

.endorsement-card__handle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
}

.verified-badge {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.endorsement-card__cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.endorsement-card:hover .endorsement-card__cta {
  opacity: 1;
}

.endorsements__dots {
  margin-top: 24px;
}

.endorsements__dots .endorsements__dot {
  background: rgba(255,255,255,0.18);
}

.endorsements__dots .endorsements__dot.is-active {
  background: var(--gold);
}

@media (min-width: 768px) {
  .endorsement-card {
    flex: 0 0 42%;
    max-width: 42%;
  }
}

@media (min-width: 1200px) {
  .endorsement-card {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

@media (max-width: 520px) {
  .endorsement-card {
    flex: 0 0 85%;
    max-width: 85%;
  }
  .slider-arrow--round {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ----------------------------------------------------------
   9. DONATION SECTION
   ---------------------------------------------------------- */
.donate-section {
  background: var(--surface);
}

.donate-section__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .donate-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

/* Impact Values */
.impact-values {
  display: grid;
  gap: 20px;
}

.impact-values__header {
  display: grid;
  gap: 8px;
}

.impact-values__header h2 {
  color: var(--accent);
  font-size: clamp(22px, 3.5vw, 34px);
}

.impact-values__header h2 span {
  display: block;
}

.impact-values__list {
  display: grid;
  gap: 10px;
}

.impact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.impact-chip:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.impact-chip__price {
  flex-shrink: 0;
  padding: 6px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: var(--shadow-accent);
}

.impact-chip__desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.impact-values__footer {
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  margin-top: 4px;
}

/* PIX Card */
.pix-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--accent-light) 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: grid;
  gap: 20px;
}

.pix-card h2 {
  color: var(--accent);
  font-size: clamp(22px, 3vw, 30px);
}

.pix-card__illustration img {
  max-width: 200px;
  width: 70%;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.pix-card__body {
  display: grid;
  gap: 16px;
}

.pix-card__msg {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Trust Block */
.donate-right-col {
  display: grid;
  gap: 24px;
}

.trust-block {
  background: linear-gradient(135deg, var(--surface-warm) 0%, var(--surface-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top:10px;
}

.trust-block__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.trust-block__items {
  display: grid;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.trust-item:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-xs);
}

.trust-item__icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn--full {
  width: 100%;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn--accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px var(--accent-glow);
}

.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
  animation: gentlePulse 3s ease-in-out infinite;
}

.btn--green:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px var(--green-glow);
  animation-play-state: paused;
}

@keyframes gentlePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ----------------------------------------------------------
   10. IMPACT & TRANSPARENCY
   ---------------------------------------------------------- */
.impact-section {
  background: var(--dark);
  color: var(--text-on-dark);
}

/* KPIs */
.kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .kpis { grid-template-columns: repeat(4, 1fr); }
}

.kpi {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  transition: border-color 0.3s ease;
}

.kpi:hover {
  border-color: rgba(255,255,255,0.14);
}

.kpi__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  font-size: 22px;
}

.kpi__value {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.kpi__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.kpi__note {
  font-size: 12px;
  color: var(--text-on-dark-muted);
}

/* Proof Grid */
.proof-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 1024px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.proof-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 1024px) {
  .proof-card { padding: 32px 28px; }
}

.proof-card h3 {
  color: #fff;
  font-size: 22px;
}

.proof-card__lead {
  color: var(--text-on-dark-muted);
  font-size: 14px;
  line-height: 1.65;
}

.proof-card--accent {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(198,40,40,0.06) 0%, var(--dark-card) 100%);
}

/* Testimonials */
.testimonials {
  margin-top: 8px;
  display: grid;
  gap: 14px;
  flex: 1;
}

.testimonials__viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.testimonials__track {
  display: flex;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial {
  flex: 0 0 100%;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
}

@media (min-width: 768px) {
  .testimonial { flex: 0 0 calc(50% - 6px); }
}

.testimonial__text {
  font-weight: 600;
  color: var(--text-on-dark);
  line-height: 1.6;
  font-size: 15px;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial__meta {
  font-size: 12px;
  color: var(--text-on-dark-muted);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonials__btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 1px solid var(--dark-border);
  background: rgba(255,255,255,0.06);
  color: var(--text-on-dark);
  font-size: 22px;
  font-weight: 300;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.testimonials__btn:hover {
  background: rgba(255,255,255,0.10);
  transform: scale(1.06);
}

.testimonials__dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255,255,255,0.16);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.testimonials__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Transparency */
.transparency-list {
  display: grid;
  gap: 14px;
  margin: 8px 0 20px;
}

.transparency-list li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text-on-dark-muted);
  font-size: 14px;
  line-height: 1.6;
}

.transparency-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--accent);
  margin-top: 6px;
}

.transparency-cta-wrap {
  margin-top: auto;
}

/* Goal */
.goal {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dark-border);
  display: grid;
  gap: 10px;
}

.goal__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.goal__top strong {
  font-size: 14px;
  color: #fff;
}

#goalText {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  white-space: nowrap;
}

.goal__bar {
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.goal__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent), var(--gold));
  width: 0%;
  transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ----------------------------------------------------------
   11. FAQ
   ---------------------------------------------------------- */
.faq {
  background: var(--surface-alt);
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.open {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-sm);
}

.faq-item__q {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  transition: background 0.2s ease;
}

.faq-item__q:hover {
  background: var(--accent-light);
}

.faq-item__icon {
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__a {
  max-height: 200px;
  padding: 0 20px 20px;
}

/* ----------------------------------------------------------
   12. FOOTER
   ---------------------------------------------------------- */
.footer {
  background: #111114;
  color: var(--text-on-dark);
  padding: 56px 0 100px;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 36px;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.footer__col {
  display: grid;
  gap: 12px;
}

.footer__col h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: #fff;
}

.footer__col p {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

.footer__social {
  display: grid;
  gap: 10px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  font-size: 14px;
  color: var(--text-on-dark) !important;
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

/* Social Icons */
.si {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.si-ig {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png');
}

.si-fb {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/4/44/Facebook_Logo.png');
}

/* ----------------------------------------------------------
   13. MODAL
   ---------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 24px);
  max-width: 420px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.modal__header {
  background: var(--accent);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.modal__header h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.modal__close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.modal__close:hover { opacity: 1; }

.modal__body {
  padding: 24px;
}

.modal__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.modal__opt {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--surface-alt);
  transition: all 0.25s ease;
}

.modal__opt:hover {
  border-color: var(--accent-border);
  background: var(--accent-light);
  transform: translateY(-2px);
}

.modal__opt.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.modal__opt-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal__custom {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--surface-alt);
  display: grid;
  gap: 12px;
}

.modal__custom-label {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

#customAmount {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--text-primary);
  background: var(--surface);
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

#customAmount:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

#customAmount::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

/* ----------------------------------------------------------
   14. MOBILE CTA
   ---------------------------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9998;
  background: var(--green);
  color: #fff;
  padding: 18px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 8px 32px var(--green-glow);
  animation: gentlePulse 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  .footer { padding-bottom: 110px; }
  .story-slide__img img{
              object-fit: fill!important;

  }
}

/* ----------------------------------------------------------
   15. ANIMATIONS & REVEALS
   ---------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);.hero__img-wrap img
}

[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* ----------------------------------------------------------
   16. RESPONSIVE FINE-TUNING
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  .nav__text strong { font-size: 12px; }
  .nav__text span { font-size: 10px; }
  .nav__donate { padding: 8px 16px; font-size: 11px; }
  .tabs__btn { font-size: 12px; padding: 8px 10px; }
  .impact-chip { padding: 10px 12px; gap: 10px; }
  .impact-chip__price { padding: 5px 12px; font-size: 13px; }
  .impact-chip__desc { font-size: 13px; }
  .kpi { padding: 16px 12px; }
  .kpi__value { font-size: 26px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 28px; }
}

/* Print-friendly */
@media print {
  .nav, .mobile-cta, .modal { display: none !important; }
  .hero { margin-top: 0; }
  body { background: #fff; }
}
