:root {
  --blue: #178dd0;
  --blue-dark: #0f6fae;
  --blue-deep: #12395a;
  --green: #69b64a;
  --green-dark: #4f9434;
  --orange: #ffa41d;
  --ink: #2f3338;
  --muted: #6a7480;
  --surface: #f5f9fc;
  --white: #ffffff;
  --border: #dfe8ee;
  --shadow: 0 18px 45px rgba(29, 73, 103, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Hind Siliguri", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: "Inter", "Hind Siliguri", sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  transition: 0.25s ease;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  color: rgba(255, 255, 255, 0.94);
  background: var(--blue-deep);
  font-size: 13px;
}

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

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

.topbar a:hover {
  color: #bce7ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 232, 238, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  width: 215px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

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

.main-nav > a {
  color: #3c434a;
  font-weight: 600;
  font-size: 14px;
}

.main-nav > a:not(.nav-donate):hover {
  color: var(--blue);
}

.nav-donate {
  padding: 12px 20px;
  color: var(--white) !important;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(105, 182, 74, 0.25);
}

.nav-donate:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.menu-toggle,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 30%, rgba(23, 141, 208, 0.13), transparent 31%),
    radial-gradient(circle at 15% 20%, rgba(105, 182, 74, 0.13), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f7fbfd 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(23, 141, 208, 0.04), transparent);
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-shape-one {
  width: 280px;
  height: 280px;
  right: -100px;
  top: 100px;
  border: 60px solid rgba(23, 141, 208, 0.08);
}

.hero-shape-two {
  width: 220px;
  height: 220px;
  left: -120px;
  bottom: 60px;
  border: 50px solid rgba(105, 182, 74, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding-block: 85px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-family: "Hind Siliguri", sans-serif;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-content > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(23, 141, 208, 0.24);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-outline {
  color: var(--blue-deep);
  background: var(--white);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--blue);
}

.btn-light {
  color: var(--blue-deep);
  background: var(--white);
}

.btn-dark {
  color: var(--white);
  background: var(--blue-deep);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 630px;
  margin-top: 42px;
}

.hero-stats div {
  padding-right: 18px;
  border-right: 1px solid var(--border);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1.2;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 46% 54% 55% 45% / 42% 43% 57% 58%;
  background:
    linear-gradient(145deg, rgba(23, 141, 208, 0.18), rgba(105, 182, 74, 0.2));
  transform: rotate(-8deg);
}

.care-card {
  position: relative;
  z-index: 2;
  width: min(355px, 88%);
  padding: 52px 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.care-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 34% 66% 64% 36% / 42% 37% 63% 58%;
  font-size: 38px;
  transform: rotate(-6deg);
}

.care-card h2 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 23px;
}

.care-card p {
  color: var(--muted);
  font-size: 14px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 38px rgba(20, 65, 94, 0.14);
}

.floating-card > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--blue-deep);
  font-size: 14px;
}

.floating-card small {
  color: var(--muted);
  font-size: 11px;
}

.floating-card-one {
  left: 0;
  top: 84px;
}

.floating-card-two {
  right: -4px;
  bottom: 72px;
}

.floating-card-two > span {
  background: var(--orange);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  background: rgba(23, 141, 208, 0.1);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.trust-item h3 {
  color: var(--blue-deep);
  font-size: 17px;
}

.trust-item p {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: 108px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.about-visual {
  position: relative;
}

.image-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 420px;
  padding: 30px;
  text-align: center;
  color: var(--blue-deep);
  background:
    linear-gradient(135deg, rgba(23, 141, 208, 0.12), rgba(105, 182, 74, 0.14)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.85) 0,
      rgba(255, 255, 255, 0.85) 12px,
      rgba(245, 249, 252, 0.8) 12px,
      rgba(245, 249, 252, 0.8) 24px
    );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-placeholder span {
  font-weight: 800;
}

.image-placeholder small {
  color: var(--muted);
}

.experience-badge {
  position: absolute;
  right: -30px;
  bottom: 34px;
  min-width: 170px;
  padding: 22px;
  color: var(--white);
  background: var(--green);
  border: 8px solid var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.experience-badge strong,
.experience-badge span {
  display: block;
}

.experience-badge strong {
  font-size: 27px;
}

.experience-badge span {
  font-size: 13px;
}

.about-content h2,
.section-heading h2,
.impact h2,
.donation-content h2,
.contact-info h2 {
  color: var(--blue-deep);
  font-family: "Hind Siliguri", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.about-content > p {
  margin-top: 20px;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin-block: 30px;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #47525d;
  font-weight: 600;
}

.check-list span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
}

.text-link,
.program-card a,
.event-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
}

.text-link:hover,
.program-card a:hover,
.event-body a:hover {
  gap: 12px;
}

.programs {
  background: var(--surface);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}

.section-heading > div {
  max-width: 620px;
}

.section-heading > p {
  max-width: 470px;
  color: var(--muted);
}

.section-heading.centered {
  max-width: 760px;
  display: block;
  margin-inline: auto;
  margin-bottom: 50px;
  text-align: center;
}

.section-heading.centered p {
  margin: 16px auto 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.program-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(24, 68, 96, 0.06);
}

.program-card:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 141, 208, 0.35);
  box-shadow: var(--shadow);
}

.program-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  border-radius: 18px;
  font-size: 25px;
  font-weight: 800;
}

