
:root {
  --green: #689f38;
  --green-dark: #33691e;
  --green-light: #7cb342;
  --green-bg: #aed581;
  --sky-top: #87ceeb;
  --sky-mid: #b8e0f0;
  --sky-bottom: #e8f4f8;
  --white: #ffffff;
  --grey: #333333;
  --grey-muted: #666666;
  --grey-light: #f5f5f5;
  --star: #ffc107;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  background: var(--white);
}

html.menu-open {
  overflow: hidden;
}

body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: var(--lock-scroll-y, 0px);
  overflow: hidden;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  color: var(--green);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

:target {
  scroll-margin-top: 5.5rem;
}

#services-transportuvannia-patsientiv,
#services-med-suprovyd-zakhodiv,
#services-konsultatsii,
#services-diahnostyka,
#services-dennyi-statsionar,
#services-mala-khirurhiia {
  scroll-margin-top: 4rem;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
}

.logo-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-text strong {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.logo-text small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--grey-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-list a {
  color: var(--grey);
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--green-dark);
}

.nav-item.has-submenu {
  position: relative;
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: -8px;
  min-width: 280px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 200;
}

.nav-submenu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-submenu a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: var(--grey);
  font-weight: 500;
  white-space: nowrap;
}

.nav-submenu a:hover {
  background: var(--grey-light);
  color: var(--green-dark);
}

.nav-item.has-submenu:hover .nav-submenu,
.nav-item.has-submenu:focus-within .nav-submenu {
  display: block;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grey);
  font-weight: 500;
}

.nav-phone .icon,
.nav-email .icon {
  width: 20px;
  height: 20px;
}

.nav-email {
  display: inline-flex;
  color: var(--grey);
  padding: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

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

.btn-cta {
  position: relative;
  isolation: isolate;
  background: var(--green);
  color: var(--white) !important;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 12px 24px rgba(51, 105, 30, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-cta {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn-cta.btn-lg {
  padding: 10px 22px;
  font-size: 0.95rem;
}

.btn-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgba(51, 105, 30, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 58%;
  border-radius: 999px;
  background:
    radial-gradient(120% 140% at 18% 0%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.25) 35%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.10) 55%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.12);
  z-index: -1;
  pointer-events: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white) !important;
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--grey);
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0 20px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--sky-bottom);
  background-image:
    linear-gradient(
      to right,
      rgba(44, 58, 33, 0.48) 0%,
      rgba(44, 58, 33, 0.38) 32%,
      rgba(44, 58, 33, 0.26) 50%,
      rgba(44, 58, 33, 0.17) 66%,
      rgba(44, 58, 33, 0.09) 80%,
      rgba(44, 58, 33, 0.03) 90%,
      rgba(44, 58, 33, 0) 100%
    ),
    url('/vitafortis/gallery/1.png');
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right center;
  background-size: 100% 100%, cover;
  background-blend-mode: multiply;
  z-index: 0;
}

@media (max-width: 700px) {
  .hero-bg {
    background-position: left top, right bottom;
    background-size: 100% 100%, cover;
  }
}

.hero-bg::before {
  content: none;
}

.hero-bg::after {
  content: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-title-line {
  white-space: nowrap;
  display: block;
}

@media (max-width: 640px) {
  .hero-title-line {
    white-space: normal;
    display: block;
  }
  .hero-inner {
    overflow-x: hidden;
  }
}

.hero-subtitle {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 32ch;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
  pointer-events: none;
  display: none;
}

/* ----- Sections ----- */
.section {
  padding: 56px 0;
}

.section-title {
  margin: 0 0 24px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--grey);
  text-align: center;
}

.section-subtitle {
  margin: -8px 0 20px;
  text-align: center;
  color: var(--grey-muted);
  font-size: 1rem;
}

/* Intro */
.intro .lead {
  font-size: 1.125rem;
  margin: 0 0 20px;
  max-width: 720px;
}

.intro-list {
  margin: 0 0 20px;
  padding-left: 1.25rem;
}

.intro-list li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.intro-cta-text {
  margin: 0 0 24px;
  font-size: 1.05rem;
}

