:root {
  --bg-cream: #F7F7F2;
  --card-cream: #EAEAE2;
  --blue-dark: #0747a1;
  --blue-bright: #90cbf9;
  --text-main: #111111;
  --text-muted: #666666;
  --accent-blue: #3B82F6;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-main);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}


.navbar {
  padding: 2rem 0;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand-logo {
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.brand1-logo {
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.logo-spark { color: var(--accent-blue); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  opacity: 0.8;
  transition: var(--transition);
}

.nav-links a:hover { opacity: 1; color: var(--blue-dark); }

.btn-pledge {
  background-color: var(--blue-dark);
  color: #FFF;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}

.btn-pledge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10, 60, 50, 0.2);
}


.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0 4rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--card-cream);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.hero-left h1 {
  font-size: 3.5rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.highlight-green {
  color: var(--blue-dark);
  position: relative;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.btn-primary {
  background-color: var(--blue-bright);
  color: var(--text-main);
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(55, 103, 236, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(55, 103, 236, 0.3);
}

.btn-secondary-quote {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
  font-style: italic;
  border-left: 3px solid var(--blue-dark);
  padding-left: 1rem;
}


.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}


.hero-right {
  position: relative;
}

.main-image-wrapper {
  width: 100%;
  height: 540px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
  background: var(--blue-dark);
  color: #FFF;
}

.badge-top-right {
  top: 30px;
  right: -20px;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-bright);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.badge-text span {
  font-size: 0.8rem;
  opacity: 0.8;
}


.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}


.metrics-banner {
  background-color: var(--blue-dark);
  color: #FFF;
  padding: 3.5rem 0;
  margin-bottom: 6rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-card h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 600;
}


.journey-section {
  padding-bottom: 6rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.journey-image {
  width: 100%;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.journey-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.journey-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background-color: var(--card-cream);
  padding: 1.5rem;
  border-radius: 18px;
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--blue-dark);
}

.value-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.45;
}


.work-section {
  padding-bottom: 6rem;
}

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

.work-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.work-card-image {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.work-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.work-link {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}


.voices-section {
  background-color: var(--card-cream);
  padding: 6rem 0;
  margin-bottom: 6rem;
}

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

.voice-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voice-quote {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--blue-dark);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}


.reels-section {
  padding-bottom: 5rem;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.reel-card {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.reel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.reel-embed-wrapper,
.fb-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%; 
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--card-cream);
  margin-bottom: 0.75rem;
}

.reel-embed-wrapper iframe,
.fb-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.platform-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tag-ig { color: #E1306C; }
.tag-fb { color: #1877F2; }

.reel-info h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

/* --- FAQ SECTION --- */
.faq-section {
  padding-bottom: 6rem;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.25rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

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

.faq-icon {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--blue-dark);
  transition: var(--transition);
}

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

.faq-answer {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}


.gallery-section {
  padding-bottom: 5rem;
}

.bento-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.25rem;
}

.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  background-color: var(--card-cream);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bento-card:hover img {
  transform: scale(1.06);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #FFFFFF;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.bento-card:hover .bento-overlay {
  opacity: 1;
}

.bento-overlay h4 {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
}

.bento-large .bento-overlay h4,
.bento-wide .bento-overlay h4 {
  font-size: 1.3rem;
}

/* --- FOOTER & PLEDGE SECTION --- */
.site-footer {
  background-color: var(--blue-dark);
  color: #FFFFFF;
  padding: 5rem 0 2rem;
  margin-top: 2rem;
}

.pledge-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.pledge-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.pledge-content p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

.pledge-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pledge-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.pledge-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.pledge-form input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--blue-bright);
}

.btn-pledge-submit {
  background-color: var(--blue-bright);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: none;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition);
}

.btn-pledge-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(55, 103, 236, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-light {
  color: #FFFFFF ;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 320px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-bright);
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.75;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--blue-bright);
}

.footer-copyright {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}



@media (max-width: 992px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 2.75rem; }
  .journey-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .work-grid, .voices-grid { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .bento-large,
  .bento-tall,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .pledge-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer-nav {
    gap: 2.5rem;
  }
}


@media (max-width: 768px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .navbar {
    padding: 1rem 0;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 1rem;
  }

  
  .nav-links {
    display: flex;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    gap: 1.25rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a {
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .btn-pledge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    flex-shrink: 0;
  }

  .hero-left h1 {
    font-size: 2.25rem;
  }

  .floating-badge {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .reels-grid {
    grid-template-columns: 1fr;
  }
  .bento-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}