/* [project]/apps/frontend/src/app/components/Header.module.css [app-client] (css) */
.Header-module__RVI7IW__root {
  z-index: 40;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: #f6f6f8e6;
  border-bottom: 1px solid #e2e8f0e6;
  width: 100%;
  position: sticky;
  top: 0;
}

.Header-module__RVI7IW__srOnly {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.Header-module__RVI7IW__inner {
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  height: 80px;
  display: flex;
}

.Header-module__RVI7IW__brand {
  color: var(--color-primary);
  align-items: center;
  gap: .75rem;
  display: flex;
}

.Header-module__RVI7IW__brandTitle {
  letter-spacing: .02em;
  color: #0f172a;
  font-family: Mercedes Black, Mercedes, Segoe UI, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.Header-module__RVI7IW__nav {
  align-items: center;
  gap: 1.75rem;
  display: flex;
}

.Header-module__RVI7IW__navLink {
  letter-spacing: .01em;
  color: #4b5563;
  font-size: .85rem;
  font-weight: 600;
  transition: color .15s, opacity .15s;
}

.Header-module__RVI7IW__navLink:hover, .Header-module__RVI7IW__navLinkActive {
  color: var(--color-primary);
}

.Header-module__RVI7IW__actions, .Header-module__RVI7IW__headerBarDesktop {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.Header-module__RVI7IW__userEntry {
  background-color: var(--color-primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: .85rem;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .15s, transform .15s;
  display: inline-flex;
}

.Header-module__RVI7IW__userEntry:hover {
  background-color: #1650c4;
  transform: translateY(-1px);
}

.Header-module__RVI7IW__ctaOutlined {
  letter-spacing: .02em;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #94a3b8b3;
  border-radius: .85rem;
  padding: .55rem 1.25rem;
  font-size: .8rem;
  font-weight: 700;
  transition: background-color .15s, border-color .15s;
}

.Header-module__RVI7IW__ctaOutlined:hover {
  border-color: var(--color-primary);
  background-color: #144bb808;
}

.Header-module__RVI7IW__menuToggle {
  color: #0f172a;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #94a3b8b3;
  border-radius: .85rem;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  transition: background-color .15s, border-color .15s;
  display: none;
}

.Header-module__RVI7IW__menuToggle:hover {
  border-color: var(--color-primary);
  background-color: #144bb80a;
}

.Header-module__RVI7IW__drawerBackdrop {
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  background: #0f172a73;
  transition: opacity .25s;
  position: fixed;
  inset: 0;
}

.Header-module__RVI7IW__drawerBackdropOpen {
  opacity: 1;
  pointer-events: auto;
}

.Header-module__RVI7IW__drawer {
  z-index: 211;
  visibility: hidden;
  pointer-events: none;
  background: #fff;
  width: min(100%, 20rem);
  max-width: 100vw;
  padding: 0;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  box-shadow: -8px 0 32px #0f172a1f;
}

.Header-module__RVI7IW__drawerOpen {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.Header-module__RVI7IW__drawerInner {
  height: 100%;
  padding: 1rem 1.25rem 1.25rem;
  padding-top: calc(1rem + env(safe-area-inset-top, 0px));
  box-sizing: border-box;
  flex-direction: column;
  display: flex;
}

.Header-module__RVI7IW__drawerNav {
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  flex: 1;
  gap: .25rem;
  display: flex;
  overflow-y: auto;
}

.Header-module__RVI7IW__drawerLink {
  letter-spacing: .01em;
  color: #374151;
  border-radius: .65rem;
  padding: .85rem .75rem;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .12s, color .12s;
  display: block;
}

.Header-module__RVI7IW__drawerLink:hover {
  color: var(--color-primary);
  background-color: #144bb80f;
}

.Header-module__RVI7IW__drawerLinkActive {
  color: var(--color-primary);
  background-color: #144bb814;
}

.Header-module__RVI7IW__drawerFooter {
  border-top: 1px solid var(--color-border-soft);
  flex-direction: column;
  gap: .65rem;
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
}

.Header-module__RVI7IW__drawerSecondary {
  letter-spacing: .02em;
  cursor: pointer;
  color: inherit;
  background-color: #fff;
  border: 1px solid #94a3b8b3;
  border-radius: .85rem;
  justify-content: center;
  align-items: center;
  padding: .9rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.Header-module__RVI7IW__drawerPrimary {
  background-color: var(--color-primary);
  color: #fff;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  border-radius: .85rem;
  justify-content: center;
  align-items: center;
  padding: .95rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.Header-module__RVI7IW__drawerLogin {
  justify-content: center;
  width: 100%;
  margin: 0;
}

@media (max-width: 900px) {
  .Header-module__RVI7IW__inner {
    height: auto;
    min-height: 72px;
    padding-block: .5rem;
  }

  .Header-module__RVI7IW__nav, .Header-module__RVI7IW__headerBarDesktop {
    display: none;
  }

  .Header-module__RVI7IW__menuToggle {
    display: inline-flex;
  }

  .Header-module__RVI7IW__actions {
    gap: .5rem;
  }

  .Header-module__RVI7IW__brandTitle {
    letter-spacing: .03em;
    max-width: 11rem;
    font-size: .85rem;
    line-height: 1.15;
  }
}

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

/* [project]/apps/frontend/src/app/components/Footer.module.css [app-client] (css) */
.Footer-module__vW5hdW__root {
  background-color: #f3f4f6;
  border-top: 1px solid #e2e8f0e6;
  margin-top: 4rem;
  padding: 3rem 0 2rem;
}

.Footer-module__vW5hdW__topRow {
  gap: 2rem;
  display: grid;
}

.Footer-module__vW5hdW__brand {
  color: var(--color-primary);
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.Footer-module__vW5hdW__brandTitle {
  letter-spacing: .02em;
  font-family: Mercedes Black, Mercedes, Segoe UI, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.Footer-module__vW5hdW__brandText {
  color: var(--color-text-muted);
  max-width: 22rem;
  font-size: .85rem;
}

.Footer-module__vW5hdW__columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  display: grid;
}

.Footer-module__vW5hdW__columnTitle {
  letter-spacing: .04em;
  color: #9ca3af;
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 700;
}

.Footer-module__vW5hdW__linkList {
  gap: .5rem;
  margin: 0;
  padding: 0;
  font-size: .9rem;
  list-style: none;
  display: grid;
}

.Footer-module__vW5hdW__contactItem {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.Footer-module__vW5hdW__link {
  color: #4b5563;
  cursor: pointer;
  letter-spacing: .01em;
  align-items: center;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
  display: inline-flex;
}

.Footer-module__vW5hdW__link:hover {
  color: var(--color-primary);
}

.Footer-module__vW5hdW__bottomRow {
  color: #9ca3af;
  border-top: 1px solid #d1d5dbcc;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: .78rem;
  display: flex;
}

.Footer-module__vW5hdW__bottomCopy {
  font-family: Mercedes Black, Mercedes, Segoe UI, sans-serif;
}

.Footer-module__vW5hdW__bottomLinks {
  flex-wrap: wrap;
  gap: 1.5rem;
  display: flex;
}

.Footer-module__vW5hdW__bottomLink {
  cursor: pointer;
  color: #9ca3af;
  align-items: center;
  text-decoration: none;
  transition: color .15s;
  display: inline-flex;
}

.Footer-module__vW5hdW__bottomLink:hover {
  color: var(--color-primary);
}

@media (min-width: 900px) {
  .Footer-module__vW5hdW__topRow {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: flex-start;
  }
}

@media (max-width: 899px) {
  .Footer-module__vW5hdW__columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }
}

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