:root {
  --bg: #f4f8f3;
  --bg-soft: #edf6ee;
  --bg-alt: #fffaf1;
  --surface: #ffffff;
  --surface-2: #f7fbf8;
  --line: rgba(20, 58, 39, 0.10);

  --text: #173225;
  --muted: #567567;

  --primary: #1fa75c;
  --primary-2: #138a4b;
  --secondary: #2d8cff;
  --accent: #ffb545;
  --accent-2: #ff7a59;
  --gold: #f0b44d;

  --white: #ffffff;
  --shadow: 0 18px 50px rgba(22, 72, 43, 0.10);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(242, 196, 128, 0.25), transparent 26%),
    radial-gradient(circle at top right, rgba(242, 196, 128, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(242, 196, 128, 0.15), transparent 22%),
    linear-gradient(180deg, #fff6e6 0%, #fbe9c9 45%, #FFF1BF 100%);
  color: var(--text);
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-wrap {
  overflow: hidden;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(20, 58, 39, 0.08);
}

.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-mark img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
  transform: scale(1.0);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--text);
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.25s ease;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(20, 58, 39, 0.10);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: 0.3s ease;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(31, 167, 92, 0.18);
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 167, 92, 0.24);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(20, 58, 39, 0.12);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(31, 167, 92, 0.06);
}

.btn-light {
  background: linear-gradient(135deg, #ffffff, #fff2d7);
  color: var(--text);
}

.btn-sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

/* HERO */
.hero {
  position: relative;
  padding: 90px 0 55px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 167, 92, 0.14);
  border-radius: 999px;
  color: var(--primary-2);
  background: rgba(31, 167, 92, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 18px;
  letter-spacing: -0.045em;
  color: #133222;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badge {
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 58, 39, 0.08);
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.98rem;
  color: var(--text);
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  width: min(100%, 460px);
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(241,250,242,0.92));
  border: 1px solid rgba(20, 58, 39, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.card-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 181, 69, 0.16);
  color: #9b5f00;
  border: 1px solid rgba(255, 181, 69, 0.22);
}

.hero-card-main h3 {
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--text);
}

.hero-card-main p {
  color: var(--muted);
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 58, 39, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.floating-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
}

.floating-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-card-1 {
  top: 40px;
  left: -10px;
}

.floating-card-2 {
  bottom: 70px;
  right: -6px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
}

.glow-1 {
  width: 240px;
  height: 240px;
  background: rgba(31, 167, 92, 0.22);
  top: 40px;
  right: 0;
}

.glow-2 {
  width: 220px;
  height: 220px;
  background: rgba(45, 140, 255, 0.18);
  bottom: 20px;
  left: 20px;
}

/* TRUSTBAR */
.trustbar {
  padding: 18px 0 8px;
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trustbar-grid > div {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f7fcf8);
  border: 1px solid rgba(20, 58, 39, 0.08);
  box-shadow: var(--shadow);
}

.trustbar-grid > div:nth-child(1) {
  border-top: 4px solid var(--primary);
}

.trustbar-grid > div:nth-child(2) {
  border-top: 4px solid var(--secondary);
}

.trustbar-grid > div:nth-child(3) {
  border-top: 4px solid var(--accent-2);
}

.trustbar-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.trustbar-grid strong {
  font-size: 1rem;
  color: var(--text);
}

/* SECTIONS */
.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f8fcf7, #edf7ef);
}

