/* [project]/src/components/BreakingNews/BreakingNews.module.css [app-client] (css) */
.BreakingNews-module__Uj6eBa__breakingBanner {
  background: linear-gradient(135deg, #101727 0%, #151e30 100%);
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.BreakingNews-module__Uj6eBa__breakingBanner:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(100% 100% at 100% 0, #28a5451f 0%, #0000 50%);
  position: absolute;
  inset: 0;
}

.BreakingNews-module__Uj6eBa__container {
  z-index: 1;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  position: relative;
}

.BreakingNews-module__Uj6eBa__breakingLabel {
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 6px;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.BreakingNews-module__Uj6eBa__breakingDot {
  background: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.5s ease-in-out infinite BreakingNews-module__Uj6eBa__pulse;
}

@keyframes BreakingNews-module__Uj6eBa__pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.3);
  }
}

.BreakingNews-module__Uj6eBa__breakingScroll {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.BreakingNews-module__Uj6eBa__breakingTrack {
  gap: 48px;
  width: max-content;
  animation: 35s linear infinite BreakingNews-module__Uj6eBa__scroll;
  display: flex;
}

.BreakingNews-module__Uj6eBa__breakingTrack:hover {
  animation-play-state: paused;
}

@keyframes BreakingNews-module__Uj6eBa__scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.BreakingNews-module__Uj6eBa__breakingItem {
  white-space: nowrap;
  cursor: pointer;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.BreakingNews-module__Uj6eBa__breakingItem:hover {
  opacity: .8;
}

.BreakingNews-module__Uj6eBa__breakingCategory {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .3px;
  font-size: 10px;
  font-weight: 600;
}

.BreakingNews-module__Uj6eBa__breakingTitle {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.BreakingNews-module__Uj6eBa__breakingDivider {
  background: #ffffff4d;
  border-radius: 50%;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
}

.BreakingNews-module__Uj6eBa__hidden {
  display: none;
}

@media (max-width: 768px) {
  .BreakingNews-module__Uj6eBa__breakingBanner {
    padding: 8px 0;
  }

  .BreakingNews-module__Uj6eBa__breakingLabel {
    padding: 5px 10px;
    font-size: 10px;
  }

  .BreakingNews-module__Uj6eBa__breakingTitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .BreakingNews-module__Uj6eBa__container {
    gap: 12px;
  }

  .BreakingNews-module__Uj6eBa__breakingLabel span:last-child {
    display: none;
  }
}

/* [project]/src/components/Header/Header.module.css [app-client] (css) */
.Header-module__ldgnoG__headerWrapper {
  z-index: 1000;
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.Header-module__ldgnoG__header {
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  background: #ffffffeb;
  border-radius: 16px;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 12px auto;
  transition: margin .35s cubic-bezier(.4, 0, .2, 1), background .3s, border-color .3s;
}

.Header-module__ldgnoG__scrolled {
  border-color: var(--gray-200);
  background: #fffffffa;
  margin-top: 8px;
}

.Header-module__ldgnoG__container {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 100%;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.Header-module__ldgnoG__logo {
  flex-shrink: 0;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
  display: flex;
}

.Header-module__ldgnoG__logo:hover, .Header-module__ldgnoG__logo:active {
  transform: none;
}

.Header-module__ldgnoG__logo img {
  object-fit: contain;
  height: auto;
}

.Header-module__ldgnoG__nav {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Header-module__ldgnoG__navInner {
  align-items: center;
  gap: 4px;
  display: flex;
}

.Header-module__ldgnoG__navLink {
  white-space: nowrap;
  color: var(--gray-600);
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  text-decoration: none;
  transition: color .25s, transform .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Header-module__ldgnoG__navLink:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, #28a54514 0%, #28a5450a 100%);
  border-radius: 10px;
  transition: opacity .25s;
  position: absolute;
  inset: 0;
}

.Header-module__ldgnoG__navLink:hover:before {
  opacity: 1;
}

.Header-module__ldgnoG__navLink:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.Header-module__ldgnoG__navLink:active {
  transform: translateY(0)scale(.98);
}

.Header-module__ldgnoG__navIcon {
  color: inherit;
  justify-content: center;
  align-items: center;
  transition: transform .25s;
  display: flex;
}

.Header-module__ldgnoG__navIcon svg {
  width: 18px;
  height: 18px;
}

.Header-module__ldgnoG__navLink:hover .Header-module__ldgnoG__navIcon {
  transform: scale(1.1);
}

.Header-module__ldgnoG__navDropdown {
  position: relative;
}

.Header-module__ldgnoG__navDropdown .Header-module__ldgnoG__navLink {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.Header-module__ldgnoG__dropdownIcon {
  margin-left: 4px;
  transition: transform .3s;
}

.Header-module__ldgnoG__navDropdown:hover .Header-module__ldgnoG__dropdownIcon {
  transform: rotate(180deg);
}

.Header-module__ldgnoG__dropdownMenu {
  border: 1px solid var(--gray-200);
  z-index: 1000;
  background: #fff;
  border-radius: 12px;
  min-width: 240px;
  padding: 8px;
  animation: .2s Header-module__ldgnoG__dropdownFadeIn;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
}

@keyframes Header-module__ldgnoG__dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Header-module__ldgnoG__dropdownItem {
  color: var(--gray-700);
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__dropdownItem:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.Header-module__ldgnoG__navDropdownGreen .Header-module__ldgnoG__navLink {
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  transition: background .2s, transform .2s;
}

.Header-module__ldgnoG__navDropdownGreen .Header-module__ldgnoG__navLink:hover {
  background: var(--primary-dark);
}

.Header-module__ldgnoG__navDropdownGreen .Header-module__ldgnoG__navIcon {
  color: #fff;
  background: none;
}

.Header-module__ldgnoG__navDropdownGreen .Header-module__ldgnoG__navTitle {
  color: #fff;
}

.Header-module__ldgnoG__dropdownMenuGreen {
  animation: .2s Header-module__ldgnoG__dropdownFadeInCenter;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes Header-module__ldgnoG__dropdownFadeInCenter {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

.Header-module__ldgnoG__dropdownMenuGreen .Header-module__ldgnoG__dropdownItem:hover {
  color: var(--primary);
  background: #28a54514;
}

.Header-module__ldgnoG__mobileAccordionGreen .Header-module__ldgnoG__mobileNavItem {
  border-left: 3px solid var(--primary);
}

.Header-module__ldgnoG__mobileAccordionGreen .Header-module__ldgnoG__mobileNavItemActive {
  background: #28a5450f;
}

.Header-module__ldgnoG__mobileAccordionGreen .Header-module__ldgnoG__mobileSubItem:hover {
  color: var(--primary);
  background: #28a5450f;
}

.Header-module__ldgnoG__dropdownItem svg {
  color: var(--gray-500);
  flex-shrink: 0;
  transition: color .2s;
}

.Header-module__ldgnoG__dropdownItem:hover svg {
  color: var(--primary);
}

.Header-module__ldgnoG__dropdownTitle {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.Header-module__ldgnoG__dropdownDesc {
  color: var(--gray-500);
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.2;
}

.Header-module__ldgnoG__navText {
  flex-direction: column;
  display: flex;
}

.Header-module__ldgnoG__navTitle {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.Header-module__ldgnoG__navDesc {
  display: none;
}

.Header-module__ldgnoG__actions {
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  display: flex;
}

.Header-module__ldgnoG__loginBtn {
  color: var(--secondary);
  border: 1px solid var(--secondary);
  background: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
}

.Header-module__ldgnoG__loginBtn:hover {
  color: #fff;
  background: var(--secondary);
}

.Header-module__ldgnoG__loginBtn:active {
  transform: scale(.98);
}

.Header-module__ldgnoG__registerBtn {
  color: #fff;
  background: var(--primary);
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.Header-module__ldgnoG__registerBtn:hover {
  background: var(--primary-dark);
  gap: 10px;
}

.Header-module__ldgnoG__registerBtn:active {
  transform: scale(.98);
}

.Header-module__ldgnoG__registerBtn svg {
  transition: transform .25s;
}

.Header-module__ldgnoG__registerBtn:hover svg {
  transform: translateX(3px);
}

.Header-module__ldgnoG__profileWrapper {
  position: relative;
}

.Header-module__ldgnoG__profileBtn {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__profileBtn:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.Header-module__ldgnoG__profileAvatar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.Header-module__ldgnoG__profileName {
  color: var(--gray-700);
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 120px;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
}

.Header-module__ldgnoG__profileBtn svg {
  color: var(--gray-500);
  transition: transform .2s;
}

.Header-module__ldgnoG__profileBtn:hover svg {
  color: var(--gray-700);
}

.Header-module__ldgnoG__profileMenu {
  border: 1px solid var(--gray-200);
  z-index: 100;
  background: #fff;
  border-radius: 12px;
  min-width: 220px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 10px 40px #1017271a;
}

.Header-module__ldgnoG__profileMenuItem {
  width: 100%;
  color: var(--gray-700);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  display: flex;
}

.Header-module__ldgnoG__profileMenuItem:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

.Header-module__ldgnoG__profileMenuItem svg {
  color: var(--gray-500);
}

.Header-module__ldgnoG__profileMenuItem:hover svg {
  color: var(--primary);
}

.Header-module__ldgnoG__notifWrapper {
  position: relative;
}

.Header-module__ldgnoG__notifBtn {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: var(--gray-600);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
  position: relative;
}

.Header-module__ldgnoG__notifBtn:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-800);
}

.Header-module__ldgnoG__notifBadge {
  color: #fff;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: -2px;
  right: -2px;
}

.Header-module__ldgnoG__notifDropdown {
  border: 1px solid var(--gray-200);
  z-index: 100;
  background: #fff;
  border-radius: 14px;
  width: 340px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px #1017271f;
}

.Header-module__ldgnoG__notifDropdownHeader {
  border-bottom: 1px solid var(--gray-100);
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  display: flex;
}

.Header-module__ldgnoG__notifDropdownTitle {
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 600;
}

.Header-module__ldgnoG__notifMarkAll {
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  transition: opacity .15s;
}

.Header-module__ldgnoG__notifMarkAll:hover {
  opacity: .7;
}

.Header-module__ldgnoG__notifDropdownList {
  max-height: 300px;
  overflow-y: auto;
}

.Header-module__ldgnoG__notifEmpty {
  text-align: center;
  color: var(--gray-400);
  padding: 32px 16px;
  font-size: 13px;
}

.Header-module__ldgnoG__notifItem {
  border-bottom: 1px solid var(--gray-50);
  padding: 12px 16px;
  text-decoration: none;
  transition: background .15s;
  display: block;
}

.Header-module__ldgnoG__notifItem:hover {
  background: var(--gray-50);
}

.Header-module__ldgnoG__notifItemUnread {
  background: #f0fdf4;
}

.Header-module__ldgnoG__notifItemUnread:hover {
  background: #dcfce7;
}

.Header-module__ldgnoG__notifItemTitle {
  color: var(--gray-900);
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
}

.Header-module__ldgnoG__notifItemMsg {
  color: var(--gray-500);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 12px;
  display: -webkit-box;
  overflow: hidden;
}

.Header-module__ldgnoG__notifDropdownFooter {
  text-align: center;
  color: var(--primary);
  border-top: 1px solid var(--gray-100);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  display: block;
}

.Header-module__ldgnoG__notifDropdownFooter:hover {
  background: var(--gray-50);
}

.Header-module__ldgnoG__profileMenuDivider {
  background: var(--gray-100);
  height: 1px;
  margin: 4px 0;
}

.Header-module__ldgnoG__menuBadge {
  color: #fff;
  background: #ef4444;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: auto;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.Header-module__ldgnoG__menuToggle {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px;
  transition: all .2s;
  display: none;
}

.Header-module__ldgnoG__menuToggle:hover {
  background: var(--gray-100);
}

.Header-module__ldgnoG__menuToggle span {
  background: var(--gray-600);
  transform-origin: center;
  border-radius: 2px;
  width: 100%;
  height: 2px;
  transition: all .3s;
}

.Header-module__ldgnoG__menuOpen span:first-child {
  transform: rotate(45deg)translate(5px, 5px);
}

.Header-module__ldgnoG__menuOpen span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.Header-module__ldgnoG__menuOpen span:nth-child(3) {
  transform: rotate(-45deg)translate(5px, -5px);
}

.Header-module__ldgnoG__mobileMenu {
  z-index: 9999;
  opacity: 0;
  background: #fff;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), opacity .3s;
  display: none;
  position: fixed;
  inset: 0;
  transform: translateX(100%);
}

.Header-module__ldgnoG__mobileMenuOpen {
  opacity: 1;
  transform: translateX(0);
}

.Header-module__ldgnoG__mobileMenuHeader {
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  display: flex;
}

.Header-module__ldgnoG__closeBtn {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  width: 44px;
  height: 44px;
  color: var(--gray-600);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__closeBtn:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.Header-module__ldgnoG__mobileMenuContent {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

.Header-module__ldgnoG__mobileNavList {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.Header-module__ldgnoG__mobileNavItem {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
  border-radius: 14px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  font-family: inherit;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileNavItem:hover, .Header-module__ldgnoG__mobileNavItem:active {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.Header-module__ldgnoG__mobileNavItemActive {
  background: #28a54514;
  border-color: #28a54533;
}

.Header-module__ldgnoG__mobileNavIcon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  background: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Header-module__ldgnoG__mobileNavText {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  display: flex;
}

.Header-module__ldgnoG__mobileNavTitle {
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 600;
}

.Header-module__ldgnoG__mobileNavDesc {
  color: var(--gray-500);
  font-size: 13px;
}

.Header-module__ldgnoG__mobileNavArrow {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .2s;
}

.Header-module__ldgnoG__mobileNavItem:hover .Header-module__ldgnoG__mobileNavArrow {
  color: var(--primary);
  transform: translateX(4px);
}

.Header-module__ldgnoG__mobileAccordion {
  flex-direction: column;
  display: flex;
}

.Header-module__ldgnoG__mobileAccordionIcon {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .3s;
}

.Header-module__ldgnoG__mobileAccordionIconOpen {
  color: var(--primary);
  transform: rotate(180deg);
}

.Header-module__ldgnoG__mobileAccordionContent {
  max-height: 0;
  transition: max-height .3s;
  overflow: hidden;
}

.Header-module__ldgnoG__mobileAccordionContentOpen {
  max-height: 300px;
}

.Header-module__ldgnoG__mobileSubList {
  flex-direction: column;
  gap: 6px;
  padding: 10px 0 0;
  display: flex;
}

.Header-module__ldgnoG__mobileSubItem {
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileSubItem:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
  color: var(--primary);
}

.Header-module__ldgnoG__mobileSubItem svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.Header-module__ldgnoG__mobileSubItem span {
  flex: 1;
}

.Header-module__ldgnoG__mobileMenuFooter {
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  flex-direction: column;
  flex-shrink: 0;
  gap: 12px;
  padding: 20px;
  display: flex;
}

.Header-module__ldgnoG__mobileLoginBtn {
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileLoginBtn:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.Header-module__ldgnoG__mobileLoginBtn svg {
  color: var(--gray-500);
}

.Header-module__ldgnoG__mobileRegisterBtn {
  color: #fff;
  background: var(--primary);
  cursor: pointer;
  border: none;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileRegisterBtn:hover {
  background: var(--primary-dark);
}

.Header-module__ldgnoG__mobileLogoutBtn {
  color: #dc2626;
  cursor: pointer;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileLogoutBtn:hover {
  background: #fee2e2;
}

.Header-module__ldgnoG__overlay {
  display: none;
}

@media (max-width: 1200px) {
  .Header-module__ldgnoG__navLink {
    padding: 8px 10px;
  }

  .Header-module__ldgnoG__navTitle {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .Header-module__ldgnoG__container {
    height: 64px;
    padding: 0 20px;
  }

  .Header-module__ldgnoG__nav {
    display: none;
  }

  .Header-module__ldgnoG__mobileMenu, .Header-module__ldgnoG__menuToggle {
    display: flex;
  }

  .Header-module__ldgnoG__actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .Header-module__ldgnoG__logo img {
    width: 130px;
  }

  .Header-module__ldgnoG__mobileMenuHeader {
    padding: 14px 16px;
  }

  .Header-module__ldgnoG__mobileMenuContent {
    padding: 12px 16px;
  }

  .Header-module__ldgnoG__mobileNavItem {
    padding: 14px;
  }

  .Header-module__ldgnoG__mobileNavIcon {
    width: 44px;
    height: 44px;
  }

  .Header-module__ldgnoG__mobileNavTitle {
    font-size: 15px;
  }

  .Header-module__ldgnoG__mobileSubItem {
    padding: 10px 14px;
  }

  .Header-module__ldgnoG__mobileMenuFooter {
    padding: 16px;
  }
}

@media (max-width: 600px) {
  .Header-module__ldgnoG__header {
    width: calc(100% - 24px);
    margin: 8px auto;
  }

  .Header-module__ldgnoG__container {
    height: 56px;
    padding: 0 16px;
  }

  .Header-module__ldgnoG__logo img {
    width: 120px;
  }

  .Header-module__ldgnoG__menuToggle {
    border-radius: 10px;
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .Header-module__ldgnoG__mobileMenuHeader {
    padding: 12px 16px;
  }

  .Header-module__ldgnoG__closeBtn {
    width: 40px;
    height: 40px;
  }

  .Header-module__ldgnoG__mobileMenuContent {
    padding: 12px 16px;
  }

  .Header-module__ldgnoG__mobileNavList {
    gap: 6px;
  }

  .Header-module__ldgnoG__mobileNavItem {
    border-radius: 12px;
    gap: 12px;
    padding: 12px;
  }

  .Header-module__ldgnoG__mobileNavIcon {
    border-radius: 10px;
    width: 40px;
    height: 40px;
  }

  .Header-module__ldgnoG__mobileNavIcon svg {
    width: 20px;
    height: 20px;
  }

  .Header-module__ldgnoG__mobileNavTitle {
    font-size: 14px;
  }

  .Header-module__ldgnoG__mobileNavDesc {
    font-size: 12px;
  }

  .Header-module__ldgnoG__mobileSubItem {
    padding: 10px 12px;
    font-size: 13px;
  }

  .Header-module__ldgnoG__mobileMenuFooter {
    gap: 10px;
    padding: 16px;
  }

  .Header-module__ldgnoG__mobileLoginBtn, .Header-module__ldgnoG__mobileRegisterBtn, .Header-module__ldgnoG__mobileLogoutBtn {
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .Header-module__ldgnoG__container {
    height: 56px;
    padding: 0 12px;
  }

  .Header-module__ldgnoG__logo img {
    width: 110px;
  }

  .Header-module__ldgnoG__menuToggle {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .Header-module__ldgnoG__mobileMenuHeader {
    padding: 10px 12px;
  }

  .Header-module__ldgnoG__closeBtn {
    border-radius: 10px;
    width: 36px;
    height: 36px;
  }

  .Header-module__ldgnoG__mobileMenuContent {
    padding: 10px 12px;
  }

  .Header-module__ldgnoG__mobileNavItem {
    gap: 10px;
    padding: 10px;
  }

  .Header-module__ldgnoG__mobileNavIcon {
    width: 36px;
    height: 36px;
  }

  .Header-module__ldgnoG__mobileNavTitle {
    font-size: 13px;
  }

  .Header-module__ldgnoG__mobileNavDesc {
    font-size: 11px;
  }

  .Header-module__ldgnoG__mobileSubItem {
    padding: 8px 10px;
    font-size: 12px;
  }

  .Header-module__ldgnoG__mobileMenuFooter {
    gap: 8px;
    padding: 12px;
  }

  .Header-module__ldgnoG__mobileLoginBtn, .Header-module__ldgnoG__mobileRegisterBtn, .Header-module__ldgnoG__mobileLogoutBtn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .Header-module__ldgnoG__navLink, .Header-module__ldgnoG__loginBtn, .Header-module__ldgnoG__registerBtn, .Header-module__ldgnoG__mobileLoginBtn, .Header-module__ldgnoG__mobileRegisterBtn, .Header-module__ldgnoG__mobileLogoutBtn, .Header-module__ldgnoG__mobileNavItem, .Header-module__ldgnoG__mobileSubItem, .Header-module__ldgnoG__menuToggle, .Header-module__ldgnoG__closeBtn {
    -webkit-tap-highlight-color: transparent;
  }

  .Header-module__ldgnoG__mobileNavItem:active {
    transform: scale(.98);
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .Header-module__ldgnoG__container {
    height: 48px;
  }

  .Header-module__ldgnoG__mobileMenuHeader, .Header-module__ldgnoG__mobileMenuContent {
    padding: 8px 12px;
  }

  .Header-module__ldgnoG__mobileNavList {
    gap: 4px;
  }

  .Header-module__ldgnoG__mobileNavItem {
    padding: 8px 10px;
  }

  .Header-module__ldgnoG__mobileNavIcon {
    width: 32px;
    height: 32px;
  }

  .Header-module__ldgnoG__mobileNavTitle {
    font-size: 13px;
  }

  .Header-module__ldgnoG__mobileNavDesc {
    display: none;
  }

  .Header-module__ldgnoG__mobileSubItem {
    padding: 6px 10px;
    font-size: 12px;
  }

  .Header-module__ldgnoG__mobileMenuFooter {
    flex-direction: row;
    gap: 8px;
    padding: 10px 12px;
  }

  .Header-module__ldgnoG__mobileLoginBtn, .Header-module__ldgnoG__mobileRegisterBtn, .Header-module__ldgnoG__mobileLogoutBtn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 1024px) {
    .Header-module__ldgnoG__mobileMenuFooter {
      padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
  }
}

/* [project]/src/components/Hero/Hero.module.css [app-client] (css) */
.Hero-module__JgYmMq__hero {
  z-index: 10;
  background: linear-gradient(135deg, #101727 0%, #151e30 50%, #0c1120 100%);
  border-radius: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 150px auto 24px;
  padding: 56px 56px 48px;
  display: flex;
  position: relative;
  overflow: visible;
}

.Hero-module__JgYmMq__bgOverlay {
  pointer-events: none;
  background: radial-gradient(80% 50% at 50% -20%, #28a54526 0%, #0000 50%), radial-gradient(60% 40% at 80% 60%, #10172733 0%, #0000 50%);
  border-radius: 24px;
  position: absolute;
  inset: 0;
}

.Hero-module__JgYmMq__bgPattern {
  pointer-events: none;
  background-image: radial-gradient(#ffffff08 1px, #0000 1px);
  background-size: 40px 40px;
  border-radius: 24px;
  position: absolute;
  inset: 0;
}

.Hero-module__JgYmMq__container {
  z-index: 1;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.Hero-module__JgYmMq__badge {
  color: #ffffffd9;
  background: #ffffff14;
  border: 1px solid #ffffff1a;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.Hero-module__JgYmMq__badgeDot {
  background: var(--primary);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s ease-in-out infinite Hero-module__JgYmMq__pulse;
}

@keyframes Hero-module__JgYmMq__pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.1);
  }
}

.Hero-module__JgYmMq__title {
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
}

.Hero-module__JgYmMq__highlight {
  color: var(--primary);
}

.Hero-module__JgYmMq__subtitle {
  color: #ffffffa6;
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.7;
}

.Hero-module__JgYmMq__stats {
  background: #ffffff0d;
  border: 1px solid #ffffff14;
  border-radius: 14px;
  align-items: center;
  gap: 48px;
  margin-bottom: 32px;
  padding: 24px 32px;
  display: flex;
}

.Hero-module__JgYmMq__stat {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.Hero-module__JgYmMq__statNumber {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

.Hero-module__JgYmMq__statLabel {
  color: #ffffff8c;
  font-size: 12px;
}

.Hero-module__JgYmMq__statDivider {
  background: #ffffff1a;
  width: 1px;
  height: 40px;
}

.Hero-module__JgYmMq__searchWrapper {
  perspective: 1000px;
  z-index: 100;
  width: 100%;
  position: relative;
}

.Hero-module__JgYmMq__searchBox {
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px 24px;
  overflow: visible;
}

.Hero-module__JgYmMq__stepsHeader {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  padding: 14px 20px;
  display: flex;
  overflow-x: auto;
}

.Hero-module__JgYmMq__stepItem {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  flex: 1;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 6px 10px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.Hero-module__JgYmMq__stepItem:hover:not(.Hero-module__JgYmMq__locked) {
  background: #1017270d;
}

.Hero-module__JgYmMq__stepCircle {
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
}

.Hero-module__JgYmMq__stepInfo {
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  display: flex;
  overflow: hidden;
}

.Hero-module__JgYmMq__stepLabel {
  color: var(--gray-500);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  transition: all .2s;
}

.Hero-module__JgYmMq__stepValue {
  color: var(--gray-700);
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90px;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
}

.Hero-module__JgYmMq__stepLine {
  width: 20px;
  height: 20px;
  color: var(--gray-300);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  transition: all .2s;
  display: flex;
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__locked .Hero-module__JgYmMq__stepCircle {
  background: var(--gray-100);
  color: var(--gray-400);
  border: 1px solid var(--gray-200);
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__locked .Hero-module__JgYmMq__stepLabel {
  color: var(--gray-400);
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__locked {
  cursor: not-allowed;
  opacity: .7;
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__active .Hero-module__JgYmMq__stepCircle {
  background: var(--secondary);
  color: #fff;
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__active .Hero-module__JgYmMq__stepLabel {
  color: var(--secondary);
  font-weight: 700;
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__active .Hero-module__JgYmMq__stepValue {
  color: var(--secondary);
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__completed .Hero-module__JgYmMq__stepCircle {
  background: var(--primary);
  color: #fff;
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__completed .Hero-module__JgYmMq__stepLabel {
  color: var(--gray-700);
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__completed .Hero-module__JgYmMq__stepValue {
  color: var(--primary);
  font-weight: 700;
}

.Hero-module__JgYmMq__stepItem.Hero-module__JgYmMq__completed .Hero-module__JgYmMq__stepLine {
  color: var(--primary);
}

.Hero-module__JgYmMq__stepContent {
  z-index: 10;
  min-height: auto;
  padding: 0;
  position: relative;
}

.Hero-module__JgYmMq__inputWithButton {
  align-items: stretch;
  gap: 10px;
  display: flex;
  position: relative;
}

.Hero-module__JgYmMq__dropdownWrapper {
  z-index: 100;
  flex: 1;
  position: relative;
}

.Hero-module__JgYmMq__textInputWrapper {
  flex: 1;
  gap: 10px;
  display: flex;
}

.Hero-module__JgYmMq__searchInput {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  cursor: text;
  border-radius: 14px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  transition: all .2s;
  display: flex;
}

.Hero-module__JgYmMq__searchInput:hover:not(.Hero-module__JgYmMq__focused) {
  border-color: var(--gray-300);
}

.Hero-module__JgYmMq__searchInput.Hero-module__JgYmMq__focused {
  border-color: var(--secondary);
  background: #fff;
}

.Hero-module__JgYmMq__searchInput svg:first-child {
  color: var(--gray-400);
  transition: color .2s;
}

.Hero-module__JgYmMq__searchInput.Hero-module__JgYmMq__focused svg:first-child {
  color: var(--secondary);
}

.Hero-module__JgYmMq__searchInput input {
  color: var(--gray-800);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.Hero-module__JgYmMq__searchInput input::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

.Hero-module__JgYmMq__chevron {
  color: var(--gray-400);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), color .2s;
}

.Hero-module__JgYmMq__searchInput.Hero-module__JgYmMq__focused .Hero-module__JgYmMq__chevron {
  color: var(--secondary);
  transform: rotate(180deg);
}

.Hero-module__JgYmMq__dropdown {
  border: 1px solid var(--gray-200);
  z-index: 100;
  transform-origin: top;
  background: #fff;
  border-radius: 16px;
  max-height: 320px;
  animation: .35s cubic-bezier(.34, 1.56, .64, 1) Hero-module__JgYmMq__dropdownOpen;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 12px 32px -4px #1017271f, 0 4px 12px #1017270d;
}

.Hero-module__JgYmMq__dropdownInner {
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
  max-height: 320px;
  padding: 8px;
  overflow-y: auto;
}

.Hero-module__JgYmMq__dropdownInner::-webkit-scrollbar {
  width: 6px;
}

.Hero-module__JgYmMq__dropdownInner::-webkit-scrollbar-track {
  background: none;
  margin: 8px 0;
}

.Hero-module__JgYmMq__dropdownInner::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}

.Hero-module__JgYmMq__dropdownInner::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

@keyframes Hero-module__JgYmMq__dropdownOpen {
  0% {
    opacity: 0;
    transform: scaleY(.9)translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: scaleY(1)translateY(0);
  }
}

.Hero-module__JgYmMq__dropdownHeader {
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
  border-radius: 16px 16px 0 0;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  display: flex;
}

.Hero-module__JgYmMq__dropdownTitle {
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 700;
}

.Hero-module__JgYmMq__dropdownCount {
  color: var(--gray-400);
  background: var(--gray-100);
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
}

.Hero-module__JgYmMq__dropdownItem {
  width: 100%;
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.Hero-module__JgYmMq__dropdownItem:hover {
  background: var(--gray-100);
}

.Hero-module__JgYmMq__dropdownItem:active {
  transform: scale(.99);
}

.Hero-module__JgYmMq__dropdownItem.Hero-module__JgYmMq__selected {
  color: var(--primary);
  background: #28a54514;
  font-weight: 600;
}

.Hero-module__JgYmMq__dropdownItemIcon {
  width: 28px;
  height: 28px;
  color: var(--gray-400);
  background: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.Hero-module__JgYmMq__dropdownItem:hover .Hero-module__JgYmMq__dropdownItemIcon {
  color: var(--secondary);
}

.Hero-module__JgYmMq__dropdownItem.Hero-module__JgYmMq__selected .Hero-module__JgYmMq__dropdownItemIcon {
  color: var(--primary);
}

.Hero-module__JgYmMq__dropdownItemText {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  display: flex;
}

.Hero-module__JgYmMq__dropdownItemName {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
}

.Hero-module__JgYmMq__dropdownItemCheck {
  opacity: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
  transform: scale(.5);
}

.Hero-module__JgYmMq__dropdownItem.Hero-module__JgYmMq__selected .Hero-module__JgYmMq__dropdownItemCheck {
  opacity: 1;
  transform: scale(1);
}

.Hero-module__JgYmMq__noResults {
  text-align: center;
  color: var(--gray-500);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 16px;
  display: flex;
}

.Hero-module__JgYmMq__noResultsIcon {
  background: var(--gray-100);
  width: 48px;
  height: 48px;
  color: var(--gray-400);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.Hero-module__JgYmMq__noResultsText {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
}

.Hero-module__JgYmMq__noResultsHint {
  color: var(--gray-400);
  margin-top: 4px;
  font-size: 12px;
}

.Hero-module__JgYmMq__inputRow {
  gap: 10px;
  display: flex;
}

.Hero-module__JgYmMq__textInput {
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 14px;
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

.Hero-module__JgYmMq__textInput:hover {
  border-color: var(--gray-300);
}

.Hero-module__JgYmMq__textInput:focus {
  border-color: var(--secondary);
  background: #fff;
  outline: none;
}

.Hero-module__JgYmMq__nextBtn {
  background: var(--secondary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.Hero-module__JgYmMq__nextBtn:hover:not(:disabled) {
  opacity: .9;
}

.Hero-module__JgYmMq__nextBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.Hero-module__JgYmMq__resetBtn {
  color: var(--gray-500);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  transition: all .25s;
  display: flex;
}

.Hero-module__JgYmMq__resetBtn:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.Hero-module__JgYmMq__resetBtn svg {
  transition: transform .3s;
}

.Hero-module__JgYmMq__resetBtn:hover svg {
  transform: rotate(-45deg);
}

.Hero-module__JgYmMq__searchBtn {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
}

.Hero-module__JgYmMq__searchBtn:hover:not(:disabled) {
  opacity: .9;
}

.Hero-module__JgYmMq__searchBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .Hero-module__JgYmMq__hero {
    border-radius: 20px;
    width: calc(100% - 24px);
    margin: 140px auto 16px;
    padding: 40px 24px;
  }

  .Hero-module__JgYmMq__title {
    font-size: 32px;
  }

  .Hero-module__JgYmMq__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .Hero-module__JgYmMq__statDivider {
    display: none;
  }

  .Hero-module__JgYmMq__stepsHeader {
    padding: 12px 14px;
  }

  .Hero-module__JgYmMq__stepItem {
    gap: 8px;
    padding: 6px 8px;
  }

  .Hero-module__JgYmMq__stepCircle {
    border-radius: 10px;
    width: 32px;
    height: 32px;
  }

  .Hero-module__JgYmMq__stepInfo {
    display: none;
  }

  .Hero-module__JgYmMq__stepLine {
    width: 16px;
    margin: 0 2px;
  }

  .Hero-module__JgYmMq__searchBox {
    padding: 16px;
  }

  .Hero-module__JgYmMq__searchInput {
    padding: 12px 14px;
  }

  .Hero-module__JgYmMq__inputWithButton {
    flex-direction: column;
  }

  .Hero-module__JgYmMq__searchBtn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .Hero-module__JgYmMq__hero {
    width: calc(100% - 16px);
    margin: 130px auto 12px;
    padding: 32px 16px;
  }

  .Hero-module__JgYmMq__title {
    font-size: 26px;
  }

  .Hero-module__JgYmMq__searchBox {
    padding: 14px 12px;
  }

  .Hero-module__JgYmMq__stepsHeader {
    padding: 10px 12px;
  }

  .Hero-module__JgYmMq__stepCircle {
    border-radius: 8px;
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .Hero-module__JgYmMq__stepLine {
    width: 12px;
  }

  .Hero-module__JgYmMq__searchInput, .Hero-module__JgYmMq__textInput {
    padding: 12px 14px;
  }

  .Hero-module__JgYmMq__searchBtn {
    padding: 10px 20px;
  }
}

/* [project]/src/components/Services/Services.module.css [app-client] (css) */
.Services-module__h5-agW__services {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 24px;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 24px auto;
  padding: 56px;
}

.Services-module__h5-agW__container {
  max-width: 100%;
}

.Services-module__h5-agW__header {
  text-align: left;
  margin-bottom: 48px;
}

.Services-module__h5-agW__badge {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.Services-module__h5-agW__title {
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 700;
}

.Services-module__h5-agW__highlight {
  color: var(--primary);
}

.Services-module__h5-agW__subtitle {
  color: var(--gray-500);
  max-width: 500px;
  font-size: 15px;
  line-height: 1.6;
}

.Services-module__h5-agW__divider {
  background: var(--gray-200);
  width: 100%;
  height: 1px;
  margin-top: 32px;
}

.Services-module__h5-agW__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.Services-module__h5-agW__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  opacity: 0;
  border-radius: 14px;
  padding: 28px;
  transition: all .2s;
  animation: .5s forwards Services-module__h5-agW__fadeInUp;
}

@keyframes Services-module__h5-agW__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Services-module__h5-agW__card:hover {
  border-color: var(--gray-300);
  background: #fff;
}

.Services-module__h5-agW__card.Services-module__h5-agW__primary:hover {
  border-color: var(--primary);
}

.Services-module__h5-agW__card.Services-module__h5-agW__primary:hover .Services-module__h5-agW__cardTitle {
  color: var(--primary);
}

.Services-module__h5-agW__card.Services-module__h5-agW__secondary:hover {
  border-color: var(--secondary);
}

.Services-module__h5-agW__card.Services-module__h5-agW__secondary:hover .Services-module__h5-agW__cardTitle {
  color: var(--secondary);
}

.Services-module__h5-agW__iconWrapper {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  transition: all .2s;
  display: flex;
}

.Services-module__h5-agW__card.Services-module__h5-agW__primary .Services-module__h5-agW__iconWrapper {
  color: var(--primary);
  background: #28a5451a;
}

.Services-module__h5-agW__card.Services-module__h5-agW__secondary .Services-module__h5-agW__iconWrapper {
  color: var(--secondary);
  background: #1017271a;
}

.Services-module__h5-agW__cardTitle {
  color: var(--gray-800);
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
  transition: color .2s;
}

.Services-module__h5-agW__cardDescription {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .Services-module__h5-agW__services {
    width: calc(100% - 24px);
    padding: 40px 24px;
  }

  .Services-module__h5-agW__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .Services-module__h5-agW__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .Services-module__h5-agW__services {
    border-radius: 20px;
    width: calc(100% - 16px);
    padding: 32px 16px;
  }

  .Services-module__h5-agW__header {
    margin-bottom: 32px;
  }

  .Services-module__h5-agW__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .Services-module__h5-agW__title {
    font-size: 24px;
  }

  .Services-module__h5-agW__card {
    padding: 24px;
  }

  .Services-module__h5-agW__iconWrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .Services-module__h5-agW__cardTitle {
    font-size: 16px;
  }

  .Services-module__h5-agW__cardDescription {
    font-size: 13px;
  }
}

/* [project]/src/components/Modules/Modules.module.css [app-client] (css) */
.Modules-module__CDaIsW__modules {
  background: linear-gradient(135deg, #101727 0%, #151e30 50%, #0c1120 100%);
  border-radius: 24px;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 24px auto;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.Modules-module__CDaIsW__modules:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(80% 50% at 50% -20%, #28a5451a 0%, #0000 50%), radial-gradient(60% 40% at 80% 60%, #10172726 0%, #0000 50%);
  position: absolute;
  inset: 0;
}

.Modules-module__CDaIsW__container {
  z-index: 1;
  max-width: 100%;
  position: relative;
}

.Modules-module__CDaIsW__header {
  text-align: left;
  margin-bottom: 48px;
}

.Modules-module__CDaIsW__badge {
  color: #fffc;
  background: #ffffff1a;
  border: 1px solid #ffffff26;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.Modules-module__CDaIsW__title {
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 700;
}

.Modules-module__CDaIsW__highlight {
  color: var(--primary);
}

.Modules-module__CDaIsW__subtitle {
  color: #fff9;
  max-width: 500px;
  font-size: 15px;
  line-height: 1.6;
}

.Modules-module__CDaIsW__divider {
  background: #ffffff1a;
  width: 100%;
  height: 1px;
  margin-top: 32px;
}

.Modules-module__CDaIsW__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
}

.Modules-module__CDaIsW__card {
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.Modules-module__CDaIsW__card:hover {
  background: #ffffff14;
  border-color: #fff3;
}

.Modules-module__CDaIsW__card:hover .Modules-module__CDaIsW__iconWrapper {
  background: var(--primary);
  color: #fff;
}

.Modules-module__CDaIsW__iconWrapper {
  color: #ffffffb3;
  background: #ffffff1a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  transition: all .2s;
  display: flex;
}

.Modules-module__CDaIsW__cardTitle {
  color: #fff;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
}

.Modules-module__CDaIsW__cardDescription {
  color: #fff9;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .Modules-module__CDaIsW__modules {
    width: calc(100% - 24px);
    padding: 40px 24px;
  }

  .Modules-module__CDaIsW__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .Modules-module__CDaIsW__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .Modules-module__CDaIsW__modules {
    border-radius: 20px;
    width: calc(100% - 16px);
    padding: 32px 16px;
  }

  .Modules-module__CDaIsW__header {
    margin-bottom: 32px;
  }

  .Modules-module__CDaIsW__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .Modules-module__CDaIsW__card {
    padding: 22px;
  }

  .Modules-module__CDaIsW__iconWrapper {
    width: 44px;
    height: 44px;
  }

  .Modules-module__CDaIsW__cardTitle {
    font-size: 16px;
  }

  .Modules-module__CDaIsW__cardDescription {
    font-size: 13px;
  }
}

/* [project]/src/components/News/News.module.css [app-client] (css) */
.News-module__3l9Lla__news {
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 24px auto;
}

.News-module__3l9Lla__mainSection {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 24px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.News-module__3l9Lla__mainSection:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #28a54508 0%, #0000 70%);
  width: 400px;
  height: 400px;
  position: absolute;
  top: 0;
  right: 0;
}

.News-module__3l9Lla__container {
  z-index: 1;
  position: relative;
}

.News-module__3l9Lla__header {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  display: flex;
}

.News-module__3l9Lla__badge {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.News-module__3l9Lla__badgeIcon {
  color: var(--primary);
}

.News-module__3l9Lla__title {
  color: var(--gray-900);
  letter-spacing: -.02em;
  font-size: 40px;
  font-weight: 700;
}

.News-module__3l9Lla__highlight {
  color: var(--primary);
}

.News-module__3l9Lla__subtitle {
  color: var(--gray-500);
  max-width: 500px;
  font-size: 15px;
  line-height: 1.6;
}

.News-module__3l9Lla__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.News-module__3l9Lla__card {
  border: 1px solid var(--gray-200);
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  transition: all .3s;
  display: block;
  overflow: hidden;
}

.News-module__3l9Lla__card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.News-module__3l9Lla__card:hover .News-module__3l9Lla__cardTitle {
  color: var(--primary);
}

.News-module__3l9Lla__cardImagePlaceholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  width: 100%;
  height: 200px;
  color: var(--gray-400);
  justify-content: center;
  align-items: center;
  display: flex;
}

.News-module__3l9Lla__cardContent {
  padding: 24px;
}

.News-module__3l9Lla__cardMeta {
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  display: flex;
}

.News-module__3l9Lla__cardCategory {
  color: var(--primary);
  background: #28a5451a;
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.News-module__3l9Lla__breakingTag {
  color: #ef4444;
  background: #ef444414;
  border: 1px solid #ef444426;
  border-radius: 100px;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.News-module__3l9Lla__breakingTagDot {
  background: #ef4444;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s ease-in-out infinite News-module__3l9Lla__pulse;
}

@keyframes News-module__3l9Lla__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.News-module__3l9Lla__cardTitle {
  color: var(--gray-900);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  transition: color .2s;
  display: -webkit-box;
  overflow: hidden;
}

.News-module__3l9Lla__cardExcerpt {
  color: var(--gray-500);
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.News-module__3l9Lla__cardFooter {
  border-top: 1px solid var(--gray-200);
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  display: flex;
}

.News-module__3l9Lla__cardDate {
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
}

.News-module__3l9Lla__cardLink {
  color: var(--primary);
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: gap .2s;
  display: flex;
}

.News-module__3l9Lla__card:hover .News-module__3l9Lla__cardLink {
  gap: 10px;
}

.News-module__3l9Lla__viewAllWrapper {
  text-align: center;
  margin-top: 40px;
}

.News-module__3l9Lla__viewAllBtn {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.News-module__3l9Lla__viewAllBtn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.News-module__3l9Lla__loading {
  color: var(--gray-400);
  justify-content: center;
  align-items: center;
  padding: 64px;
  display: flex;
}

@media (max-width: 968px) {
  .News-module__3l9Lla__news {
    width: calc(100% - 24px);
  }

  .News-module__3l9Lla__mainSection {
    padding: 40px 24px;
  }

  .News-module__3l9Lla__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .News-module__3l9Lla__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .News-module__3l9Lla__news {
    width: calc(100% - 16px);
  }

  .News-module__3l9Lla__mainSection {
    border-radius: 20px;
    padding: 32px 16px;
  }

  .News-module__3l9Lla__header {
    margin-bottom: 24px;
  }

  .News-module__3l9Lla__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .News-module__3l9Lla__title {
    font-size: 24px;
  }

  .News-module__3l9Lla__cardImagePlaceholder {
    height: 180px;
  }

  .News-module__3l9Lla__cardContent {
    padding: 20px;
  }

  .News-module__3l9Lla__cardTitle {
    font-size: 16px;
  }

  .News-module__3l9Lla__viewAllBtn {
    justify-content: center;
    width: 100%;
  }
}

/* [project]/src/components/HowItWorks/HowItWorks.module.css [app-client] (css) */
.HowItWorks-module__u8qSLG__howItWorks {
  background: linear-gradient(135deg, #101727 0%, #151e30 50%, #0c1120 100%);
  border-radius: 24px;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 24px auto;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.HowItWorks-module__u8qSLG__howItWorks:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(80% 50% at 50% -20%, #28a5451a 0%, #0000 50%), radial-gradient(60% 40% at 80% 60%, #10172726 0%, #0000 50%);
  position: absolute;
  inset: 0;
}

.HowItWorks-module__u8qSLG__container {
  z-index: 1;
  max-width: 100%;
  position: relative;
}

.HowItWorks-module__u8qSLG__header {
  text-align: left;
  margin-bottom: 48px;
}

.HowItWorks-module__u8qSLG__badge {
  color: #fffc;
  background: #ffffff1a;
  border: 1px solid #ffffff26;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.HowItWorks-module__u8qSLG__title {
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 700;
}

.HowItWorks-module__u8qSLG__highlight {
  color: var(--primary);
}

.HowItWorks-module__u8qSLG__subtitle {
  color: #fff9;
  max-width: 500px;
  font-size: 15px;
  line-height: 1.6;
}

.HowItWorks-module__u8qSLG__divider {
  background: #ffffff1a;
  width: 100%;
  height: 1px;
  margin-top: 32px;
}

.HowItWorks-module__u8qSLG__steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
}

.HowItWorks-module__u8qSLG__step {
  text-align: center;
  opacity: 0;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 14px;
  padding: 28px 20px;
  transition: all .2s;
  animation: .5s forwards HowItWorks-module__u8qSLG__fadeInUp;
  position: relative;
}

@keyframes HowItWorks-module__u8qSLG__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.HowItWorks-module__u8qSLG__step:hover {
  background: #ffffff14;
  border-color: #fff3;
}

.HowItWorks-module__u8qSLG__step:hover .HowItWorks-module__u8qSLG__stepIcon {
  background: var(--primary);
  color: #fff;
}

.HowItWorks-module__u8qSLG__stepNumber {
  color: #ffffff26;
  pointer-events: none;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 20px;
}

.HowItWorks-module__u8qSLG__stepIcon {
  color: #ffffffb3;
  background: #ffffff1a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  transition: all .2s;
  display: flex;
}

.HowItWorks-module__u8qSLG__stepTitle {
  color: #fff;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.HowItWorks-module__u8qSLG__stepDescription {
  color: #fff9;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .HowItWorks-module__u8qSLG__howItWorks {
    width: calc(100% - 24px);
    padding: 40px 24px;
  }

  .HowItWorks-module__u8qSLG__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .HowItWorks-module__u8qSLG__connector {
    display: none;
  }

  .HowItWorks-module__u8qSLG__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .HowItWorks-module__u8qSLG__howItWorks {
    border-radius: 20px;
    width: calc(100% - 16px);
    padding: 32px 16px;
  }

  .HowItWorks-module__u8qSLG__header {
    margin-bottom: 32px;
  }

  .HowItWorks-module__u8qSLG__steps {
    grid-template-columns: 1fr;
  }

  .HowItWorks-module__u8qSLG__title {
    font-size: 24px;
  }

  .HowItWorks-module__u8qSLG__step {
    padding: 24px 16px;
  }

  .HowItWorks-module__u8qSLG__stepIcon {
    width: 40px;
    height: 40px;
  }
}

/* [project]/src/components/Consultants/Consultants.module.css [app-client] (css) */
.Consultants-module__e5IcIW__consultants {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 24px;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 24px auto;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.Consultants-module__e5IcIW__bgOverlay {
  z-index: 0;
  background: linear-gradient(to right, #fff 0% 20%, #ffffffe6 35%, #ffffffb3 50%, #ffffff80 65%, #ffffff59 80%, #fff3 100%);
  position: absolute;
  inset: 0;
}

.Consultants-module__e5IcIW__container {
  z-index: 1;
  position: relative;
}

.Consultants-module__e5IcIW__content {
  max-width: 100%;
}

.Consultants-module__e5IcIW__badge {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.Consultants-module__e5IcIW__title {
  color: #101727;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.Consultants-module__e5IcIW__highlight {
  color: var(--primary);
}

.Consultants-module__e5IcIW__subtitle {
  color: var(--gray-500);
  max-width: 440px;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.Consultants-module__e5IcIW__stats {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gray-200);
  background: #ffffffb3;
  border-radius: 14px;
  align-items: center;
  gap: 48px;
  width: fit-content;
  margin-bottom: 32px;
  padding: 24px 32px;
  display: flex;
}

.Consultants-module__e5IcIW__statItem {
  align-items: center;
  display: flex;
}

.Consultants-module__e5IcIW__stat {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.Consultants-module__e5IcIW__statValue {
  color: #101727;
  font-size: 28px;
  font-weight: 600;
}

.Consultants-module__e5IcIW__statLabel {
  color: var(--gray-500);
  font-size: 12px;
}

.Consultants-module__e5IcIW__statDivider {
  background: #10172726;
  width: 1px;
  height: 40px;
}

.Consultants-module__e5IcIW__cta {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.Consultants-module__e5IcIW__cta:hover {
  opacity: .9;
}

.Consultants-module__e5IcIW__imageWrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.Consultants-module__e5IcIW__image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  height: auto;
}

.Consultants-module__e5IcIW__illustrationPlaceholder {
  aspect-ratio: 4 / 3;
  background: var(--gray-50, #f8f9fa);
  border: 1px solid var(--gray-100, #f1f3f5);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  display: flex;
}

@media (max-width: 968px) {
  .Consultants-module__e5IcIW__consultants {
    width: calc(100% - 24px);
    padding: 40px 24px;
  }

  .Consultants-module__e5IcIW__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .Consultants-module__e5IcIW__title {
    font-size: 32px;
  }

  .Consultants-module__e5IcIW__imageWrapper {
    order: -1;
  }

  .Consultants-module__e5IcIW__image {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .Consultants-module__e5IcIW__consultants {
    border-radius: 20px;
    width: calc(100% - 16px);
    padding: 32px 16px;
  }

  .Consultants-module__e5IcIW__title {
    font-size: 28px;
  }

  .Consultants-module__e5IcIW__stats {
    gap: 24px;
  }

  .Consultants-module__e5IcIW__statValue {
    font-size: 28px;
  }
}

/* [project]/src/components/Blog/Blog.module.css [app-client] (css) */
.Blog-module__TPTzJG__blog {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 24px;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 24px auto;
  padding: 56px;
}

.Blog-module__TPTzJG__container {
  max-width: 100%;
}

.Blog-module__TPTzJG__header {
  text-align: left;
  margin-bottom: 48px;
}

.Blog-module__TPTzJG__badge {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.Blog-module__TPTzJG__title {
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 700;
}

.Blog-module__TPTzJG__highlight {
  color: var(--primary);
}

.Blog-module__TPTzJG__subtitle {
  color: var(--gray-500);
  max-width: 500px;
  font-size: 15px;
  line-height: 1.6;
}

.Blog-module__TPTzJG__divider {
  background: var(--gray-200);
  width: 100%;
  height: 1px;
  margin-top: 32px;
}

.Blog-module__TPTzJG__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.Blog-module__TPTzJG__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  border-radius: 16px;
  text-decoration: none;
  transition: all .3s;
  display: block;
  overflow: hidden;
}

.Blog-module__TPTzJG__card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.Blog-module__TPTzJG__cardImage {
  object-fit: cover;
  background: var(--gray-100);
  width: 100%;
  height: 200px;
}

.Blog-module__TPTzJG__cardImagePlaceholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  width: 100%;
  height: 200px;
  color: var(--gray-400);
  justify-content: center;
  align-items: center;
  display: flex;
}

.Blog-module__TPTzJG__cardContent {
  padding: 24px;
}

.Blog-module__TPTzJG__cardMeta {
  color: var(--gray-500);
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  display: flex;
}

.Blog-module__TPTzJG__cardCategory {
  color: var(--primary);
  background: #28a5451a;
  border-radius: 100px;
  padding: 4px 10px;
  font-weight: 600;
}

.Blog-module__TPTzJG__cardTitle {
  color: var(--gray-900);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.Blog-module__TPTzJG__card:hover .Blog-module__TPTzJG__cardTitle {
  color: var(--primary);
}

.Blog-module__TPTzJG__cardExcerpt {
  color: var(--gray-500);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.Blog-module__TPTzJG__cardFooter {
  border-top: 1px solid var(--gray-200);
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  display: flex;
}

.Blog-module__TPTzJG__cardAuthor {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 500;
}

.Blog-module__TPTzJG__cardReadTime {
  color: var(--gray-400);
  align-items: center;
  gap: 4px;
  font-size: 12px;
  display: flex;
}

.Blog-module__TPTzJG__emptyState {
  text-align: center;
  color: var(--gray-500);
  padding: 60px 20px;
}

.Blog-module__TPTzJG__emptyState h3 {
  color: var(--gray-700);
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.Blog-module__TPTzJG__viewAllBtn {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.Blog-module__TPTzJG__viewAllBtn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #28a5454d;
}

@media (max-width: 968px) {
  .Blog-module__TPTzJG__blog {
    width: calc(100% - 24px);
    padding: 40px 24px;
  }

  .Blog-module__TPTzJG__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .Blog-module__TPTzJG__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .Blog-module__TPTzJG__blog {
    border-radius: 20px;
    width: calc(100% - 16px);
    padding: 32px 16px;
  }

  .Blog-module__TPTzJG__header {
    margin-bottom: 32px;
  }

  .Blog-module__TPTzJG__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .Blog-module__TPTzJG__title {
    font-size: 24px;
  }

  .Blog-module__TPTzJG__cardImage, .Blog-module__TPTzJG__cardImagePlaceholder {
    height: 180px;
  }

  .Blog-module__TPTzJG__cardContent {
    padding: 20px;
  }

  .Blog-module__TPTzJG__cardTitle {
    font-size: 16px;
  }
}

/* [project]/src/components/Footer/Footer.module.css [app-client] (css) */
.Footer-module__Grjkva__footerWrapper {
  width: 100%;
  margin-top: 48px;
}

.Footer-module__Grjkva__ctaSection {
  background: var(--primary);
  z-index: 2;
  border-radius: 20px;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 0 auto -20px;
  padding: 32px 48px;
  position: relative;
}

.Footer-module__Grjkva__ctaInner {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  display: flex;
}

.Footer-module__Grjkva__ctaContent {
  max-width: 500px;
}

.Footer-module__Grjkva__ctaTitle {
  color: #fff;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.Footer-module__Grjkva__ctaHighlight {
  font-weight: 800;
}

.Footer-module__Grjkva__ctaSubtitle {
  color: #ffffffd9;
  font-size: 14px;
  line-height: 1.5;
}

.Footer-module__Grjkva__ctaActions {
  flex-shrink: 0;
  gap: 12px;
  display: flex;
}

.Footer-module__Grjkva__ctaPrimaryBtn {
  color: var(--primary);
  background: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.Footer-module__Grjkva__ctaPrimaryBtn:hover {
  opacity: .9;
}

.Footer-module__Grjkva__ctaSecondaryBtn {
  color: #fff;
  background: none;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

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

.Footer-module__Grjkva__footer {
  background: linear-gradient(135deg, #101727 0%, #151e30 50%, #0c1120 100%);
  width: 100%;
  padding-top: 32px;
  position: relative;
}

.Footer-module__Grjkva__footer:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(80% 50% at 50% -20%, #28a5451a 0%, #0000 50%), radial-gradient(60% 40% at 80% 60%, #10172726 0%, #0000 50%);
  position: absolute;
  inset: 0;
}

.Footer-module__Grjkva__container {
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 80px 40px;
  position: relative;
}

.Footer-module__Grjkva__top {
  border-bottom: 1px solid #ffffff1a;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 32px;
  display: grid;
}

.Footer-module__Grjkva__logo {
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.Footer-module__Grjkva__logo img {
  object-fit: contain;
  height: auto;
}

.Footer-module__Grjkva__tagline {
  color: #fff9;
  max-width: 280px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.Footer-module__Grjkva__social {
  gap: 10px;
  display: flex;
}

.Footer-module__Grjkva__social a {
  color: #fff9;
  background: #ffffff14;
  border: 1px solid #ffffff1a;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  transition: all .2s;
  display: flex;
}

.Footer-module__Grjkva__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.Footer-module__Grjkva__links {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  display: grid;
}

.Footer-module__Grjkva__linkGroup h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
}

.Footer-module__Grjkva__linkGroup a, .Footer-module__Grjkva__linkGroup p {
  color: #ffffff80;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color .2s;
  display: block;
}

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

.Footer-module__Grjkva__bottom {
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  display: flex;
}

.Footer-module__Grjkva__bottom p {
  color: #fff6;
  font-size: 13px;
}

.Footer-module__Grjkva__legal {
  gap: 20px;
  display: flex;
}

.Footer-module__Grjkva__legal a {
  color: #fff6;
  font-size: 13px;
  transition: color .2s;
}

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

@media (max-width: 968px) {
  .Footer-module__Grjkva__ctaSection {
    width: calc(100% - 24px);
    padding: 40px 24px;
  }

  .Footer-module__Grjkva__ctaInner {
    text-align: center;
    flex-direction: column;
  }

  .Footer-module__Grjkva__ctaContent {
    max-width: 100%;
  }

  .Footer-module__Grjkva__container {
    padding: 40px 24px;
  }

  .Footer-module__Grjkva__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .Footer-module__Grjkva__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .Footer-module__Grjkva__ctaSection {
    border-radius: 20px 20px 0 0;
    width: calc(100% - 16px);
    padding: 32px 16px;
  }

  .Footer-module__Grjkva__ctaTitle {
    font-size: 28px;
  }

  .Footer-module__Grjkva__ctaActions {
    flex-direction: column;
    width: 100%;
  }

  .Footer-module__Grjkva__ctaPrimaryBtn, .Footer-module__Grjkva__ctaSecondaryBtn {
    text-align: center;
    width: 100%;
  }

  .Footer-module__Grjkva__container {
    padding: 32px 16px;
  }

  .Footer-module__Grjkva__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .Footer-module__Grjkva__bottom {
    text-align: center;
    flex-direction: column;
    gap: 16px;
  }

  .Footer-module__Grjkva__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

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