:root {
  --bg: #f6f8fc;
  --bg-soft: #edf3fb;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --text: #132238;
  --muted: #62748f;
  --line: rgba(19, 34, 56, 0.1);
  --blue: #2d7ff9;
  --yellow: #ffd33d;
  --green: #2fba7d;
  --shadow: 0 24px 54px rgba(34, 53, 78, 0.12);
  --card-shadow: 0 18px 42px rgba(34, 53, 78, 0.10);
  --radius: 21px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(45, 127, 249, 0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 211, 61, 0.22), transparent 18%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fd 44%, #eef4fb 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  filter: invert(1) brightness(0.28) saturate(1.25);
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #132238;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), #fff095);
  box-shadow: 0 12px 28px rgba(255, 211, 61, 0.28);
}

.nav-links,
.nav-actions,
.hero-actions,
.meta,
.filters {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  gap: 12px;
}

.lang-menu {
  position: relative;
  flex-shrink: 0;
}

.lang-switch,
.menu-toggle {
  border: 1px solid rgba(19, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px 0 11px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}

.lang-flag {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 22px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(19, 34, 56, 0.08);
  font-size: 18px;
  line-height: 1;
  overflow: hidden;
}

.lang-code {
  line-height: 1;
}

.lang-switch::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.lang-options {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 118px;
  padding: 7px;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.lang-menu:hover .lang-options,
.lang-menu:focus-within .lang-options,
.lang-menu.is-open .lang-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu:hover .lang-switch,
.lang-menu:focus-within .lang-switch {
  background: #fff;
  color: #132238;
}

.lang-menu:hover .lang-switch::after,
.lang-menu:focus-within .lang-switch::after {
  transform: translateY(2px) rotate(225deg);
}

.lang-options a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  color: #31507f;
  font-size: 14px;
  font-weight: 800;
}

.lang-options .lang-flag {
  width: 26px;
  height: 20px;
  border-radius: 7px;
  font-size: 17px;
  box-shadow: none;
}

.lang-options a:hover,
.lang-options a[aria-current="true"] {
  color: #132238;
  background: #eef4fb;
}

.lang-options:has(a:hover) a[aria-current="true"]:not(:hover),
.lang-options:has(a:focus-visible) a[aria-current="true"]:not(:focus-visible) {
  color: #31507f;
  background: transparent;
}

.drawer-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.drawer-languages a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 78px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 999px;
  font-weight: 900;
}

.drawer-languages .lang-flag {
  width: 24px;
  height: 18px;
  border-radius: 6px;
  font-size: 16px;
  box-shadow: none;
}

