/* [project]/frontend/traffic/components/Footer/Footer.module.css [client] (css) */
.Footer-module__C63MLW__footer {
  border-top: 1px solid var(--color-border);
  text-align: center;
  background: linear-gradient(#fff8f0eb 0%, #00224434 100%);
  padding: 3rem 0 2rem;
}

.Footer-module__C63MLW__content {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.Footer-module__C63MLW__brand {
  align-items: center;
  gap: .75rem;
  display: inline-flex;
}

.Footer-module__C63MLW__brandLogo {
  object-fit: contain;
  height: 100px;
}

.Footer-module__C63MLW__brandName {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  font-weight: 700;
}

.Footer-module__C63MLW__brandTag {
  color: #64748b;
  margin-top: .35rem;
  display: block;
}

.Footer-module__C63MLW__links, .Footer-module__C63MLW__contact {
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.5rem;
  display: flex;
}

.Footer-module__C63MLW__link {
  color: #0f172a;
  transition: background var(--transition), color var(--transition);
  border-radius: 999px;
  padding: .35rem .75rem;
  font-weight: 600;
}

.Footer-module__C63MLW__link:hover, .Footer-module__C63MLW__link:focus {
  color: var(--color-accent);
  background: #e2e8f099;
}

.Footer-module__C63MLW__contactLink {
  color: #0f172a;
  background: #e2e8f073;
  border-radius: 999px;
  align-items: center;
  gap: .5rem;
  padding: .35rem .75rem;
  font-weight: 600;
  display: inline-flex;
}

.Footer-module__C63MLW__copy {
  color: #64748b;
  font-size: .9rem;
}

/* [project]/frontend/traffic/components/Header/Header.module.css [client] (css) */
.Header-module__GT0aga__header {
  z-index: 10;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(#fff8f0eb 0%, #00224434 100%);
  position: sticky;
  top: 0;
}

.Header-module__GT0aga__content {
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

.Header-module__GT0aga__brand {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  white-space: nowrap;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  display: inline-flex;
}

.Header-module__GT0aga__brandLogo {
  height: 100px;
}

.Header-module__GT0aga__brandText {
  font-size: 1.05rem;
}

.Header-module__GT0aga__nav {
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.2rem;
  display: flex;
}

.Header-module__GT0aga__navLink {
  color: #0f172a;
  font-weight: 600;
  position: relative;
}

.Header-module__GT0aga__navLink:after {
  content: "";
  background: var(--color-accent);
  width: 0;
  height: 2px;
  transition: width var(--transition);
  position: absolute;
  bottom: -6px;
  left: 0;
}

.Header-module__GT0aga__navLink:hover:after, .Header-module__GT0aga__navLink:focus:after {
  width: 100%;
}

.Header-module__GT0aga__menuButton {
  cursor: pointer;
  color: #0f172a;
  transition: color var(--transition);
  background: none;
  border: none;
  margin-left: 1rem;
  display: none;
}

.Header-module__GT0aga__mobileOverlay {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 180;
  background: #0f172a73;
  position: fixed;
  inset: 0;
}

.Header-module__GT0aga__mobileNav {
  border-left: 1px solid var(--color-border);
  z-index: 200;
  background: linear-gradient(160deg, #fff 0%, #f8fafc 70%);
  flex-direction: column;
  gap: 1rem;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  padding: 1.25rem;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: -8px 0 32px #1e293b29;
}

.Header-module__GT0aga__mobileNavHeader {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Header-module__GT0aga__mobileNavBrand {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.Header-module__GT0aga__mobileNavLogo {
  object-fit: contain;
  width: 32px;
  height: 32px;
}

.Header-module__GT0aga__mobileNavTitle {
  font-family: var(--font-heading);
  letter-spacing: .03em;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
}

.Header-module__GT0aga__mobileCloseButton {
  border: 1px solid var(--color-border);
  color: #0f172a;
  cursor: pointer;
  width: 36px;
  height: 36px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  background: #fff;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.Header-module__GT0aga__mobileCloseButton:hover, .Header-module__GT0aga__mobileCloseButton:focus {
  color: var(--color-accent);
  background: #e2e8f0;
  transform: scale(1.03);
}

.Header-module__GT0aga__mobileNavList {
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  list-style: none;
  display: flex;
}

.Header-module__GT0aga__mobileNavLink {
  color: #0f172a;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  background: #e2e8f099;
  border-radius: 999px;
  padding: .7rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.Header-module__GT0aga__mobileNavLink:hover, .Header-module__GT0aga__mobileNavLink:focus {
  color: var(--color-accent);
  background: #e2e8f0;
  transform: translateX(4px);
}

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

  .Header-module__GT0aga__menuButton {
    display: block;
  }
}

@media (max-width: 600px) {
  .Header-module__GT0aga__mobileNav {
    width: 100vw;
    max-width: 100vw;
    padding: 1.25rem;
  }
}

/* [project]/frontend/traffic/styles/Home.module.css [client] (css) */
.Home-module__cKxQha__hero {
  padding: 5rem 0 3rem;
}

.Home-module__cKxQha__heroGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 2.5rem;
  display: grid;
}

.Home-module__cKxQha__headline {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

.Home-module__cKxQha__subheadline {
  color: #475569;
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.Home-module__cKxQha__heroActions {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.Home-module__cKxQha__primaryButton, .Home-module__cKxQha__secondaryButton {
  transition: transform var(--transition), box-shadow var(--transition);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: .85rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
}

.Home-module__cKxQha__primaryButton {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.Home-module__cKxQha__secondaryButton {
  border: 1px solid var(--color-border);
  color: var(--color-primary-dark);
  background: #fff;
}

.Home-module__cKxQha__primaryButton:hover, .Home-module__cKxQha__secondaryButton:hover {
  transform: translateY(-2px);
}

.Home-module__cKxQha__heroCard {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 2rem;
}

.Home-module__cKxQha__heroCard h3 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.Home-module__cKxQha__heroCard ul {
  color: #334155;
  gap: .75rem;
  list-style: none;
  display: grid;
}

.Home-module__cKxQha__badgeRow {
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
  display: flex;
}

.Home-module__cKxQha__badge {
  color: var(--color-primary-dark);
  background: #0f766e1a;
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .9rem;
  font-weight: 600;
}

.Home-module__cKxQha__section {
  padding: 3rem 0;
}

.Home-module__cKxQha__sectionHeading {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.Home-module__cKxQha__steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  display: grid;
}

.Home-module__cKxQha__stepCard {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  background: #fff;
  padding: 1.5rem;
}

.Home-module__cKxQha__stepCard span {
  color: var(--color-primary);
  font-weight: 700;
}

.Home-module__cKxQha__faq {
  gap: 1rem;
  display: grid;
}

.Home-module__cKxQha__faqItem {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 1.25rem 1.5rem;
}

@media (max-width: 900px) {
  .Home-module__cKxQha__heroGrid, .Home-module__cKxQha__steps {
    grid-template-columns: 1fr;
  }
}

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