.medical {
  background: var(--blue);
}

.education {
  background: var(--green);
}

.food {
  background: var(--orange);
}

.relief {
  background: var(--blue-deep);
}

.program-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 20px;
}

.program-card p {
  min-height: 96px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.impact {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(18, 57, 90, 0.96), rgba(15, 111, 174, 0.94)),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.15), transparent 30%);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.section-tag.light {
  color: #d7f2ff;
}

.impact h2 {
  color: var(--white);
}

.impact-content p {
  max-width: 570px;
  margin: 20px 0 32px;
  color: rgba(255, 255, 255, 0.78);
}

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.impact-numbers div {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.impact-numbers strong,
.impact-numbers span {
  display: block;
}

.impact-numbers strong {
  font-size: 34px;
  line-height: 1.2;
}

.impact-numbers span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

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

.event-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(24, 68, 96, 0.06);
}

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

.event-image {
  min-height: 230px;
  border: 0;
  border-radius: 0;
}

.event-body {
  padding: 26px;
}

.event-date {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.event-body h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.35;
}

.event-body p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.donation {
  background:
    linear-gradient(135deg, rgba(105, 182, 74, 0.11), rgba(23, 141, 208, 0.1)),
    var(--surface);
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 75px;
}

.donation-content > p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
}

.payment-info {
  display: grid;
  gap: 15px;
  margin-top: 32px;
}

.payment-info div {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.payment-info span,
.payment-info strong,
.payment-info small {
  display: block;
}

.payment-info span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-info strong {
  margin-top: 4px;
  color: var(--blue-deep);
  font-size: 18px;
}

.payment-info small {
  margin-top: 4px;
  color: var(--muted);
}

.donation-form,
.contact-form {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.donation-form h3 {
  margin-bottom: 22px;
  color: var(--blue-deep);
  font-size: 24px;
}

label {
  display: block;
  margin: 14px 0 7px;
  color: #3f4b56;
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 141, 208, 0.1);
}

.donation-form .btn {
  margin-top: 20px;
}

.form-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
}

.volunteer {
  padding-block: 45px;
  background: var(--orange);
}

.volunteer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.volunteer span {
  display: block;
  margin-bottom: 5px;
  color: rgba(18, 57, 90, 0.75);
  font-weight: 800;
}

.volunteer h2 {
  color: var(--blue-deep);
  font-family: "Hind Siliguri", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 80px;
}

.contact-info > p {
  margin-top: 20px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.contact-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list a,
.contact-list p {
  color: var(--blue-deep);
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.social-links a:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

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

.contact-form .btn {
  margin-top: 20px;
}

.site-footer {
  padding-top: 76px;
  color: rgba(255, 255, 255, 0.75);
  background: #102f48;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1.1fr;
  gap: 55px;
  padding-bottom: 58px;
}

.footer-about img {
  width: 220px;
  height: 90px;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
}

.footer-about p {
  max-width: 370px;
  margin-top: 18px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 16px;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: #bce7ff;
}

.newsletter-form {
  display: flex;
  margin-top: 18px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}

.newsletter-form input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.newsletter-form button {
  width: 52px;
  border: 0;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  font-size: 20px;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a {
    font-size: 13px;
  }

  .hero-grid {
    gap: 40px;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

@media (max-width: 900px) {
  .topbar-links {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: 188px;
  }

  .brand img {
    height: 60px;
  }

  .menu-button {
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
    border: 1px solid var(--border);
    border-radius: 10px;
  }

  .menu-button span {
    width: 22px;
    height: 2px;
    background: var(--blue-deep);
    border-radius: 99px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: grid;
    gap: 0;
    max-height: 0;
    padding-inline: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav-donate {
    margin-block: 12px 16px;
    padding: 12px 18px !important;
    text-align: center;
    border-bottom: 0 !important;
  }

  .menu-toggle:checked ~ .main-nav {
    max-height: 560px;
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 80px 120px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content > p,
  .hero-stats {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

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

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .about-grid,
  .impact-grid,
  .donation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 16px;
  }

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

  .contact-info {
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .section {
    padding-block: 78px;
  }

  .hero-grid {
    padding-block: 64px 105px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-content > p {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero-stats div {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

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

  .hero-visual::before {
    width: 320px;
    height: 320px;
  }

  .floating-card {
    min-width: 175px;
  }

  .floating-card-one {
    left: -4px;
    top: 30px;
  }

  .floating-card-two {
    right: -4px;
    bottom: 25px;
  }

  .trust-strip {
    margin-top: -34px;
  }

  .trust-grid {
    padding: 16px;
  }

  .trust-item {
    padding: 16px 8px;
  }

  .experience-badge {
    right: 14px;
    bottom: 14px;
  }

  .check-list,
  .program-grid,
  .event-grid,
  .impact-numbers {
    grid-template-columns: 1fr;
  }

  .program-card p {
    min-height: auto;
  }

  .volunteer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .donation-form,
  .contact-form {
    padding: 25px 20px;
  }

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

  .footer-about,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 160px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .care-card {
    padding: 42px 24px;
  }

  .floating-card {
    min-width: 155px;
    padding: 11px;
  }

  .floating-card strong {
    font-size: 12px;
  }

  .floating-card small {
    font-size: 9px;
  }

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

  .footer-about,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}
