:root {
  --bg: #f5f7f4;
  --white: #ffffff;
  --ink: #14394a;
  --muted: #5b7380;
  --line: rgba(18, 59, 73, 0.12);
  --hero: #00485b;
  --hero-deep: #033b4a;
  --hero-soft: rgba(255, 255, 255, 0.08);
  --accent: #9dd92a;
  --accent-deep: #7eb91c;
  --accent-soft: rgba(157, 217, 42, 0.18);
  --shadow: 0 26px 54px rgba(8, 47, 61, 0.14);
  --shadow-soft: 0 18px 36px rgba(9, 39, 50, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --font-display: "Montserrat", "Trebuchet MS", sans-serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(0, 126, 148, 0.08), transparent 26%),
    linear-gradient(180deg, #f7faf7 0%, #f3f6f4 100%);
  color: var(--ink);
  font-family: var(--font-sans);
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.page-shell {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  padding: 20px 0 38px;
}

.hero-shell {
  padding: 18px 22px 44px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 16% 8%, rgba(36, 167, 174, 0.22), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(145deg, var(--hero) 0%, #005267 55%, var(--hero-deep) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 84%);
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-section {
  position: relative;
  z-index: 1;
}

body.nav-open .hero-shell {
  overflow: visible;
}

body.nav-open .site-header {
  z-index: 120;
}

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

.brand-mark {
  position: relative;
  width: 54px;
  height: 44px;
}

.brand-heart {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 4px solid #46b6c0;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  transform: rotate(-45deg);
}

.brand-heart-left {
  left: 0;
  top: 10px;
}

.brand-heart-right {
  left: 17px;
  top: 4px;
  border-color: var(--accent);
}

.brand-copy {
  color: var(--white);
}

.brand-copy strong {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
}

.site-nav-shell {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-nav-backdrop {
  display: none;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-accent {
  background: var(--accent);
  color: #1b3a24;
  box-shadow: 0 16px 28px rgba(157, 217, 42, 0.2);
}

.button-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.44);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(18, 59, 73, 0.14);
}

.button-icon {
  font-size: 1.02rem;
}

.header-button {
  min-height: 48px;
  padding-inline: 22px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.96fr);
  gap: 30px;
  align-items: center;
  padding-top: 28px;
}

.hero-copy {
  color: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
}

h1 {
  max-width: 8.2ch;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.93;
  color: var(--white);
}

h1 span {
  display: block;
  color: var(--accent);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.hero-summary,
.about-copy p,
.medical-card p,
.help-card-body p,
.news-card p,
.site-footer p {
  line-height: 1.65;
}

.hero-summary {
  max-width: 25ch;
  margin: 22px 0 26px;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.92);
}

.progress-card {
  width: min(100%, 470px);
  padding: 20px 22px 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.progress-top,
.progress-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.progress-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-need {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--accent);
}

.progress-track {
  height: 14px;
  margin: 16px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8ccb20 0%, #d6f663 100%);
  transition: width 420ms ease;
}

.progress-bottom {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
}

.progress-bottom strong {
  color: var(--white);
}

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

.hero-visual {
  display: grid;
  justify-items: end;
}

.hero-photo-wrap {
  width: min(100%, 590px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 28px 56px rgba(0, 21, 28, 0.24);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-quote {
  width: min(360px, calc(100% - 40px));
  margin: -62px 18px 0 0;
  padding: 22px 24px 22px 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quote-mark {
  color: var(--accent-deep);
  font-size: 3rem;
  line-height: 0.8;
}

.hero-quote p {
  margin: 6px 0 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 24px 26px;
  margin: -28px auto 22px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.feature-card strong {
  max-width: 15ch;
  line-height: 1.35;
  font-size: 1.02rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--ink);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main section + section {
  margin-top: 24px;
}

.about-section,
.help-section,
.news-section,
.medical-section {
  padding: 18px 6px;
}

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

.section-heading-center {
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 16px;
  padding: 4px 8px 4px 2px;
}

.about-copy p {
  margin: 0;
  font-size: 1.08rem;
}

.about-highlight {
  color: #7fb71d;
  font-weight: 800;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-photo-wrap {
  position: relative;
  width: min(100%, 520px);
  padding: 6px 0 10px 28px;
}

.photo-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 190px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(157, 217, 42, 0.14), rgba(157, 217, 42, 0.42));
  transform: rotate(-20deg);
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.medical-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 330px) minmax(0, 1fr);
  align-items: stretch;
  gap: 22px;
  padding: 28px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(42, 174, 191, 0.18), transparent 26%),
    linear-gradient(145deg, var(--hero) 0%, #00576b 52%, var(--hero-deep) 100%);
  box-shadow: var(--shadow);
  color: var(--white);
}

.medical-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 14px;
  min-height: 100%;
}

.medical-card h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
  line-height: 1.04;
}

.medical-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.medical-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 0;
}

.medical-dna {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  pointer-events: none;
}

.medical-dna::before {
  content: "";
  position: absolute;
  inset: 10% 4% 8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 214, 229, 0.14) 0%, transparent 74%);
  filter: blur(24px);
}

