/* [project]/src/components/Header.module.css [app-client] (css) */
.Header-module__hBw1pG__header {
  height: var(--header-height);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  background: #fffffff2;
  align-items: center;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 3px #0000000a;
}

.Header-module__hBw1pG__content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.Header-module__hBw1pG__logo {
  color: var(--primary-navy);
  letter-spacing: -.5px;
  align-items: center;
  gap: .5rem;
  font-size: 1.375rem;
  font-weight: 800;
  display: flex;
}

.Header-module__hBw1pG__logoAccent {
  color: var(--primary-blue);
}

.Header-module__hBw1pG__nav {
  gap: 1.75rem;
  display: flex;
}

.Header-module__hBw1pG__navLink {
  color: var(--text-body);
  padding: .25rem 0;
  font-size: .9375rem;
  font-weight: 500;
  position: relative;
}

.Header-module__hBw1pG__navLink:after {
  content: "";
  background: var(--primary-blue);
  width: 0;
  height: 2px;
  transition: width var(--transition);
  border-radius: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.Header-module__hBw1pG__navLink:hover {
  color: var(--primary-blue);
}

.Header-module__hBw1pG__navLink:hover:after {
  width: 100%;
}

.Header-module__hBw1pG__actions {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.Header-module__hBw1pG__langSwitcher {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  gap: .25rem;
  padding: .2rem;
  display: flex;
}

.Header-module__hBw1pG__langBtn {
  border-radius: calc(var(--radius-md)  - 2px);
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  padding: .3rem .6rem;
  font-size: .8125rem;
  font-weight: 600;
}

.Header-module__hBw1pG__langBtn:hover {
  color: var(--primary-blue);
}

.Header-module__hBw1pG__langBtnActive {
  background: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  color: #fff !important;
}

.Header-module__hBw1pG__menuToggle {
  cursor: pointer;
  color: var(--text-dark);
  background: none;
  border: none;
  padding: .5rem;
  display: none;
}

.Header-module__hBw1pG__menuToggle svg {
  width: 24px;
  height: 24px;
}

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

  .Header-module__hBw1pG__menuToggle {
    display: block;
  }

  .Header-module__hBw1pG__navMobile {
    top: var(--header-height);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
  }

  .Header-module__hBw1pG__navMobile .Header-module__hBw1pG__navLink {
    border-bottom: 1px solid var(--bg-light);
    padding: .75rem 0;
    font-size: 1rem;
  }

  .Header-module__hBw1pG__navMobile .Header-module__hBw1pG__navLink:after {
    display: none;
  }
}

/* [project]/src/components/Footer.module.css [app-client] (css) */
.Footer-module__S6Hkya__footer {
  background: var(--primary-navy);
  color: #cbd5e1;
  padding: 4rem 0 0;
}

.Footer-module__S6Hkya__grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  display: grid;
}

.Footer-module__S6Hkya__brand h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.Footer-module__S6Hkya__brand p {
  color: #94a3b8;
  font-size: .9375rem;
  line-height: 1.7;
}

.Footer-module__S6Hkya__footer h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  font-size: .875rem;
}

.Footer-module__S6Hkya__links {
  flex-direction: column;
  gap: .6rem;
  list-style: none;
  display: flex;
}

.Footer-module__S6Hkya__links a {
  color: #94a3b8;
  transition: color var(--transition-fast);
  font-size: .9375rem;
}

.Footer-module__S6Hkya__links a:hover {
  color: #fff;
}

.Footer-module__S6Hkya__contactItem {
  color: #94a3b8;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .75rem;
  font-size: .9375rem;
  display: flex;
}

.Footer-module__S6Hkya__socials {
  gap: .75rem;
  margin-top: 1rem;
  display: flex;
}

.Footer-module__S6Hkya__socialBtn {
  color: #94a3b8;
  width: 36px;
  height: 36px;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: #ffffff1a;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: .875rem;
  font-weight: 600;
  display: flex;
}

.Footer-module__S6Hkya__socialBtn:hover {
  background: var(--primary-blue);
  color: #fff;
}

.Footer-module__S6Hkya__bottom {
  text-align: center;
  color: #64748b;
  border-top: 1px solid #ffffff1a;
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: .8125rem;
}

@media (max-width: 768px) {
  .Footer-module__S6Hkya__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/*# sourceMappingURL=src_components_56c2cef1._.css.map*/