/* =========================================================
   ACROMED — Design tokens
   ========================================================= */

:root {
  --blue: #0e64ea;
  --blue-dark: #1958ba;
  --blue-mid: #2c7dfb;
  --ink: #25262a;
  --white: #ffffff;
  --tag-border: #d8e5f9;
  --card-blue: #c6dcff;
  --circle: #c0d8ff;
  --menu-blue: #82b3ff;
  --soft: rgba(255, 255, 255, 0.6);

  --font-display: "General Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-tag: "Switzer", "General Sans", sans-serif;

  --gutter: 50px;
  --radius-lg: 40px;
  --radius-md: 32px;
  --radius-sm: 24px;
  --maxw: 1440px;
}

/* =========================================================
   Reset / base
   ========================================================= */

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-display);
  color: var(--ink);
  background: #fbfcff;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

/* =========================================================
   Shared typography
   ========================================================= */

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title .accent {
  color: var(--blue);
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-sub {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  opacity: 0.8;
  max-width: 404px;
}

.section-sub.italic {
  font-style: italic;
  font-weight: 300;
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 8px;
  border: 1px solid var(--tag-border);
  border-radius: 28px;
  font-family: var(--font-tag);
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}

.tag--on-blue {
  border-color: var(--white);
  color: #fbfbfc;
}

.tag--on-blue::before {
  background: var(--tag-border);
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 40px;
  padding: 10px 16px;
  border-radius: 28px;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.btn--primary {
  background: var(--blue);
  color: var(--white);
  padding-right: 8px;
}

.btn--primary:hover {
  box-shadow: 0 10px 24px -8px rgba(14, 100, 234, 0.6);
}

.btn--outline {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--circle);
  flex: none;
}

/* ---- Animated arrow-in-circle (old slides out right, new slides in from left) ---- */

.icon-anim {
  position: relative;
  overflow: hidden;
}

.icon-anim svg {
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.icon-arrow--in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(-220%);
}

.icon-arrow--out {
  transform: translateX(0);
}

.btn:hover .icon-arrow--out,
.footer__call:hover .icon-arrow--out {
  transform: translateX(220%);
}

.btn:hover .icon-arrow--in,
.footer__call:hover .icon-arrow--in {
  transform: translate(-50%, -50%) translateX(0);
}

.glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* =========================================================
   Header
   ========================================================= */

.header {
  position: fixed;
  top: 40px;
  left: var(--gutter);
  right: var(--gutter);
  margin: 0 auto;
  max-width: calc(var(--maxw) - 2 * var(--gutter));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: top 0.35s ease;
  will-change: top;
}

/* Frosted background on a pseudo-element so the header does NOT become a
   backdrop root — otherwise the mobile menu's own backdrop-filter breaks. */

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.header--hidden {
  top: -140px;
}

.header__logo img {
  height: 52px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 14px;
}

.header__nav a {
  position: relative;
  transition: color 0.2s ease;
}

.header__nav a:hover {
  color: var(--blue);
}

/* Links kept in markup but hidden from the header nav */

.header__nav .nav-hidden {
  display: none;
}

/* Partner logos shown inside the mobile dropdown only */

.header__nav-logos {
  display: none;
}

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

.lang {
  position: relative;
}

.lang-picker {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-tag);
  font-size: 14px;
  text-transform: uppercase;
}

.lang-picker svg {
  transition: transform 0.25s ease;
}

.lang.is-open .lang-picker svg {
  transform: rotate(180deg);
}

.lang__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 44px -18px rgba(14, 38, 79, 0.35);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 60;
}

.lang.is-open .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang__menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.lang__menu button:hover {
  background: var(--tag-border);
  color: var(--blue);
}

.lang__menu button[aria-current="true"] {
  color: var(--blue);
  background: rgba(14, 100, 234, 0.08);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
}

.header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* Burger morphs into an X while the menu is open */

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