.drawer-languages a[aria-current="true"] {
  background: linear-gradient(135deg, var(--yellow), #ffe783);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: #132238;
  border-color: #e3b600;
  background: linear-gradient(135deg, var(--yellow), #ffe783);
  box-shadow: 0 14px 28px rgba(255, 211, 61, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  border-color: #c99b00;
  box-shadow: 0 16px 32px rgba(255, 211, 61, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(19, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost {
  color: #31507f;
}

.hero {
  padding: 68px 0 44px;
}

.about-hero {
  padding: 68px 0 34px;
}

.gallery-hero {
  padding: 68px 0 34px;
}

.contact-hero {
  padding: 68px 0 34px;
}

.requests-hero {
  padding: 68px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 18px;
  color: #173a66;
  border: 1px solid #b7d6ff;
  border-radius: 999px;
  background: #e8f2ff;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(45, 127, 249, 0.08);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(61, 213, 152, 0.12);
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 10px;
  color: #15243a;
  font-size: 21px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

p {
  margin-top: 0;
}

.hero-copy p {
  max-width: 62ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-actions .btn-primary {
  min-width: 190px;
}

.donation-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.donation-trust span,
.donation-trust a,
.trust-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #31507f;
  border: 1px solid rgba(45, 127, 249, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.donation-trust a,
.trust-links a {
  color: #132238;
  background: linear-gradient(135deg, rgba(255, 211, 61, 0.65), rgba(255, 240, 149, 0.72));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-card,
.card,
.visual-card,
.quote-card,
.footer-card {
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.stat-card {
  padding: 18px;
  text-align: left;
  cursor: pointer;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 26px;
  line-height: 1;
}

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

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(45, 127, 249, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(240,246,255,0.96)),
    linear-gradient(145deg, #ffffff, #eef4fb);
}

.about-visual {
  min-height: auto;
  justify-content: space-between;
}

.about-visual img {
  display: block;
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 46px rgba(32, 58, 96, 0.16);
}

.gallery-feature {
  min-height: auto;
  justify-content: space-between;
}

.gallery-feature > img {
  display: block;
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 46px rgba(32, 58, 96, 0.16);
}

.contact-card {
  min-height: auto;
  justify-content: flex-start;
}

.contact-card > .eyebrow {
  align-self: flex-start;
}

.support-note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.request-feature {
  min-height: auto;
  justify-content: flex-start;
}

.request-feature > img {
  display: block;
  width: 100%;
  height: clamp(340px, 34vw, 430px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 46px rgba(32, 58, 96, 0.16);
}

.request-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.request-contact-strip a {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--card-shadow);
}

.request-contact-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.request-contact-strip strong {
  color: #15243a;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.payment-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: #15243a;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.payment-card span {
  display: grid;
  width: max-content;
  min-width: 58px;
  height: 58px;
  place-items: center;
  padding: 0 16px;
  color: #31507f;
  border-radius: 16px;
  background: #eef4fb;
  font-size: 16px;
  font-weight: 900;
}

.payment-card:nth-child(1) span {
  color: #285a84;
  background: #e7f2fb;
}

.payment-card:nth-child(2) span {
  color: #2d6f62;
  background: #e8f6f1;
}

.payment-card:nth-child(3) span {
  color: #805c16;
  background: #fff4d8;
}

.payment-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.bank-details {
  display: grid;
  gap: 4px;
  margin: 8px 0 18px;
  padding: 18px;
  border-radius: 18px;
  background: #eef4fb;
}

.bank-details.compact {
  grid-area: details;
  width: min(100%, 320px);
  margin: 0;
  padding: 16px 18px;
  justify-self: end;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.72);
}

.bank-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.bank-details strong {
  color: #15243a;
}

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

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.visual-badge {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  margin: 10px;
  padding: 10px 14px;
  color: #31507f;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  font-size: 13px;
}

.vehicle-scene {
  position: relative;
  flex: 1 1 auto;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(18, 29, 38, 0.94) 0%, rgba(18, 29, 38, 0.72) 38%, rgba(18, 29, 38, 0.08) 100%),
    url("assets/hero-military-car.jpg") 72% center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 24px 46px rgba(32, 58, 96, 0.18);
}

.mission-copy {
  position: relative;
  z-index: 2;
  max-width: 420px;
  color: #fff;
}

.mission-copy h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(27px, 3.3vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.mission-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
}

.mission-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mission-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #e3b600;
  border-radius: 999px;
  color: #132238;
  background: linear-gradient(135deg, #ffd33d, #ffe783);
  box-shadow: 0 16px 30px rgba(255, 211, 61, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 900;
}

.mission-copy a + a {
  color: #fff;
  border-color: rgba(232, 242, 255, 0.82);
  background: rgba(232, 242, 255, 0.14);
  box-shadow: 0 14px 28px rgba(7, 13, 18, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.mission-copy a:hover {
  transform: translateY(-1px);
  border-color: #c99b00;
  box-shadow: 0 18px 34px rgba(255, 211, 61, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.mission-copy a + a:hover {
  border-color: #fff;
  background: rgba(232, 242, 255, 0.22);
  box-shadow: 0 16px 32px rgba(7, 13, 18, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.floating-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.floating-panel .mini {
  padding: 14px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.mini .label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.mini strong {
  font-size: 18px;
}

section {
  padding: 24px 0;
}

.donation-band {
  padding-top: 8px;
}

.donation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  grid-template-areas:
    "copy details"
    "actions details";
  gap: 20px 42px;
  align-items: start;
  padding: 24px 34px 24px 24px;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 15%, rgba(255, 211, 61, 0.24), transparent 25%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--card-shadow);
}

.donation-panel > div:first-child {
  grid-area: copy;
}

.donation-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.donation-panel p {
  max-width: 58ch;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.donation-actions {
  grid-area: actions;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 10px;
  justify-self: start;
  align-self: start;
}

.donation-actions .btn,
.payment-actions .btn,
.copy-iban {
  min-height: 56px;
  gap: 10px;
  border-radius: 16px;
}

.donation-actions .btn {
  padding-inline: 16px;
  white-space: nowrap;
}

.donation-actions .btn-icon,
.payment-actions .btn-icon,
.copy-iban .btn-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.donation-actions .btn-primary,
.payment-actions .btn-primary {
  color: #132238;
  border-color: #e7b900;
  background: linear-gradient(135deg, #ffe17a, #ffe993);
  box-shadow: 0 10px 22px rgba(231, 185, 0, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.donation-actions .btn-primary:hover,
.payment-actions .btn-primary:hover {
  border-color: #d2a600;
  background: linear-gradient(135deg, #ffd95c, #ffe482);
  box-shadow: 0 12px 24px rgba(231, 185, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.donation-actions .btn-secondary,
.payment-actions .btn-secondary {
  color: #132238;
  border-color: #dce6f3;
  background: #fff;
  box-shadow: 0 8px 18px rgba(19, 34, 56, 0.04);
}

.donation-actions .btn-secondary:hover,
.payment-actions .btn-secondary:hover {
  border-color: #c9daf0;
  background: #f3f8ff;
  box-shadow: 0 10px 20px rgba(19, 34, 56, 0.07);
}

.donation-actions .btn-ghost,
.payment-actions .btn-ghost,
.copy-iban {
  color: #244d85;
  border-color: #bfd8ff;
  background: #eaf3ff;
  box-shadow: 0 8px 18px rgba(36, 77, 133, 0.06);
}

.donation-actions .btn-ghost:hover,
.payment-actions .btn-ghost:hover,
.copy-iban:hover {
  border-color: #a9c9f8;
  background: #ddebff;
  box-shadow: 0 10px 20px rgba(36, 77, 133, 0.09);
}

.donation-actions .btn:focus-visible,
.payment-actions .btn:focus-visible,
.copy-iban:focus-visible {
  outline: 3px solid #8dbdff;
  outline-offset: 3px;
}

.proof-photos {
  padding: 12px 0 30px;
}

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

.proof-photo {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.proof-photo-large {
  min-height: 260px;
}

.proof-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.proof-photo:hover img {
  transform: scale(1.035);
}

.proof-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.proof-photo strong {
  color: #132238;
  font-size: 17px;
  line-height: 1.2;
}

.proof-photo span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.story-card {
  overflow: hidden;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.story-card-warm {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 211, 61, 0.22), transparent 25%),
    #fff;
}

.story-card img {
  display: block;
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.story-card > div {
  padding: 28px;
}

.story-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.story-card .story-cta {
  margin-top: 24px;
}

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

.section-head p {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cards-3,
.cards-4,
.quotes,
.gallery,
.volunteer-gallery,
.split-grid {
  display: grid;
  gap: 20px;
}

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

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

#activity .cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.unit-request-card {
  grid-column: 1 / -1;
}

.reports-documents {
  display: grid;
  gap: 34px;
}

.history-showcase {
  position: relative;
  padding: 12px 0 34px;
}

.history-showcase > .container {
  width: min(1180px, calc(100% - 40px));
}

.history-showcase-head {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}

.history-showcase-head span {
  display: inline-flex;
}

.history-showcase-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: 0;
}

.history-showcase-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 650;
  line-height: 1.35;
}

.history-showcase-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(19, 34, 56, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 46px rgba(34, 53, 78, 0.09);
}

.history-showcase-media {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #e5edf7;
}

.history-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 52% center;
}

.history-showcase-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: end;
  gap: 12px;
  justify-content: space-between;
}

.history-showcase-media figcaption span,
.history-showcase-media figcaption b {
  display: grid;
  min-height: 64px;
  align-content: center;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(19, 34, 56, 0.13);
}

.history-showcase-media figcaption span {
  min-width: 136px;
  padding: 10px 14px 12px;
  background: rgba(255, 255, 255, 0.94);
}

.history-showcase-media figcaption em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
}

.history-showcase-media figcaption strong {
  color: var(--text);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.history-showcase-media figcaption b {
  min-width: 86px;
  padding: 0 16px;
  border: 1px solid #e3b600;
  background: linear-gradient(135deg, var(--yellow), #ffe783);
  color: var(--text);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.history-route {
  min-width: 0;
}

.history-route-label {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.history-route h3 {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.history-route-intro {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 650;
  line-height: 1.5;
}

.history-route-list {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-left: 54px;
}

.history-route-list::before {
  display: none;
}

.history-route-item {
  --history-line-color: #ff9700;
  --history-next-line-color: var(--blue);
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 96px;
  padding: 16px 20px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(34, 53, 78, 0.055);
}

.history-route-item:not(:last-child)::after {
  position: absolute;
  top: 43px;
  left: -38px;
  z-index: 0;
  width: 2px;
  height: calc(100% + 14px);
  border-radius: 999px;
  content: "";
  background: linear-gradient(180deg, var(--history-line-color), var(--history-next-line-color));
}

.history-route-marker {
  position: absolute;
  top: 26px;
  left: -54px;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
  color: var(--history-line-color);
  box-shadow: 0 8px 18px rgba(34, 53, 78, 0.08);
}

.history-route-marker span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.history-date-pill {
  display: inline-grid;
  min-height: 40px;
  place-items: center;
  width: 94px;
  margin-top: -1px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 151, 0, 0.08);
  color: var(--history-line-color);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.history-route-item h4 {
  margin: 0 0 10px;
  color: #15243a;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.history-route-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
}

.history-route-item-blue {
  --history-line-color: var(--blue);
  --history-next-line-color: #16a464;
}

.history-route-item-blue .history-date-pill {
  background: rgba(45, 127, 249, 0.08);
}

.history-route-item-green {
  --history-line-color: #16a464;
  --history-next-line-color: #ff9700;
}

.history-route-item-green .history-date-pill {
  background: rgba(47, 186, 125, 0.1);
}

.documents-subtitle {
  margin-bottom: 18px;
}

.documents-list {
  display: grid;
  gap: 12px;
}

.filters {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  color: #31507f;
  border: 1px solid rgba(45, 127, 249, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  color: #132238;
  background: linear-gradient(135deg, var(--yellow), #ffe783);
}

.card {
  padding: 28px 22px 28px;
}

.vehicle-type-card {
  overflow: hidden;
  padding-top: 0;
}

.vehicle-type-card > img {
  display: block;
  width: calc(100% + 44px);
  height: 160px;
  margin: -1px -22px 22px;
  object-fit: cover;
  object-position: center;
}

.vehicle-type-card:nth-child(1) > img,
.vehicle-type-card:nth-child(2) > img,
.vehicle-type-card:nth-child(3) > img {
  object-position: center 58%;
}

.vehicle-type-card:nth-child(4) > img,
.vehicle-type-card:nth-child(5) > img {
  object-position: center 52%;
}

.vehicle-type-card .icon-box {
  position: relative;
  z-index: 2;
  width: auto;
  min-width: 66px;
  max-width: max-content;
  height: 46px;
  margin-top: -50px;
  margin-bottom: 20px;
  padding: 0 16px;
  color: #132238;
  border: 4px solid #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #eef4fb);
  box-shadow: 0 14px 30px rgba(34, 53, 78, 0.22);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

button.card {
  text-align: left;
  cursor: pointer;
}

.request-card {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
}

.request-card-media {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e5edf7;
}

.request-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.06);
  transform-origin: center 58%;
}

.request-card .card-body {
  display: flex;
  flex: 1;
  min-height: 330px;
  flex-direction: column;
  padding: 22px;
}

.request-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.request-card-footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.request-card .link-row {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(19, 34, 56, 0.08);
}

.request-money {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: #15243a;
  font-size: 14px;
}

.request-money span {
  color: var(--muted);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  color: var(--muted);
  border: 1px dashed rgba(49, 80, 127, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.sheet-table-panel {
  overflow: hidden;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--card-shadow);
}

.sheet-table-status {
  padding: 28px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.sheet-table-wrap {
  overflow: auto;
}

.sheet-requests-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.sheet-requests-table th,
.sheet-requests-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  text-align: left;
  vertical-align: middle;
}

.sheet-requests-table th {
  padding-top: 16px;
  padding-bottom: 16px;
  color: #31507f;
  background: #f8fbff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.sheet-requests-table td {
  color: #15243a;
  line-height: 1.3;
}

.sheet-requests-table td:first-child {
  width: 180px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.sheet-requests-table th:first-child {
  text-align: center;
}

.sheet-requests-table td span,
.sheet-request-card em {
  display: inline-flex;
  padding: 5px 9px;
  color: #31507f;
  border-radius: 999px;
  background: #eef4fb;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.sheet-mobile-list {
  display: none;
}

.sheet-table-actions {
  display: flex;
  justify-content: center;
  padding: 18px 20px;
  background: rgba(248, 251, 255, 0.72);
}

.sheet-load-more {
  gap: 10px;
}

.sheet-load-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 2v6h-6'/%3E%3Cpath d='M3 12a9 9 0 0 1 15-6.7L21 8'/%3E%3Cpath d='M3 22v-6h6'/%3E%3Cpath d='M21 12a9 9 0 0 1-15 6.7L3 16'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 2v6h-6'/%3E%3Cpath d='M3 12a9 9 0 0 1 15-6.7L21 8'/%3E%3Cpath d='M3 22v-6h6'/%3E%3Cpath d='M21 12a9 9 0 0 1-15 6.7L3 16'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sheet-load-more:hover .sheet-load-icon {
  animation: sheet-refresh-spin 0.72s ease-in-out;
}

@keyframes sheet-refresh-spin {
  to {
    transform: rotate(360deg);
  }
}

.news-preview,
.news-page {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(45, 127, 249, 0.12), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(255, 211, 61, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(244, 247, 251, 0.92), rgba(250, 252, 255, 0.96));
}

.news-preview-head,
.news-page-head {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.news-preview-head .eyebrow,
.news-page-head .eyebrow {
  margin-bottom: 18px;
}

.news-preview-head h2,
.news-page-head h1 {
  margin: 0;
  color: #071f52;
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.news-preview-head p,
.news-page-head p {
  margin: 22px auto 0;
  color: #6a7a93;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.news-page-head .hero-actions {
  justify-content: center;
  margin-top: 26px;
}

.news-preview-grid {
  display: grid;
  grid-template-columns: minmax(500px, 540px) 538px;
  justify-content: center;
  gap: 20px;
  align-items: stretch;
}

.news-info-card,
.news-feed-card {
  overflow: hidden;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 58px rgba(33, 52, 82, 0.1);
}

.news-info-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 38px 30px;
}

.news-info-card h3 {
  margin: 0;
  color: #071f52;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
}

.news-topic-list {
  display: grid;
  gap: 0;
}

.news-topic {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(19, 34, 56, 0.09);
}

.news-topic:first-child {
  padding-top: 0;
}

.news-topic:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-topic-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--blue);
}

.news-topic:nth-child(2) .news-topic-icon {
  background: #eaf7ef;
  color: var(--green);
}

.news-topic:nth-child(3) .news-topic-icon {
  background: #fff4d6;
  color: #ffae00;
}

.news-topic-icon::before {
  width: 28px;
  height: 28px;
  content: "";
  background: currentColor;
  -webkit-mask: var(--news-icon) center / contain no-repeat;
  mask: var(--news-icon) center / contain no-repeat;
}

.news-topic-icon-car {
  --news-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14'/%3E%3Cpath d='M6 17v-5.2c0-.7.4-1.4 1.1-1.7l1.1-.5 1.5-3c.3-.7 1-1.1 1.8-1.1h3c.8 0 1.5.4 1.8 1.1l1.5 3 1.1.5c.7.3 1.1 1 1.1 1.7V17'/%3E%3Cpath d='M8.5 17.5a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6Z'/%3E%3Cpath d='M15.5 17.5a1.8 1.8 0 1 0 0 3.6 1.8 1.8 0 0 0 0-3.6Z'/%3E%3Cpath d='M9 10h6'/%3E%3C/svg%3E");
}

.news-topic-icon-report {
  --news-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 4h6l1 2h2a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2l1-2Z'/%3E%3Cpath d='M9 4h6v4H9z'/%3E%3Cpath d='m8.5 14 2 2 5-5'/%3E%3C/svg%3E");
}

.news-topic-icon-fundraiser {
  --news-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 12.5 11 17a2 2 0 0 0 3 0l4-4.5a3.2 3.2 0 0 0-.1-4.4 3.1 3.1 0 0 0-4.3 0L12.5 9.2l-1.1-1.1a3.1 3.1 0 0 0-4.3 0 3.2 3.2 0 0 0-.1 4.4Z'/%3E%3Cpath d='M4 20h4.2c1 0 2-.2 2.9-.7l3.4-1.8a2.1 2.1 0 0 1 2.2.1L20 19'/%3E%3Cpath d='M4 16h3.7c.7 0 1.3.3 1.7.8l.8 1'/%3E%3C/svg%3E");
}

.news-topic strong {
  display: block;
  color: #132238;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.news-topic p {
  margin: 7px 0 0;
  color: #6a7a93;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  white-space: nowrap;
}

.news-actions {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.news-facebook-button {
  justify-content: center;
  background: linear-gradient(135deg, #ffd33d, #ffb703);
  color: #09224a;
}

.news-feed-card {
  display: grid;
  justify-self: center;
  width: min(100%, 538px);
  gap: 12px;
  padding: 18px;
  text-align: center;
}

.facebook-frame-wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: min(100%, 500px);
  margin: 0 auto;
  min-height: 620px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.facebook-frame-wrap iframe {
  display: block;
  width: min(100%, 500px);
  max-width: 100%;
  min-height: 100%;
}

.facebook-frame-wrap .facebook-frame-mobile {
  display: none;
}

.news-feed-card > p {
  margin: 0;
  color: #74839a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.news-page-card {
  width: min(840px, 100%);
  margin: 0 auto;
}

.news-page-card .facebook-frame-wrap {
  min-height: 820px;
}

.news-page-card iframe {
  height: 820px;
}

@media (max-width: 1120px) {
  .news-preview-grid {
    grid-template-columns: minmax(0, 538px);
    justify-content: center;
  }

  .news-info-card,
  .news-feed-card {
    justify-self: center;
    width: min(100%, 538px);
  }
}

.open-request-card {
  min-height: 100%;
}

.open-request-card .link-row {
  margin-top: 16px;
}

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

.closed-request-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.closed-request-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.closed-request-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.closed-request-card span {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: #15243a;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.closed-request-card span::before {
  width: max-content;
  padding: 7px 10px;
  content: "Закрито";
  color: #31507f;
  border-radius: 999px;
  background: #eef4fb;
  font-size: 12px;
  font-weight: 800;
}

.pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  margin-bottom: 18px;
  color: #31507f;
  border-radius: 14px;
  background: #eef4fb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pill.urgent {
  background: #fff0b5;
}

.card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.meta {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.meta span,
.check-grid span {
  padding: 7px 10px;
  color: #31507f;
  border-radius: 999px;
  background: #eef4fb;
  font-size: 12px;
}

.request-status-row {
  align-items: center;
  gap: 10px 12px;
}

.request-status-badge.status-purchased {
  color: #805c16;
  background: #fff4d8;
}

.request-status-badge.status-delivered {
  color: #2d6f62;
  background: #e8f6f1;
}

.request-status-badge.status-repair {
  color: #285a84;
  background: #e7f2fb;
}

.request-status-badge.status-fundraising {
  color: #8a301a;
  background: #fff0e8;
}

.request-status-badge.status-handover {
  color: #2d6f62;
  background: #e8f6f1;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #31507f;
  font-weight: 800;
}

.progress {
  overflow: hidden;
  height: 9px;
  margin-top: 14px;
  border-radius: 999px;
  background: #e5edf7;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.card-large {
  padding: 34px;
}

.card-large p {
  font-size: 16px;
}

.warm {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 211, 61, 0.26), transparent 22%),
    var(--panel-strong);
}

.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-checks {
  margin-top: 22px;
}

.icon-card-grid .card {
  display: block;
  min-height: auto;
  align-content: start;
  justify-content: start;
  padding: 28px 22px;
}

.icon-card-grid .card p {
  margin-bottom: 0;
}

.about-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-work-card {
  position: relative;
  overflow: hidden;
  --work-icon-color: #6e93d6;
  --work-circle-bg: #eef4fe;
  --work-circle-border: #d8e5fb;
  --work-badge-bg: #eef4fe;
  --work-badge-border: #cfe0fb;
  --work-badge-text: #4b6fae;
  padding: 30px;
}

.about-work-card-accent {
  --work-icon-color: #5f8e75;
  --work-circle-bg: #eaf5ee;
  --work-circle-border: #d7eadf;
  --work-badge-bg: #ecf7f0;
  --work-badge-border: #cfe5d7;
  --work-badge-text: #5a876f;
}

.about-work-card::after {
  position: absolute;
  top: -38px;
  right: -30px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(45, 127, 249, 0.07);
  content: "";
}

.about-work-card-accent::after {
  background: rgba(47, 186, 125, 0.08);
}

.about-work-card .eyebrow {
  color: var(--work-badge-text);
  border-color: var(--work-badge-border);
  background: var(--work-badge-bg);
}

.about-work-card h2 {
  max-width: none;
  margin: 14px 0 18px;
  color: #18345d;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.about-work-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-work-card li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding-left: 62px;
  color: #18345d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.about-work-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--work-circle-border);
  border-radius: 15px;
  background: var(--work-circle-bg);
  content: "";
}

.about-work-card li::after {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  background: var(--work-icon-color);
  content: "";
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.about-work-card:not(.about-work-card-accent) li:nth-child(1)::after {
  -webkit-mask-image: url("assets/icons/about-work/search.svg");
  mask-image: url("assets/icons/about-work/search.svg");
}

.about-work-card:not(.about-work-card-accent) li:nth-child(2)::after {
  -webkit-mask-image: url("assets/icons/about-work/handshake.svg");
  mask-image: url("assets/icons/about-work/handshake.svg");
}

.about-work-card:not(.about-work-card-accent) li:nth-child(3)::after {
  -webkit-mask-image: url("assets/icons/about-work/truck.svg");
  mask-image: url("assets/icons/about-work/truck.svg");
}

.about-work-card:not(.about-work-card-accent) li:nth-child(4)::after {
  -webkit-mask-image: url("assets/icons/about-work/wrench.svg");
  mask-image: url("assets/icons/about-work/wrench.svg");
}

.about-work-card > * {
  position: relative;
  z-index: 1;
}

.about-work-card-accent li:nth-child(1)::after {
  -webkit-mask-image: url("assets/icons/about-work/heart-care.svg");
  mask-image: url("assets/icons/about-work/heart-care.svg");
}

.about-work-card-accent li:nth-child(2)::after {
  -webkit-mask-image: url("assets/icons/about-work/people.svg");
  mask-image: url("assets/icons/about-work/people.svg");
}

.about-work-card-accent li:nth-child(3)::after {
  -webkit-mask-image: url("assets/icons/about-work/shield.svg");
  mask-image: url("assets/icons/about-work/shield.svg");
}

.about-work-card-accent li:nth-child(4)::after {
  -webkit-mask-image: url("assets/icons/about-work/package.svg");
  mask-image: url("assets/icons/about-work/package.svg");
}

.icon-box,
.step {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  color: #31507f;
  border-radius: 16px;
  background: #eef4fb;
  font-weight: 900;
}

.step {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-content: start;
  column-gap: 18px;
  min-height: 230px;
}

.step-card .step {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.step-card h3,
.step-card p {
  grid-column: 1 / -1;
}

.step-card h3 {
  margin-top: 16px;
}

.process-stage {
  position: relative;
  padding: 48px 0 38px;
}

.process-route-strip {
  position: relative;
  z-index: 3;
  margin: 0 0 18px;
  padding: 12px 18px 10px;
  border: 1px solid rgba(45, 127, 249, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 26px rgba(25, 48, 80, 0.045);
}

.process-route-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  min-height: 54px;
  align-items: start;
}

.process-route-track::before {
  position: absolute;
  top: 11px;
  right: calc(5% + 10px);
  left: calc(5% + 10px);
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.88), rgba(245, 188, 41, 0.72) 50%, rgba(34, 197, 94, 0.88));
}

.process-route-step {
  position: relative;
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 5px;
  color: #72809a;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.08;
  text-align: center;
}

.process-route-step:not(:last-child)::after {
  position: absolute;
  top: 6px;
  right: -5px;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid rgba(45, 127, 249, 0.38);
  border-right: 2px solid rgba(45, 127, 249, 0.38);
  transform: rotate(45deg);
}

.process-route-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid #d8e8ff;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 12px rgba(45, 127, 249, 0.1);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.process-route-dot::after {
  position: absolute;
  inset: 6px;
  content: "";
  border-radius: inherit;
  background: #8bbcff;
  transition:
    background 0.24s ease,
    inset 0.24s ease;
}

.process-route-start .process-route-dot::after {
  background: #ef4444;
}

.process-route-finish .process-route-dot::after {
  background: #22c55e;
}

.process-route-step strong {
  color: #2d7ff9;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.process-route-step span:not(.process-route-dot) {
  display: block;
  max-width: 96px;
  color: inherit;
  overflow-wrap: anywhere;
}

.process-route-step:hover,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-route-step:nth-child(1),
.process-stage:has(.process-route-step:nth-child(2):hover) .process-route-step:nth-child(2),
.process-stage:has(.process-route-step:nth-child(3):hover) .process-route-step:nth-child(3),
.process-stage:has(.process-route-step:nth-child(4):hover) .process-route-step:nth-child(4),
.process-stage:has(.process-route-step:nth-child(5):hover) .process-route-step:nth-child(5),
.process-stage:has(.process-route-step:nth-child(6):hover) .process-route-step:nth-child(6),
.process-stage:has(.process-route-step:nth-child(7):hover) .process-route-step:nth-child(7),
.process-stage:has(.process-route-step:nth-child(8):hover) .process-route-step:nth-child(8),
.process-stage:has(.process-route-step:nth-child(9):hover) .process-route-step:nth-child(9),
.process-stage:has(.process-route-step:nth-child(10):hover) .process-route-step:nth-child(10),
.process-stage:has(.process-card:nth-child(1):hover) .process-route-step:nth-child(1),
.process-stage:has(.process-card:nth-child(2):hover) .process-route-step:nth-child(2),
.process-stage:has(.process-card:nth-child(3):hover) .process-route-step:nth-child(3),
.process-stage:has(.process-card:nth-child(4):hover) .process-route-step:nth-child(4),
.process-stage:has(.process-card:nth-child(5):hover) .process-route-step:nth-child(5),
.process-stage:has(.process-card:nth-child(6):hover) .process-route-step:nth-child(6),
.process-stage:has(.process-card:nth-child(7):hover) .process-route-step:nth-child(7),
.process-stage:has(.process-card:nth-child(8):hover) .process-route-step:nth-child(8),
.process-stage:has(.process-card:nth-child(9):hover) .process-route-step:nth-child(9),
.process-stage:has(.process-card:nth-child(10):hover) .process-route-step:nth-child(10) {
  color: #122238;
}

.process-route-step:hover strong,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-route-step:nth-child(1) strong,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-route-step:nth-child(2) strong,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-route-step:nth-child(3) strong,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-route-step:nth-child(4) strong,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-route-step:nth-child(5) strong,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-route-step:nth-child(6) strong,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-route-step:nth-child(7) strong,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-route-step:nth-child(8) strong,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-route-step:nth-child(9) strong,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-route-step:nth-child(10) strong,
.process-stage:has(.process-card:nth-child(1):hover) .process-route-step:nth-child(1) strong,
.process-stage:has(.process-card:nth-child(2):hover) .process-route-step:nth-child(2) strong,
.process-stage:has(.process-card:nth-child(3):hover) .process-route-step:nth-child(3) strong,
.process-stage:has(.process-card:nth-child(4):hover) .process-route-step:nth-child(4) strong,
.process-stage:has(.process-card:nth-child(5):hover) .process-route-step:nth-child(5) strong,
.process-stage:has(.process-card:nth-child(6):hover) .process-route-step:nth-child(6) strong,
.process-stage:has(.process-card:nth-child(7):hover) .process-route-step:nth-child(7) strong,
.process-stage:has(.process-card:nth-child(8):hover) .process-route-step:nth-child(8) strong,
.process-stage:has(.process-card:nth-child(9):hover) .process-route-step:nth-child(9) strong,
.process-stage:has(.process-card:nth-child(10):hover) .process-route-step:nth-child(10) strong {
  color: #122238;
}

.process-route-step:hover .process-route-dot,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-route-step:nth-child(1) .process-route-dot,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-route-step:nth-child(2) .process-route-dot,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-route-step:nth-child(3) .process-route-dot,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-route-step:nth-child(4) .process-route-dot,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-route-step:nth-child(5) .process-route-dot,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-route-step:nth-child(6) .process-route-dot,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-route-step:nth-child(7) .process-route-dot,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-route-step:nth-child(8) .process-route-dot,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-route-step:nth-child(9) .process-route-dot,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-route-step:nth-child(10) .process-route-dot,
.process-stage:has(.process-card:nth-child(1):hover) .process-route-step:nth-child(1) .process-route-dot,
.process-stage:has(.process-card:nth-child(2):hover) .process-route-step:nth-child(2) .process-route-dot,
.process-stage:has(.process-card:nth-child(3):hover) .process-route-step:nth-child(3) .process-route-dot,
.process-stage:has(.process-card:nth-child(4):hover) .process-route-step:nth-child(4) .process-route-dot,
.process-stage:has(.process-card:nth-child(5):hover) .process-route-step:nth-child(5) .process-route-dot,
.process-stage:has(.process-card:nth-child(6):hover) .process-route-step:nth-child(6) .process-route-dot,
.process-stage:has(.process-card:nth-child(7):hover) .process-route-step:nth-child(7) .process-route-dot,
.process-stage:has(.process-card:nth-child(8):hover) .process-route-step:nth-child(8) .process-route-dot,
.process-stage:has(.process-card:nth-child(9):hover) .process-route-step:nth-child(9) .process-route-dot,
.process-stage:has(.process-card:nth-child(10):hover) .process-route-step:nth-child(10) .process-route-dot {
  border-color: #2d7ff9;
  box-shadow: 0 8px 18px rgba(45, 127, 249, 0.22);
  transform: translateY(-2px) scale(1.08);
}

.process-route-step:hover .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-route-step:nth-child(1) .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-route-step:nth-child(2) .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-route-step:nth-child(3) .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-route-step:nth-child(4) .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-route-step:nth-child(5) .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-route-step:nth-child(6) .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-route-step:nth-child(7) .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-route-step:nth-child(8) .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-route-step:nth-child(9) .process-route-dot::after,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-route-step:nth-child(10) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(1):hover) .process-route-step:nth-child(1) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(2):hover) .process-route-step:nth-child(2) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(3):hover) .process-route-step:nth-child(3) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(4):hover) .process-route-step:nth-child(4) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(5):hover) .process-route-step:nth-child(5) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(6):hover) .process-route-step:nth-child(6) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(7):hover) .process-route-step:nth-child(7) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(8):hover) .process-route-step:nth-child(8) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(9):hover) .process-route-step:nth-child(9) .process-route-dot::after,
.process-stage:has(.process-card:nth-child(10):hover) .process-route-step:nth-child(10) .process-route-dot::after {
  inset: 5px;
  background: #2d7ff9;
}

.process-stack {
  --process-card-collapsed: 168px;
  --process-card-open: 356px;
  --process-card-collapsed-height: 348px;
  --process-card-open-height: 372px;
  --process-card-step: calc((100% - var(--process-card-collapsed)) / 9);
  position: relative;
  height: 382px;
}

.process-card {
  --i: 0;
  --open-shift: 0px;
  position: absolute;
  z-index: calc(10 + var(--i));
  top: 0;
  left: calc(var(--i) * var(--process-card-step));
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  width: var(--process-card-collapsed);
  height: var(--process-card-collapsed-height);
  align-content: stretch;
  padding: 20px 24px;
  overflow: hidden;
  color: #69788d;
  border: 1px solid rgba(45, 127, 249, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(145deg, #f0f5fa, #e8f0f7),
    #edf4fa;
  box-shadow: 0 10px 24px rgba(25, 48, 80, 0.045);
  cursor: help;
  transition:
    width 0.42s cubic-bezier(0.2, 0.75, 0.18, 1),
    height 0.42s cubic-bezier(0.2, 0.75, 0.18, 1),
    transform 0.42s cubic-bezier(0.2, 0.75, 0.18, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.process-card > * {
  position: relative;
  z-index: 1;
}

.process-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(239, 245, 251, 0.26), rgba(222, 234, 246, 0.54));
  pointer-events: none;
}

.process-card:not(:hover) {
  color: #69788d;
}

.process-card:nth-child(1) {
  --i: 0;
}

.process-card:nth-child(2) {
  --i: 1;
}

.process-card:nth-child(3) {
  --i: 2;
}

.process-card:nth-child(4) {
  --i: 3;
}

.process-card:nth-child(5) {
  --i: 4;
}

.process-card:nth-child(6) {
  --i: 5;
}

.process-card:nth-child(7) {
  --i: 6;
}

.process-card:nth-child(8) {
  --i: 7;
  --open-shift: -72px;
}

.process-card:nth-child(9) {
  --i: 8;
  --open-shift: -126px;
}

.process-card:nth-child(10) {
  --i: 9;
  --open-shift: calc((var(--process-card-collapsed) - var(--process-card-open)) * 1);
}

.process-num {
  display: block;
  margin-bottom: 10px;
  color: #2d7ff9;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.process-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 13px;
  color: #2f76dc;
  border-radius: 18px;
  background: #e5eef8;
}

.process-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.process-title-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 9px;
}

.process-short,
.process-card h3 {
  display: block;
  overflow: hidden;
  max-width: 100%;
  color: #15243a;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.process-short {
  display: none;
}

.process-card h3 {
  display: block;
  margin: 0;
  color: #2f415a;
  font-size: 20px;
}

.process-card p {
  max-width: 280px;
  margin: 0 0 12px;
  color: #758398;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.36;
}

.process-detail strong {
  display: none;
}

.process-detail ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-detail li {
  position: relative;
  overflow: hidden;
  padding-left: 22px;
  color: #758398;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.process-detail li:nth-child(n + 4) {
  display: none;
}

.process-detail li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  border: 0;
  border-radius: 50%;
  background: #2d7ff9;
  transform: translateY(-50%);
}

.process-detail li::after {
  position: absolute;
  top: 0.58em;
  left: 3px;
  width: 5px;
  height: 3px;
  content: "";
  border-bottom: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
  transform: translateY(-64%) rotate(-45deg);
}

.process-actions {
  display: none;
  gap: 10px;
  align-self: end;
  margin-top: 12px;
}

.process-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.process-action:hover {
  transform: translateY(-1px);
}

.process-action-primary {
  color: #fff;
  border: 1px solid #0d63df;
  background: linear-gradient(135deg, #0f73ff, #075de0);
  box-shadow: 0 12px 24px rgba(13, 99, 223, 0.22);
}

.process-action-secondary {
  color: #1f6ed4;
  border: 1px solid rgba(45, 127, 249, 0.28);
  background: #fff;
}

.process-card:hover,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1),
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2),
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3),
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4),
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5),
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6),
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7),
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8),
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9),
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) {
  z-index: 70;
  width: var(--process-card-open);
  height: var(--process-card-open-height);
  border-color: rgba(45, 127, 249, 0.5);
  background:
    linear-gradient(145deg, #fff, #fbfdff),
    #fff;
  box-shadow: 0 30px 76px rgba(18, 48, 92, 0.2);
  transform: translateX(var(--open-shift)) translateY(-8px);
}

.process-card:hover .process-short,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1) .process-short,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2) .process-short,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3) .process-short,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4) .process-short,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5) .process-short,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6) .process-short,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7) .process-short,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8) .process-short,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9) .process-short,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) .process-short {
  display: none;
}

