/* [project]/src/modules/site/SiteFooter.module.css [app-client] (css) */
.SiteFooter-module__xQ1pyW__footer {
  background: var(--ant-color-fill-secondary);
  border-top: 1px solid var(--ant-color-border);
  width: 100%;
}

@supports (color: color-mix(in lab, red, red)) {
  .SiteFooter-module__xQ1pyW__footer {
    background-color: color-mix(in oklab, var(--ant-color-fill-secondary) 30%, transparent);
  }
}

.SiteFooter-module__xQ1pyW__container {
  padding: var(--ant-padding-xxl) var(--ant-padding-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.SiteFooter-module__xQ1pyW__grid {
  grid-template-columns: 1fr repeat(5, auto);
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
  display: grid;
}

.SiteFooter-module__xQ1pyW__columnTitle {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.SiteFooter-module__xQ1pyW__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.SiteFooter-module__xQ1pyW__column li {
  margin-bottom: .75rem;
}

.SiteFooter-module__xQ1pyW__column a {
  color: var(--ant-color-text-description);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}

.SiteFooter-module__xQ1pyW__column a:hover {
  color: #2563eb;
}

.SiteFooter-module__xQ1pyW__brandSocials {
  margin-top: 2rem;
}

.SiteFooter-module__xQ1pyW__brandSocialsTitle {
  color: var(--ant-color-text-description);
  margin-bottom: .5rem;
}

.SiteFooter-module__xQ1pyW__socialLinks {
  gap: 12px;
  display: flex;
}

.SiteFooter-module__xQ1pyW__socialLink {
  width: 28px;
  height: 28px;
  padding: 4px;
}

.SiteFooter-module__xQ1pyW__brandLink {
  margin-bottom: 1rem;
  display: block;
}

.SiteFooter-module__xQ1pyW__brandLink svg {
  width: auto;
  height: 24px;
}

.SiteFooter-module__xQ1pyW__brandDescription {
  color: var(--ant-color-text-description);
  font-size: .875rem;
}

.SiteFooter-module__xQ1pyW__divider {
  border-top: 1px solid var(--ant-color-border);
  margin: 2rem 0;
}

.SiteFooter-module__xQ1pyW__bottom {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.SiteFooter-module__xQ1pyW__copyright {
  color: var(--ant-color-text-description);
  font-size: .9rem;
}

@media (max-width: 1024px) {
  .SiteFooter-module__xQ1pyW__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .SiteFooter-module__xQ1pyW__brand {
    grid-column: span 3 / span 3;
  }
}

@media (max-width: 639.99px) {
  .SiteFooter-module__xQ1pyW__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .SiteFooter-module__xQ1pyW__brand {
    grid-column: span 2 / span 2;
  }
}

/* [project]/src/modules/site/SiteHeader.module.css [app-client] (css) */
.SiteHeader-module__Vp6UxG__header {
  z-index: 50;
  width: 100%;
  height: var(--site-header-height);
  align-items: center;
  transition: background-color .2s;
  display: flex;
  position: sticky;
  top: 0;
}

.SiteHeader-module__Vp6UxG__stickyActive {
  backdrop-filter: blur(8px);
  background: #ffffffeb;
}

@supports (backdrop-filter: blur(8px)) {
  .SiteHeader-module__Vp6UxG__stickyActive {
    background: #fff9;
  }

  .SiteHeader-module__Vp6UxG__header.SiteHeader-module__Vp6UxG__mobileMenuOpen {
    backdrop-filter: none;
    background-color: #0000;
  }
}

.SiteHeader-module__Vp6UxG__nav {
  padding: 0 var(--ant-padding-lg);
  z-index: 50;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.SiteHeader-module__Vp6UxG__logoImage {
  width: auto;
  height: 18px;
}

.SiteHeader-module__Vp6UxG__links {
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.SiteHeader-module__Vp6UxG__link {
  color: var(--ant-color-text);
  cursor: pointer;
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.SiteHeader-module__Vp6UxG__link:hover, .SiteHeader-module__Vp6UxG__link.SiteHeader-module__Vp6UxG__active {
  color: var(--ant-color-primary);
}

.SiteHeader-module__Vp6UxG__linkHighlight {
  background: linear-gradient(90deg, var(--ant-color-primary) 0%, #7c3aed 100%);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
}

.SiteHeader-module__Vp6UxG__linkHighlight .SiteHeader-module__Vp6UxG__highlightIcon {
  color: var(--ant-color-primary);
  transition: transform .2s;
}

.SiteHeader-module__Vp6UxG__linkHighlight:hover {
  filter: brightness(1.08) saturate(1.1);
}

.SiteHeader-module__Vp6UxG__linkHighlight .SiteHeader-module__Vp6UxG__chevron {
  color: #7c3aed;
}

.SiteHeader-module__Vp6UxG__chevron {
  transition: transform .2s;
}

.SiteHeader-module__Vp6UxG__menuNavItem:hover .SiteHeader-module__Vp6UxG__chevron {
  transform: rotate(180deg);
}

.SiteHeader-module__Vp6UxG__menuPanelContainer.SiteHeader-module__Vp6UxG__menuPanelContainer {
  --_site-header-height: 60px;
  --_nav-item-height: 20px;
  transform: translateY(calc((var(--_site-header-height) - var(--_nav-item-height)) / 2 + 8px));
  backdrop-filter: blur(20px) !important;
  background-color: #ffffffe6 !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 0 !important;
}

.SiteHeader-module__Vp6UxG__menuPanelDark.SiteHeader-module__Vp6UxG__menuPanelDark {
  --ant-color-text: #fafaf7;
  --ant-color-text-secondary: #fafaf7ad;
  --ant-color-text-tertiary: #fafaf766;
  --ant-color-primary: #e9b949;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
  background-color: #0f0f0eeb !important;
}

.SiteHeader-module__Vp6UxG__actions {
  --desktop-display: flex;
  display: var(--desktop-display);
  align-items: center;
  gap: .75rem;
}

.SiteHeader-module__Vp6UxG__actions .css-var-antd.ant-btn {
  --ant-button-font-weight: 500;
}

.SiteHeader-module__Vp6UxG__hamburger {
  cursor: pointer;
  color: var(--ant-color-text);
  background: none;
  border: none;
  padding: 4px;
  line-height: 0;
  display: none;
}

.SiteHeader-module__Vp6UxG__mobileMenu {
  z-index: 49;
  background: none;
  height: 100dvh;
  display: none;
  position: fixed;
  inset: 0;
}

.SiteHeader-module__Vp6UxG__mobileMenuInner {
  backdrop-filter: blur(20px);
  padding: calc(.5rem + var(--site-header-height, 60px)) 0 0;
  background: #fff9;
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 28px;
  flex-direction: column;
  max-height: 100%;
  display: flex;
  overflow: hidden auto;
  box-shadow: 0 8px 24px #00000014;
}

.SiteHeader-module__Vp6UxG__mobileMenuDark {
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  --ant-color-text: #fafaf7;
  --ant-color-text-secondary: #fafaf7ad;
  --ant-color-text-tertiary: #fafaf766;
  --ant-color-fill-secondary: #ffffff12;
  --ant-color-primary: #e9b949;
  background: #0f0f0ecc;
  box-shadow: 0 8px 24px #0000004d;
}

.SiteHeader-module__Vp6UxG__mobileMenuSections {
  flex: 1;
  padding-bottom: 1rem;
  overflow: hidden auto;
}

.SiteHeader-module__Vp6UxG__mobileLink {
  padding: .875rem var(--ant-padding-lg);
  color: var(--ant-color-text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .15s;
  display: block;
}

.SiteHeader-module__Vp6UxG__mobileLink:hover {
  background: var(--ant-color-fill-secondary);
}

.SiteHeader-module__Vp6UxG__mobileMenuToggle {
  width: 100%;
  padding: .875rem var(--ant-padding-lg);
  color: var(--ant-color-text);
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color .15s;
  display: flex;
}

.SiteHeader-module__Vp6UxG__mobileMenuChevron {
  color: var(--ant-color-text-tertiary);
  transition: transform .2s;
}

.SiteHeader-module__Vp6UxG__mobileMenuChevronOpen {
  transform: rotate(180deg);
}

.SiteHeader-module__Vp6UxG__mobileMenuPanel {
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s;
  display: grid;
}

.SiteHeader-module__Vp6UxG__mobileMenuPanelOpen {
  grid-template-rows: 1fr;
}

.SiteHeader-module__Vp6UxG__mobileMenuPanelInner {
  min-height: 0;
  overflow: hidden;
}

.SiteHeader-module__Vp6UxG__desktopOnly {
  display: var(--desktop-display, flex);
}

.SiteHeader-module__Vp6UxG__mobileOnly {
  display: none;
}

@media (max-width: 1279.99px) {
  .SiteHeader-module__Vp6UxG__desktopOnly {
    display: none;
  }

  .SiteHeader-module__Vp6UxG__mobileOnly {
    display: block;
  }

  .SiteHeader-module__Vp6UxG__hamburger {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .SiteHeader-module__Vp6UxG__mobileMenu {
    display: block;
  }

  .SiteHeader-module__Vp6UxG__actions {
    margin-left: auto;
    margin-right: .5rem;
  }
}

/* [project]/src/modules/site/ProductMenu.module.css [app-client] (css) */
.ProductMenu-module__nL1o3q__grid {
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin: 0;
  padding: 20px;
  list-style: none;
  display: grid;
}

@media (max-width: 1279.99px) {
  .ProductMenu-module__nL1o3q__grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}

.ProductMenu-module__nL1o3q__grid li {
  margin: 0;
}

.ProductMenu-module__nL1o3q__link {
  color: var(--ant-color-text);
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color .15s, color .15s;
  display: flex;
}

.ProductMenu-module__nL1o3q__icon {
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: color, background-color .15s;
  display: flex;
}

.ProductMenu-module__nL1o3q__link svg {
  flex-shrink: 0;
}

.ProductMenu-module__nL1o3q__link:hover .ProductMenu-module__nL1o3q__icon {
  background-color: var(--ant-color-primary);
  color: #fff;
}

/* [project]/src/modules/site/AiAgentsMenu.module.css [app-client] (css) */
.AiAgentsMenu-module__12rbIq__list {
  flex-direction: column;
  gap: .5rem;
  width: max-content;
  max-width: 360px;
  margin: 0;
  padding: 20px 14px;
  list-style: none;
  display: flex;
}

@media (max-width: 1279.99px) {
  .AiAgentsMenu-module__12rbIq__list {
    width: auto;
    max-width: none;
  }
}

.AiAgentsMenu-module__12rbIq__list li {
  margin: 0;
}

.AiAgentsMenu-module__12rbIq__link {
  color: var(--ant-color-text);
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  padding: 8px;
  text-decoration: none;
  display: flex;
}

.AiAgentsMenu-module__12rbIq__icon {
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: color, background-color .15s;
  display: flex;
}

.AiAgentsMenu-module__12rbIq__link svg {
  flex-shrink: 0;
}

.AiAgentsMenu-module__12rbIq__link:hover .AiAgentsMenu-module__12rbIq__icon {
  background-color: var(--ant-color-primary);
  color: #fff;
}

.AiAgentsMenu-module__12rbIq__text {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.AiAgentsMenu-module__12rbIq__label {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.AiAgentsMenu-module__12rbIq__desc {
  color: var(--ant-color-text-secondary);
  font-size: .8125rem;
  line-height: 1.35;
}

/* [project]/src/modules/site/TemplatesMegaMenu.module.css [app-client] (css) */
.TemplatesMegaMenu-module__rjlG-G__megaMenuInner {
  flex-direction: column;
  gap: 0;
  padding: 20px 16px 12px;
  display: flex;
}

.TemplatesMegaMenu-module__rjlG-G__categoryGrid {
  grid-template-columns: 1fr 1fr;
  gap: .75rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.TemplatesMegaMenu-module__rjlG-G__categoryLink {
  color: var(--ant-color-text);
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color .15s, color .15s;
  display: flex;
}

.TemplatesMegaMenu-module__rjlG-G__categoryLinkIcon {
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: color, background-color .15s;
  display: flex;
}

.TemplatesMegaMenu-module__rjlG-G__categoryLink svg {
  flex-shrink: 0;
}

.TemplatesMegaMenu-module__rjlG-G__categoryLink:hover .TemplatesMegaMenu-module__rjlG-G__categoryLinkIcon {
  background-color: var(--ant-color-primary);
  color: #fff;
}

.TemplatesMegaMenu-module__rjlG-G__viewAll {
  border-top: 1px solid var(--ant-color-split);
  text-align: right;
  margin-top: 14px;
  padding-top: 12px;
}

.TemplatesMegaMenu-module__rjlG-G__viewAllLink {
  color: var(--ant-color-primary);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
}

.TemplatesMegaMenu-module__rjlG-G__viewAllLink:hover {
  text-decoration: underline;
}

/* [project]/src/views/layouts/templates/layout.css [app-client] (css) */
.container {
  width: 100%;
  max-width: 80rem;
}

/* [project]/src/views/layouts/templates/TemplatesLayout.module.css [app-client] (css) */
.TemplatesLayout-module__UzsRdq__root {
  --site-header-height: 60px;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

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