.section-dark {
  background: linear-gradient(135deg, #1b6f44 0%, #1fa75c 50%, #2d8cff 100%);
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.light p,
.section-heading.light h2 {
  color: #fff;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--text);
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.about-cards {
  display: grid;
  gap: 16px;
}

.info-card,
.service-card,
.project-card,
.news-card,
.stat-card,
.mini-card,
.cta-box,
.partner-item,
.contact-form,
.cta-highlight {
  border: 1px solid rgba(20, 58, 39, 0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 24px;
  border-radius: 22px;
}

.info-card:nth-child(1) {
  border-left: 5px solid var(--primary);
}

.info-card:nth-child(2) {
  border-left: 5px solid var(--secondary);
}

.info-card:nth-child(3) {
  border-left: 5px solid var(--accent);
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: var(--text);
}

.info-card p {
  color: var(--muted);
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 28px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f8fcf9);
}

.stat-card:nth-child(1) strong { color: var(--primary); }
.stat-card:nth-child(2) strong { color: var(--secondary); }
.stat-card:nth-child(3) strong { color: var(--accent-2); }
.stat-card:nth-child(4) strong { color: #b57c17; }

.stat-card strong {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  padding: 24px;
  border-radius: 22px;
  transition: 0.25s ease;
  background: linear-gradient(180deg, #ffffff, #f9fcfa);
}

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

.service-card:nth-child(1) .icon,
.service-card:nth-child(4) .icon {
  background: linear-gradient(135deg, var(--primary), #4fd07f);
}

.service-card:nth-child(2) .icon,
.service-card:nth-child(5) .icon {
  background: linear-gradient(135deg, var(--secondary), #6db3ff);
}

.service-card:nth-child(3) .icon,
.service-card:nth-child(6) .icon {
  background: linear-gradient(135deg, var(--accent-2), #ffad7d);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  box-shadow: 0 12px 22px rgba(0,0,0,0.10);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
}

/* PROJECTS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.project-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.project-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: #fff;
}

.project-card p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
}

.project-card a {
  color: #fff7d8;
  font-weight: 700;
}

/* CTA / LEGADO */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cta-box {
  padding: 34px;
  border-radius: 28px;
}

.cta-box:first-child {
  background: linear-gradient(135deg, #ffffff, #f4fff7);
}

.cta-box h2 {
  font-size: 2rem;
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--text);
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-highlight {
  background:
    radial-gradient(circle at top right, rgba(255, 181, 69, 0.16), transparent 30%),
    linear-gradient(135deg, #1fa75c 0%, #2d8cff 100%);
  color: #fff;
}

.cta-highlight .eyebrow {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

.cta-highlight h2,
.cta-highlight p {
  color: #fff;
}

.donation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.donation-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.donation-values button {
  min-height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: 0.25s ease;
}

.donation-values button:hover {
  background: rgba(255,255,255,0.22);
}

.donation-value.active {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.02);
}

.form-group input {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 0 16px;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.78);
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-group input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.donation-message {
  min-height: 24px;
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* TRANSPARÊNCIA */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbf8);
}

.mini-card:nth-child(1) {
  border-top: 5px solid var(--primary);
}

.mini-card:nth-child(2) {
  border-top: 5px solid var(--secondary);
}

.mini-card:nth-child(3) {
  border-top: 5px solid var(--accent-2);
}

.mini-card h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.mini-card p {
  color: var(--muted);
}

/* NEWS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fffef9);
}

.news-date {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-2);
  font-size: 0.88rem;
  font-weight: 700;
}

.news-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--text);
}

.news-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.news-card a {
  color: var(--secondary);
  font-weight: 700;
}

/* PARTNERS */
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-item {
  width: 180px;
  height: 95px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
}

.partner-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  opacity: 1;
  filter: brightness(1.2);
  transform: none;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.contact-form {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f9fcfa);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 58, 39, 0.10);
  background: #ffffff;
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7c9788;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 14px;
}

/* FOOTER */
.footer {
  padding: 34px 0 18px;
  border-top: 1px solid rgba(20, 58, 39, 0.08);
  background: linear-gradient(180deg, #e9f5ea, #dff0e2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-text,
.footer ul li,
.footer a {
  color: var(--muted);
}

.footer h4 {
  margin-bottom: 12px;
  color: var(--text);
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(20, 58, 39, 0.08);
}

.footer-bottom p {
  color: #6a8577;
  font-size: 0.92rem;
}

/* FEED SLIDER PEQUENO */
.feed-slider {
  padding: 20px 0;
}

.feed-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.feed-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.feed-item {
  display: none;
  align-items: center;
  gap: 20px;
  animation: fadeSlide 0.4s ease;
}

.feed-item.active {
  display: flex;
}

.feed-item img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.feed-item p {
  font-size: 0.95rem;
  color: var(--text);
  max-width: 400px;
}

.feed-btn {
  border: none;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.feed-btn:hover {
  background: #f1f1f1;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* HERO SLIDER GRANDE */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  background: #0b1f63;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-bg {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 24, 88, 0.88) 0%,
    rgba(5, 24, 88, 0.65) 40%,
    rgba(5, 24, 88, 0.25) 100%
  );
}

.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 620px;
  z-index: 2;
  color: #fff;
}

.hero-slide-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #f0b44d;
  font-weight: 500;
}

.hero-slide-content h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-slide-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: 0.25s ease;
}

.hero-slider-btn:hover {
  background: rgba(255,255,255,0.24);
}

.hero-slider-prev {
  left: 20px;
}

.hero-slider-next {
  right: 20px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}

.hero-slider-dot.active {
  background: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .service-grid,
  .project-grid,
  .news-grid,
  .transparency-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 58, 39, 0.08);
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .hero {
    padding-top: 52px;
  }

  .trustbar-grid,
  .stats-grid,
  .service-grid,
  .project-grid,
  .news-grid,
  .transparency-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    gap: 18px;
  }

  .partner-item {
    width: 130px;
    height: 64px;
  }

  .partner-item img {
    max-width: 84px;
    max-height: 32px;
  }

  .form-row,
  .donation-values {
    grid-template-columns: 1fr;
  }

  .floating-card-1,
  .floating-card-2 {
    position: static;
    margin-top: 14px;
  }

  .hero-visual {
    display: block;
    min-height: auto;
  }

  .hero-card-main {
    width: 100%;
  }

  .hero-slider,
  .hero-slider-track,
  .hero-slide-bg {
    min-height: 420px;
    height: 420px;
  }

  .hero-slide-content {
    left: 6%;
    right: 6%;
    max-width: none;
  }

  .hero-slide-content h2 {
    font-size: 2.4rem;
  }

  .hero-slide-content p {
    font-size: 0.95rem;
  }

  .hero-slider-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .brand-text span {
    display: none;
  }

  .brand-mark img {
    height: 46px;
  }

  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .cta-box h2,
  .section-heading h2 {
    font-size: 1.75rem;
  }

  .partners-grid {
    flex-direction: column;
  }

  .partner-item {
    width: 120px;
    height: 60px;
  }

  .partner-item img {
    max-width: 78px;
    max-height: 30px;
  }

  .hero-slider,
  .hero-slider-track,
  .hero-slide-bg {
    min-height: 360px;
    height: 360px;
  }

  .hero-slide-content {
    left: 5%;
    right: 5%;
  }

  .hero-slide-content h2 {
    font-size: 1.95rem;
  }

  .hero-slide-kicker {
    font-size: 0.9rem;
  }

  .hero-slide-content p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .feed-item {
    gap: 12px;
  }

  .feed-item img {
    width: 90px;
    height: 64px;
  }

  .feed-item p {
    font-size: 0.86rem;
  }
}