:root {
  --primary: #c62828;
  --accent: #0b1b3a;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f5f7fb;
  --shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
}

.topbar {
  background: #0b1b3a;
  color: #e2e8f0;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a {
  color: #fff;
}
.topbar-right i {
  font-size: 0.95rem;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text);
}
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #f2f2f2;
  object-fit: cover;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-size: 1.05rem;
}
.logo-text em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  margin-left: auto;
  position: relative;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}
.nav-menu a {
  color: var(--text);
  font-weight: 500;
}
.nav-menu a {
  color: #0f172a;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}
.nav-menu a.active {
  background: #f1f5ff;
  color: var(--primary);
}

.nav-menu-cta {
  display: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-toggle-icon {
  color: var(--accent);
}

.nav-toggle-label {
  display: inline-flex;
  align-items: center;
  width: 18px;
  height: 14px;
}

.nav-toggle-label::before,
.nav-toggle-label::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-label::before {
  box-shadow: 0 6px 0 currentColor;
  transform: translateY(-3px);
}

.nav-toggle-label::after {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-label::before {
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-label::after {
  display: block;
  margin-left: -28px;
  transform: rotate(-45deg);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-light {
  background: #fff;
  color: var(--accent);
  border: 1px solid #fff;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 18px 30px rgba(18, 140, 126, 0.35);
  z-index: 60;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 36px rgba(18, 140, 126, 0.42);
  text-decoration: none;
}

.whatsapp-float i {
  font-size: 2rem;
}

.whatsapp-float-label {
  position: absolute;
  right: 76px;
  white-space: nowrap;
  background: #0f172a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

.hero {
  background: linear-gradient(120deg, #142956, #0b1b3a);
  padding: 100px 0;
  color: #fff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: 3rem;
  margin: 16px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.85rem;
}
.hero-media {
  min-height: 320px;
  border-radius: 20px;
  background: linear-gradient(135deg, #9fb7df, #e6eef9);
  box-shadow: 0 18px 40px rgba(10, 23, 45, 0.35);
}
.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.services-hero {
  background: linear-gradient(120deg, #1c3f7e, #0b1b3a);
  padding: 70px 0;
  color: #fff;
}
.services-hero h1 {
  font-size: 2.6rem;
  margin: 14px 0;
}
.services-hero p {
  max-width: 720px;
}
.service-block .split {
  gap: 40px;
}
.split.reverse {
  grid-auto-flow: dense;
}
.split.reverse > div:first-child {
  grid-column: 2;
}
.split.reverse > div:last-child {
  grid-column: 1;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.service-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fbe4e4;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.service-badge.blue {
  background: #dbe7ff;
  color: #1d4ed8;
}
.service-badge.gold {
  background: #f6ead8;
  color: #b45309;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fbe4e4;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}
.pill.blue {
  background: #dbe7ff;
  color: #1d4ed8;
}
.pill.gold {
  background: #f6ead8;
  color: #b45309;
}
.service-media {
  min-height: 320px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #d9e2f0, #f5f8fd);
}
.service-media.media-dark {
  background: linear-gradient(135deg, #5f5f5f, #c3c3c3);
}
.service-media.media-light {
  background: linear-gradient(135deg, #d7e6ff, #f7fbff);
}
.service-media.media-soft {
  background: linear-gradient(135deg, #e6e0d8, #f7f2ee);
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px;
}
.service-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}
.service-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7b48b;
  position: absolute;
  left: 0;
  top: 6px;
}
.service-list.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
}
.process-card {
  background: #f9fafc;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
}
.help-center {
  margin-top: 28px;
  text-align: center;
}
.help-center p {
  margin-bottom: 10px;
  color: var(--muted);
}

.placeholder-img {
  min-height: 260px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e2e8f0, #cbd5f5);
  box-shadow: var(--shadow);
}

.about-hero {
  background: linear-gradient(120deg, #1c3f7e, #0b1b3a);
  padding: 70px 0;
  color: #fff;
}
.contact-hero {
  background: linear-gradient(120deg, #1c3f7e, #0b1b3a);
  padding: 70px 0;
  color: #fff;
}
.contact-hero h1 {
  font-size: 2.6rem;
  margin: 14px 0;
}
.contact-hero p {
  max-width: 720px;
}
.about-hero h1 {
  font-size: 2.6rem;
  margin: 14px 0;
}
.about-hero p {
  max-width: 720px;
}
.mission-grid {
  align-items: stretch;
}
.mission-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.mission-card h3 {
  margin-top: 0;
}
.mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fbe4e4;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.mission-icon.vision {
  background: #dbe7ff;
  color: #1d4ed8;
}
.value-card {
  text-align: center;
}
.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f1f5ff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
}
.story {
  align-items: center;
}
.story-media {
  min-height: 320px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d3ddee, #f2f6fb);
  box-shadow: var(--shadow);
}
.impact-band {
  background: linear-gradient(120deg, #1c3f7e, #0b1b3a);
  color: #fff;
  padding: 70px 0;
}
.impact-band .section-head p {
  color: #dbe5f5;
}
.impact-metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.impact-metrics strong {
  font-size: 2.1rem;
  display: block;
  color: #f7c99b;
}
.impact-metrics span {
  color: #e2e8f0;
}
.quality-grid {
  margin-top: 26px;
}
.quality-card {
  text-align: center;
}
.quality-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffecec;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
}
.quality-icon.blue {
  background: #e0e9ff;
  color: #1d4ed8;
}
.quality-icon.gold {
  background: #f6ead8;
  color: #b45309;
}
.team-grid {
  margin-top: 26px;
}
.leader-card {
  text-align: center;
}
.avatar-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #c54c5d, #3f4c9a);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}
.leader-card .role {
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.page-hero {
  background: linear-gradient(120deg, #f0f5ff, #ffffff);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.section {
  padding: 70px 0;
  background: #fff;
}
.section.alt {
  background: var(--bg);
}

.section-head {
  max-width: 700px;
  margin-bottom: 24px;
}
.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border: 1px solid #e4ebf3;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.service-card {
  text-align: left;
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f1f5ff;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.media-card .media {
  height: 180px;
  margin-bottom: 14px;
  border-radius: var(--radius);
}
.media[data-img="prosthetic"] {
  background: linear-gradient(135deg, #f4e7e7, #f7b2b2);
}
.media[data-img="wheelchair"] {
  background: linear-gradient(135deg, #e0ecff, #8fb5ff);
}
.media[data-img="brace"] {
  background: linear-gradient(135deg, #e7f4ef, #9de6cf);
}
.placeholder-img[data-img="prosthetic"] {
  background: linear-gradient(135deg, #f4e7e7, #f7b2b2);
}
.placeholder-img[data-img="wheelchair"] {
  background: linear-gradient(135deg, #e0ecff, #8fb5ff);
}
.placeholder-img[data-img="physio"] {
  background: linear-gradient(135deg, #e7f4ef, #9de6cf);
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: #e2e8f0;
}
.process-steps li {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.process-steps h3 {
  margin: 8px 0 6px;
  font-size: 1.05rem;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-card strong {
  display: block;
  margin-top: 12px;
}
.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}
.rating {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.rating span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}
.partners {
  text-align: center;
}
.partner-strip {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-weight: 600;
  color: var(--muted);
}

.cta-banner {
  background: var(--primary);
  color: #fff;
  padding: 50px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-copy {
  flex: 1 1 320px;
}
.cta-inner p {
  margin: 8px 0 0;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-banner .btn-outline {
  border-color: #fff;
  color: #fff;
}

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

.metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.metric strong {
  font-size: 1.6rem;
  display: block;
}

.team-card .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0ecff, #c7d2fe);
  margin-bottom: 10px;
}

.blog-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.blog-controls input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  min-width: 240px;
}
.blog-hero {
  background: linear-gradient(120deg, #1c3f7e, #0b1b3a);
  padding: 70px 0;
  color: #fff;
}
.blog-hero h1 {
  font-size: 2.6rem;
  margin: 14px 0;
}
.blog-hero p {
  max-width: 720px;
}
.blog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.blog-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 12px;
  background: #fff;
  min-width: 280px;
}
.blog-search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
  min-width: 0;
}
.search-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef2ff;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.chips .chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.blog-grid {
  margin-top: 16px;
}
.blog-card {
  padding: 0;
  overflow: hidden;
}
.blog-media {
  height: 190px;
}
.blog-body {
  padding: 18px 20px 22px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 10px 0 14px;
}
.read-more {
  color: var(--primary);
  font-weight: 600;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 10px;
}
.page-btn {
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
}
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.newsletter-band {
  background: var(--primary);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.newsletter-band p {
  margin: 6px 0 18px;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input {
  min-width: 260px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.newsletter-form .btn-outline {
  border-color: #fff;
  color: #fff;
}

.help-hero {
  background: linear-gradient(120deg, #1c3f7e, #0b1b3a);
  padding: 70px 0;
  color: #fff;
}
.help-hero h1 {
  font-size: 2.6rem;
  margin: 14px 0;
}
.help-hero p {
  max-width: 720px;
}
.help-section {
  display: grid;
  gap: 26px;
}
.faq-group {
  border-top: 1px solid #e2e8f0;
  padding-top: 18px;
}
.faq-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.faq-title span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.resource-grid {
  gap: 16px;
}
.resource-card {
  padding: 20px;
}
.help-cards {
  margin-top: 20px;
}
.help-card {
  text-align: center;
}
.help-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}
.help-icon.red {
  background: #fbe4e4;
  color: var(--primary);
}
.help-icon.blue {
  background: #dbe7ff;
  color: #1d4ed8;
}
.help-icon.gold {
  background: #f6ead8;
  color: #b45309;
}
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.post {
  padding: 40px 0;
}
.post-header {
  margin-bottom: 20px;
}
.post-media {
  height: 260px;
  margin: 20px 0;
}
.post-content ul {
  padding-left: 20px;
}

.accordion {
  display: grid;
  gap: 8px;
}
.accordion-trigger {
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: var(--radius);
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}
.accordion-panel {
  display: none;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.site-footer {
  background: #0b1b3a;
  color: #e2e8f0;
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.site-footer a {
  color: #fff;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin: 6px 0;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
}

.newsletter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #1f2c50;
  background: #101b34;
  color: #e2e8f0;
}

.contact-list {
  list-style: none;
  padding: 0;
}
.form-card {
  padding: 24px;
}
.field {
  margin-bottom: 12px;
}
.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.field textarea {
  resize: vertical;
}
.honeypot {
  display: none;
}
.alert {
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.alert.error {
  background: #fee2e2;
  color: #991b1b;
}
.alert.success {
  background: #dcfce7;
  color: #166534;
}
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .container {
    padding: 0 18px;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    margin-left: auto;
    width: auto;
    order: 2;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: min(320px, calc(100vw - 36px));
    margin-top: 12px;
    margin-left: auto;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }

  .nav-menu a {
    display: block;
    width: 100%;
    text-align: left;
  }

  .header-inner > .btn {
    display: none;
  }

  .nav-menu-cta {
    display: block;
    margin-top: 4px;
  }

  .nav-menu-cta-link {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero-media {
    min-height: 240px;
  }
  .services-hero h1 {
    font-size: 2.2rem;
  }
  .blog-hero h1 {
    font-size: 2.2rem;
  }
  .help-hero h1 {
    font-size: 2.2rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .service-media,
  .story-media,
  .hero-media,
  .post-media {
    min-height: 240px;
  }
  .split.reverse > div:first-child,
  .split.reverse > div:last-child {
    grid-column: auto;
  }
  .service-list.two-col {
    grid-template-columns: 1fr;
  }
  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-menu.open {
    display: flex;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }

  .topbar {
    display: none;
  }

  .header-inner {
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
    flex-wrap: nowrap;
  }

  .logo {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-text strong {
    font-size: 0.98rem;
  }

  .logo-text em {
    font-size: 0.74rem;
  }

  .hero,
  .services-hero,
  .about-hero,
  .contact-hero,
  .blog-hero,
  .help-hero,
  .impact-band,
  .cta-banner,
  .newsletter-band,
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-hero,
  .post {
    padding: 32px 0;
  }

  .hero h1,
  .services-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .blog-hero h1,
  .help-hero h1 {
    font-size: 2rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .newsletter-form .btn,
  .newsletter .btn {
    width: 100%;
  }

  .grid-4,
  .impact-metrics,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-toolbar {
    align-items: stretch;
  }

  .blog-search,
  .newsletter-form input,
  .blog-controls input {
    min-width: 0;
    width: 100%;
  }

  .faq-title {
    align-items: flex-start;
  }

  .mission-card,
  .faq-title,
  .topbar-left,
  .topbar-right {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .btn {
    width: 100%;
    padding: 12px 18px;
  }

  .nav-toggle {
    width: 48px;
  }

  .nav-menu {
    padding: 12px;
  }

  .hero h1,
  .services-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .blog-hero h1,
  .help-hero h1 {
    font-size: 1.72rem;
  }

  .hero p,
  .services-hero p,
  .about-hero p,
  .contact-hero p,
  .blog-hero p,
  .help-hero p,
  .section-head p,
  .post-content,
  .form-note {
    font-size: 0.95rem;
  }

  .card,
  .process-card,
  .form-card,
  .resource-card {
    padding: 18px;
  }

  .process-steps li {
    padding: 0;
  }

  .blog-body {
    padding: 16px 16px 20px;
  }

  .service-media,
  .story-media,
  .hero-media,
  .post-media {
    min-height: 200px;
  }

  .newsletter,
  .newsletter-form {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float-label {
    display: none;
  }
}