.process-card:hover::after,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1)::after,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2)::after,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3)::after,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4)::after,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5)::after,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6)::after,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7)::after,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8)::after,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9)::after,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10)::after {
  background: transparent;
}

.process-card:hover .process-icon,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1) .process-icon,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2) .process-icon,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3) .process-icon,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4) .process-icon,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5) .process-icon,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6) .process-icon,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7) .process-icon,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8) .process-icon,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9) .process-icon,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) .process-icon {
  color: #1f6ed4;
  background: #eaf3ff;
}

.process-card:hover .process-actions,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1) .process-actions,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2) .process-actions,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3) .process-actions,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4) .process-actions,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5) .process-actions,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6) .process-actions,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7) .process-actions,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8) .process-actions,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9) .process-actions,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) .process-actions {
  display: grid;
}

.process-card:hover .process-num,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1) .process-num,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2) .process-num,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3) .process-num,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4) .process-num,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5) .process-num,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6) .process-num,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7) .process-num,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8) .process-num,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9) .process-num,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) .process-num {
  margin-bottom: 0;
  font-size: 20px;
}

.process-card:hover h3,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1) h3,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2) h3,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3) h3,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4) h3,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5) h3,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6) h3,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7) h3,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8) h3,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9) h3,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) h3 {
  display: block;
  color: #15243a;
  font-size: 20px;
}