.medical-dna img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 430px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 0.82;
  transform: translate(-48%, -48%) rotate(24deg) scaleX(1.28);
  transform-origin: center;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 8%,
    rgba(0, 0, 0, 0.72) 16%,
    rgba(0, 0, 0, 1) 28%,
    rgba(0, 0, 0, 1) 72%,
    rgba(0, 0, 0, 0.72) 84%,
    rgba(0, 0, 0, 0.2) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 8%,
    rgba(0, 0, 0, 0.72) 16%,
    rgba(0, 0, 0, 1) 28%,
    rgba(0, 0, 0, 1) 72%,
    rgba(0, 0, 0, 0.72) 84%,
    rgba(0, 0, 0, 0.2) 92%,
    transparent 100%
  );
  filter:
    saturate(1.04)
    brightness(1.02)
    drop-shadow(0 0 12px rgba(83, 221, 235, 0.14));
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.help-grid-payments {
  align-items: stretch;
}

.help-subsection {
  margin-top: 28px;
}

.help-subsection-title {
  margin: 0 0 16px;
  font-size: 1.28rem;
}

.help-grid-abroad {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.help-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 100%;
  padding: 20px 18px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.help-card-head {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.help-card-head strong {
  font-size: 1.06rem;
}

.help-icon,
.help-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(20, 57, 74, 0.06);
  color: var(--ink);
  font-weight: 800;
}

.mono {
  background: #111111;
  color: var(--white);
  text-transform: lowercase;
}

.privat {
  background: #6dbd2a;
  color: #143918;
}

.eur {
  background: linear-gradient(145deg, #f4f7fb 0%, #dfe8f4 100%);
  color: #1f4f8c;
  font-size: 1.1rem;
}

.paypal {
  background: #003087;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.crypto {
  background: #17212f;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.help-card-body-compact {
  min-height: auto;
}

.help-card-body {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 164px;
}

.help-card-body p {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
}

.wallet-address {
  display: block;
  margin-top: 4px;
  color: rgba(20, 57, 74, 0.76);
  font-size: 0.86rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 57, 74, 0.08);
}

.copy-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.copy-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(20, 57, 74, 0.14);
  border-radius: 12px;
  background: rgba(20, 57, 74, 0.04);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.copy-chip svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.copy-chip:hover,
.copy-chip:focus-visible {
  transform: translateY(-1px);
  background: rgba(20, 57, 74, 0.08);
  border-color: rgba(20, 57, 74, 0.2);
}

.help-strong-number {
  color: #7eb91c;
  font-size: 1.12rem;
  font-weight: 800;
}

.help-button {
  margin-top: auto;
}

.share-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(40, 173, 186, 0.18), transparent 22%),
    linear-gradient(145deg, var(--hero) 0%, #005669 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.share-banner-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.58rem;
}

.share-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.documents-section {
  padding: 34px 0 8px;
}

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

.document-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.document-card[hidden] {
  display: none;
}

