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

:root {
  --clr-primary: #e74a3b;
  --clr-primary-dark: #cb3527;
  --clr-secondary: #2c6fd6;
  --clr-secondary-dark: #1d58b5;
  --clr-text: #14233b;
  --clr-muted: #61728e;
  --clr-soft: #eef5ff;
  --clr-border: rgba(161, 191, 235, 0.5);
  --clr-white: #ffffff;
  --shadow-soft: 0 16px 36px rgba(30, 84, 159, 0.08);
  --shadow-card: 0 14px 28px rgba(24, 63, 118, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", "Inter", sans-serif;
  color: var(--clr-text);
  background: linear-gradient(180deg, #f6f8fc 0%, #f7fbff 100%);
  line-height: 1.55;
}

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

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

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  font-size: 0.86rem;
  line-height: 1;
  flex: 0 0 1.2rem;
}

.trust-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
}

.req-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  margin-top: 0.04rem;
  background: linear-gradient(180deg, #eff6ff 0%, #dcecff 100%);
  color: var(--clr-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(144, 182, 235, 0.45);
}

.btn-arrow {
  font-size: 1rem;
  line-height: 1;
}

.logo,
.hero-art,
.help-card img,
.prep-card img {
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
}


button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(44, 111, 214, 0.35);
  outline-offset: 3px;
}

