/* ============================================
   Family Center You Too — Variation C
   "Elegant & Minimal"
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #7C9A8E;
  --secondary: #2D2D2D;
  --accent: #B87333;
  --bg-offwhite: #F7F5F0;
  --bg-white: #FFFFFF;
  --text-body: #2D2D2D;
  --text-secondary: #6A6A6A;
  --divider: #ddd;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  --container-max: 1100px;
  --section-padding: 100px;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

.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;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Sections --- */
.section {
  padding: var(--section-padding) 0;
}

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

.section-offwhite {
  background-color: var(--bg-offwhite);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.reveal.visible {
  opacity: 1;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition), box-shadow var(--transition);
  background-color: transparent;
}

.nav.scrolled {
  background-color: rgba(247, 245, 240, 0.97);
  box-shadow: 0 1px 0 var(--divider);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--secondary);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--secondary);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Toggle */
.lang-toggle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}

.lang-option {
  cursor: pointer;
  transition: color var(--transition);
}

.lang-option.active {
  color: var(--secondary);
  font-weight: 600;
}

.lang-option:hover {
  color: var(--accent);
}

.lang-sep {
  color: var(--divider);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--secondary);
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(45, 45, 45, 0.3);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(247, 245, 240, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 4.5rem;
  color: var(--secondary);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-title-ua {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.hero-line {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 32px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.hero-subtitle-ua {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.7;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--primary);
  padding: 14px 36px;
  border-radius: 4px;
  transition: background-color var(--transition), opacity var(--transition);
}

.hero-cta:hover {
  background-color: #6b8a7d;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: var(--accent);
  opacity: 0.5;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 0.6; transform: scaleY(1); }
}

/* ============================================
   About / Mission
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-quote {
  border-left: 2px solid var(--accent);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
}

.about-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-facts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
  border-top: 1px solid var(--divider);
}

.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.fact-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--secondary);
  line-height: 1.2;
}

.fact-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.fact-divider {
  width: 1px;
  height: 40px;
  background-color: var(--divider);
}

/* ============================================
   Programs
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.program-item {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--divider);
}

.program-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.program-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.program-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   Campaign / Fundraising
   ============================================ */
.progress-wrapper {
  max-width: 700px;
  margin: 0 auto 60px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.progress-raised {
  color: var(--text-secondary);
}

.progress-percent {
  font-weight: 600;
  color: var(--secondary);
}

.progress-goal {
  color: var(--text-secondary);
}

.progress-track {
  width: 100%;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  transition: width 1.5s ease;
}

.progress-fill.animated {
  width: 20%;
}

/* Comparison */
.comparison {
  margin-bottom: 60px;
}

.comparison-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 24px;
  text-align: center;
}

.comparison-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
  font-size: 0.95rem;
}

.comparison-table th {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-table td {
  color: var(--text-secondary);
}

.comparison-table td:nth-child(3) {
  color: var(--primary);
  font-weight: 600;
}

/* Phases */
.phases-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 24px;
  text-align: center;
}

.phases-list {
  max-width: 500px;
  margin: 0 auto;
  counter-reset: phase;
}

.phases-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--divider);
  counter-increment: phase;
}

.phases-list li::before {
  content: counter(phase);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--accent);
  margin-right: 20px;
  min-width: 24px;
}