.document-card:hover,
.document-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(7, 27, 34, 0.14);
}

.document-preview {
  position: relative;
  display: block;
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: 12px;
  background: var(--paper);
}

.document-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.document-card strong {
  display: block;
  min-height: 2.8em;
  font-size: 0.94rem;
  line-height: 1.35;
}

.document-card > span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.news-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px 16px;
}

.news-section .section-heading {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.news-heading-actions {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.news-nav {
  display: flex;
  gap: 10px;
}

.news-nav-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(18, 59, 73, 0.14);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.news-nav-button:hover,
.news-nav-button:focus-visible {
  transform: translateY(-1px);
  background: #f7fbfa;
}

.news-nav-button:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.news-carousel {
  grid-column: 1 / -1;
  grid-row: 2;
  overflow: hidden;
}

.news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.news-track::-webkit-scrollbar {
  display: none;
}

.news-card {
  display: grid;
  gap: 12px;
  padding: 0 0 18px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  min-width: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: rgba(14, 41, 50, 0.18);
  box-shadow: 0 18px 36px rgba(14, 41, 50, 0.12);
  transform: translateY(-2px);
}

.news-card strong,
.news-card p {
  padding-inline: 18px;
}

.news-card strong {
  font-size: 1.18rem;
}

.news-card p {
  margin: 0;
}

.news-date {
  color: var(--muted);
  font-size: 0.88rem;
}

.news-image-wrap {
  aspect-ratio: 1.38 / 0.92;
  overflow: hidden;
  background: linear-gradient(145deg, #ebf2ef 0%, #d6e5e1 100%);
}

.news-image,
.news-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-video {
  display: block;
  background: #061820;
}

.report-visual,
.vial-visual {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.news-image-report {
  background:
    linear-gradient(145deg, #edf2ef 0%, #dce8e4 100%);
}

.report-check {
  width: 120px;
  height: 84px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(14, 41, 50, 0.12);
}

.report-visual {
  gap: 10px;
}

.report-visual span {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.news-image-vial {
  background:
    radial-gradient(circle at 50% 24%, rgba(157, 217, 42, 0.2), transparent 24%),
    linear-gradient(145deg, #f5f8f7 0%, #dde7e4 100%);
}

.vial-bottle {
  width: 116px;
  height: 164px;
  padding-top: 34px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 242, 239, 0.98));
  border: 1px solid rgba(18, 59, 73, 0.12);
  box-shadow: 0 16px 28px rgba(14, 41, 50, 0.1);
  text-align: center;
}

.vial-bottle::before {
  content: "";
  display: block;
  width: 52px;
  height: 24px;
  margin: -18px auto 16px;
  border-radius: 10px;
  background: #b8a87e;
}

.vial-bottle span {
  color: #4a5b63;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand social";
  align-items: start;
  gap: 28px;
  padding: 28px 30px;
  margin-top: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(36, 167, 174, 0.18), transparent 20%),
    linear-gradient(145deg, var(--hero) 0%, #005468 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.footer-brand {
  grid-area: brand;
  display: grid;
  gap: 16px;
}

.site-footer p,
.site-footer a,
.footer-copy,
.footer-column span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-copy {
  font-size: 0.84rem;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-contact-row span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-row a {
  color: var(--white);
  font-weight: 600;
}

.footer-contact-row a:hover,
.footer-contact-row a:focus-visible {
  color: #b9ea57;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-social {
  grid-area: social;
  justify-items: start;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(7, 27, 34, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(7, 27, 34, 0.24);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.instagram {
  background: linear-gradient(145deg, #f58529, #dd2a7b 55%, #515bd4);
}

.facebook {
  background: #2475f1;
}

.telegram {
  background: #2fa5e0;
}

.tiktok {
  background: #111111;
}

.youtube {
  background: #ff2c2c;
}

.donate-modal[hidden],
.share-modal[hidden],
.document-gallery[hidden] {
  display: none;
}

.donate-modal,
.share-modal,
.document-gallery {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}

.donate-modal-backdrop,
.share-modal-backdrop,
.document-gallery-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 24, 30, 0.58);
  backdrop-filter: blur(8px);
}

.donate-modal-dialog,
.share-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100% - 24px));
  padding: 28px 24px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 245, 0.98));
  box-shadow: 0 30px 80px rgba(6, 24, 30, 0.26);
}

.donate-modal-dialog {
  width: min(720px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  overflow-y: auto;
}

.donate-modal-close,
.share-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(20, 57, 74, 0.12);
  border-radius: 50%;
  background: rgba(20, 57, 74, 0.04);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.donate-modal-kicker,
.share-modal-kicker {
  margin: 0 0 8px;
  color: #6fa81d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.donate-modal-title,
.share-modal-title {
  margin-bottom: 10px;
}

.donate-modal-text,
.share-modal-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.donate-modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.donate-method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(20, 57, 74, 0.12);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 27, 34, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.donate-method:hover,
.donate-method:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(20, 57, 74, 0.22);
  box-shadow: 0 14px 28px rgba(7, 27, 34, 0.12);
}

.donate-method strong,
.donate-method small {
  display: block;
}

.donate-method small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.document-gallery {
  z-index: 150;
}

.document-gallery-backdrop {
  background: rgba(6, 24, 30, 0.78);
}

.document-gallery-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 14px;
  width: min(1040px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  padding: 18px;
  border-radius: 24px;
  background: rgba(245, 249, 248, 0.98);
  box-shadow: 0 30px 80px rgba(6, 24, 30, 0.32);
}

.document-gallery-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 57, 74, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.document-gallery-nav {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(20, 57, 74, 0.14);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}

.document-gallery-figure {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
}

.document-gallery-tools {
  display: inline-flex;
  justify-self: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(20, 57, 74, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.document-gallery-tool {
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(20, 57, 74, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.document-gallery-zoom-label {
  min-width: 72px;
}

.document-gallery-image-wrap {
  display: grid;
  place-items: start center;
  max-height: calc(100vh - 150px);
  overflow: auto;
  border-radius: 16px;
  background: var(--white);
  cursor: zoom-in;
}

.document-gallery-image-wrap.is-zoomed {
  place-items: start center;
  cursor: zoom-out;
}

.document-gallery-figure img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  transition: width 180ms ease;
}

.document-gallery-figure img.is-zoomed {
  max-height: none;
}

.document-gallery-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
}

.document-gallery-figure figcaption span {
  color: var(--muted);
  white-space: nowrap;
}

.share-modal-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.share-platform-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(7, 27, 34, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.share-platform-link:hover,
.share-platform-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(7, 27, 34, 0.2);
}

.share-platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.share-platform-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.share-platform-link.facebook {
  background: #2475f1;
}

.share-platform-link.instagram {
  background: linear-gradient(145deg, #f58529, #dd2a7b 55%, #515bd4);
}

.share-platform-link.twitter {
  background: #111111;
}

.share-platform-link.threads {
  background: #101010;
}

@media (max-width: 1080px) {
  .site-header,
  .hero-section,
  .about-grid,
  .medical-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-areas:
      "brand"
      "social";
  }

  .site-header {
    justify-items: start;
  }

  .hero-visual {
    justify-items: center;
  }

  .hero-quote {
    margin: -44px 0 0;
  }

  .feature-strip,
  .help-grid,
  .help-grid-abroad,
  .news-track {
    grid-template-columns: none;
  }

  .news-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .feature-strip,
  .help-grid,
  .help-grid-abroad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .documents-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 18px, 1220px);
    padding-top: 12px;
  }

  .hero-shell {
    padding: 18px 16px 34px;
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1;
    align-items: center;
    gap: 10px;
  }

  .brand-mark {
    flex: 0 0 46px;
    width: 46px;
    height: 38px;
  }

  .brand-heart {
    width: 24px;
    height: 24px;
    border-width: 3px;
  }

  .brand-heart-left {
    top: 9px;
  }

  .brand-heart-right {
    left: 15px;
    top: 4px;
  }

  .brand-copy {
    min-width: 0;
    flex: 1;
  }

  .brand-copy strong {
    font-size: 1rem;
    line-height: 1.05;
    white-space: normal;
    word-break: keep-all;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav-shell {
    position: fixed;
    inset: 0;
    z-index: 140;
    flex: none;
    justify-content: flex-end;
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .site-nav-shell {
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav-backdrop {
    display: block;
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(6, 24, 30, 0.58);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.28s ease;
    cursor: pointer;
  }

  body.nav-open .site-nav-backdrop {
    opacity: 1;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: min(320px, 88vw);
    height: 100%;
    margin-left: auto;
    padding: 88px 24px 32px;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 6px;
    background: linear-gradient(180deg, #0a3d49 0%, #072e38 100%);
    box-shadow: -20px 0 60px rgba(6, 24, 30, 0.28);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 1rem;
    font-weight: 600;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
  }

  .header-button {
    width: auto;
    min-height: 44px;
    padding-inline: 16px;
    font-size: 0.92rem;
  }

  .hero-actions .button,
  .about-actions .button,
  .share-banner .button {
    width: 100%;
  }

  .hero-actions,
  .about-actions,
  .share-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .news-section {
    grid-template-columns: 1fr;
  }

  .news-section .section-heading,
  .news-carousel,
  .news-heading-actions {
    grid-column: 1;
  }

  .news-section .section-heading {
    grid-row: 1;
  }

  .news-carousel {
    grid-row: 2;
  }

  .news-heading-actions {
    grid-row: 3;
    width: 100%;
    justify-content: space-between;
  }

  .feature-strip {
    margin-top: -18px;
    padding: 18px;
  }

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

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    flex-basis: 42px;
    width: 42px;
    height: 34px;
  }

  .brand-heart {
    width: 22px;
    height: 22px;
  }

  .brand-heart-left {
    top: 8px;
  }

  .brand-heart-right {
    left: 14px;
    top: 3px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
    line-height: 1.02;
  }

  .help-grid-payments {
    grid-auto-rows: auto;
  }

  .donate-modal-actions {
    grid-template-columns: 1fr;
  }

  .document-gallery-dialog {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
  }

  .document-gallery-figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .document-gallery-nav {
    width: 100%;
    height: 48px;
    border-radius: 14px;
  }

  .document-gallery-prev {
    grid-column: 1;
  }

  .document-gallery-next {
    grid-column: 2;
  }

  .document-gallery-image-wrap,
  .document-gallery-figure img {
    max-height: calc(100vh - 190px);
  }

  .document-gallery-figure img.is-zoomed {
    max-height: none;
  }

  .document-gallery-figure figcaption {
    display: grid;
  }

  .hero-section {
    gap: 30px;
    align-items: start;
    padding-top: 24px;
  }

  .hero-copy {
    display: grid;
    gap: 22px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .hero-summary {
    max-width: none;
    margin: 0;
    font-size: 1.08rem;
  }

  .progress-card {
    width: 100%;
    margin: 0;
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .progress-top,
  .progress-bottom {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }

  .progress-need {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .progress-track {
    margin: 14px 0;
  }

  .hero-actions {
    gap: 12px;
  }

  .feature-strip,
  .help-grid,
  .help-grid-abroad {
    grid-template-columns: 1fr;
  }

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

  .news-track {
    grid-auto-columns: 100%;
  }

  .hero-photo-wrap,
  .hero-quote {
    width: 100%;
  }

  .medical-section,
  .site-footer {
    padding: 22px 20px;
  }

  .medical-dna {
    min-height: 185px;
  }

  .medical-dna img {
    height: 310px;
    transform: translate(-48%, -48%) rotate(18deg) scaleX(1.2);
  }

  .copy-row {
    grid-template-columns: 1fr;
  }

  .copy-chip {
    justify-self: start;
  }

  .donate-modal-dialog,
  .share-modal-dialog {
    padding: 24px 18px 18px;
    border-radius: 22px;
  }

  .news-heading-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