.service-cards {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.service-cards-4 {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 32px;
}

.services-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 28px;
  margin-bottom: 28px;
}

@media (min-width: 981px) {
  .services-pills > .service-card:last-child {
    grid-column: 2;
  }
}

.services-pills .service-card {
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  min-height: auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  backdrop-filter: blur(6px);
}

.services-pills .service-card:hover {
  background: rgba(255, 255, 255, 1);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.services-pills .service-card-icon {
  width: 30px;
  height: 30px;
}

.services-pills .service-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .services-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 22px;
  }
}

@media (max-width: 560px) {
  .services-pills {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
  min-height: 140px;
}

.service-card:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
}

.service-card-title {
  line-height: 1.3;
}

/* Services detail */
.services-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--grey-light);
}

.services-detail h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.services-detail ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
}

.services-detail ul > li {
  margin: 0;
}

.services-detail ul > li > ul {
  margin: 0;
  padding-left: 1.1rem;
}

.services-detail p {
  margin: 0 0 16px;
}

.services-detail-link {
  margin: 0 0 10px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.services-detail-cta {
  margin-top: 8px;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid var(--grey-light);
  display: flex;
  justify-content: center;
}

.services-detail-cta .btn {
  display: flex;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

.services-detail-cta + h3 {
  margin-top: 18px;
}

/* Care section */
.care-list {
  margin: 0 0 24px;
  padding-left: 1.25rem;
}

.care-list li {
  margin-bottom: 8px;
}

.subsection-title {
  margin: 28px 0 12px;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.diseases {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.diseases li::before {
  content: '• ';
  color: var(--green);
}

.advantages-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.advantages-grid li {
  padding: 10px 14px;
  background: var(--grey-light);
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Doctors */
.doctors-text {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.doctors-placeholder {
  padding: 40px 20px;
  background: var(--grey-light);
  border-radius: var(--radius);
  text-align: center;
  color: var(--grey-muted);
}

/* Reviews */
.reviews-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  color: var(--star);
  font-size: 1.5rem;
}

.reviews-placeholder {
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  text-align: center;
  color: var(--grey-muted);
}

.reviews-carousel {
  max-width: 880px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviews-controls {
  max-width: 880px;
  margin: 0 auto 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.reviews-nav {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.reviews-nav:hover {
  background: var(--grey-light);
}

.reviews-write {
  text-align: center;
  margin: 24px 0 14px;
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  width: min(760px, calc(100vw - 56px));
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.review-card__author {
  margin: 0;
  font-size: 1.12rem;
  color: var(--grey);
}

.review-card__meta {
  margin: 2px 0 0;
  color: var(--grey-muted);
  font-size: 0.95rem;
}

.review-card__right {
  text-align: right;
}

.review-card__stars {
  margin: 0;
  letter-spacing: 1px;
  color: var(--star);
  font-size: 1rem;
}

.review-card__date {
  margin: 4px 0 0;
  color: var(--grey-muted);
  font-size: 0.88rem;
}

.review-card__badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(104, 159, 56, 0.14);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.72rem;
}

.review-card__text {
  margin: 0;
  line-height: 1.65;
  color: var(--grey);
}

@media (max-width: 768px) {
  .review-card__header {
    flex-direction: column;
    gap: 8px;
  }

  .review-card__right {
    text-align: left;
  }

  .reviews-controls {
    justify-content: center;
  }
}

/* Prices */
.prices-section p {
  margin: 0 0 16px;
  max-width: 720px;
}

.prices-section .btn {
  margin-top: 8px;
}

/* Blog */
.blog-placeholder {
  color: var(--grey-muted);
  text-align: center;
  padding: 24px 0;
}

/* Contacts */
.contact-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* Footer */
.footer {
  background: var(--grey-light);
  padding: 24px 20px;
  margin-top: 48px;
}

.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey-muted);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .service-cards-3 {
    grid-template-columns: 1fr;
  }

  .service-cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: fixed;
    inset: var(--header-height, 88px) 0 0 0;
    z-index: 140;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 16px 20px 20px;
    background: var(--white);
    border-top: 1px solid var(--grey-light);
    box-shadow: var(--shadow);
    height: calc(100dvh - var(--header-height, 88px));
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open .nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 0 auto;
    width: 100%;
  }

  .nav.is-open .nav-submenu {
    position: static;
    display: block;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 20px;
    margin-top: 12px;
  }

  .nav.is-open .nav-submenu a {
    padding: 0;
  }

  .nav.is-open .nav-submenu li + li {
    margin-top: 20px;
  }

  .nav.is-open .nav-contact {
    order: 2;
    margin-top: auto;
    padding-top: 20px;
    width: 100%;
    justify-content: flex-start;
  }

  .nav.is-open .btn-cta {
    order: 3;
    margin-top: 16px;
    align-self: flex-start;
  }

  .menu-toggle {
    display: flex;
  }

  .service-cards-4 {
    grid-template-columns: 1fr;
  }

  .services-pills {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .services-detail-cta .btn {
    max-width: none;
  }

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

.text-highlight {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--green);
  background: rgba(104, 159, 56, 0.1);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--grey);
  line-height: 1.65;
}

.geo-transport {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 18px 0 8px;
  align-items: start;
}

.geo-map {
  position: relative;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(1000px 400px at 10% 10%, rgba(104, 159, 56, 0.14), rgba(255, 255, 255, 0) 55%),
    radial-gradient(900px 360px at 80% 30%, rgba(104, 159, 56, 0.10), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, rgba(104, 159, 56, 0.06), rgba(0, 0, 0, 0));
}

.geo-map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.35;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.03);
}

.geo-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.geo-map-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-map-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(104, 159, 56, 0.25);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.geo-map-badge--ua {
  left: 22%;
  top: 44%;
  transform: translate(-50%, -50%);
}

.geo-map-badge--eu {
  left: 58%;
  top: 26%;
  transform: translate(-50%, -50%);
}

.geo-map-badge--other {
  left: 73%;
  top: 63%;
  transform: translate(-50%, -50%);
}

.geo-lists {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.geo-block h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.geo-panel {
  --geo-other-blue: #284a96;
  display: grid;
  grid-template-columns: minmax(104px, 11.5rem) 1fr;
  align-items: stretch;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: #eef0f2;
}

.geo-panel__ua {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.95), rgba(104, 159, 56, 0.14)),
    linear-gradient(160deg, rgba(104, 159, 56, 0.24), rgba(104, 159, 56, 0.08));
  border-right: 1px solid rgba(104, 159, 56, 0.28);
}

.geo-panel__ua-title {
  margin: 0;
  font-size: clamp(1.02rem, 2.5vw, 1.18rem);
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
  line-height: 1.25;
}

.geo-panel__main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px 16px 20px;
  background: #fff;
  min-width: 0;
}

.geo-panel__section {
  min-width: 0;
}

.geo-panel__heading {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--green-dark);
  text-align: center;
}

.geo-panel__heading--other {
  color: var(--geo-other-blue);
}

@media (max-width: 639px) {
  .geo-panel {
    grid-template-columns: 1fr;
  }

  .geo-panel__ua {
    border-right: none;
    border-bottom: 1px solid rgba(104, 159, 56, 0.28);
    padding: 14px 16px;
  }
}

.geo-pill-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

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

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

.geo-pill-grid li {
  background: var(--grey-light);
  border-radius: 999px;
  padding: 10px 12px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--grey);
}

.geo-pill-grid--other li {
  background: linear-gradient(180deg, #fff 0%, rgba(232, 240, 255, 0.98) 100%);
  border: 1px solid rgba(59, 96, 168, 0.42);
  color: #3a4d68;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 10px rgba(59, 96, 168, 0.12);
}

@media (max-width: 900px) {
  .geo-transport {
    grid-template-columns: 1fr;
  }

  .geo-map-badges {
    position: static;
    margin: 18px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .geo-map-badge {
    position: static;
    transform: none;
  }
}

@media (max-width: 768px) {
  .geo-pill-grid--eu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .geo-map-badges {
    margin: 12px 0 10px;
  }

}