.phase-name {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.phase-amount {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
}

/* ============================================
   Partners
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.partner-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--secondary);
  text-align: center;
  padding: 32px 24px;
  opacity: 0.6;
  transition: opacity var(--transition);
  border-bottom: 1px solid var(--divider);
}

.partner-name:nth-child(-n+3) {
  border-bottom: 1px solid var(--divider);
}

.partner-name:nth-child(3n+2) {
  border-left: 1px solid var(--divider);
  border-right: 1px solid var(--divider);
}

.partner-name:nth-last-child(-n+3) {
  border-bottom: none;
}

.partner-name:hover {
  opacity: 1;
}

/* ============================================
   Team
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
}

.team-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.team-role {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.testimonial {
  position: relative;
  padding-top: 32px;
}

.testimonial-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 0;
  opacity: 0.4;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================
   Donate
   ============================================ */
.donate-amounts {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.amount-btn {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 12px 28px;
  border: 1px solid var(--divider);
  border-radius: 4px;
  background-color: transparent;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.amount-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.amount-btn.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Payment Methods */
.payment-methods {
  max-width: 650px;
  margin: 0 auto;
}

.payment-method {
  padding: 28px 0;
  border-bottom: 1px solid var(--divider);
}

.payment-method:last-child {
  border-bottom: none;
}

.payment-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.payment-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.payment-row:last-child {
  margin-bottom: 0;
}

.payment-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 60px;
}

.payment-value {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 600;
  word-break: break-all;
}

.payment-info {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.copy-btn {
  font-size: 0.9rem;
  padding: 4px 8px;
  color: var(--text-secondary);
  transition: color var(--transition);
  flex-shrink: 0;
}

.copy-btn:hover {
  color: var(--accent);
}

.copy-icon {
  font-size: 0.95rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--secondary);
  color: var(--bg-offwhite);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(247, 245, 240, 0.7);
  line-height: 1.7;
}

.footer-address p {
  font-size: 0.9rem;
  color: rgba(247, 245, 240, 0.7);
  line-height: 1.8;
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(247, 245, 240, 0.7);
  transition: color var(--transition);
  margin-bottom: 8px;
}

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

.footer-social {
  margin-bottom: 24px;
}

.footer-newsletter {
  margin-top: 8px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-input {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 14px;
  border: 1px solid rgba(247, 245, 240, 0.2);
  background-color: transparent;
  color: var(--bg-offwhite);
  flex: 1;
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(247, 245, 240, 0.4);
}

.newsletter-input:focus {
  border-color: var(--primary);
}

.newsletter-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--primary);
  padding: 10px 20px;
  border-radius: 0 4px 4px 0;
  transition: background-color var(--transition);
}

.newsletter-btn:hover {
  background-color: #6b8a7d;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(247, 245, 240, 0.15);
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.5);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-link {
  color: rgba(247, 245, 240, 0.5);
  transition: color var(--transition);
}

.footer-legal-link:hover {
  color: var(--bg-offwhite);
}

.footer-legal-sep {
  color: rgba(247, 245, 240, 0.3);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), background-color var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #a36529;
}

/* ============================================
   Toast
   ============================================ */
.toast-container {
  position: fixed;
  bottom: 32px;
  right: 88px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 12px 24px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(8px);
  animation: toastIn 0.3s ease forwards, toastOut 0.3s ease 2.5s forwards;
}

@keyframes toastIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* ============================================
   Responsive — Tablet (769–1023px)
   ============================================ */
@media (max-width: 1023px) {
  :root {
    --section-padding: 80px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .about-grid {
    gap: 40px;
  }

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

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

  .testimonials-grid .testimonial:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .team-grid {
    gap: 32px;
  }

  .partners-grid {
    gap: 0;
  }

  .footer-grid {
    gap: 32px;
  }
}

/* ============================================
   Responsive — Mobile (<=768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .container {
    padding: 0 24px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  /* Nav Mobile */
  .nav-container {
    height: 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-offwhite);
    flex-direction: column;
    padding: 80px 40px 40px;
    gap: 0;
    z-index: 999;
    transition: right 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--divider);
    display: block;
  }

  .nav-links a::after {
    display: none;
  }

  /* Hero Mobile */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-title-ua {
    font-size: 1.15rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-subtitle-ua {
    font-size: 0.9rem;
    margin-bottom: 36px;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  /* About Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 250px;
  }

  .about-facts {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .fact {
    padding: 0 20px;
  }

  .fact-divider {
    display: none;
  }

  /* Programs Mobile */
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid .testimonial:last-child {
    max-width: none;
  }

  /* Team Mobile */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Partners Mobile */
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-name {
    border-bottom: 1px solid var(--divider);
    padding: 24px;
  }

  .partner-name:nth-child(3n+2) {
    border-left: none;
    border-right: none;
  }

  .partner-name:last-child {
    border-bottom: none;
  }

  /* Donate Mobile */
  .donate-amounts {
    gap: 8px;
  }

  .amount-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .payment-value {
    font-size: 0.85rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 60px 0 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Toast & Back to Top Mobile */
  .toast-container {
    right: 16px;
    bottom: 16px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  /* Comparison table scroll */
  .comparison {
    overflow-x: auto;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    padding: 12px 28px;
    font-size: 0.85rem;
  }

  .fact-number {
    font-size: 1.8rem;
  }

  .amount-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
