.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

nav .container {
  max-width: 1360px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffb79d;
  outline-offset: 3px;
}

.field-label {
  display: block;
  margin: 0 0 6px;
  color: #f4f7fb;
  font-size: 13px;
  font-weight: 600;
}

.form-note {
  margin: 12px 4px 0;
  color: #b9c6da;
  font-size: 12.5px;
  line-height: 1.55;
}

.language-switcher {
  position: relative;
}

nav .nav-links > li,
nav .nav-links > li > a,
.language-switcher .lang-btn {
  flex-shrink: 0;
}

nav .nav-links > li > a,
.language-switcher .lang-btn {
  white-space: nowrap;
}

nav .logo {
  flex: 0 0 auto;
  white-space: nowrap;
  line-height: 1.2;
}

.language-switcher summary {
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher .lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.language-switcher .lang-btn::after {
  content: "›";
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.language-switcher[open] .lang-btn::after {
  transform: rotate(-90deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  min-width: 168px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(10, 23, 40, .99);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
}

nav .language-options a {
  display: block;
  padding: 9px 11px;
  border-radius: 8px;
  color: #dbe4f0;
  text-decoration: none;
  white-space: nowrap;
}

nav .language-options a:hover,
nav .language-options a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 107, 53, .2);
}

@media (min-width: 1181px) and (max-width: 1300px) {
  nav .nav-links {
    gap: 12px;
  }

  nav .nav-links > li > a,
  .language-switcher .lang-btn {
    font-size: 12.5px;
  }

  nav .nav-links .nav-cta {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (min-width: 1181px) {
  html:lang(es) nav .nav-links,
  html:lang(fr) nav .nav-links,
  html:lang(de) nav .nav-links {
    gap: 12px;
  }

  html:lang(es) nav .nav-links > li > a,
  html:lang(fr) nav .nav-links > li > a,
  html:lang(de) nav .nav-links > li > a,
  html:lang(es) .language-switcher .lang-btn,
  html:lang(fr) .language-switcher .lang-btn,
  html:lang(de) .language-switcher .lang-btn {
    font-size: 12.5px;
  }

  html:lang(es) nav .nav-links .nav-cta,
  html:lang(fr) nav .nav-links .nav-cta,
  html:lang(de) nav .nav-links .nav-cta {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 1180px) {
  nav .nav-inner {
    position: relative;
    height: 68px;
    gap: 16px;
  }

  nav .logo {
    min-width: 0;
    max-width: calc(100% - 60px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 17px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  nav .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 10px;
    gap: 4px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(10, 23, 40, .98);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
  }

  nav .nav-links.is-open {
    display: flex;
  }

  nav .nav-links li,
  nav .nav-links li.hide-m {
    display: block;
    width: 100%;
  }

  nav .nav-links a,
  nav .nav-links .lang-btn,
  nav .nav-links .nav-cta {
    display: block !important;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-radius: 10px;
    text-align: left;
  }

  nav .nav-links .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  nav .nav-links .lang-btn {
    border: 1px solid rgba(255, 107, 53, .65);
    text-align: center;
  }

  .language-switcher,
  .language-options {
    width: 100%;
  }

  .language-options {
    position: static;
    min-width: 0;
    margin-top: 6px;
    box-shadow: none;
    background: rgba(255, 255, 255, .04);
  }

  nav .language-options a {
    padding: 11px 14px;
    text-align: center;
  }

  .hero {
    min-height: auto !important;
    padding: 76px 0 64px !important;
  }

  .hero .cta .btn {
    text-align: center;
  }

  section {
    padding: 64px 0;
  }

  .p-wrap {
    padding-top: 34px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 34px !important;
  }

  .hero p.sub {
    font-size: 16px;
  }

  .hero .cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .cta .btn {
    width: 100%;
  }

  .stats-grid {
    gap: 28px 12px;
  }

  .stat .num {
    font-size: 28px;
  }

  .sec-title {
    font-size: 27px;
  }

  .spec {
    font-size: 13.5px;
  }

  .spec td:first-child {
    width: 82px;
  }

  .cta-band {
    padding: 28px 22px;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