.header.nav-open .header__burger span:nth-child(2) {
  opacity: 0;
}

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

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  /* full-bleed: video spans the whole viewport width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  min-height: 100svh;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 188px 0 50px;
  /* fallback shown on mobile (video not loaded) and before video loads */
  background-color: #d9d9d9;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* slight zoom to push the video's encoded bottom edge past the frame */
  transform: scale(1.03);
  transform-origin: center;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 714px;
}

.hero__title-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__title {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.hero__title .accent {
  color: var(--blue);
}

.hero__patients {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: var(--white);
  overflow: hidden;
}

.avatar + .avatar {
  margin-left: -12px;
}

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

.hero__patients-text {
  display: flex;
  flex-direction: column;
}

.hero__patients-num {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #272727;
}

.hero__patients-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero__desc-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.hero__desc {
  max-width: 404px;
  opacity: 0.8;
}

.hero__desc-block .btn {
  align-self: flex-start;
}

.hero__card {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius-sm);
  min-width: 320px;
}

.hero__card-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

.hero__card-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* =========================================================
   Languages
   ========================================================= */

.languages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 120px var(--gutter) 80px;
  text-align: center;
}

.languages__title {
  max-width: 684px;
}

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

/* the button for the language currently in use reads as selected */
.languages__buttons .btn[aria-current="true"] {
  background: var(--blue);
  color: var(--white);
}

/* =========================================================
   Offer / services
   ========================================================= */

.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--gutter);
}

.offer__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 684px;
}

.offer__head .section-sub {
  text-align: center;
}

.offer__head .tag {
  align-self: center;
}

.offer__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.svc-card {
  flex: 1 1 0;
  min-width: 220px;
  height: 382px;
  border-radius: var(--radius-lg);
  padding: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  background-color: #cdd9ec;
}

.svc-card--light {
  background-color: var(--circle);
}

.svc-card--blue {
  background: linear-gradient(180deg, #2c7dfb 0%, #1f63d6 100%);
}

.svc-card__panel {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px;
  border: 0.5px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.svc-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  z-index: 0;
}

.svc-card__panel--list {
  justify-content: space-between;
  gap: 16px;
}

.svc-card__role {
  position: relative;
  z-index: 1;
}

.svc-card:not(.svc-card--light):not(.svc-card--blue) .svc-card__role {
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.95);
}

.svc-card__role {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
}

.svc-card__role--white {
  color: #f4f4f8;
}

.svc-card__list {
  font-size: 16px;
  opacity: 0.85;
  list-style: disc;
  padding-left: 22px;
}

.svc-card__list li {
  line-height: 1.5;
}

.svc-card--blue .svc-card__list {
  color: #eef4ff;
  opacity: 0.9;
}

/* =========================================================
   Benefits
   ========================================================= */

.benefits {
  padding: 0 var(--gutter);
}