section {
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(20, 35, 59, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo {
  width: clamp(140px, 11vw, 176px);
  height: auto;
}

.main-nav {
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #263856;
  font-weight: 600;
  font-size: 0.96rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--clr-secondary-dark);
  background: rgba(44, 111, 214, 0.08);
}

.nav-container {
  min-height: 86px;
}

.nav-cta {
  margin-left: 0.75rem;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid rgba(162, 189, 234, 0.4);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--clr-text);
  margin: 2px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn-red {
  background: linear-gradient(180deg, #f05243 0%, var(--clr-primary) 100%);
  color: var(--clr-white);
  box-shadow: 0 16px 30px rgba(231, 74, 59, 0.24);
}

.btn-red:hover {
  background: linear-gradient(180deg, #ea4d3f 0%, var(--clr-primary-dark) 100%);
}

.btn-light {
  background: rgba(255, 255, 255, 0.18);
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.26);
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 2.35rem 1rem 4.4rem;
  background: #0f58af url("assets/hero-bg.svg") center / cover no-repeat;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 63, 132, 0.86) 0%, rgba(18, 89, 172, 0.72) 31%, rgba(18, 89, 172, 0.35) 62%, rgba(18, 89, 172, 0.06) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -30px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 74%);
  filter: blur(6px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 1.25rem;
}

.hero-text {
  max-width: 560px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-text h1 {
  font-size: clamp(2.35rem, 4.15vw, 3.9rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.12rem;
  color: #e6eefb;
  margin-bottom: 1.4rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.96rem;
  color: #f0f6ff;
}

.trust-item i {
  color: #bde0ff;
}

.hero-visual {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-art {
  width: min(100%, 640px);
  filter: drop-shadow(0 28px 42px rgba(13, 44, 92, 0.24));
  animation: float 4.5s ease-in-out infinite;
}

.benefits,
.process,
.help,
.preparation,
.requirements,
.signup,
.benefits-donor,
.faq,
.testimonial,
.cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: -2.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.benefit-card,
.process-card,
.requirements-list li,
.steps li,
.benefits-list li,
.testimonial-card,
.help-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.benefit-card {
  flex: 1 1 30%;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(30, 84, 159, 0.12);
}

.benefit-icon {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
}

.benefit-copy h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.benefit-copy p {
  color: var(--clr-muted);
}

.stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  width: min(calc(100% - 2rem), 1100px);
  margin: 0 auto 3rem;
  border-radius: 24px;
  border: 2px solid rgba(146, 184, 236, 0.85);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.stat {
  position: relative;
  flex: 1 1 33.333%;
  min-height: 128px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.7) 0%, rgba(255, 255, 255, 0.98) 100%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.stat:hover,
.stat.is-active {
  background: linear-gradient(180deg, rgba(230, 241, 255, 0.96) 0%, rgba(247, 251, 255, 1) 100%);
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(179, 202, 239, 0) 0%, rgba(179, 202, 239, 1) 18%, rgba(179, 202, 239, 1) 82%, rgba(179, 202, 239, 0) 100%);
}

.stat-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.stat-prefix {
  font-size: 1.15rem;
  font-weight: 800;
  color: #2d70d4;
}

.stat-value {
  font-size: clamp(2.35rem, 3vw, 3.35rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2d70d4;
}

.stat-label {
  font-size: clamp(1.28rem, 1vw + 0.9rem, 1.9rem);
  font-weight: 800;
  line-height: 1.08;
  color: #2d70d4;
}

.stat-note {
  color: #39506f;
  font-weight: 600;
}

.process {
  margin-bottom: 3.25rem;
}

.process h2,
.help h2,
.preparation h2,
.requirements h2,
.signup h2,
.benefits-donor h2,
.faq h2,
.testimonial h2 {
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  position: relative;
  border-radius: 24px;
  padding: 1.35rem 1.2rem 1.3rem;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(24, 63, 118, 0.12);
}

.process-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #edf5ff 0%, #dfeeff 100%);
  color: var(--clr-secondary);
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(144, 182, 235, 0.5);
}

.process-card h3 {
  font-size: 1.16rem;
  margin-bottom: 0.35rem;
}

.process-card p {
  color: var(--clr-muted);
  font-size: 0.96rem;
}

.help {
  margin-bottom: 3.25rem;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.help-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.help-card:hover,
.help-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(24, 63, 118, 0.12);
}

.image-shell {
  position: relative;
  overflow: hidden;
}

.image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(233, 242, 255, 0.9) 0%, rgba(245, 249, 255, 0.95) 50%, rgba(233, 242, 255, 0.9) 100%);
  background-size: 220% 100%;
  animation: skeleton 1.3s linear infinite;
}

.image-shell.is-loaded::before,
.prep-icon-wrap.is-loaded::before {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.help-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.help-card:hover img,
.help-card:focus-within img {
  transform: scale(1.04);
}

.caption {
  position: relative;
  padding: 1rem 1.05rem 1.1rem;
  color: #fff;
  background: linear-gradient(180deg, #2e72d7 0%, #245fbe 100%);
}

.caption-tag {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.36rem 0.66rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.caption strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
}

.caption p {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.preparation {
  margin-bottom: 3.25rem;
}

.prep-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.prep-card {
  text-align: center;
  padding-top: 0.2rem;
  transition: transform 0.25s ease;
}

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

.prep-cards-images-only .prep-card {
  display: flex;
  justify-content: center;
}

.prep-cards-images-only .prep-card img {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(33, 92, 173, 0.08));
}

.section-intro {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.section-intro p,
.faq-head p,
.testimonial p {
  max-width: 720px;
  color: var(--clr-muted);
  font-size: 1rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(44, 111, 214, 0.1);
  color: var(--clr-secondary-dark);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.requirements,
.signup,
.benefits-donor,
.faq,
.testimonial,
.cta {
  margin-bottom: 3.25rem;
}

.requirements-list,
.benefits-list,
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.requirements-list li,
.benefits-list li,
.steps li {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.requirements-list .req-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  margin-top: 0.02rem;
  background: linear-gradient(180deg, #eff6ff 0%, #dcecff 100%);
  color: var(--clr-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(144, 182, 235, 0.45);
}

.steps {
  counter-reset: item;
}

.steps li {
  position: relative;
  padding-left: 4.1rem;
}

.steps li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 1rem;
  top: 0.95rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf5ff;
  color: var(--clr-secondary);
  font-weight: 800;
}

.testimonial-card {
  border-radius: 28px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(236, 245, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.testimonial-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  background: linear-gradient(180deg, #edf5ff 0%, #dbeafe 100%);
  color: var(--clr-primary);
  font-size: 1.7rem;
  font-weight: 800;
}

.faq-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.faq-toggle-all {
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  background: #fff;
  color: var(--clr-secondary-dark);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.faq-toggle-all:hover {
  transform: translateY(-2px);
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.accordion-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(179, 201, 236, 0.44);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.accordion-item:hover {
  box-shadow: 0 18px 34px rgba(24, 63, 118, 0.09);
}

.accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(44, 111, 214, 0.18);
  background: #f3f8ff;
  position: relative;
  flex: 0 0 28px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--clr-secondary);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
}

.accordion-item.is-open .accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  padding: 0 1.25rem;
  color: var(--clr-muted);
  background: #fafcff;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-item.is-open .accordion-content {
  padding: 0 1.25rem 1rem;
}

.cta {
  margin-bottom: 5.5rem;
}

.cta-container {
  border-radius: 28px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-soft);
}

.cta-badge {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e6f2ff 0%, #d9eaff 100%);
  color: var(--clr-secondary);
  font-size: 1.6rem;
  font-weight: 800;
  flex: 0 0 64px;
}

.cta-text {
  flex: 1 1 420px;
}

.cta-text h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.cta-text p {
  color: var(--clr-muted);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: none;
  gap: 0.75rem;
  padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 -10px 30px rgba(24, 63, 118, 0.12);
}

.mobile-sticky-cta .btn {
  flex: 1 1 50%;
  min-width: 0;
}

.mobile-sticky-cta .btn-light {
  background: #eff5ff;
  border-color: rgba(44, 111, 214, 0.14);
  color: var(--clr-secondary-dark);
  backdrop-filter: none;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(20, 35, 59, 0.94);
  color: #fff;
  box-shadow: 0 16px 30px rgba(18, 33, 59, 0.22);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 0 1rem 2rem;
  text-align: center;
  color: var(--clr-muted);
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes skeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .process-grid,
  .help-cards,
  .prep-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(181, 203, 238, 0.44);
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(24, 63, 118, 0.09);
    padding: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-container.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }

  .nav-links a {
    justify-content: flex-start;
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: left;
    align-items: flex-start;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
  }

  .hero-art {
    width: min(100%, 580px);
  }

  .benefits {
    margin-top: 1rem;
  }

  .stats {
    flex-direction: column;
  }

  .stat:not(:last-child)::after {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(179, 202, 239, 0) 0%, rgba(179, 202, 239, 1) 18%, rgba(179, 202, 239, 1) 82%, rgba(179, 202, 239, 0) 100%);
  }

  .faq-head,
  .cta-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 0 0 28px 28px;
  }

  .hero-actions,
  .hero-trust,
  .benefits,
  .process-grid,
  .help-cards,
  .prep-cards {
    grid-template-columns: 1fr;
  }

  .benefits,
  .process-grid,
  .help-cards,
  .prep-cards {
    display: grid;
  }

  .benefit-card,
  .process-card,
  .help-card {
    min-width: 0;
  }

  .hero-text h1 {
    font-size: 2.15rem;
  }

  .hero-art {
    width: min(100%, 460px);
  }

  .help-card img {
    height: auto;
    aspect-ratio: 33 / 16;
    object-position: center;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

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

  .benefit-card {
    flex-direction: row;
  }

  .process-card,
  .help-card,
  .requirements-list li,
  .steps li,
  .benefits-list li,
  .testimonial-card,
  .cta-container {
    border-radius: 20px;
  }

  .prep-cards-images-only .prep-card img {
    width: min(100%, 280px);
  }

  .faq-toggle-all {
    width: 100%;
    justify-content: center;
  }

  .cta {
    margin-bottom: 7rem;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (max-width: 560px) {
  .nav-container {
    padding: 0.75rem 0.9rem;
  }

  .logo {
    width: 132px;
  }

  .hero,
  .benefits,
  .process,
  .help,
  .preparation,
  .requirements,
  .signup,
  .benefits-donor,
  .faq,
  .testimonial,
  .cta {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .hero-pill {
    font-size: 0.86rem;
  }

  .hero-art {
    width: min(100%, 400px);
  }

  .help-card img {
    aspect-ratio: 33 / 16;
  }

  .benefit-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
  }

  .accordion-trigger {
    padding: 1rem;
  }

  .accordion-item.is-open .accordion-content {
    padding: 0 1rem 1rem;
  }

  .toast {
    left: 0.9rem;
    right: 0.9rem;
    bottom: calc(4.8rem + env(safe-area-inset-bottom));
  }
}
