body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #edf2f7;
  color: #163a67;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* wcag */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 5000;
  padding: 12px 16px;
  background: #071521;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid #63d7e8;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.skip-link:focus-visible {
  outline: 3px solid #63d7e8;
  outline-offset: 3px;
}

.a11y-widget {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.a11y-toggle {
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.a11y-toggle:hover,
.a11y-toggle:focus {
  transform: translateY(-2px);
}

.a11y-toggle.is-open {
  background: #63d7e8;
  color: #071521;
  border-color: #63d7e8;
  box-shadow: 0 10px 24px rgba(99, 215, 232, 0.3);
}

.a11y-toggle.is-open i {
  color: #071521;
}
.a11y-panel {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.a11y-btn {
  min-width: 80px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid #12314d;
  background: #071521;
  color: #f4f8fc;
  cursor: pointer;
  font-weight: 700;
}

body.a11y-text-large-1 {
  font-size: 1.05em;
}

body.a11y-text-large-2 {
  font-size: 1.1em;
}

body.a11y-text-large-3 {
  font-size: 1.15em;
}

html.a11y-invert {
  filter: invert(1) hue-rotate(180deg);
}

html.a11y-invert img,
html.a11y-invert video,
html.a11y-invert iframe,
html.a11y-invert .a11y-widget {
  filter: invert(1) hue-rotate(180deg);
}

/* Header nav */
.header {
  background: linear-gradient(90deg, #071521 0%, #0b1f31 100%);
  border-bottom: 1px solid #12314d;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 0;
  min-height: 76px;
}

/* Contact dropdown */
.nav-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.nav-contact-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f4f8fc;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  position: relative;
  padding: 8px 0;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-contact-trigger i {
  font-size: 15px;
  color: #63d7e8;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.nav-contact-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #63d7e8 0%, #0fa3b5 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-contact:hover .nav-contact-trigger,
.nav-contact:focus-within .nav-contact-trigger {
  color: #63d7e8;
}

.nav-contact:hover .nav-contact-trigger i,
.nav-contact:focus-within .nav-contact-trigger i {
  transform: translateY(-1px);
  color: #8ae7f2;
}

.nav-contact:hover .nav-contact-trigger::after,
.nav-contact:focus-within .nav-contact-trigger::after {
  transform: scaleX(1);
}

.nav-contact-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 0;
  display: flex;
  gap: 10px;
  background: rgba(7, 21, 33, 0.95);
  border: 1px solid #12314d;
  border-radius: 10px;
  padding: 8px 10px;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  pointer-events: none;
  transition: all 0.2s ease;
}

.nav-contact:hover .nav-contact-dropdown,
.nav-contact:focus-within .nav-contact-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-contact-dropdown a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  color: #f4f8fc;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #1d4262;
  transition: all 0.2s ease;
}

.nav-contact-dropdown a:hover,
.nav-contact-dropdown a:focus {
  background: rgba(99, 215, 232, 0.12);
  border-color: #63d7e8;
  color: #63d7e8;
  transform: translateY(-2px);
}
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-name {
  color: #f4f8fc;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.brand-role {
  margin-top: 6px;
  color: #63d7e8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f4f8fc;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  position: relative;
  padding: 8px 0;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a i {
  font-size: 15px;
  color: #63d7e8;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #63d7e8 0%, #0fa3b5 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #63d7e8;
}

.nav-links a:hover i,
.nav-links a:focus i {
  transform: translateY(-1px);
  color: #8ae7f2;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.nav-icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  color: #f4f8fc;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #1d4262;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.nav-icon-btn:hover,
.nav-icon-btn:focus {
  transform: translateY(-2px);
  background: rgba(99, 215, 232, 0.12);
  border-color: #63d7e8;
  color: #63d7e8;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #071521;
  background: linear-gradient(90deg, #63d7e8 0%, #0fa3b5 100%);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 163, 181, 0.28);
  filter: brightness(1.03);
}

.nav-links a:focus-visible,
.brand-mark:focus-visible,
.nav-icon-btn:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid #63d7e8;
  outline-offset: 3px;
  border-radius: 6px;
}

/* header adj for mob */
.desktop-brand,
.desktop-nav {
  display: inherit;
}

.mobile-header,
.mobile-bottom-nav {
  display: none;
}

/* Hero */
.hero-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
  width: 100%;
}

.hero-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #163a67;
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 600;
  opacity: 0.9;
  text-align: center;
  min-width: 0;
}

.hero-icon span {
  display: block;
  line-height: 1.2;
}

.hero-icon i {
  font-size: 22px;
  color: #0fa3b5;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.hero-icon:hover i {
  transform: translateY(-2px);
  color: #0c8fa0;
}

.hero {
  padding: 20px 0 48px;
  text-align: center;
}

.hero-logo {
  margin-bottom: 10px;
}

.hero-logo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}

header,
.hero,
.section,
.footer {
  opacity: 0;
  transform: translateY(10px);
  animation: siteFadeIn 1s ease 1.75s forwards;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #edf2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introFadeOut 0.7s ease 1.45s forwards;
}

.intro-logo {
  width: min(78vw, 420px);
  height: auto;
  display: block;
  animation: introLogoZoomOut 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes introLogoZoomOut {
  0% {
    opacity: 0;
    transform: scale(1.75);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes siteFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #5f6b7a;
  font-size: 20px;
  line-height: 1.65;
}

.section {
  padding: 15px;
}

.section.alt {
  background: linear-gradient(180deg, #f7fafd 0%, #eef3f8 100%);
  border-top: 1px solid #dbe5ee;
  border-bottom: 1px solid #dbe5ee;
}

.section h2 {
  margin-bottom: 10px;
}

.section-desc {
  margin-bottom: 30px;
  color: #666;
}

/* Btn */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #0fa3b5;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Contact */
.contact {
  text-align: center;
  background: #fdfefe;
  border: 1px solid #d6e0e8;
  border-radius: 18px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px rgba(16, 36, 64, 0.06);
}

/* Footer */
.footer {
  position: relative;
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
  background: linear-gradient(90deg, #071521 0%, #0b1f31 100%);
  border-top: 1px solid #12314d;
  color: #d9e7f2;
}

.footer p {
  margin: 0;
  color: #d9e7f2;
}

.footer-inner {
  position: relative;
}

/* Sections */
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.section-heading h2 {
  font-size: 42px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-heading p {
  color: #5f6b7a;
  margin: 0;
  line-height: 1.7;
  font-size: 18px;
}

/* carousel */

.carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 10px 0;
}

.carousel .card {
  flex: 0 0 320px;
  width: 320px;
  scroll-snap-align: center;
  cursor: pointer;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 48px;
  height: 48px;

  border-radius: 999px;
  border: 1px solid #c8d8e6;

  background: #ffffff;
  color: #163a67;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: 0 10px 24px rgba(16, 36, 64, 0.08);

  transition: all 0.2s ease;
}

.carousel-arrow-prev {
  left: -12px;
}

.carousel-arrow-next {
  right: -12px;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: #63d7e8;
  color: #0fa3b5;
}

.section.alt .carousel::after {
  background: linear-gradient(to left, #f7fafd 0%, rgba(247, 250, 253, 0) 100%);
}

/* card */
.card {
  background: #fdfefe;
  border-radius: 18px;
  border: 1px solid #d6e0e8;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 36, 64, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 36, 64, 0.12);
}

.card-media {
  height: 100px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid #e6eef5;
}

.card-media img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.card-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eef5fb;
  color: #163a67;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.card h3 {
  margin: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: #5f6b7a;
  line-height: 1.65;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link:hover .card {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(16, 36, 64, 0.15);
}

.card-link:visited,
.card-link:active {
  color: inherit;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  align-items: flex-start;
  /* min-height: 132px; */
}

.tag {
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
  align-items: center;
  gap: 8px;
  background: #f4f7fa;
  border: 1px solid #dde6ee;
  color: #163a67;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.tag img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.tag:hover {
  background: #eaf2f8;
  border-color: #c8d8e6;
}

/* features list */
.features {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  min-height: 92px;
}

.features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #4f5d6b;
  line-height: 1.4;
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0fa3b5;
}

/* lang */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
}

.lang-switcher-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 72px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #1d4262;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.lang-switcher-trigger i {
  font-size: 12px;
  color: #63d7e8;
}

.lang-switcher-trigger:hover,
.lang-switcher-trigger:focus {
  color: #63d7e8;
  border-color: #63d7e8;
  background: rgba(99, 215, 232, 0.12);
  transform: translateY(-1px);
}

.lang-switcher-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 84px;
  padding: 10px;
  border: 1px solid #12314d;
  border-radius: 14px;
  background: rgba(7, 21, 33, 0.97);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 3000;
}

.lang-switcher:hover .lang-switcher-dropdown,
.lang-switcher:focus-within .lang-switcher-dropdown,
.lang-switcher.is-open .lang-switcher-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-switcher-dropdown a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f4f8fc;
  border: 1px solid #1d4262;
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.lang-switcher-dropdown a:hover,
.lang-switcher-dropdown a:focus {
  color: #63d7e8;
  border-color: #63d7e8;
  background: rgba(99, 215, 232, 0.12);
  transform: translateY(-1px);
}

.lang-switcher.is-open .lang-switcher-trigger {
  color: #63d7e8;
  border-color: #63d7e8;
  background: rgba(99, 215, 232, 0.12);
}

/* mob */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-top: 78px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2500;
    background: linear-gradient(90deg, #071521 0%, #0b1f31 100%);
    border-bottom: 1px solid #12314d;
  }

  .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0 0;
    min-height: 70px;
  }

  /* hide desktop */
  .desktop-brand,
  .desktop-nav {
    display: none !important;
  }

  .mobile-header {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .mobile-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    width: 100%;
  }

  .mobile-brand .brand-name {
    display: block;
    color: #f4f8fc;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
  }

  .mobile-brand .brand-role {
    display: block;
    margin-top: 6px;
    color: #63d7e8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero-subtext {
    padding: 20px 0;
  }

  .hero-icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-icon {
    gap: 8px;
    font-size: 14px;
  }

  .hero-icon i {
    font-size: 26px;
  }

  .hero {
    padding: 40px 0 32px;
  }

  .hero-logo img {
    max-width: 300px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .card-media {
    height: 130px;
  }

  .section {
    padding: 20px 0;
  }

  #contact.section {
    padding: 24px 0 24px;
  }

  .footer {
    margin-top: 0;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2000;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-sizing: border-box;
    background: linear-gradient(90deg, #071521 0%, #0b1f31 100%);
    border-top: 1px solid #12314d;
    box-shadow: 0 -8px 24px rgba(7, 21, 33, 0.22);
  }

  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 58px;
    padding: 8px 6px;
    text-decoration: none;
    text-align: center;
    color: #f4f8fc;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #1d4262;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    box-sizing: border-box;
    transition:
      transform 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .mobile-bottom-nav a i {
    font-size: 16px;
    color: #63d7e8;
    transition: color 0.2s ease;
  }

  .mobile-bottom-nav a:hover,
  .mobile-bottom-nav a:focus {
    transform: translateY(-2px);
    background: rgba(99, 215, 232, 0.12);
    border-color: #63d7e8;
    color: #63d7e8;
  }

  .mobile-bottom-nav a:hover i,
  .mobile-bottom-nav a:focus i {
    color: #8ae7f2;
  }

  .carousel-shell {
    padding: 0 6px;
  }

  .carousel .card {
    flex: 0 0 85%;
    width: 85%;
  }

  .carousel-arrow {
    display: none;
  }
  .mobile-header {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .mobile-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 0 56px;
  }

  .mobile-lang-switcher {
    position: absolute;
    right: 12px;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .mobile-lang-switcher .lang-switcher-trigger {
    min-width: 58px;
    height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .mobile-lang-switcher .lang-switcher-trigger i {
    font-size: 10px;
  }

  .mobile-lang-switcher .lang-switcher-dropdown {
    top: calc(100% + 8px);
    right: 0;
    min-width: 74px;
    padding: 8px;
    gap: 6px;
  }

  .mobile-lang-switcher .lang-switcher-dropdown a {
    min-width: 50px;
    height: 30px;
    font-size: 11px;
    padding: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    display: none;
    animation: none;
  }

  header,
  .hero,
  .section,
  .footer {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .carousel {
    overflow-x: auto;
  }

  .carousel-track {
    animation: none;
  }

  .carousel::before,
  .carousel::after {
    display: none;
  }
}

/* cookies */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 4000;
  max-width: fit-content;
  margin: 0 auto;
  background: rgba(7, 21, 33, 0.98);
  border: 1px solid #12314d;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(7, 21, 33, 0.28);
  padding: 18px 20px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  margin-bottom: 14px;
}

.cookie-banner__title {
  margin: 0 0 8px;
  color: #f4f8fc;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.cookie-banner__text {
  margin: 0;
  color: #d9e7f2;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: block;
  text-align: center;
}

.cookie-btn {
  min-width: 120px;
  min-height: 44px;
  border: 1px solid #1d4262;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.cookie-btn--primary {
  background: linear-gradient(90deg, #63d7e8 0%, #0fa3b5 100%);
  color: #071521;
  border-color: transparent;
}

.cookie-btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8fc;
}

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

.cookie-btn--secondary:hover,
.cookie-btn--secondary:focus {
  border-color: #63d7e8;
  color: #63d7e8;
  background: rgba(99, 215, 232, 0.12);
}

.cookie-btn:focus-visible {
  outline: 3px solid #63d7e8;
  outline-offset: 3px;
}

.cookie-settings-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0;
  background: none;
  border: none;
  color: #63d7e8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  color: #8ae7f2;
}

.cookie-settings-btn:focus-visible {
  outline: 3px solid #63d7e8;
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: calc(90px + env(safe-area-inset-bottom));
    padding: 16px;
    border-radius: 16px;
  }

  .cookie-banner__title {
    font-size: 16px;
  }

  .cookie-banner__text {
    font-size: 14px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-settings-btn {
    left: 0;
    bottom: -2px;
    font-size: 12px;
  }
}