.process-card:hover p,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1) p,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2) p,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3) p,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4) p,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5) p,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6) p,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7) p,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8) p,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9) p,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) p {
  max-width: 260px;
  color: #34455f;
  font-size: 13px;
  line-height: 1.36;
}

.process-card:hover .process-detail ul,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1) .process-detail ul,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2) .process-detail ul,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3) .process-detail ul,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4) .process-detail ul,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5) .process-detail ul,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6) .process-detail ul,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7) .process-detail ul,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8) .process-detail ul,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9) .process-detail ul,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) .process-detail ul {
  gap: 9px;
}

.process-card:hover .process-detail li,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1) .process-detail li,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2) .process-detail li,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3) .process-detail li,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4) .process-detail li,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5) .process-detail li,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6) .process-detail li,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7) .process-detail li,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8) .process-detail li,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9) .process-detail li,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) .process-detail li {
  display: block;
  overflow: visible;
  padding-left: 22px;
  color: #34455f;
  font-size: 13px;
}

.process-card:hover .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(1):hover) .process-card:nth-child(1) .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(2):hover) .process-card:nth-child(2) .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(3):hover) .process-card:nth-child(3) .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(4):hover) .process-card:nth-child(4) .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(5):hover) .process-card:nth-child(5) .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(6):hover) .process-card:nth-child(6) .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(7):hover) .process-card:nth-child(7) .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(8):hover) .process-card:nth-child(8) .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(9):hover) .process-card:nth-child(9) .process-detail li::before,
.process-stage:has(.process-route-step:nth-child(10):hover) .process-card:nth-child(10) .process-detail li::before {
  width: 11px;
  height: 11px;
}

.process-hint {
  margin-top: 14px;
  color: #657692;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.step-icon {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #eef4fb);
  box-shadow: 0 14px 28px rgba(34, 53, 78, 0.12);
}

.step-icon::before {
  width: 26px;
  height: 26px;
  content: "";
  background: currentColor;
}

.step-card:nth-child(1) .step,
.step-card:nth-child(1) .step-icon {
  color: #285a84;
  background: #e7f2fb;
}

.step-card:nth-child(2) .step,
.step-card:nth-child(2) .step-icon {
  color: #2d6f62;
  background: #e8f6f1;
}

.step-card:nth-child(3) .step,
.step-card:nth-child(3) .step-icon {
  color: #805c16;
  background: #fff4d8;
}

.icon-card-grid .card:nth-child(3n + 1) .icon-box {
  color: #285a84;
  background: #e7f2fb;
}

.icon-card-grid .card:nth-child(3n + 2) .icon-box {
  color: #2d6f62;
  background: #e8f6f1;
}

.icon-card-grid .card:nth-child(3n) .icon-box {
  color: #805c16;
  background: #fff4d8;
}

#values .icon-card-grid .card {
  min-height: auto;
  padding-right: 22px;
}

.values-card-icon {
  position: absolute;
  top: 30px;
  right: 28px;
  display: none;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
}

.values-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.values-card-icon-check {
  color: #285a84;
  background: #e7f2fb;
}

.values-card-icon-wallet {
  color: #2d6f62;
  background: #e8f6f1;
}

.values-card-icon-report {
  color: #8a5a16;
  background: #fff4d8;
}

.step-icon-form::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.step-icon-call::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.2 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.63 2.63a2 2 0 0 1-.45 2.11L8 9.75a16 16 0 0 0 6.25 6.25l1.29-1.29a2 2 0 0 1 2.11-.45c.85.3 1.73.51 2.63.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.2 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.63 2.63a2 2 0 0 1-.45 2.11L8 9.75a16 16 0 0 0 6.25 6.25l1.29-1.29a2 2 0 0 1 2.11-.45c.85.3 1.73.51 2.63.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.step-icon-docs::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11l3 3L22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11l3 3L22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E") center / contain no-repeat;
}

.step-card:hover,
.request-card:hover,
.doc-card:hover,
.doc-row:hover,
.gallery-item:hover,
.volunteer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-card,
.request-card,
.doc-card,
.doc-row,
.gallery-item,
.volunteer-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quote-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.quote-card p {
  margin: 0 0 18px;
  color: #223654;
  font-size: 17px;
  line-height: 1.75;
}

.quote-card strong,
.quote-card a {
  display: block;
}

.quote-card a {
  margin-top: auto;
}

.quote-card .quote-button {
  display: inline-flex;
  width: max-content;
  min-width: 170px;
}

.quote-card .btn-secondary.quote-button {
  color: #173a66;
  border-color: #2d7ff9;
  background: #e8f2ff;
  box-shadow: 0 14px 28px rgba(45, 127, 249, 0.16);
}

.quote-card .btn-secondary.quote-button:hover {
  border-color: #1f6fe5;
  background: #dbeaff;
  box-shadow: 0 16px 32px rgba(45, 127, 249, 0.22);
}

.quote-card .btn-primary.quote-button {
  border-color: #c48f00;
  background: linear-gradient(135deg, #ffd33d, #ffe680);
  box-shadow: 0 14px 28px rgba(255, 211, 61, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.quote-card .btn-primary.quote-button:hover {
  border-color: #9d7300;
  box-shadow: 0 16px 32px rgba(255, 211, 61, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

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

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

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.gallery-filter-tabs button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  color: #24466f;
  border: 1px solid #dfe9f5;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(34, 53, 78, 0.05);
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.gallery-filter-tabs button:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 127, 249, 0.38);
  background: #f2f7ff;
}

.gallery-filter-tabs button.active {
  color: #132238;
  border-color: #e0b500;
  background: linear-gradient(180deg, #ffe579, #ffd33d);
  box-shadow: 0 12px 24px rgba(255, 211, 61, 0.2);
}

.volunteer-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 32px;
}

.volunteers-title {
  margin: 0 0 48px;
  text-align: center;
  color: #07111f;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.full-gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.full-gallery-item:hover {
  transform: translateY(-3px);
}

.full-gallery-item::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  content: "На службі";
  color: #132238;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.full-gallery-item.wide {
  grid-column: span 2;
}

.full-gallery-item.tall {
  grid-row: span 2;
}

.full-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-gallery-card {
  display: grid;
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: var(--text);
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 160ms ease;
}

.full-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.full-gallery-card.is-hidden {
  display: none;
}

.full-gallery-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8f0f8;
}

.full-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.full-gallery-card:hover .full-gallery-thumb img {
  transform: scale(1.04);
}

.full-gallery-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.gallery-card-label {
  width: fit-content;
  padding: 7px 11px;
  color: #24466f;
  border-radius: 999px;
  background: #edf4fb;
  font-size: 13px;
  font-weight: 900;
}

.full-gallery-body strong {
  color: #132238;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}

.full-gallery-body em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.4;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-item span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  text-align: left;
  border: 1px solid rgba(19,34,56,0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.gallery-item strong,
.gallery-item em {
  display: block;
}

.gallery-item em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

html[lang="en"] .closed-request-card span::before {
  content: "Closed";
}

html[lang="no"] .closed-request-card span::before {
  content: "Lukket";
}

.volunteer-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
  cursor: pointer;
}

.volunteer-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.volunteer-card span {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
}

.volunteer-card strong,
.volunteer-card em {
  display: block;
}

.volunteer-card strong {
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.volunteer-card em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.footer-cta {
  padding: 34px 0 64px;
}

.footer-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
  padding: 36px;
}

.footer-card p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.support-cta-card {
  grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1.42fr) minmax(220px, 0.62fr);
  align-items: center;
  gap: 28px;
  padding: 28px;
}

.support-cta-media {
  align-self: stretch;
  min-height: 236px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #e9f1fb;
}

.support-cta-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.support-cta-copy h2 {
  margin-top: 18px;
  max-width: 720px;
}

.support-cta-copy p {
  max-width: 60ch;
}

.support-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.support-cta-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(50, 93, 168, 0.12);
  border-radius: 999px;
  background: #f2f7ff;
  color: #31507f;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.support-cta-actions {
  justify-self: stretch;
  align-items: stretch;
  gap: 12px;
}

.support-cta-actions .btn {
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding-inline: 18px;
  text-align: center;
}

.support-cta-actions .btn-secondary {
  border-color: rgba(50, 105, 190, 0.2);
  background: #eaf3ff;
  color: #174f91;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.support-cta-actions .btn-secondary:hover {
  border-color: rgba(50, 105, 190, 0.34);
  background: #dcecff;
  color: #123f78;
}