.benefits__box {
  background: var(--card-blue);
  border-radius: var(--radius-lg);
  padding: 80px 116px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefits__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits__title {
  max-width: 506px;
}

.benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bcard {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  padding: 32px;
}

.bcard__num {
  flex: 0 0 232px;
  font-size: 65px;
  font-weight: 200;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
  opacity: 0.4;
}

.bcard__title {
  flex: 0 0 433px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
}

.bcard__text {
  flex: 1;
  max-width: 290px;
  opacity: 0.8;
}

/* =========================================================
   Ukraine
   ========================================================= */

.ukraine {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 120px var(--gutter) 80px 166px;
}

.ukraine__img {
  flex: 0 0 554px;
  mix-blend-mode: darken;
}

.ukraine__img img {
  width: 100%;
  height: auto;
}

.ukraine__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================================================
   Priority / about
   ========================================================= */

.priority {
  padding: 0 var(--gutter);
}

.priority__box {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 80px 116px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  color: var(--white);
}

.priority__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.priority__title {
  color: var(--white);
  max-width: 506px;
}

.priority__body {
  opacity: 0.85;
}

.priority__img {
  flex: 0 0 364px;
}

.priority__img img {
  width: 364px;
  height: 333px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 120px var(--gutter) 80px;
}

.faq__info {
  flex: 0 0 506px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__info .btn {
  margin-top: 8px;
  align-self: flex-start;
}

.faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acc {
  background: var(--soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.acc--open {
  background: var(--tag-border);
}

.acc__head {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: left;
  padding: 32px;
}

.acc__q {
  flex: 1;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.acc__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(196, 196, 196, 0.4);
  color: var(--ink);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.acc--open .acc__icon {
  background: var(--blue);
  color: var(--white);
}

.acc__icon svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.acc--open .acc__icon svg {
  transform: rotate(0deg);
}

.acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.acc__content {
  padding: 0 32px 32px;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc__content a {
  color: var(--blue);
  text-decoration: underline;
  word-break: break-word;
}

.acc__lead {
  color: var(--blue);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.acc__content strong.acc__lead {
  font-weight: 500;
}

.acc__ul {
  list-style: disc;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.acc--open .acc__body {
  max-height: 4000px;
}

/* =========================================================
   Join / patients CTA
   ========================================================= */

.join {
  padding: 61px var(--gutter);
}

.join__box {
  position: relative;
  min-height: 700px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 116px;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.35) 100%
    ),
    url("../Assets/CTA_image.webp");
  background-size: cover;
  background-position: center;
}

.join__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 882px;
}

.join__content .section-title {
  max-width: 506px;
}

.join__text {
  max-width: 560px;
  opacity: 0.85;
}

.join__text a {
  color: var(--blue);
  text-decoration: underline;
}

.join__content .btn {
  align-self: flex-start;
}

/* =========================================================
   IKP steps
   ========================================================= */

.ikp {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px var(--gutter);
}

.ikp__top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.ikp__head {
  flex: 0 0 506px;
}

.ikp__title {
  max-width: 506px;
}

.ikp__steps {
  flex: 1;
  display: flex;
  gap: 16px;
}

.step {
  flex: 1 1 0;
  min-width: 0;
  border-left: 1px solid var(--blue);
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 293px;
  gap: 24px;
}

.step__text {
  opacity: 0.8;
}

.step__text a {
  color: var(--blue);
  text-decoration: underline;
}

.step__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.step__num {
  font-size: 65px;
  font-weight: 200;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
  opacity: 0.4;
}

.step__icon {
  display: inline-flex;
}

.step__icon svg,
.step__icon img {
  width: 32px;
  height: 32px;
}

.ikp__note {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.ikp__instructions {
  max-width: 720px;
  font-size: 20px;
  opacity: 0.8;
  letter-spacing: -0.02em;
}

.ikp__instructions p {
  line-height: 1.5;
}

.ikp__sidenote {
  max-width: 321px;
  font-style: italic;
  opacity: 0.8;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter);
  align-items: stretch;
}

.footer__left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__info {
  flex: 1;
  background: var(--card-blue);
  border-radius: var(--radius-lg);
  padding: 41px 40px;
  display: flex;
  flex-direction: column;
}

.footer__logo {
  width: 175px;
  height: auto;
  align-self: flex-start;
}

.footer__zapraszamy {
  color: var(--blue);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-top: 56px;
}

.footer__desc {
  margin-top: auto;
  padding-top: 80px;
  opacity: 0.8;
  max-width: 506px;
}

.footer__call {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  transition: transform 0.2s ease;
}

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

.footer__call span:first-child {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.footer__call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background: var(--circle);
  flex: none;
}

.footer__right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__map {
  height: 320px;
  border: 1px solid var(--blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}

.footer__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer__menu {
  background: var(--menu-blue);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__address {
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
}

.footer__note-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

/* =========================================================
   Footer bottom
   ========================================================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px var(--gutter);
  font-size: 14px;
}

.footer-bottom__policies {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom__policies a,
.footer-bottom__policies span {
  opacity: 0.8;
}

.footer-bottom__credits {
  opacity: 0.8;
}

.footer-bottom__credits a {
  text-decoration: underline;
}

/* =========================================================
   Modals (forms)
   ========================================================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 38, 79, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modal-fade 0.25s ease;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: 0 30px 80px -20px rgba(14, 38, 79, 0.4);
  animation: modal-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
}

@keyframes modal-pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef2f8;
  color: var(--ink);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.modal__close:hover {
  background: var(--tag-border);
  transform: rotate(90deg);
}

.modal__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-right: 40px;
}

.modal__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.modal__sub {
  font-size: 15px;
  opacity: 0.75;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-row {
  display: flex;
  gap: 16px;
}

.field-row .field {
  flex: 1 1 0;
  min-width: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.85;
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid #dbe2ee;
  border-radius: 12px;
  background: #f8fafc;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 72px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa6b8;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 100, 234, 0.12);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #e0524d;
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.85;
  cursor: pointer;
}

.field-check input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.field-check a {
  color: var(--blue);
  text-decoration: underline;
}

.modal__submit {
  align-self: flex-start;
  margin-top: 8px;
  height: 44px;
  padding: 10px 12px 10px 20px;
}

.modal__success {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  padding: 16px 0;
}

.modal__success h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.modal__success p {
  opacity: 0.8;
}

body.modal-locked {
  overflow: hidden;
}

@media (max-width: 560px) {
  .modal__dialog {
      padding: 28px 20px;
    }

  .modal__title {
      font-size: 26px;
    }

  .field-row {
      flex-direction: column;
    }
}

/* =========================================================
   Responsive — Tablet
   ========================================================= */

@media (max-width: 1100px) {
  :root {
      --gutter: 32px;
    }

  .section-title {
      font-size: 38px;
    }

  .hero__title {
      font-size: 52px;
    }

  .benefits__box,
    .priority__box,
    .footer__info {
      padding-left: 56px;
      padding-right: 56px;
    }

  .ukraine {
      padding-left: var(--gutter);
    }

  .ukraine__img {
      flex-basis: 42%;
    }

  .bcard__num {
      flex-basis: 120px;
      font-size: 54px;
    }

  .bcard__title {
      flex-basis: 300px;
      font-size: 26px;
    }

  .svc-card {
      min-width: calc(33.333% - 16px);
    }

  .footer {
      flex-direction: column;
    }

  .footer__left {
      flex-basis: auto;
    }

  .footer__right {
      flex-direction: row;
      flex-wrap: wrap;
    }

  .footer__map {
      flex: 1 1 100%;
    }

  .footer__menu {
      flex: 1 1 100%;
    }
}

/* Header switches to the mobile (burger) layout early so it never crowds
   on small laptops (~1024px). */

@media (max-width: 1080px) {
  .header__nav {
      display: none;
    }

  .header__nav.is-open {
      display: flex;
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 20px;
      padding: 24px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 20px 44px -18px rgba(14, 38, 79, 0.25);
    }

  .header__nav.is-open .header__nav-logos {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 4px;
      padding-top: 20px;
      border-top: 1px solid rgba(37, 38, 42, 0.12);
    }

  .header__nav-logos img {
      height: 32px;
      width: auto;
    }

  .header .header__partners {
      display: none;
    }

  .header__burger {
      display: flex;
    }
}

@media (max-width: 860px) {
  .hero {
      padding-top: 140px;
    }

  .hero__inner {
      flex-direction: column;
      align-items: stretch;
      gap: 32px;
    }

  .hero__card {
      align-self: stretch;
      min-width: 0;
    }

  .priority__box {
      flex-direction: column;
    }

  .priority__img {
      flex-basis: auto;
      width: 100%;
    }

  .priority__img img {
      width: 100%;
    }

  .faq {
      flex-direction: column;
    }

  .faq__info {
      flex-basis: auto;
    }

  .ukraine {
      flex-direction: column;
      align-items: flex-start;
      padding-top: 80px;
    }

  .ukraine__img {
      flex-basis: auto;
      width: 100%;
      max-width: 480px;
      align-self: center;
    }

  .ikp__top {
      flex-direction: column;
    }

  .ikp__head {
      flex-basis: auto;
    }

  .ikp__steps {
      flex-wrap: wrap;
    }

  .step {
      flex-basis: calc(50% - 8px);
    }

  .ikp__note {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }

  .bcard {
      flex-direction: column;
      gap: 12px;
    }

  .bcard__num,
    .bcard__title,
    .bcard__text {
      flex: none;
      width: 100%;
      max-width: none;
    }

  .bcard__title {
      font-size: 26px;
    }

  .svc-card {
      min-width: calc(50% - 16px);
    }

  .footer__right {
      flex-direction: column;
      flex-wrap: nowrap;
    }

  .footer__map,
    .footer__menu {
      flex: none;
      width: 100%;
    }
}

/* =========================================================
   Responsive — Mobile
   ========================================================= */

@media (max-width: 560px) {
  :root {
      --gutter: 16px;
    }

  .section-title {
      font-size: 30px;
    }

  .hero__title {
      font-size: 38px;
    }

  .acc__q {
      font-size: 19px;
    }

  .languages {
      padding-top: 72px;
    }

  .offer,
    .faq {
      padding-top: 64px;
      padding-bottom: 56px;
    }

  .benefits__box,
    .priority__box,
    .footer__info {
      padding: 48px 24px;
    }

  .join__box {
      padding: 48px 24px;
      min-height: 560px;
    }

  .svc-card {
      min-width: 100%;
      flex-basis: 100%;
    }

  .step {
      flex-basis: 100%;
      min-height: auto;
    }

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

  .footer__call span:first-child {
      font-size: 20px;
    }

  .footer__note-row {
      flex-direction: column;
    }

  .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

  .ikp__instructions {
      font-size: 17px;
    }
}

/* Phones (≤425px): hero video is not loaded — show the #d9d9d9 fallback */

@media (max-width: 425px) {
  .hero__bg {
      display: none;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  * {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto !important;
    }
}

/* =========================================================
   Header partner logos
   ========================================================= */

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

.header__partners img {
  height: 29px;
  width: auto;
}

/* =========================================================
   About (O przychodni)
   ========================================================= */

.about {
  padding: 0 var(--gutter);
  margin-top: 80px;
}

.about__box {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 80px 116px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: var(--white);
}

.about__top {
  display: flex;
  gap: 82px;
  align-items: stretch;
}

.about__text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.about__headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__title {
  color: var(--white);
  max-width: 506px;
}

.about__body {
  opacity: 0.8;
}

.about__award {
  flex: 0 0 534px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: none !important;
}

.about__award img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__awards {
  display: flex;
  gap: 8px;
  display: none !important;
}

.about__awards img {
  flex: 1 1 0;
  min-width: 0;
  height: 178px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* =========================================================
   Role cards (services)
   ========================================================= */

.role-card {
  flex: 1 1 0;
  min-width: 220px;
  height: 382px;
  border-radius: var(--radius-md);
  padding: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #cdd9ec;
}

.role-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  z-index: 0;
}

.role-card__title {
  position: relative;
  z-index: 1;
  padding: 16px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.role-card__caption {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.role-card__caption b {
  color: var(--blue);
  font-weight: 400;
}

/* =========================================================
   Realizowane świadczenia
   ========================================================= */

.realized {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
}

.realized__title {
  font-size: 32px;
  text-align: center;
}

.realized__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================================================
   Join CTA banner
   ========================================================= */

.cta {
  padding: 80px var(--gutter) 40px;
}

.cta__box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 80px 116px;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-color: #0f64eb;
  background-image: url("../Assets/CTA-bg.webp");
  background-size: cover;
  background-position: right center;
}

.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--white);
  max-width: 620px;
}

.cta__title {
  color: var(--white);
  max-width: 506px;
}

.cta__content .btn {
  align-self: flex-start;
}

/* Darker blue so the button stands out against the blue CTA background */

.cta__content .btn--primary {
  background: #0a3f9e;
}

.cta__content .btn--primary:hover {
  box-shadow: 0 10px 24px -8px rgba(6, 34, 92, 0.55);
}

/* photo strip — only shown on the stacked mobile layout */

.cta__photo {
  display: none;
}

/* =========================================================
   Ways to join (Instrukcja)
   ========================================================= */

.ways {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px var(--gutter);
}

.ways__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1297px;
}

.ways__grid {
  display: flex;
  gap: 16px;
}

.way {
  flex: 1 1 0;
  min-width: 0;
  border-left: 1px solid var(--blue);
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 320px;
}

.way__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.way__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--blue);
  opacity: 0.85;
}

.way__num {
  font-size: 15px;
  vertical-align: super;
}

.way__text {
  opacity: 0.8;
}

.way__text a {
  color: var(--blue);
  text-decoration: underline;
}

.way__icon img {
  width: 60px;
  height: 60px;
}

/* =========================================================
   Prevention (Profilaktyka)
   ========================================================= */

.prevention {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px var(--gutter);
}

.prevention__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 790px;
}

.prevention__head .tag {
  align-self: center;
}

.prevention__sub {
  max-width: 790px;
  text-align: center;
}

.prevention__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.doc-card {
  flex: 1 1 0;
  min-width: 280px;
  height: 382px;
  border-radius: var(--radius-md);
  padding: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-color: #e6ecf5;
  border: 0.5px solid var(--tag-border);
}

.doc-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}

.doc-card__caption {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

.doc-card__title {
  flex: 1 1 0;
  min-width: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
}

.doc-card__btn {
  flex: none;
  background: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   Funding (Dofinansowanie)
   ========================================================= */

.funding {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 80px var(--gutter);
}

.funding__info {
  flex: 0 0 506px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.funding__title {
  max-width: 506px;
}

.funding__right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.funding__logos {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 32px;
  border: 1px solid var(--tag-border);
}

.funding__logos img {
  width: 100%;
  height: auto;
}

.funding__text {
  opacity: 0.8;
  max-width: 791px;
}

.funding__btn {
  align-self: flex-start;
}

.funding__more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.funding__thumb {
  width: 66px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--tag-border);
  background: var(--white);
  padding: 0;
  line-height: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.funding__thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(14, 38, 79, 0.4);
}

.funding__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   Footer — testimonial / gift block
   ========================================================= */

.footer__info {
  padding: 48px 56px;
}

.footer__zapraszamy {
  margin-top: 24px;
}

.footer__desc {
  margin-top: 24px;
  padding-top: 0;
  font-size: 20px;
  max-width: none;
}

.footer__gift {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__gift-img {
  width: 100%;
  max-width: 407px;
  border-radius: var(--radius-sm);
}

.footer__gift-cap {
  font-weight: 400;
  font-size: 18px;
}

.footer__author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 4px;
}

.footer__author-avatar {
  width: 60px;
  height: 60px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
}

.footer__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__author-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.footer__author-sm {
  display: flex;
  gap: 4px;
  margin-top: 5px;
}

.footer__author-sm a {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.footer__author-sm a:hover {
  transform: translateY(-2px);
}

/* =========================================================
   Document lightbox
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 38, 79, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modal-fade 0.25s ease;
}

.lightbox__dialog {
  position: relative;
  max-width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  animation: modal-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(14, 38, 79, 0.5);
}

.lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 24px -8px rgba(14, 38, 79, 0.5);
  transition: transform 0.2s ease;
}

.lightbox__close:hover {
  transform: rotate(90deg);
}

/* =========================================================
   Responsive additions — new sections
   ========================================================= */

@media (max-width: 1100px) {
  .about__box {
      padding-left: 56px;
      padding-right: 56px;
    }

  .cta__box,
    .about__box {
      padding-left: 56px;
      padding-right: 56px;
    }

  .role-card {
      min-width: calc(33.333% - 16px);
    }

  .funding__info {
      flex-basis: 400px;
    }
}

@media (max-width: 860px) {
  .about__top {
      flex-direction: column;
      gap: 32px;
    }

  .about__award {
      flex-basis: auto;
      height: 300px;
    }

  .about__awards {
      flex-wrap: wrap;
    }

  .about__awards img {
      flex-basis: calc(33.333% - 8px);
    }

  .cta__box {
      padding: 48px 40px;
    }

  .cta__content {
      max-width: none;
    }

  .ways__grid {
      flex-wrap: wrap;
    }

  .way {
      flex-basis: calc(50% - 8px);
    }

  .role-card {
      min-width: calc(50% - 16px);
    }

  .doc-card {
      min-width: calc(50% - 16px);
    }

  .funding {
      flex-direction: column;
    }

  .funding__info {
      flex-basis: auto;
    }
}

@media (max-width: 560px) {
  .about,
    .cta {
      padding-top: 48px;
    }

  .about__box {
      padding: 48px 24px;
    }

  .cta__box {
      padding: 40px 24px;
    }

  .realized__title {
      font-size: 26px;
    }

  .role-card,
    .doc-card {
      min-width: 100%;
      flex-basis: 100%;
    }

  .about__awards img {
      flex-basis: calc(50% - 8px);
      height: 140px;
    }

  .way {
      flex-basis: 100%;
      min-height: auto;
    }

  .prevention,
    .funding {
      padding-top: 56px;
      padding-bottom: 56px;
    }

  .footer__info {
      padding: 40px 24px;
    }

  .footer__desc {
      font-size: 17px;
    }
}

/* CTA banner — stacked layout on phones / small tablets so the doctors
   sit in their own strip below the text instead of behind it. */

@media (max-width: 700px) {
  .cta__box {
      flex-direction: column;
      align-items: stretch;
      padding: 40px 28px 0;
      gap: 28px;
      background-image: none;
      background-color: #0f64eb;
    }

  .cta__content {
      max-width: none;
    }

  .cta__photo {
      display: block;
      height: 220px;
      margin: 4px -28px 0;
      background-image: url("../Assets/CTA-bg.webp");
      background-size: cover;
      background-position: right center;
    }
}

@media (max-width: 400px) {
  .cta__photo {
      height: 180px;
    }
}

/* =========================================================
   Stomatologia (Dental) page
   ========================================================= */

/* Hero */

/* About */

/* Cards */

/* Final CTA */

/* Before / after comparison slider */

/* Dental — responsive */

/* =========================================================
   Small phones (≤560 / ≤400): keep the header inside the
   viewport and never squish the logo
   ========================================================= */

.header__logo {
  flex: none;
}

.header__logo img {
  max-width: none;
}

/* Cookie consent banner must never exceed the viewport width
   (its own overflow widens the layout viewport and pushes the fixed header).
   High specificity (#cc-main + two classes) to beat the library's own rule. */

#cc-main .cm.cm--box {
  max-width: min(440px, calc(100vw - 24px)) !important;
  box-sizing: border-box !important;
}

@media (max-width: 420px) {
  #cc-main .cm.cm--box {
      max-width: 300px !important;
    }
}

@media (max-width: 560px) {
  .header {
      gap: 10px;
      padding: 12px;
    }

  .header__logo img {
      height: 40px;
    }

  .header__cta {
      gap: 6px;
    }

  .header__cta .btn--primary {
      gap: 8px;
      padding-left: 12px;
    }
}

@media (max-width: 345px) {
  .header__logo img {
      height: 34px;
    }

  .header__cta .lang {
      display: none;
    }
}
