.rescue-page {
  position: relative;
  z-index: 1;
}

.rescue-hero {
  min-height: 82vh;
  padding: 106px 0 56px;
  display: flex;
  align-items: center;
}

.rescue-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.rescue-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.rescue-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.rescue-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.rescue-personal-note {
  max-width: 650px;
  margin-top: 20px;
  padding: 12px 0 12px 16px;
  border-left: 3px solid var(--gold);
  color: var(--text);
  line-height: 1.55;
}

.rescue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.rescue-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
  color: rgba(224, 224, 224, 0.72);
  font-size: 0.83rem;
}

.rescue-assurances span::before {
  content: "✓";
  color: #50d890;
  margin-right: 7px;
}

.rescue-visual {
  position: relative;
  min-width: 0;
}

.rescue-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.rescue-visual-status {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 13px 15px;
  background: rgba(7, 8, 16, 0.92);
  border: 1px solid rgba(80, 216, 144, 0.42);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.83rem;
}

.rescue-route-band,
.rescue-faq-band {
  padding: 74px 0;
  background: rgba(5, 6, 14, 0.72);
  border-top: 1px solid var(--border);
}

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

.rescue-section-heading h2,
.rescue-share-layout h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  letter-spacing: 0;
}

.rescue-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.rescue-route article {
  padding-top: 20px;
  border-top: 2px solid rgba(255, 215, 0, 0.42);
}

.rescue-route article > b {
  color: var(--gold);
  font-size: 0.82rem;
}

.rescue-route h3 {
  margin: 18px 0 10px;
  font-size: 1.16rem;
  letter-spacing: 0;
}

.rescue-route p,
.rescue-share-layout p,
.rescue-faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.rescue-share-band {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.28);
  border-bottom: 1px solid rgba(255, 215, 0, 0.28);
}

.rescue-share-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.rescue-share-layout p {
  margin-top: 14px;
}

.rescue-faq-list {
  max-width: 860px;
}

.rescue-faq-list details {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.rescue-faq-list details:last-child {
  border-bottom: 1px solid var(--border);
}

.rescue-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
}

.rescue-faq-list p {
  padding-top: 14px;
}

@media (max-width: 820px) {
  .rescue-hero {
    min-height: auto;
    padding: 92px 0 44px;
  }

  .rescue-hero-grid,
  .rescue-share-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .rescue-copy h1 {
    font-size: 2.55rem;
  }

  .rescue-visual {
    max-width: 520px;
  }

  .rescue-route {
    grid-template-columns: 1fr;
  }

  .rescue-actions .btn,
  .rescue-share-layout .btn {
    width: 100%;
    justify-content: center;
  }
}