.support-cta-actions .btn-secondary:nth-child(3) {
  border-color: rgba(19, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.support-cta-actions .btn-secondary:nth-child(3):hover {
  border-color: rgba(19, 34, 56, 0.16);
  background: #fff;
  color: var(--text);
}

.contact-lines {
  display: grid;
  gap: 12px;
  max-width: 480px;
  margin-top: 20px;
}

.contact-lines a {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 16px;
  background: #f8fbff;
}

.contact-lines span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-lines strong {
  color: #15243a;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.admin-main {
  padding-bottom: 60px;
}

.admin-header .nav {
  align-items: center;
}

.admin-title {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.admin-title span {
  color: #15243a;
  font-size: 18px;
  font-weight: 900;
}

.admin-hero {
  padding: 34px 0 18px;
}

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

.admin-kpi {
  padding: 22px;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.admin-kpi span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-kpi strong {
  color: #132238;
  font-size: 32px;
  line-height: 1;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  gap: 22px;
  align-items: start;
}

.admin-list-panel,
.admin-editor {
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--card-shadow);
}

.admin-list-panel {
  overflow: hidden;
}

.admin-toolbar {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
}

.admin-toolbar input {
  border-radius: 14px;
}

.admin-filters {
  margin: 0;
}

.admin-table-wrap {
  overflow: auto;
}

.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  background: #f8fbff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-table tr.is-selected {
  background: rgba(45, 127, 249, 0.06);
}

.admin-request-title {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.admin-request-title img {
  width: 64px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 12px;
}

.admin-request-title span {
  display: grid;
  gap: 4px;
}

.admin-request-title strong {
  color: #15243a;
}

.admin-request-title em,
.admin-muted {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.status-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: 0 6px 6px 0;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef4fb;
  color: #31507f;
  font-size: 12px;
  font-weight: 900;
}

.status-badge.open {
  color: #132238;
  background: #ffe783;
}

.status-badge.closed {
  color: #0f5e3f;
  background: #dff7eb;
}

.status-badge.draft,
.status-badge.archived {
  color: #62748f;
  background: #eef2f7;
}

.status-badge.featured {
  color: #0e4f9a;
  background: #dbeafe;
}

.admin-progress {
  width: min(220px, 100%);
  margin-top: 8px;
}

.admin-actions-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-icon-actions {
  align-items: center;
  flex-wrap: nowrap;
}

.admin-actions-cell a,
.admin-actions-cell button,
.admin-mobile-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  color: #31507f;
  border: 1px solid rgba(45, 127, 249, 0.16);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.admin-actions-cell form {
  margin: 0;
}

.admin-icon-button {
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0 !important;
  color: #173a66 !important;
  border-color: rgba(45, 127, 249, 0.24) !important;
  background: #e8f2ff !important;
  box-shadow: 0 10px 24px rgba(45, 127, 249, 0.13);
}

.admin-icon-button:hover {
  border-color: rgba(45, 127, 249, 0.42) !important;
  background: #ddecff !important;
  transform: translateY(-1px);
}

.admin-icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-icon-button-danger {
  color: #7a351d !important;
  border-color: rgba(214, 111, 62, 0.28) !important;
  background: #fff0e8 !important;
  box-shadow: 0 10px 24px rgba(214, 111, 62, 0.11);
}

.admin-icon-button-danger:hover {
  border-color: rgba(214, 111, 62, 0.48) !important;
  background: #ffe5d8 !important;
}

.admin-login {
  display: grid;
  min-height: calc(100vh - 78px);
  place-items: center;
  padding: 40px 20px;
}

.admin-login-card {
  display: grid;
  width: min(460px, 100%);
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.admin-login-card h1 {
  font-size: clamp(32px, 7vw, 48px);
}

.admin-login-card label {
  display: grid;
  gap: 8px;
}

.admin-login-card label > span {
  color: #31507f;
  font-size: 13px;
  font-weight: 900;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tab {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 999px;
  background: #fff;
  color: #31507f;
  font-weight: 900;
}

.admin-tab.is-active {
  border-color: rgba(255, 186, 31, 0.9);
  background: linear-gradient(135deg, var(--yellow), #ffe984);
  color: #132238;
  box-shadow: 0 12px 28px rgba(255, 211, 61, 0.24);
}

.admin-tab.is-disabled {
  opacity: 0.55;
}

.admin-toolbar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.admin-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.admin-message-success {
  color: #0f5e3f;
  background: #dff7eb;
}

.admin-message-error {
  color: #8a301a;
  background: #fff0e8;
}

.admin-switch-field {
  align-content: end;
  min-height: 100%;
  padding: 12px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 14px;
  background: #f8fbff;
}

.admin-extra-langs {
  display: grid;
  gap: 10px;
}

.admin-extra-head,
.admin-language-row {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 10px;
  align-items: center;
}

.admin-extra-head span {
  color: #31507f;
  font-size: 13px;
  font-weight: 900;
}

.admin-extra-head button {
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(45, 127, 249, 0.2);
  border-radius: 999px;
  background: #e8f2ff;
  color: #173a66;
  cursor: pointer;
  font-weight: 900;
}

.admin-language-row + .admin-language-row {
  margin-top: 8px;
}

.admin-editor {
  position: sticky;
  top: 92px;
  padding: 20px;
}

.admin-editor-head {
  display: grid;
  grid-template-columns: 1fr 116px;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.admin-editor-head h2 {
  font-size: 32px;
}

.admin-editor-head img {
  width: 116px;
  height: 86px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form label {
  display: grid;
  gap: 7px;
}

.admin-form label > span {
  color: #31507f;
  font-size: 13px;
  font-weight: 900;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  border-radius: 14px;
}

.admin-form textarea {
  min-height: 108px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-form-grid label:last-child:nth-child(3) {
  grid-column: 1 / -1;
}

.admin-calculated {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-calculated span {
  padding: 12px;
  color: var(--muted);
  border-radius: 14px;
  background: #eef4fb;
  font-size: 13px;
  font-weight: 800;
}

.admin-calculated strong {
  display: block;
  margin-top: 4px;
  color: #15243a;
  font-size: 18px;
}

.admin-switch {
  display: flex !important;
  flex-direction: row;
  gap: 10px !important;
  align-items: center;
  color: #15243a;
  font-weight: 800;
}

.admin-switch input {
  width: 18px;
  height: 18px;
}

.admin-mobile-cards {
  display: none;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 46px 0.7fr 1.3fr;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border-radius: 18px;
  background: #f8fbff;
}

.contact-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #31507f;
  border-radius: 14px;
  background: #eef4fb;
  font-weight: 900;
}

.contact-list strong {
  color: #15243a;
}

.contact-list em {
  color: var(--muted);
  font-style: normal;
  overflow-wrap: anywhere;
}

.email-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.email-check input {
  width: 18px;
  height: 18px;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.doc-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.report-card {
  position: relative;
  min-height: 148px;
  padding-right: 130px;
}

.report-card i {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 78px;
  height: 96px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, transparent 0 14px, #d9e6f6 14px 21px, transparent 22px),
    linear-gradient(180deg, #ffffff, #eef4fb);
  border: 1px solid rgba(49, 80, 127, 0.14);
  box-shadow: 0 12px 24px rgba(32, 58, 96, 0.12);
  transform: translateY(-50%);
}

.report-card i::before {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  height: 22px;
  content: "PDF";
  display: grid;
  place-items: center;
  color: #fff;
  background: #31507f;
  border-radius: 6px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.report-card i::after {
  position: absolute;
  left: 13px;
  right: 13px;
  top: 26px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: #c6d5e8;
  box-shadow: 0 13px 0 #d8e3f0, 0 26px 0 #d8e3f0;
}

.doc-card span,
.doc-row span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #31507f;
  border-radius: 16px;
  background: #eef4fb;
  font-weight: 900;
}

.reports-grid .report-card:nth-child(1) span {
  color: #285a84;
  background: #e7f2fb;
}

.reports-grid .report-card:nth-child(2) span {
  color: #2d6f62;
  background: #e8f6f1;
}

.reports-grid .report-card:nth-child(3) span {
  color: #805c16;
  background: #fff4d8;
}

.reports-grid .report-card:nth-child(4) span {
  color: #ee8326;
  background: #ffe8b6;
}

.doc-card strong,
.doc-row strong {
  color: #15243a;
  font-size: 18px;
  line-height: 1.25;
}

.doc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px 18px;
}

.doc-row span {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 0;
}

.doc-row span::before {
  width: 24px;
  height: 24px;
  background: #31507f;
  content: "";
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7l-5-5Z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M12 11v6'/%3E%3Cpath d='m9 14 3 3 3-3'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7l-5-5Z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M12 11v6'/%3E%3Cpath d='m9 14 3 3 3-3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.doc-row strong {
  flex: 1 1 auto;
}

.doc-row i {
  display: none;
}

.doc-row {
  color: #00b86b;
}

.doc-row strong,
.doc-row span {
  color: #15243a;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(19, 34, 56, 0.12);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.76);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(45, 127, 249, 0.42);
  box-shadow: 0 0 0 4px rgba(45, 127, 249, 0.12);
}

.site-footer {
  overflow: hidden;
  margin-top: 28px;
  color: var(--text);
  font-size: 15px;
}

.footer-main {
  padding: 54px 0 50px;
  border-top: 1px solid rgba(19, 34, 56, 0.08);
  background:
    radial-gradient(circle at 10% 10%, rgba(45, 127, 249, 0.12), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(255, 211, 61, 0.18), transparent 24%),
    rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(150px, 0.7fr) minmax(170px, 0.75fr) minmax(150px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer-about {
  max-width: 340px;
}

.footer-logo {
  display: inline-flex;
  max-width: 170px;
  margin-bottom: 26px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) brightness(0.3) saturate(1.25);
}

.footer-about p {
  margin: 0;
  color: #425777;
  font-size: 17px;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  gap: 15px;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: #07111f;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-column a {
  width: max-content;
  color: #15243a;
  font-size: 18px;
  line-height: 1.2;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: #31507f;
  transform: translateX(2px);
}

.footer-column .footer-pdf {
  display: inline-flex;
  width: max-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 18px;
  color: #132238;
  border: 1px solid #e3b600;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), #ffe783);
  box-shadow: 0 14px 28px rgba(255, 211, 61, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 900;
}

.footer-column .footer-pdf:hover {
  border-color: #c99b00;
  color: #132238;
  box-shadow: 0 16px 32px rgba(255, 211, 61, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.footer-qr {
  display: block;
  justify-self: end;
  width: min(188px, 100%);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-qr:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.footer-qr img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
}

.footer-bottom {
  padding: 26px 0;
  color: #fff;
  background: #121820;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom span:first-child {
  font-weight: 800;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #132238;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), #ffe783);
  font-size: 0;
}

.footer-socials a::before {
  width: 18px;
  height: 18px;
  content: "";
  background: #132238;
}

.footer-socials a[aria-label="Facebook"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M14 8.5V6.6c0-.9.2-1.4 1.5-1.4H18V1h-3.7C10.7 1 9 2.8 9 6.1v2.4H6v4.2h3V23h5V12.7h3.4l.6-4.2H14z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M14 8.5V6.6c0-.9.2-1.4 1.5-1.4H18V1h-3.7C10.7 1 9 2.8 9 6.1v2.4H6v4.2h3V23h5V12.7h3.4l.6-4.2H14z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-socials a[aria-label="Instagram"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2.2A2.8 2.8 0 0 0 4.2 7v10A2.8 2.8 0 0 0 7 19.8h10a2.8 2.8 0 0 0 2.8-2.8V7A2.8 2.8 0 0 0 17 4.2H7zm5 3.4a4.4 4.4 0 1 1 0 8.8 4.4 4.4 0 0 1 0-8.8zm0 2.2a2.2 2.2 0 1 0 0 4.4 2.2 2.2 0 0 0 0-4.4zm5.1-2.6a1 1 0 1 1 0 2.1 1 1 0 0 1 0-2.1z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2.2A2.8 2.8 0 0 0 4.2 7v10A2.8 2.8 0 0 0 7 19.8h10a2.8 2.8 0 0 0 2.8-2.8V7A2.8 2.8 0 0 0 17 4.2H7zm5 3.4a4.4 4.4 0 1 1 0 8.8 4.4 4.4 0 0 1 0-8.8zm0 2.2a2.2 2.2 0 1 0 0 4.4 2.2 2.2 0 0 0 0-4.4zm5.1-2.6a1 1 0 1 1 0 2.1 1 1 0 0 1 0-2.1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.drawer {
  position: fixed;
  z-index: 90;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 30px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: -28px 0 80px rgba(20, 77, 130, 0.22);
  transform: translateX(110%);
  transition: transform 0.24s ease;
  backdrop-filter: blur(16px);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer button {
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 28px;
}

.drawer a {
  color: #31507f;
  font-size: 22px;
  font-weight: 900;
}

.request-dialog {
  width: min(920px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(32, 58, 96, 0.32);
}

.request-dialog::backdrop {
  background: rgba(19, 34, 56, 0.5);
  backdrop-filter: blur(6px);
}

.request-dialog[open] {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  animation: dialog-in 180ms ease-out both;
}

.request-dialog[open]::backdrop {
  animation: dialog-backdrop-in 180ms ease-out both;
}

.request-dialog.is-closing {
  animation: dialog-out 160ms ease-in both;
}

.request-dialog.is-closing::backdrop {
  animation: dialog-backdrop-out 160ms ease-in both;
}

.request-dialog img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.request-dialog > div {
  padding: clamp(24px, 4vw, 42px);
}

.request-dialog .btn {
  margin-top: 18px;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dialog-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
}

@keyframes dialog-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes dialog-backdrop-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 28px;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 24px;
  max-width: min(520px, calc(100% - 28px));
  padding: 14px 18px;
  color: #132238;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), #ffe783);
  box-shadow: var(--shadow);
  transform: translate(-50%, 120px);
  transition: transform 0.24s ease;
}

.toast:empty {
  display: none;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

body[data-admin] {
  min-height: 100vh;
  overflow-x: hidden;
  color: #172033;
  background: #f6f8fb;
}

body[data-admin] svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-app-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 228px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  padding: 24px 10px 22px;
  border-right: 1px solid #e2e7f0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 8px 0 28px rgba(28, 43, 68, 0.05);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px 34px;
}

.admin-brand-logo {
  display: block;
  width: auto;
  height: 56px;
  filter: invert(1) brightness(0.28) saturate(1.25);
}

.admin-brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #1e5bc4;
  border-radius: 16px;
  background: #fff5cf;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 197, 40, 0.18);
}

.admin-brand strong {
  display: block;
  color: #1b2435;
  font-size: 29px;
  line-height: 1;
}

.admin-brand em {
  display: block;
  margin-top: 2px;
  color: #778196;
  font-size: 13px;
  font-style: normal;
}

.admin-side-nav {
  display: grid;
  gap: 8px;
}

.admin-side-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 13px;
  padding: 0 16px;
  color: #263246;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

.admin-side-nav a.is-active {
  color: #245fcb;
  background: #eaf1ff;
}

.admin-side-nav a.is-muted:hover {
  background: #f3f6fb;
}

.admin-side-nav svg {
  color: #48566d;
}

.admin-side-nav a.is-active svg {
  color: #245fcb;
}

.admin-sidebar-bottom {
  display: grid;
  gap: 24px;
  margin-top: auto;
  padding: 0 12px;
  color: #7b8495;
  font-size: 13px;
  text-align: center;
}

.admin-site-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #697488;
  border: 1px solid #dbe2ec;
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.admin-site-link svg {
  width: 16px;
  height: 16px;
}

.admin-dashboard {
  min-width: 0;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  min-height: 72px;
  grid-template-columns: 44px minmax(170px, 1fr) minmax(320px, 470px) auto;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  border-bottom: 1px solid #e2e7f0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.admin-topbar h1 {
  margin: 0;
  color: #0f172a;
  font-size: 23px;
  line-height: 1;
}

.admin-top-icon,
.admin-bell,
.admin-sync-note button,
.admin-row-actions a,
.admin-row-actions button,
.admin-panel-head a {
  display: inline-grid;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.admin-global-search {
  display: grid;
  min-height: 42px;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 10px 0 14px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: #fff;
}

.admin-global-search input,
.admin-table-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.admin-global-search kbd {
  min-width: 34px;
  padding: 3px 7px;
  color: #8d97a8;
  border-radius: 6px;
  background: #f1f4f8;
  font-size: 13px;
  font-family: inherit;
  text-align: center;
}

.admin-user-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}

.admin-bell {
  position: relative;
  color: #111827;
}

.admin-bell span {
  position: absolute;
  top: -10px;
  right: -8px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  background: #d9234e;
  font-size: 12px;
  font-weight: 900;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #111827;
  font-weight: 800;
}

.admin-user img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 999px;
}

.admin-user a {
  color: #667085;
  font-size: 18px;
}

.admin-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 18px 20px 32px 28px;
}

.admin-content-main {
  min-width: 0;
}

.admin-adminline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-sync-note,
.admin-panel-note {
  display: grid;
  align-items: center;
  color: #245fcb;
  border: 1px solid #bcd3ff;
  border-radius: 6px;
  background: #f7fbff;
  font-weight: 800;
}

.admin-sync-note {
  min-height: 66px;
  grid-template-columns: 22px 1fr 24px;
  gap: 12px;
  padding: 0 16px;
}

.admin-add-button {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #0f172a;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffd95c, #ffc329);
  box-shadow: 0 10px 20px rgba(255, 197, 40, 0.22);
  font-weight: 900;
}

button.admin-add-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat-card {
  display: grid;
  min-height: 96px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  column-gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid #edf1f6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(30, 43, 66, 0.06);
}

.admin-stat-card p {
  margin: 0;
  min-width: 0;
  color: #667085;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.admin-stat-card strong {
  display: block;
  justify-self: end;
  color: #0f172a;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.05;
  text-align: right;
  white-space: nowrap;
}

.admin-stat-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
}

.admin-stat-blue {
  color: #2d67d7;
  background: #eaf1ff;
}

.admin-stat-green {
  color: #2f9b55;
  background: #e7f7e9;
}

.admin-stat-purple {
  color: #6754d9;
  background: #efedff;
}

.admin-filter-bar {
  display: grid;
  grid-template-columns: minmax(190px, 230px) 130px 180px 150px 220px;
  gap: 14px;
  margin: 0 0 12px;
}

.admin-filter-bar select,
.admin-table-search,
.admin-lang-filter {
  min-height: 44px;
  border: 1px solid #dbe2ec;
  border-radius: 6px;
  background: #fff;
  color: #273247;
  font-weight: 700;
}

.admin-table-search {
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  padding: 0 12px;
}

.admin-filter-bar select {
  padding: 0 12px;
}

.admin-lang-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
}

.admin-lang-filter span {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(#2f7eea 0 50%, #ffd33d 50% 100%);
}

.admin-design-table-wrap {
  overflow: auto;
  border: 1px solid #dfe5ee;
  border-radius: 6px;
  background: #fff;
}

.admin-design-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: #243044;
  font-size: 14px;
}

.admin-design-table th {
  padding: 15px 18px;
  color: #667085;
  border-bottom: 1px solid #dfe5ee;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.admin-design-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e8edf3;
  vertical-align: middle;
  line-height: 1.35;
}

.admin-row-number {
  color: #667085;
  font-weight: 800;
  text-align: center;
}

.admin-design-table tr.is-selected {
  background: #f2f7ff;
}

.admin-person-cell {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  color: #111827;
  font-weight: 900;
}

.admin-person-cell strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-person-cell img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 999px;
}

.admin-sync-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #279143;
  font-weight: 800;
}

.admin-sync-status svg {
  width: 17px;
  height: 17px;
}

.admin-order-pill {
  display: grid;
  width: 56px;
  height: 38px;
  place-items: center;
  border: 1px solid #dbe2ec;
  border-radius: 6px;
  background: #fff;
  color: #111827;
}

.admin-toggle {
  display: inline-flex;
  width: 34px;
  height: 20px;
  align-items: center;
  padding: 2px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
}

.admin-toggle-form {
  margin: 0;
}

.admin-toggle i {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  transition: transform 160ms ease;
}

.admin-toggle.is-on {
  background: #4b7dda;
}

.admin-toggle.is-on i {
  transform: translateX(14px);
}

.admin-row-actions {
  display: flex;
  gap: 4px;
  align-items: center;
}

.admin-row-actions a,
.admin-row-actions button {
  width: 34px;
  height: 34px;
  color: #526176;
  border: 1px solid #dfe5ee;
  border-radius: 6px;
  background: #fff;
}

.admin-row-actions a:hover,
.admin-row-actions button:hover {
  color: #245fcb;
  background: #f2f7ff;
}

.admin-row-actions form {
  margin: 0;
}

.admin-row-actions svg {
  width: 17px;
  height: 17px;
}

.admin-table-footer {
  display: grid;
  grid-template-columns: 1fr auto 180px;
  align-items: center;
  gap: 16px;
  padding: 22px 4px 0;
  color: #39465a;
  font-weight: 800;
}

.admin-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-pagination a,
.admin-pagination span,
.admin-pagination strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
}

.admin-pagination a {
  color: #39465a;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dbe2ec;
}

.admin-pagination a:hover {
  color: #245fcb;
  border-color: #9ab9f0;
  background: #f2f7ff;
}

.admin-pagination span {
  color: #9aa5b5;
}

.admin-pagination strong {
  color: #fff;
  background: #4b7dda;
}

.admin-per-page-form {
  margin: 0;
}

.admin-table-footer label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-table-footer select {
  min-height: 38px;
  min-width: 72px;
  padding: 0 10px;
  border: 1px solid #dbe2ec;
  border-radius: 6px;
  background: #fff;
}

.admin-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(2px);
}

.admin-edit-panel {
  position: fixed;
  top: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: clamp(440px, 40vw, 620px);
  max-width: calc(100vw - 32px);
  overflow: auto;
  padding: 24px;
  border: 1px solid #edf1f6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(30, 43, 66, 0.22);
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-panel-head h2 {
  margin: 0;
  font-size: 21px;
}

.admin-panel-head a {
  color: #526176;
}

.admin-design-form {
  display: grid;
  gap: 16px;
}

.admin-photo-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  align-items: center;
}

.admin-photo-preview {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 999px;
}

.admin-photo-upload {
  position: relative;
  display: grid;
  gap: 8px;
  text-align: center;
  cursor: pointer;
}

.admin-photo-upload > span,
.admin-design-form label > span,
.admin-checkboxes legend,
.admin-extra-head span {
  color: #526176;
  font-size: 14px;
  font-weight: 900;
}

.admin-photo-upload strong {
  display: grid;
  min-height: 82px;
  padding: 10px;
  place-items: center;
  gap: 4px;
  color: #3b73d9;
  border: 1px dashed #bdc9dc;
  border-radius: 6px;
  font-size: 14px;
}

.admin-photo-upload strong span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.admin-photo-upload em {
  color: #8b95a7;
  font-size: 13px;
  font-style: normal;
}

.admin-photo-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.admin-design-form label {
  display: grid;
  gap: 8px;
}

.admin-design-form input,
.admin-design-form select,
.admin-design-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: #1f2937;
  border: 1px solid #d8e0ec;
  border-radius: 6px;
  background: #fff;
  font: inherit;
}

.admin-design-form textarea {
  min-height: 84px;
  resize: vertical;
}

.admin-language-tabs {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: #f8fbff;
}

.admin-language-tablist {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.admin-language-tab,
.admin-language-add {
  display: inline-grid;
  min-width: 46px;
  min-height: 36px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0 12px;
  color: #526176;
  border: 1px solid #d8e0ec;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.admin-language-tab.is-active {
  color: #173a66;
  border-color: #5d8dec;
  background: #e8f2ff;
  box-shadow: inset 0 0 0 1px rgba(45, 127, 249, 0.12);
}

.admin-language-add {
  color: #173a66;
  background: #fff8dd;
}

.admin-language-panel {
  display: none;
  gap: 12px;
}

.admin-language-panel.is-active {
  display: grid;
}

.admin-design-form input:disabled,
.admin-design-form textarea:disabled {
  color: #46556b;
  background: #f8fafc;
}

.admin-checkboxes {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.admin-checkboxes label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  color: #273247;
  font-size: 14px;
  font-weight: 700;
}

.admin-checkboxes input {
  width: 16px;
  min-height: 16px;
  accent-color: #4b7dda;
}

.admin-form-toggle {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.admin-form-toggle input {
  width: 34px;
  min-height: 20px;
  accent-color: #4b7dda;
}

.admin-panel-note {
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.admin-panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 16px;
}

.admin-panel-actions a,
.admin-panel-actions button {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.admin-panel-actions a {
  background: #f0f1f3;
}

.admin-panel-actions button {
  background: linear-gradient(180deg, #ffd95c, #ffc329);
}

@media (max-width: 1500px) and (min-width: 1041px) {
  body[data-admin] {
    font-size: 14px;
  }

  .admin-app-shell {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .admin-sidebar {
    padding: 18px 8px 18px;
  }

  .admin-brand {
    gap: 9px;
    padding: 0 10px 26px;
  }

  .admin-brand-logo {
    height: 48px;
  }

  .admin-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .admin-brand strong {
    font-size: 24px;
  }

  .admin-brand em {
    font-size: 11px;
  }

  .admin-side-nav {
    gap: 6px;
  }

  .admin-side-nav a {
    min-height: 42px;
    gap: 10px;
    padding: 0 12px;
    font-size: 13px;
  }

  .admin-side-nav svg {
    width: 18px;
    height: 18px;
  }

  .admin-sidebar-bottom {
    gap: 16px;
    padding: 0 8px;
    font-size: 12px;
  }

  .admin-site-link {
    min-height: 38px;
  }

  .admin-topbar {
    min-height: 58px;
    grid-template-columns: 34px minmax(130px, 1fr) minmax(250px, 390px) auto;
    gap: 16px;
    padding: 0 20px;
  }

  .admin-topbar h1 {
    font-size: 20px;
  }

  .admin-global-search {
    min-height: 36px;
    gap: 8px;
    padding: 0 8px 0 12px;
  }

  .admin-global-search input {
    font-size: 13px;
  }

  .admin-global-search kbd {
    min-width: 30px;
    padding: 2px 6px;
    font-size: 11px;
  }

  .admin-user-tools {
    gap: 16px;
  }

  .admin-bell svg {
    width: 18px;
    height: 18px;
  }

  .admin-bell span {
    top: -8px;
    right: -7px;
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .admin-user {
    gap: 8px;
    font-size: 13px;
  }

  .admin-user img {
    width: 34px;
    height: 34px;
  }

  .admin-user a {
    font-size: 15px;
  }

  .admin-content {
    padding: 16px 16px 28px 20px;
  }

  .admin-adminline {
    grid-template-columns: minmax(0, 1fr) 184px;
    gap: 12px;
    margin-bottom: 16px;
  }

  .admin-sync-note {
    min-height: 52px;
    grid-template-columns: 20px 1fr 20px;
    gap: 10px;
    padding: 0 12px;
    font-size: 13px;
  }

  .admin-add-button {
    min-height: 52px;
    gap: 10px;
    font-size: 14px;
  }

  .admin-add-button svg {
    width: 18px;
    height: 18px;
  }

  .admin-stat-grid {
    gap: 12px;
    margin-bottom: 18px;
  }

  .admin-stat-card {
    min-height: 78px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    column-gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .admin-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .admin-stat-card p {
    font-size: 12px;
    line-height: 1.25;
  }

  .admin-stat-card strong {
    font-size: 24px;
  }

  .admin-filter-bar {
    grid-template-columns: minmax(160px, 200px) 118px 150px 135px 190px;
    gap: 10px;
  }

  .admin-filter-bar select,
  .admin-table-search,
  .admin-lang-filter {
    min-height: 38px;
    font-size: 12px;
  }

  .admin-table-search {
    padding: 0 10px;
  }

  .admin-filter-bar select {
    padding: 0 10px;
  }

  .admin-lang-filter span {
    width: 22px;
    height: 14px;
  }

  .admin-design-table {
    min-width: 860px;
    table-layout: fixed;
    font-size: 12px;
  }

  .admin-design-table th:nth-child(1),
  .admin-design-table td:nth-child(1) {
    width: 42px;
    text-align: center;
  }

  .admin-design-table th:nth-child(2),
  .admin-design-table td:nth-child(2) {
    width: 170px;
  }

  .admin-design-table th:nth-child(3),
  .admin-design-table td:nth-child(3) {
    width: 104px;
  }

  .admin-design-table th:nth-child(4),
  .admin-design-table td:nth-child(4) {
    width: 138px;
  }

  .admin-design-table th:nth-child(5),
  .admin-design-table td:nth-child(5) {
    width: 174px;
  }

  .admin-design-table th:nth-child(6),
  .admin-design-table td:nth-child(6) {
    width: 72px;
  }

  .admin-design-table th:nth-child(7),
  .admin-design-table td:nth-child(7) {
    width: 78px;
  }

  .admin-design-table th:nth-child(8),
  .admin-design-table td:nth-child(8) {
    width: 84px;
  }

  .admin-design-table th {
    padding: 10px 10px;
    font-size: 11px;
  }

  .admin-design-table td {
    padding: 9px 10px;
  }

  .admin-person-cell {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    font-weight: 800;
  }

  .admin-person-cell img {
    width: 34px;
    height: 34px;
  }

  .admin-sync-status {
    gap: 5px;
    font-weight: 800;
  }

  .admin-sync-status svg {
    width: 15px;
    height: 15px;
  }

  .admin-order-pill {
    width: 46px;
    height: 32px;
  }

  .admin-row-actions a,
  .admin-row-actions button {
    width: 26px;
    height: 26px;
  }

  .admin-row-actions svg {
    width: 14px;
    height: 14px;
  }

  .admin-table-footer {
    grid-template-columns: 1fr auto 160px;
    gap: 12px;
    padding-top: 16px;
    font-size: 12px;
  }

  .admin-pagination {
    gap: 6px;
  }

  .admin-pagination a,
  .admin-pagination span,
  .admin-pagination strong {
    width: 30px;
    height: 30px;
  }

  .admin-table-footer select {
    min-height: 34px;
    min-width: 64px;
  }

  .admin-edit-panel {
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: 40vw;
    min-width: 440px;
    max-width: calc(100vw - 24px);
    padding: 18px;
    border-radius: 10px;
  }

  .admin-panel-head {
    margin-bottom: 16px;
  }

  .admin-panel-head h2 {
    font-size: 18px;
  }

  .admin-design-form {
    gap: 12px;
  }

  .admin-photo-row {
    grid-template-columns: 86px 1fr;
    gap: 16px;
  }

  .admin-photo-preview {
    width: 82px;
    height: 82px;
  }

  .admin-photo-upload > span,
  .admin-design-form label > span,
  .admin-checkboxes legend,
  .admin-extra-head span {
    font-size: 12px;
  }

  .admin-photo-upload strong {
    min-height: 66px;
    font-size: 12px;
  }

  .admin-photo-upload em {
    font-size: 12px;
  }

  .admin-design-form input,
  .admin-design-form textarea {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .admin-design-form textarea {
    min-height: 72px;
  }

  .admin-checkboxes label {
    gap: 7px;
    font-size: 12px;
  }

  .admin-checkboxes input {
    width: 14px;
    min-height: 14px;
  }

  .admin-panel-note {
    gap: 8px;
    padding: 10px;
    font-size: 12px;
  }

  .admin-panel-actions {
    gap: 12px;
    padding-top: 10px;
  }

  .admin-panel-actions a,
  .admin-panel-actions button {
    min-height: 42px;
    font-size: 13px;
  }
}

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

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

@media (max-width: 1040px) {
  .admin-app-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-side-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-sidebar-bottom {
    display: none;
  }

  .admin-topbar,
  .admin-content,
  .admin-adminline,
  .admin-stat-grid,
  .admin-filter-bar,
  .admin-table-footer {
    grid-template-columns: 1fr;
  }

  .admin-edit-panel {
    position: static;
  }

  .hero-grid,
  .about-hero-grid,
  .footer-grid,
  .footer-card,
  .contact-layout,
  .about-work-grid,
  #activity .cards-4,
  .cards-4,
  .cards-3,
  .closed-requests-grid,
  .documents-grid,
  .gallery,
  .full-gallery-grid,
  .volunteer-gallery,
  .quotes,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-card:first-child,
  .volunteer-card:nth-child(4),
  .volunteer-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .floating-panel {
    grid-template-columns: 1fr;
  }

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

  .request-contact-strip {
    grid-template-columns: 1fr;
  }

  .history-showcase-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .history-showcase-media,
  .history-showcase-media img {
    min-height: 460px;
  }

  .support-cta-card {
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  }

  .support-cta-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-kpis,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-editor {
    position: static;
  }

  .donation-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "actions"
      "details";
    padding: 22px;
  }

  .donation-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .bank-details.compact {
    width: 100%;
    justify-self: stretch;
  }

  .proof-grid,
  .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .proof-photo-large {
    grid-row: auto;
  }

  .footer-actions {
    align-items: stretch;
  }

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

  .footer-qr {
    justify-self: start;
  }

  .nav-links {
    display: none;
  }

  .brand-logo {
    height: 38px;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 760px) {
  .admin-brand strong {
    font-size: 24px;
  }

  .admin-side-nav {
    grid-template-columns: 1fr 1fr;
  }

  .admin-topbar {
    gap: 14px;
    padding: 14px;
  }

  .admin-content {
    padding: 14px;
  }

  .admin-photo-row,
  .admin-panel-actions,
  .admin-extra-head,
  .admin-language-row {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .news-preview,
  .news-page {
    padding: 56px 0;
  }

  .news-preview-head,
  .news-page-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .news-preview-head h2,
  .news-page-head h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .news-preview-head p,
  .news-page-head p {
    font-size: 16px;
  }

  .news-page-head .hero-actions {
    justify-content: flex-start;
  }

  .news-preview-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .news-info-card,
  .news-feed-card {
    border-radius: 18px;
  }

  .news-info-card {
    padding: 24px 20px;
  }

  .news-topic {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    min-height: 82px;
  }

  .news-topic-icon {
    width: 50px;
    height: 50px;
  }

  .news-topic-icon::before {
    width: 24px;
    height: 24px;
  }

  .news-topic p {
    white-space: normal;
  }

  .news-feed-card {
    width: min(100%, 366px);
    padding: 12px;
  }

  .facebook-frame-wrap {
    width: min(100%, 340px);
    min-height: 540px;
    border-radius: 14px;
  }

  .facebook-frame-wrap iframe {
    height: 540px;
  }

  .news-page-card .facebook-frame-wrap,
  .news-page-card iframe {
    min-height: 680px;
    height: 680px;
  }

  .nav {
    gap: 12px;
  }

  .nav-actions .btn,
  .lang-switch {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .process-stage {
    padding: 0;
  }

  .process-route-strip,
  .process-hint {
    display: none;
  }

  .process-stack {
    display: grid;
    height: auto;
    gap: 16px;
  }

  .process-card,
  .process-card:nth-child(n) {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    display: grid;
    width: auto;
    height: auto;
    min-height: auto;
    padding: 18px 18px 18px 76px;
    overflow: visible;
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(247, 242, 255, 0.9), rgba(255, 255, 255, 0.92)),
      #fff;
    box-shadow: 0 14px 32px rgba(78, 67, 150, 0.08);
    cursor: default;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .process-card::after {
    display: none;
  }

  .process-card:hover {
    width: auto;
    border-color: rgba(45, 127, 249, 0.14);
    box-shadow: 0 14px 32px rgba(78, 67, 150, 0.08);
    transform: none;
  }

  .process-num {
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin: 0;
    color: #285a84;
    border-radius: 14px;
    background: #e7f2fb;
    font-size: 14px;
  }

  .process-card:nth-child(3n + 2) .process-num {
    color: #2d6f62;
    background: #e8f6f1;
  }

  .process-card:nth-child(3n) .process-num {
    color: #805c16;
    background: #fff4d8;
  }

  .process-short {
    display: none;
  }

  .process-icon,
  .process-actions,
  .process-card:hover .process-icon,
  .process-card:hover .process-actions {
    display: none;
  }

  .process-title-row,
  .process-card:hover .process-title-row {
    display: block;
    position: static;
    margin: 0;
  }

  .process-card h3,
  .process-card:hover h3 {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0;
    font-size: 18px;
    white-space: normal;
  }

  .process-card p,
  .process-card:hover p {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.42;
  }

  .process-detail {
    display: none;
  }

  #values .icon-card-grid .card {
    min-height: 0;
    padding-right: 78px;
  }

  .values-card-icon {
    top: 22px;
    right: 22px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .values-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .about-hero,
  .gallery-hero,
  .contact-hero,
  .requests-hero {
    padding: 36px 0 22px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(38px, 14vw, 54px);
  }

  h2 {
    font-size: clamp(25px, 9vw, 34px);
  }

  .hero-actions,
  .donation-actions,
  .footer-actions {
    align-items: stretch;
  }

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

  .donation-panel,
  .card-large,
  .about-work-card,
  .footer-card {
    padding: 22px;
  }

  .about-work-card h2 {
    margin-bottom: 16px;
  }

  .about-work-card li {
    min-height: 46px;
    padding-left: 58px;
    font-size: 17px;
  }

  .about-work-card li::before {
    top: 1px;
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .about-work-card li::after {
    top: 12px;
    left: 12px;
    width: 22px;
    height: 22px;
  }

  .history-showcase {
    padding: 12px 0 32px;
  }

  .history-showcase > .container {
    width: min(100% - 28px, 1180px);
  }

  .history-showcase-head {
    margin-bottom: 22px;
  }

  .history-showcase-head h2 {
    font-size: 42px;
  }

  .history-showcase-card {
    gap: 22px;
    padding: 18px;
    border-radius: 24px;
  }

  .history-showcase-media {
    min-height: 0;
    border-radius: 20px;
  }

  .history-showcase-media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .history-showcase-media figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 10px;
  }

  .history-showcase-media figcaption span,
  .history-showcase-media figcaption b {
    min-height: 68px;
    border-radius: 14px;
  }

  .history-showcase-media figcaption span {
    min-width: 138px;
    padding: 10px 14px;
  }

  .history-showcase-media figcaption em {
    font-size: 13px;
  }

  .history-showcase-media figcaption strong {
    font-size: 34px;
  }

  .history-showcase-media figcaption b {
    min-width: 84px;
    padding: 0 14px;
    font-size: 24px;
  }

  .history-route-label {
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .history-route h3 {
    margin-top: 12px;
    font-size: clamp(26px, 8vw, 34px);
  }

  .history-route-intro {
    margin-top: 16px;
    font-size: 17px;
  }

  .history-route-list {
    gap: 16px;
    margin-top: 22px;
    padding-left: 0;
  }

  .history-route-list::before {
    display: none;
  }

  .history-route-item::after {
    display: none;
  }

  .history-route-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px 14px;
    min-height: 0;
    padding: 18px;
    align-items: start;
  }

  .history-route-marker {
    position: static;
    width: 36px;
    height: 36px;
    border-width: 3px;
    grid-row: 1 / span 2;
  }

  .history-date-pill {
    grid-column: 2;
    width: max-content;
    min-height: 42px;
    padding: 0 18px;
    font-size: 22px;
  }

  .history-route-item > div:last-child {
    grid-column: 2;
  }

  .history-route-item h4 {
    font-size: 22px;
  }

  .history-route-item p {
    font-size: 15px;
  }

  .support-cta-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-cta-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .support-cta-actions {
    grid-template-columns: 1fr;
  }

  .support-cta-copy h2 {
    margin-top: 14px;
  }

  .proof-grid {
    grid-template-rows: none;
    gap: 14px;
  }

  .proof-photo,
  .proof-photo-large {
    min-height: 260px;
  }

  .proof-photo figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .story-card img {
    height: 210px;
  }

  .story-card > div {
    padding: 22px;
  }

  .vehicle-type-card > img {
    height: 145px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 0;
    padding: 18px;
  }

  .vehicle-scene {
    min-height: 280px;
    padding: 26px 20px;
  }

  .visual-badge {
    position: static;
    width: max-content;
  }

  .about-visual img,
  .gallery-feature > img {
    min-height: 220px;
    border-radius: 18px;
  }

  .request-feature > img {
    height: clamp(260px, 68vw, 340px);
    border-radius: 18px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .contact-list a {
    grid-template-columns: 46px 1fr;
  }

  .contact-list em {
    grid-column: 2;
  }

  .full-gallery-grid {
    grid-auto-rows: auto;
  }

  .admin-title {
    display: none;
  }

  .admin-header .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-header .nav-actions {
    width: 100%;
  }

  .admin-header .nav-actions .btn {
    display: inline-flex;
    width: 100%;
  }

  .admin-toolbar-row,
  .admin-extra-head,
  .admin-language-row {
    grid-template-columns: 1fr;
  }

  .admin-kpis {
    gap: 12px;
  }

  .admin-table-wrap {
    display: none;
  }

  .sheet-table-wrap {
    display: none;
  }

  .sheet-mobile-list:not([hidden]) {
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .sheet-request-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(19, 34, 56, 0.08);
    border-radius: 18px;
    background: #fff;
  }

  .sheet-request-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
  }

  .sheet-request-card strong {
    color: #15243a;
    line-height: 1.35;
  }

  .sheet-table-actions {
    justify-content: center;
  }

  .sheet-table-actions .btn {
    width: min(100%, 260px);
  }

  .admin-mobile-cards {
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .admin-mobile-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(19, 34, 56, 0.08);
    border-radius: 18px;
    background: #fff;
  }

  .admin-mobile-card.is-selected {
    border-color: rgba(45, 127, 249, 0.36);
    box-shadow: 0 0 0 4px rgba(45, 127, 249, 0.08);
  }

  .admin-mobile-card img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 14px;
  }

  .admin-mobile-card h3 {
    font-size: 18px;
  }

  .admin-mobile-card p {
    margin: 0 0 10px;
    color: var(--muted);
  }

  .admin-editor-head,
  .admin-form-grid,
  .admin-calculated {
    grid-template-columns: 1fr;
  }

  .request-dialog[open] {
    grid-template-columns: 1fr;
  }

  .request-dialog img {
    min-height: 260px;
  }

  .footer-main {
    padding: 38px 0;
  }

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

  .footer-about {
    max-width: none;
  }

  .footer-column a {
    font-size: 17px;
  }

  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .full-gallery-item.wide,
  .full-gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .closed-requests-grid,
  .volunteer-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .facebook-frame-wrap .facebook-frame-desktop {
    display: none;
  }

  .facebook-frame-wrap .facebook-frame-mobile {
    display: block;
    width: min(100%, 340px);
  }
}

/* Contact page: phone-first layout */
.contact-redesign-hero {
  padding: 58px 0 46px;
  background:
    radial-gradient(circle at 78% 28%, rgba(45, 127, 249, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(246, 249, 254, 0.72), rgba(238, 244, 252, 0.8));
}

.contact-redesign-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  gap: 48px;
  align-items: end;
}

.contact-redesign-main h1 {
  max-width: 720px;
  margin: 2px 0 0;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-redesign-lead {
  max-width: 650px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.contact-primary-card,
.contact-topic-panel,
.contact-bank-panel,
.contact-secondary-card,
.contact-social-card {
  border: 1px solid rgba(45, 127, 249, 0.14);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.contact-primary-card {
  padding: 22px 24px;
  border-radius: 22px;
}

.contact-phone-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.contact-primary-icon,
.contact-secondary-icon,
.contact-topic-icon {
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf3ff;
}

.contact-primary-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
}

.contact-primary-icon svg,
.contact-secondary-icon svg,
.contact-topic-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-phone-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-phone-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.contact-phone-copy a {
  width: fit-content;
  font-size: clamp(21px, 1.9vw, 26px);
  font-weight: 900;
  line-height: 1.08;
}

.contact-phone-copy a:hover {
  color: var(--blue);
}

.contact-copy-button {
  min-height: 42px;
  padding: 0 14px;
  color: #31577f;
  border: 1px solid #d8e6f7;
  border-radius: 13px;
  background: #f8fbff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.contact-copy-button:hover {
  color: var(--blue);
  border-color: rgba(45, 127, 249, 0.34);
}

.contact-messenger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #edf3fa;
}

.contact-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-messenger {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: #476381;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #f1f6fc;
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-messenger svg {
  width: 18px;
  height: 18px;
}

.contact-messenger-telegram svg,
.contact-messenger-whatsapp svg {
  fill: currentColor;
}

.contact-messenger-viber svg path:first-child {
  fill: currentColor;
}

.contact-messenger-viber svg path:last-child {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-messenger-telegram { color: #218fd2; }
.contact-messenger-viber { color: #7360f2; }
.contact-messenger-whatsapp { color: #1e9f59; }

.contact-messenger:hover {
  border-color: currentColor;
  background: #fff;
  transform: translateY(-1px);
}

.contact-call-button {
  min-width: 150px;
  flex: 0 0 auto;
  color: #fff;
  border-color: #1468df;
  background: linear-gradient(135deg, #2d87ff, #1264d9);
  box-shadow: 0 12px 24px rgba(45, 127, 249, 0.2);
}

.contact-call-button:hover {
  color: #fff;
  border-color: #0f5fcf;
  background: linear-gradient(135deg, #247ff5, #0f5fcf);
}

.contact-secondary-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.8fr);
  gap: 12px;
  margin-top: 12px;
}

.contact-secondary-card,
.contact-social-card {
  min-height: 76px;
  border-radius: 18px;
}

.contact-secondary-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
}

.contact-secondary-card:hover {
  border-color: rgba(45, 127, 249, 0.36);
}

.contact-secondary-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 13px;
}

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

.contact-secondary-card small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.contact-secondary-card strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.contact-social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-social-card > div {
  display: flex;
  gap: 8px;
}

.contact-social-card a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(35, 88, 150, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.contact-social-card a svg {
  width: 20px;
  height: 20px;
}

.contact-social-card .contact-social-facebook {
  background: linear-gradient(135deg, #2d7ff9, #155fbd);
}

.contact-social-card .contact-social-facebook svg {
  fill: currentColor;
}

.contact-social-card .contact-social-instagram {
  background: radial-gradient(circle at 30% 108%, #ffd15c 0 24%, #f04b62 46%, #8a3ffc 72%, #2d7ff9 100%);
}

.contact-social-card .contact-social-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-social-card a:hover {
  color: #fff;
  filter: saturate(1.12);
  box-shadow: 0 14px 28px rgba(35, 88, 150, 0.22);
  transform: translateY(-1px);
}

.contact-topic-panel {
  padding: 27px;
  border-radius: 24px;
}

.contact-topic-panel h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0;
}

.contact-topic-panel > p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-topic-list {
  display: grid;
  gap: 10px;
}

.contact-topic-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 13px;
  min-height: 82px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid #e1ebf7;
  border-radius: 17px;
  background: #f8fbff;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-topic-card.is-primary {
  border-color: #bdd8fb;
  background: #eef6ff;
}

.contact-topic-card:hover {
  border-color: rgba(45, 127, 249, 0.42);
  background: #fff;
  box-shadow: 0 12px 24px rgba(34, 53, 78, 0.08);
  transform: translateY(-1px);
}

.contact-topic-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(32, 76, 128, 0.07);
}

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

.contact-topic-card strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-topic-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.contact-topic-card b {
  color: var(--blue);
  font-size: 23px;
  font-weight: 500;
}

.contact-support-section {
  padding: 54px 0;
  background: linear-gradient(135deg, #f5f9ff 0%, #fff 58%);
}

.contact-support-layout {
  display: grid;
  gap: 28px;
}

.contact-support-header {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: end;
}

.contact-support-copy .eyebrow {
  margin-bottom: 14px;
}

.contact-support-copy h2 {
  letter-spacing: 0;
}

.contact-support-copy p {
  max-width: 490px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-payment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-payment-list a {
  display: grid;
  min-height: 92px;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  row-gap: 2px;
  padding: 16px;
  border: 1px solid #dfe9f5;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(37, 87, 143, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-payment-list a:hover {
  border-color: rgba(45, 127, 249, 0.38);
  box-shadow: 0 14px 28px rgba(37, 87, 143, 0.12);
  transform: translateY(-2px);
}

.contact-payment-list a.is-primary {
  color: #fff;
  border-color: #166bea;
  background: linear-gradient(135deg, #2d83f6 0%, #1260ce 100%);
  box-shadow: 0 14px 26px rgba(23, 103, 225, 0.2);
}

.contact-payment-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue);
  border-radius: 15px;
  background: #edf5ff;
  font-size: 18px;
  font-weight: 900;
}

.contact-payment-list a.is-primary .contact-payment-icon {
  background: #fff;
}

.contact-payment-list strong {
  grid-column: 2;
  grid-row: 1;
  overflow-wrap: anywhere;
  font-size: 14px;
  white-space: nowrap;
}

.contact-payment-list small {
  grid-column: 2;
  grid-row: 2;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-align: left;
}

.contact-payment-list a.is-primary {
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.contact-payment-list a.is-primary small {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
}

.contact-support-main {
  display: grid;
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #dce8f8;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(45, 89, 139, 0.09);
}

.contact-support-cta {
  display: flex;
  min-height: 322px;
  flex-direction: column;
  align-items: flex-start;
  padding: 29px;
  color: #fff;
  background: linear-gradient(150deg, #2b82f4 0%, #145dcc 100%);
  text-decoration: none;
}

.contact-support-cta:hover {
  color: #fff;
}

.contact-support-cta-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
}

.contact-support-cta-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-support-cta-copy {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-support-cta-copy strong {
  font-size: 27px;
  line-height: 1.06;
}

.contact-support-cta-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.contact-support-cta-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding: 13px 15px;
  color: #165fc7;
  border-radius: 11px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.contact-support-cta-action b {
  font-size: 20px;
  font-weight: 500;
}

.contact-bank-panel {
  padding: 29px 31px 24px;
  background: #fff;
}

.contact-bank-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-bank-heading h3 {
  margin: 0;
  font-size: 23px;
}

.contact-bank-heading p {
  max-width: 500px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-bank-heading .btn-secondary {
  flex: 0 0 auto;
  min-height: 44px;
  padding-inline: 15px;
  color: #225b9f;
  border-color: #b8d4fb;
  background: #f0f7ff;
  font-size: 13px;
}

.contact-iban-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 23px 0 17px;
  padding: 17px 18px;
  border: 1px solid #dceafb;
  border-radius: 13px;
  background: #f8fbff;
}

.contact-iban-band div {
  display: grid;
  gap: 5px;
}

.contact-iban-band div:last-child {
  text-align: right;
}

.contact-iban-band strong,
.contact-bank-grid strong {
  color: #7285a2;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-iban-band span {
  font-size: 15px;
  font-weight: 800;
}

.contact-iban-band div:first-child span {
  font-size: 19px;
  letter-spacing: 0.01em;
}

.contact-bank-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 17px;
  border-top: 1px solid #e7effa;
}

.contact-bank-grid p {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 48px;
  min-width: 0;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #e7effa;
}

.contact-bank-grid p:last-child {
  border-bottom: 0;
}

.contact-bank-grid span {
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 800;
}

.contact-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.contact-trust-links a {
  padding: 0;
  color: #3568a2;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.contact-trust-links a::after {
  content: '→';
  margin-left: 6px;
}

.contact-request-section {
  padding: 46px 0 0;
}

.contact-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-request-grid .unit-request-card {
  grid-column: auto;
}

.contact-request-grid .card {
  display: flex;
  min-height: 340px;
  align-items: flex-start;
  flex-direction: column;
}

.contact-request-grid .card > .btn,
.contact-request-grid .card > .footer-actions {
  margin-top: auto;
}

#contact-message {
  scroll-margin-top: 24px;
}

@media (max-width: 1040px) {
  .contact-redesign-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .contact-topic-panel {
    width: 100%;
  }

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

  .contact-support-header,
  .contact-support-main {
    grid-template-columns: 1fr;
  }

  .contact-support-header {
    gap: 22px;
  }

  .contact-support-cta {
    min-height: 255px;
  }
}

@media (max-width: 760px) {
  .contact-redesign-hero {
    padding: 34px 0 30px;
  }

  .contact-redesign-main h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .contact-redesign-lead {
    margin-top: 16px;
    font-size: 16px;
  }

  .contact-primary-card,
  .contact-topic-panel {
    padding: 18px;
    border-radius: 19px;
  }

  .contact-phone-row {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-primary-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .contact-phone-copy a {
    font-size: clamp(19px, 5.5vw, 22px);
    white-space: nowrap;
  }

  .contact-copy-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .contact-messenger-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .contact-messenger {
    justify-content: center;
    padding: 0 8px;
  }

  .contact-messenger span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-call-button {
    width: 100%;
  }

  .contact-secondary-row,
  .contact-topic-list,
  .contact-payment-list,
  .contact-bank-grid,
  .contact-request-grid {
    grid-template-columns: 1fr;
  }

  .contact-topic-panel h2 {
    font-size: 26px;
  }

  .contact-support-section {
    padding: 34px 0;
  }

  .contact-payment-list a {
    min-height: 66px;
    row-gap: 2px;
  }

  .contact-payment-list a .contact-payment-icon {
    grid-row: 1 / span 2;
  }

  .contact-payment-list a.is-primary small {
    font-size: 14px;
  }

  .contact-support-main {
    border-radius: 19px;
  }

  .contact-support-cta {
    min-height: 0;
    padding: 22px 18px;
  }

  .contact-support-cta-copy {
    gap: 7px;
    margin-top: 18px;
  }

  .contact-support-cta-copy strong {
    font-size: 24px;
  }

  .contact-support-cta-action {
    margin-top: 20px;
  }

  .contact-bank-panel {
    padding: 17px;
  }

  .contact-bank-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-bank-heading .btn {
    width: 100%;
  }

  .contact-iban-band {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-block: 18px;
    padding: 15px;
  }

  .contact-iban-band div:last-child {
    text-align: left;
  }

  .contact-iban-band div:first-child span {
    font-size: 14px;
  }

  .contact-bank-grid {
    gap: 0;
  }

  .contact-bank-grid p {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid #e7effa;
  }

  .contact-bank-grid p:last-child {
    border-bottom: 0;
  }

  .contact-request-section {
    padding-top: 34px;
  }

  .contact-request-grid .card {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .contact-messengers {
    grid-template-columns: 1fr;
  }

  .contact-messenger {
    justify-content: flex-start;
  }

  .contact-topic-card {
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 12px;
  }

  .contact-topic-icon {
    width: 44px;
    height: 44px;
  }
}
