@charset "UTF-8";
.badge {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: context-menu;
}
.badge:hover {
  transform: translateY(-1px);
  box-shadow: 0px 1px 3px 0px rgba(10, 13, 18, 0.06), 0px 1px 2px 0px rgba(10, 13, 18, 0.1);
}
.badge--grey {
  background-color: #FAFAFA;
  color: #414651;
  border-color: #E9EAEB;
}
.badge--grey:hover {
  background-color: #F5F5F5;
  border-color: #D5D7DA;
}
.badge--purple {
  background-color: #F4F3FF;
  color: #5925DC;
  border-color: #D9D6FE;
}
.badge--purple:hover {
  background-color: #EBE9FE;
  border-color: #BDB4FE;
}
.badge--red {
  background-color: #FEF3F2;
  color: #B42318;
  border-color: #FECDCA;
}
.badge--red:hover {
  background-color: #FEE4E2;
  border-color: #FDA29B;
}
.badge--yellow {
  background-color: #FEFBE8;
  color: #854A0E;
  border-color: #FEEE95;
}
.badge--yellow:hover {
  background-color: #FEF7C3;
  border-color: #FDE272;
}
.badge--green {
  background-color: #EDFCF2;
  color: #0F6C3D;
  border-color: #AAF0C4;
}
.badge--green:hover {
  background-color: #D3F8DF;
  border-color: #73E2A3;
}
.badge--light {
  background-color: #FFFFFF;
  color: #535862;
  border-color: #E9EAEB;
}
.badge--light:hover {
  background-color: #FAFAFA;
  border-color: #D5D7DA;
}
.badge--blue {
  background-color: #EFF8FF;
  color: #175CD3;
  border-color: #B2DDFF;
}
.badge--blue:hover {
  background-color: #D1E9FF;
  border-color: #84CAFF;
}
.badge--dark {
  background-color: #252837;
  color: #FFFFFF;
  border-color: #414651;
}
.badge--dark:hover {
  background-color: #181D27;
  border-color: #535862;
}
.badge--violet {
  background-color: #F5F3FF;
  color: #5925DC;
  border-color: #DDD6FE;
}
.badge--violet:hover {
  background-color: #ECE9FE;
  border-color: #C3B5FD;
}
.badge--neutral {
  background-color: #F9F9FB;
  color: #4A5578;
  border-color: #DCDFEA;
}
.badge--neutral:hover {
  background-color: #EFF1F5;
  border-color: #B9C0D4;
}
.badge--pink {
  background-color: #FDF2FA;
  color: #C11574;
  border-color: #FCCEEE;
}
.badge--pink:hover {
  background-color: #FCE7F6;
  border-color: #FAA7E0;
}
.badge--orange {
  background-color: #FFF6ED;
  color: #C4320A;
  border-color: #FDDCAB;
}
.badge--orange:hover {
  background-color: #FFEAD5;
  border-color: #FEB273;
}
.badge--sm {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 12px;
}
.badge--lg {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 20px;
}
.badge--with-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  background-color: currentColor;
}
@media (max-width: 768px) {
  .badge {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    padding: 4px 10px;
  }
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.badge-group .badge {
  margin: 0;
}

.header {
  padding: 20px 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  transition: 0.2s ease;
}
.header.fixed {
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(24, 29, 39, 0.1);
}
@media (max-width: 575px) {
  .header {
    box-shadow: 0 10px 30px rgba(24, 29, 39, 0.1);
  }
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #181D27;
  text-decoration: none;
  margin-right: 20px;
}
.navbar-brand a img {
  height: 36px;
  object-fit: contain;
}
.navbar-brand .logo-icon {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.navbar-brand:hover {
  color: #181D27;
}

.nav-link {
  color: #414651 !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: #181D27 !important;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.footer {
  background: #0C0E12;
  color: #FFFFFF;
  padding: 64px 0 48px;
}
.footer .footer-main {
  margin-bottom: 48px;
}
.footer .footer-main .footer-column .footer-column-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 48px;
}
.footer .footer-main .footer-column .footer-column-link {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #94979C;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-main .footer-column .footer-column-link img {
  transition: filter 0.2s ease;
}
.footer .footer-main .footer-column .footer-column-link:hover {
  color: #ffffff;
}
.footer .footer-main .footer-column .footer-column-link:hover img {
  filter: brightness(0) invert(1);
}
.footer .footer-main .footer-brand-section .footer-brand {
  margin-bottom: 32px;
}
.footer .footer-main .footer-brand-section .footer-brand .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: 0;
}
.footer .footer-main .footer-brand-section .footer-brand .navbar-brand .footer-logo {
  height: 50px;
  object-fit: contain;
}
.footer .footer-main .footer-brand-section .footer-brand .navbar-brand .brand-text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
}
.footer .footer-main .footer-brand-section .footer-tagline {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #94979C;
  margin-bottom: 32px;
  line-height: 1.5;
}
.footer .footer-main .footer-brand-section .footer-nav .footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-main .footer-brand-section .footer-nav .footer-nav-list li .footer-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #94979C;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-main .footer-brand-section .footer-nav .footer-nav-list li .footer-link:hover {
  color: #ffffff;
}
.footer .footer-main .footer-app-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
}
.footer .footer-main .footer-app-section .app-section-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #CECFD2;
  margin-bottom: 20px;
}
.footer .footer-main .footer-app-section .app-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer .footer-main .footer-app-section .app-buttons .app-button {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer .footer-main .footer-app-section .app-buttons .app-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.footer .footer-main .footer-app-section .app-buttons .app-button .app-button-img {
  width: 135px;
  height: 40px;
}
.footer .footer-bottom {
  border-top: 1px solid #22262F;
  padding-top: 32px;
}
.footer .footer-bottom .copyright {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #94979C;
  margin: 0;
}
.footer .footer-bottom .social-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.footer .footer-bottom .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #61656c;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer .footer-bottom .social-links .social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
.footer .footer-bottom .social-links .social-link svg {
  width: 24px;
  height: 24px;
}
.footer.style-2 {
  background-color: #FFFFFF;
}
.footer.style-2 .footer-main .footer-brand-section .footer-tagline {
  color: #535862;
}
.footer.style-2 .footer-main .footer-brand-section .footer-nav .footer-nav-list li .footer-link {
  color: #414651;
}
.footer.style-2 .footer-main .footer-brand-section .footer-nav .footer-nav-list li .footer-link:hover {
  color: #181D27;
}
.footer.style-2 .footer-main .footer-app-section .app-section-title {
  color: #535862;
}
.footer.style-2 .footer-bottom {
  border-color: #E9EAEB;
}
.footer.style-2 .footer-bottom .copyright {
  color: #717680;
}
.footer.style-2 .footer-bottom .social-links .social-link:hover {
  color: #181D27;
}

@media (max-width: 992px) {
  .footer {
    padding: 50px 0 24px;
  }
  .footer .footer-main {
    margin-bottom: 40px;
  }
  .footer .footer-main .footer-brand-section {
    margin-bottom: 40px;
    text-align: center;
  }
  .footer .footer-main .footer-brand-section .footer-nav .footer-nav-list {
    justify-content: center;
    gap: 24px;
  }
  .footer .footer-main .footer-brand-section .footer-brand .navbar-brand {
    justify-content: center;
  }
  .footer .footer-main .footer-column {
    text-align: center;
  }
  .footer .footer-main .footer-app-section {
    text-align: center;
  }
  .footer .footer-main .footer-app-section .app-buttons {
    align-items: center;
  }
  .footer .footer-bottom .social-links {
    justify-content: center;
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer .footer-main .footer-brand-section .footer-nav .footer-nav-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer .footer-main .footer-app-section .app-buttons .app-button .app-button-img {
    width: 120px;
    height: 36px;
  }
  .footer .footer-bottom {
    text-align: center;
  }
  .footer .footer-bottom .copyright {
    margin-bottom: 20px;
  }
  .footer .footer-bottom .social-links {
    justify-content: center;
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .footer .footer-main .footer-column .footer-column-title {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .footer .footer-main .footer-brand-section .footer-brand {
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 32px 0 16px;
  }
  .footer .footer-main {
    margin-bottom: 32px;
  }
  .footer .footer-main .footer-brand-section .footer-brand .navbar-brand {
    justify-content: center;
  }
  .footer .footer-main .footer-brand-section .footer-brand .navbar-brand .brand-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }
  .footer .footer-main .footer-brand-section .footer-tagline {
    text-align: center;
  }
  .footer .footer-bottom {
    padding-top: 24px;
  }
  .footer .footer-bottom .social-links {
    gap: 12px;
  }
  .footer .footer-bottom .social-links .social-link {
    width: 36px;
    height: 36px;
  }
  .footer .footer-bottom .social-links .social-link svg {
    width: 18px;
    height: 18px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.new-footer-container .footer-brand-section {
  animation: fadeInUp 0.6s ease-out;
}
.new-footer-container .footer-app-section {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.new-footer-container .footer-bottom {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

@media (prefers-reduced-motion: reduce) {
  .new-footer-container * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .new-footer-container .footer {
    border-top: 2px solid #ffffff;
  }
  .new-footer-container .footer-bottom {
    border-top-width: 2px !important;
  }
  .new-footer-container .social-link {
    border: 1px solid #9ca3af;
    border-radius: 4px;
  }
}
.new-footer-container .footer-link:focus,
.new-footer-container .app-button:focus,
.new-footer-container .social-link:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #181D27;
  background-color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

.btn-primary {
  background: #fa5d64;
  color: #FFFFFF;
  border: 2px solid #fa5d64;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  justify-content: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.6px;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.102), 0 1px 2px rgba(10, 13, 18, 0.05);
  position: relative;
}
.btn-primary .icon {
  opacity: 0.5;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: #fa5d64;
  color: #FFFFFF;
  transform: translateY(-1px);
  border-color: #fa5d64;
}
.btn-primary:hover .icon {
  opacity: 1;
}
.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.2);
  outline: none;
}
.btn-primary:active {
  color: #FFFFFF !important;
  background-color: #fa5d64 !important;
  border-color: #fa5d64 !important;
}

.btn-secondary {
  background: #FFFFFF;
  color: #414651;
  border: 1px solid #D5D7DA;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.6px;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.502), 0 1px 2px rgba(10, 13, 18, 0.15);
  position: relative;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  /* Border width */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1215686275), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn-secondary .icon {
  opacity: 0.5;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  background: #F3F4F6;
  color: #181D27;
  transform: translateY(-1px);
  border-color: #E9D7FE;
}
.btn-secondary:hover .icon {
  opacity: 1;
}
.btn-secondary:active {
  color: #414651 !important;
  background-color: #FFFFFF !important;
  border-color: var(--bs-btn-active-border-color);
}

.btn-link {
  color: #414651;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.btn-link:hover {
  color: #181D27;
}

.btn-outline {
  background: transparent;
  color: #414651;
  border-color: #D5D7DA;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.6px;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.502), 0 1px 2px rgba(10, 13, 18, 0.15);
}
.btn-outline:hover {
  background: #FFFFFF;
  border-color: #E9D7FE;
  color: #181D27;
  transform: translateY(-2px);
}

.bg-gray {
  background: #FAFAFA;
}

.display_2xl {
  font-size: 72px;
  line-height: 90px;
  font-weight: 400;
}

.display_xl {
  font-size: 60px;
  line-height: 72px;
  font-weight: 400;
}

.display_lg {
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
}

.display_md {
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
}

.display_sm {
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
}

.display_xs {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

.text_xl {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.text_lg {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.text_md {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.text_sm {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.text_xs {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-row {
  display: flex;
  align-items: center;
}

.mt-64 {
  margin-top: 64px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mx-64 {
  margin-inline: 64px;
}

.mx-32 {
  margin-inline: 32px;
}

.mx-16 {
  margin-inline: 16px;
}

.mx-8 {
  margin-inline: 8px;
}

.my-64 {
  margin-block: 64px;
}

.my-32 {
  margin-block: 32px;
}

.my-16 {
  margin-block: 16px;
}

.my-8 {
  margin-block: 8px;
}

.dashboard-header {
  background: #FFFFFF;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.dashboard-header .header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dashboard-header .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dashboard-header .breadcrumb-nav .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #414651;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 6px;
}
.dashboard-header .breadcrumb-nav .breadcrumb-item span {
  padding: 4px 8px;
}
.dashboard-header .breadcrumb-nav .breadcrumb-item.active {
  background-color: #FAFAFA;
}
.dashboard-header .breadcrumb-nav .breadcrumb-item .breadcrumb-avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.dashboard-header .breadcrumb-nav .breadcrumb-separator {
  color: #717680;
}
.dashboard-header .breadcrumb-nav .breadcrumb-separator img {
  width: 16px;
  height: 16px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  padding: 12px;
  position: relative;
}
.user-profile:hover .user-name {
  color: #181D27;
}
.user-profile .user-dropdown {
  position: relative;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  padding: 6px;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAFAFA;
  cursor: pointer;
}
.user-profile .dropdown-menu {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.user-profile .dropdown-menu a {
  text-decoration: none;
}
.user-profile .menu {
  display: flex;
  flex-direction: column;
  width: 266px;
  align-items: flex-start;
  background-color: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.0784313725);
  box-shadow: var(--shadows-shadow-lg);
}
.user-profile .menu-items-wrapper {
  background-color: #ffffff;
  border-radius: 12px 12px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.user-profile .menu-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 6px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.user-profile .content-wrapper {
  display: flex;
  align-items: center;
  padding: 0px 6px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border: none;
}
.user-profile .content-wrapper button {
  border: none;
}
.user-profile .content-3 {
  align-items: center;
  gap: 12px;
  padding: 8px;
  flex: 1;
  flex-grow: 1;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  position: relative;
  border: none;
}
.user-profile .text-3 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: var(--text-sm-semibold-font-family);
  font-weight: var(--text-sm-semibold-font-weight);
  color: #414651;
  font-size: var(--text-sm-semibold-font-size);
  letter-spacing: var(--text-sm-semibold-letter-spacing);
  line-height: var(--text-sm-semibold-line-height);
  font-style: var(--text-sm-semibold-font-style);
}
.user-profile .shortcut-wrapper {
  display: inline-flex;
  align-items: flex-start;
  padding: 1px 4px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 4px;
  border: 1px solid;
  border-color: #e9e9eb;
}
.user-profile .shortcut {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--text-xs-medium-font-family);
  font-weight: var(--text-xs-medium-font-weight);
  color: #535861;
  font-size: var(--text-xs-medium-font-size);
  letter-spacing: var(--text-xs-medium-letter-spacing);
  line-height: var(--text-xs-medium-line-height);
  white-space: nowrap;
  font-style: var(--text-xs-medium-font-style);
}
.user-profile .content-4 {
  align-items: center;
  gap: 12px;
  padding: 8px;
  flex: 1;
  flex-grow: 1;
  background-color: #fafafa;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  position: relative;
}
.user-profile .text-4 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: var(--text-sm-semibold-font-family);
  font-weight: var(--text-sm-semibold-font-weight);
  color: #252b37;
  font-size: var(--text-sm-semibold-font-size);
  letter-spacing: var(--text-sm-semibold-letter-spacing);
  line-height: var(--text-sm-semibold-line-height);
  font-style: var(--text-sm-semibold-font-style);
}
.user-profile .menu-items-2 {
  gap: 2px;
  padding: 6px 0px;
  border-top-width: 1px;
  border-top-style: solid;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-color: #e9e9eb;
}
.user-profile .menu-items-2 ul {
  padding: 0;
  width: 100%;
}
.user-profile .div-wrapper {
  display: flex;
  align-items: flex-start;
  padding: 6px 12px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.user-profile .text-5 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: var(--text-xs-semibold-font-family);
  font-weight: var(--text-xs-semibold-font-weight);
  color: #535861;
  font-size: var(--text-xs-semibold-font-size);
  letter-spacing: var(--text-xs-semibold-letter-spacing);
  line-height: var(--text-xs-semibold-line-height);
  font-style: var(--text-xs-semibold-font-style);
}
.user-profile .content-5 {
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  flex: 1;
  flex-grow: 1;
  background-color: #fafafa;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  position: relative;
}
.user-profile .checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  left: 228px;
}
.user-profile .checkbox-base {
  position: relative;
  width: 16px;
  height: 16px;
  background-color: #7e56d8;
  border-radius: 9999px;
  overflow: hidden;
}
.user-profile .check {
  position: relative;
  width: 6px;
  height: 6px;
  top: 5px;
  left: 5px;
  background-color: #ffffff;
  border-radius: 9999px;
}
.user-profile .content-6 {
  align-items: flex-start;
  gap: 12px;
  padding: 6px 8px;
  flex: 1;
  flex-grow: 1;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  position: relative;
}
.user-profile .avatar-5 {
  width: 40px;
  height: 40px;
  border: 1px solid;
  background: url(https://c.animaapp.com/md30rg73qXGKHQ/img/avatar-21.png) 50% 50%/cover, linear-gradient(0deg, rgb(224, 224, 224) 0%, rgb(224, 224, 224) 100%);
  position: relative;
  border-radius: 9999px;
  border-color: rgba(0, 0, 0, 0.0784313725);
  background-color: var(--avatar-user-squaresienna-hewitt-neutral-background);
}
.user-profile .checkbox-base-2 {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  border: 1px solid;
  border-color: #d5d6d9;
}
.user-profile .menu-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 8px 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.user-profile .buttons-button-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid;
  border-color: #d5d6d9;
  box-shadow: var(--shadows-shadow-xs-skeuomorphic);
}
.user-profile .text-padding {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 2px;
  position: relative;
  flex: 0 0 auto;
}
.user-profile .text-6 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--text-sm-semibold-font-family);
  font-weight: var(--text-sm-semibold-font-weight);
  color: #414651;
  font-size: var(--text-sm-semibold-font-size);
  letter-spacing: var(--text-sm-semibold-letter-spacing);
  line-height: var(--text-sm-semibold-line-height);
  white-space: nowrap;
  font-style: var(--text-sm-semibold-font-style);
}
.user-profile .footer-items {
  gap: 2px;
  padding: 4px 0px 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #414651;
  transition: color 0.2s ease;
}

.user-email {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #717680;
}

.user-dropdown {
  color: #717680;
  font-size: 12px;
}

.sidebar-toggle {
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}
.sidebar-toggle .bar-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #414651;
  margin: 3px 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.sidebar-toggle .bar-line:nth-child(2) {
  width: 75%;
}
.sidebar-toggle.open .bar-line {
  transform: rotate(45deg) translateX(5px);
}
.sidebar-toggle.open .bar-line:nth-child(2) {
  display: none;
}
.sidebar-toggle.open .bar-line:nth-child(3) {
  transform: rotate(-45deg) translateX(5px);
}

.form-control {
  border-radius: 8px;
}
.form-control:focus {
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D5D7DA;
  border-radius: 8px !important;
  background: #FFFFFF;
  color: #181D27;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  transition: all 0.2s ease;
}
.form-input::placeholder {
  color: #717680;
}
.form-input:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}
.form-input:invalid:not(:placeholder-shown) {
  border-color: #F04438;
}

.form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  color: #181D27;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
}
.form-select:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}

.form-textarea {
  width: 100%;
  background: #FFFFFF;
  color: #181D27;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: inherit;
  min-height: 100px;
  resize: none;
  padding: 12px 14px;
  border: 1px solid #E9EAEB;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.form-textarea:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}
.form-textarea::placeholder {
  color: #717680;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #414651;
  margin-bottom: 0;
}

.required {
  color: #D92D20;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.custom-checkbox input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 11;
  cursor: pointer;
}

.checkmark {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 2px solid #d1d1d1;
  /* Light gray border */
  border-radius: 4px;
  display: inline-block;
  transition: all 0.1s ease;
  cursor: pointer;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
}

.custom-checkbox input:checked + .checkmark {
  background-color: #8e44ec;
  border-color: #8e44ec;
}

.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-flat input:checked + .checkmark::after {
  border-width: 0 0 2px 0;
  height: 0;
  width: 8px;
  border-radius: 2px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}

/* Webkit-based browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}

.auth-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero {
  padding: 150px 0 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  background-image: url("../../images/hero-bg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.hero .hero-content {
  margin-bottom: 150px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero .hero-content .hero-subtitle {
  color: #fa5d64;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero .hero-content .hero-title {
  font-size: 60px;
  line-height: 72px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #181D27;
  letter-spacing: -0.02em;
}
.hero .hero-content .hero-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 48px;
}
.hero .hero-content .hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.hero .hero-cards-container {
  position: relative;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero-cards-container .hero-card {
  width: 500px;
  height: 320px;
  border-radius: 16px;
  padding: 24px;
  color: #FFFFFF;
  position: absolute;
}
.hero .hero-cards-container .hero-card .img-fluid {
  width: 100%;
}
.hero .hero-cards-container .hero-card.card-back {
  transform: translateX(-130px) rotate(30deg);
  z-index: 1;
}
.hero .hero-cards-container .hero-card.card-front {
  transform: translateX(130px) rotate(30deg);
  z-index: 2;
}
.hero .hero-cards-container .hero-card .card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero .hero-cards-container .hero-card .card-content .card-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 0;
}
.hero .hero-cards-container .hero-card .card-content .card-chip {
  width: 32px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  margin: 16px 0;
}
.hero .hero-cards-container .hero-card .card-content .card-number {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0;
  font-family: "Courier New", monospace;
}
.hero .hero-cards-container .hero-card .card-content .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero .hero-cards-container .hero-card .card-content .card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero .hero-cards-container .hero-card .card-content .card-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.hero .hero-cards-container .hero-card .card-content .card-expiry {
  font-size: 12px;
  opacity: 0.8;
}
.hero .hero-cards-container .hero-card .card-content .card-logo {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

.section-headings {
  margin-bottom: 64px;
}
.section-headings.text-center .section-subtitle {
  background-color: #F9F5FF;
  border-radius: 9999px;
  border: 1px solid #E9D7FE;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 4px 12px;
}
.section-headings.text-center .section-subtitle.simple {
  background-color: transparent;
  border-radius: 0;
  border: none;
  color: #fa5d64;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: #fa5d64;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #181D27;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  max-width: 768px;
  margin: 0 auto;
}

.features {
  padding: 96px 0;
  background-color: #FFFFFF;
}
.features .features-grid {
  grid-template-columns: 1fr;
  gap: 0 20px;
  max-height: 634px;
  overflow-y: auto;
}

.features-grid {
  max-width: 560px;
}

.feature-card {
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.feature-card:last-child {
  margin-bottom: 0;
}
.feature-card:hover {
  transform: none;
  background-color: #F5F5F5;
}
.feature-card:hover .feature-link .img-fluid {
  transform: translateX(4px);
}

.feature-icon {
  border: 1px solid #D5D7DA;
  border-radius: 12px;
  height: 48px;
  width: 48px;
  padding: 12px;
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
}
.feature-icon img {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 12px 0;
  color: #181D27;
}

.feature-description {
  color: #414651;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.feature-link {
  color: #fa5d64;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.feature-link .img-fluid {
  transition: all 0.2s ease;
  width: 16px;
  height: 16px;
}
.feature-link:hover {
  color: #fa5d64;
}
.feature-link:hover .img-fluid {
  transform: translateX(3px);
}

.feature-image {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  justify-content: center;
}
.feature-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  height: 500px;
  background: #00b5dc;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .feature-image::before {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .feature-image::before {
    height: 300px;
  }
}
.feature-image img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  position: relative;
  object-fit: contain;
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.feature-image img.fade-out {
  opacity: 0;
  transform: translateY(0px);
}

.pricing {
  padding: 0 0 96px;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #E9EAEB;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.12), 0px 4px 6px -2px rgba(0, 0, 0, 0.08), 0px 2px 2px -1px rgba(0, 0, 0, 0.06);
}
.pricing-card .popular-tag {
  display: none;
  position: absolute;
  top: -35px;
  right: -60px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #fa5d64;
}
.pricing-card .popular-tag img {
  margin-bottom: -40px;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(24, 29, 39, 0.08);
}
.pricing-card.pricing-featured .popular-tag {
  display: block;
}

.pricing-header {
  margin-bottom: 32px;
  text-align: center;
}

.pricing-title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 16px;
}

.pricing-subtitle {
  color: #414651;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.pricing-description {
  color: #414651;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
}
.pricing-features li {
  padding: 0 0 16px;
  color: #414651;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.pricing-features li:last-child {
  padding-bottom: 0;
}
.pricing-features li::before {
  content: "✓";
  color: #079455;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-right: 12px;
  background-color: #DCFAE6;
  width: 24px;
  height: 24px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}

.additional-features {
  padding: 96px 0;
  background: #FAFAFA;
}
.additional-features .feature-item .feature-icon {
  margin: 0 auto 24px;
}
.additional-features .feature-item h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #181D27;
}
.additional-features .feature-item p {
  color: #414651;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.additional-features.style02 .feature-item {
  background-color: #FAFAFA;
}
.additional-features.style02 .feature-item .feature-icon {
  background-color: #fa5d64;
}

.mobile-app {
  padding: 96px 0 0;
  border-bottom: 1px solid #E9EAEB;
}

.mobile-features {
  max-width: 560px;
}
.mobile-features .mobile-feature {
  padding: 16px 24px;
  border-left: 4px solid #F5F5F5;
  transition: 0.3s ease;
}
.mobile-features .mobile-feature:first-child {
  border-color: #fa5d64;
}
.mobile-features .mobile-feature:last-child {
  margin-bottom: 0;
}
.mobile-features .mobile-feature:hover {
  border-color: #fa5d64;
}
.mobile-features .mobile-feature h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #181D27;
}
.mobile-features .mobile-feature p {
  color: #414651;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.phone-mockup-container .phone-mockup {
  max-width: 100%;
  filter: drop-shadow(0 25px 50px rgba(24, 29, 39, 0.15));
}
.phone-mockup-container .phone-mockup.mobile-image {
  display: none;
}

.light-accent {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 111;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.light-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.integrations {
  padding: 96px 0 72px;
}

.integration-item {
  padding: 16px 8px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border: 1px solid transparent;
}
.integration-item .integration-icon {
  width: 60px;
  height: 60px;
  padding: 4px;
  border-radius: 12px;
  margin: 0 auto 20px;
  border: 1px solid #D5D7DA;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
}
.integration-item h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #181D27;
}
.integration-item p {
  color: #535862;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.trusted-by {
  margin-bottom: 96px;
}
.trusted-by .trusted-by-inner {
  background-color: #FAFAFA;
  padding: 64px 32px;
  border-radius: 16px;
}
.trusted-by .trusted-text {
  color: #535862;
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.company-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.company-logos span {
  color: #717680;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.company-logos span img {
  height: 48px;
  object-fit: contain;
}

.cta {
  padding: 96px 0;
}

.cta-inner {
  background: linear-gradient(135deg, #fa5d64 0%, #53389E 100%);
  color: #FFFFFF;
  padding: 64px;
  border-radius: 16px;
}

.cta-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.cta-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
  color: #E9D7FE;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.btn-secondary-cta {
  background: #FFFFFF;
  color: #42307D;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-secondary-cta:hover {
  background: #FAFAFA;
  color: #42307D;
}

.btn-primary-cta {
  background: #fa5d64;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-primary-cta:hover {
  background: #fa5d64;
  color: #FFFFFF;
  border-color: #fa5d64;
}

.check-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  font-size: 14px;
  color: #414651;
  user-select: none;
  position: relative;
}
.check-item .custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.check-item .custom-checkbox:checked + .check-icon {
  background: #fa5d64;
  border-color: #fa5d64;
}
.check-item .custom-checkbox:checked + .check-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check-item .check-icon {
  width: 16px;
  height: 16px;
  border: 1px solid #D5D7DA;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.features-grid .feature-check-wrapper {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.features-grid .feature-check-wrapper .feature-check-input {
  display: none;
}
.features-grid .feature-check-wrapper:has(.custom-checkbox:checked) .feature-check-input {
  display: block;
}
.features-grid .feature-check-wrapper .feature-check-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  font-size: 14px;
  color: #414651;
  user-select: none;
  position: relative;
}
.features-grid .feature-check-wrapper .feature-check-item .custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.features-grid .feature-check-wrapper .feature-check-item .custom-checkbox:checked + .check-icon {
  background: #fa5d64;
  border-color: #fa5d64;
}
.features-grid .feature-check-wrapper .feature-check-item .custom-checkbox:checked + .check-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.features-grid .feature-check-wrapper .feature-check-item .check-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #9c6dfd;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.radio-buttons {
  display: flex;
  gap: 10px;
}
.radio-buttons .item {
  position: relative;
}
.radio-buttons .item label {
  width: max-content;
  height: 36px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 6px 10px 6px 38px;
  gap: 6px;
  border-radius: 1000px;
  background: #f5f0f9;
  transition: all 0.3s ease;
}
.radio-buttons .item div {
  color: #575864;
}
.radio-buttons .item input {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgb(255, 255, 255) !important;
  border-radius: 50% !important;
}
.radio-buttons .item input:checked::before {
  position: absolute;
  width: 24px;
  height: 24px;
  font-size: 14px;
  color: #fa5d64;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  content: "\e917";
  font-family: "icomoon";
}
.radio-buttons .item input:checked ~ label {
  background-color: #fa5d64;
}
.radio-buttons .item input:checked ~ label * {
  color: #FFFFFF;
}
.radio-buttons .item input:checked > .item {
  background: #fa5d64;
}

.dashboard-section .check-list {
  margin: 32px 0 48px;
  list-style: none;
  padding: 0;
}
.dashboard-section .check-list li {
  color: #414651;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.dashboard-section .check-list li:last-child {
  margin-bottom: 0;
}
.dashboard-section.style-2 {
  padding: 0 0 96px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .dashboard-section.style-2 {
    padding: 0;
  }
}
.dashboard-section.style-2 .section-headings {
  margin-bottom: 0;
  padding: 90px 0 60px;
}
.dashboard-section.style-2 .section-headings .section-title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  color: #181D27;
  max-width: 600px;
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .dashboard-section.style-2 .section-headings .section-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
}
.dashboard-section.style-2 .dashboard-mockup {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: flex-end;
}
.dashboard-section.style-2 .dashboard-mockup .dashboard-image {
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 991px) {
  .dashboard-section.style-2 .dashboard-mockup {
    position: static;
  }
}

.newsletter-section.style-2 {
  padding: 96px 0;
}
.newsletter-section.style-2 .newsletter-form-wrapper {
  padding-left: 0;
  max-width: 480px;
  margin: 0 auto;
}

.reportList-modal .btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}
.reportList-modal iframe {
  display: block;
}

.flyer-form {
  padding: 0 2rem 2rem;
  font-family: "Segoe UI", sans-serif;
}
@media screen and (max-width: 768px) {
  .flyer-form {
    padding: 1rem;
  }
}
.flyer-form .upload-formats {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin-top: 8px;
  color: #717680;
}
.flyer-form.style-2 {
  display: flex;
  height: 100vh;
  min-height: 1px;
  overflow: hidden;
  align-items: unset;
  padding: 0;
}
.flyer-form.style-2 .glass-container {
  flex: 1;
  height: 100%;
  min-height: 100vh;
  overflow-y: auto;
}
.flyer-form.style-2 .contact-image-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
}
.flyer-form.style-2 .contact-image-section .image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.flyer-form.style-2 .contact-image-section .image-container .contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.flyer-form .filter-form-title {
  color: #414651;
  font-weight: 700;
}
.flyer-form .glass-container {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flyer-form .glass-container {
    padding: 1rem;
  }
}
.flyer-form .form-label {
  font-weight: 500;
  margin-bottom: 6px;
}
.flyer-form .form-label small {
  color: #A4A7AE;
}
.flyer-form .btn-purple {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: white;
}
.flyer-form .btn-purple:hover {
  background-color: #9E77ED;
  border-color: #9E77ED;
}
.flyer-form .icon-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}
.flyer-form .bullet-group input {
  margin-bottom: 1.5rem;
}
.flyer-form .form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D5D7DA;
  border-radius: 8px !important;
  background: #FFFFFF;
  color: #181D27;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  transition: all 0.2s ease;
}
.flyer-form .form-input::placeholder {
  color: #717680;
}
.flyer-form .form-input:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}
.flyer-form .form-input:invalid:not(:placeholder-shown) {
  border-color: #F04438;
}
.flyer-form .form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  color: #181D27;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
}
.flyer-form .form-select:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}
.flyer-form .custom-file-upload {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 1rem;
  border: 2px dashed #fa5d64;
  border-radius: 12px;
  text-align: center;
  color: #42307D;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.flyer-form .custom-file-upload:hover {
  background-color: rgba(111, 66, 193, 0.05);
}
.flyer-form .custom-file-upload i {
  font-size: 24px;
  margin-bottom: 0.5rem;
  display: block;
}
.flyer-form .custom-file-upload span {
  font-size: 14px;
  font-weight: 500;
}
.flyer-form .custom-file-upload input[type=file] {
  display: none;
}

.dashboard-body {
  background: #FAFAFA;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 300px;
  background: #FFFFFF;
  border-right: 1px solid #E9EAEB;
  display: flex;
  flex-direction: column;
  position: fixed;
  min-height: 100vh;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
}

.sidebar-header {
  padding: 24px 20px 16px;
}
.sidebar-header .navbar-brand {
  margin: 0;
}

.sidebar-search {
  padding: 0 20px 20px;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.search-input-group .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  color: #717680;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  z-index: 2;
  transform: translateY(-50%);
}
.search-input-group .search-icon svg,
.search-input-group .search-icon img {
  width: 20px;
  height: 20px;
}
.search-input-group .search-input {
  width: 100%;
  padding: 10px 12px 10px 40px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  background: #FFFFFF;
  color: #181D27;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.search-input-group .search-input::placeholder {
  color: #717680;
}
.search-input-group .search-input:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}
.search-input-group .search-shortcut {
  position: absolute;
  right: 12px;
  color: #717680;
  font-size: 12px;
  background: #F3F4F6;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.search-input-group.table-search {
  max-width: 320px;
}
.search-input-group.table-search .search-input {
  padding-right: 50px;
}

.sidebar-nav {
  flex: 1;
  padding: 0 16px 20px;
  overflow-y: auto;
}
.sidebar-nav .nav-link {
  padding: 8px 12px !important;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-bottom: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #414651;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 6px;
}
.nav-link:hover {
  background: #FAFAFA;
  color: #252B37;
}
.nav-link.active {
  background: #FAFAFA;
  color: #252B37;
}

.nav-icon {
  margin-right: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  width: 20px;
  text-align: center;
}

.nav-text {
  flex: 1;
}

.nav-badge {
  background: #F3F4F6;
  color: #414651;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

.nav-divider {
  height: 1px;
  background: #E9EAEB;
  margin: 20px 0;
}

.sidebar-footer {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workshop-card {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 16px;
  position: relative;
}

.workshop-close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: none;
  border: none;
  color: #717680;
  cursor: pointer;
  padding: 8px;
}
.workshop-close:hover {
  color: #414651;
}

.workshop-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.workshop-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-right: -8px;
}

.more-border {
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  width: 26px;
  height: 26px;
}

.workshop-more {
  background: #F3F4F6;
  color: #717680;
  border: 1px solid #E9EAEB;
  font-size: 12px;
  font-weight: 600;
  padding: 2px;
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
}

.avatar-add-button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px dashed #D5D7DA;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
}

.workshop-content .head-part {
  display: flex;
  align-items: center;
  gap: 6px;
}

.workshop-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 4px;
}

.workshop-badge {
  color: #414651;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #D5D7DA;
}

.green-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #D5D7DA;
  background-color: #079455;
  border-radius: 50%;
}

.user-profile-picture {
  position: relative;
}
.user-profile-picture .user-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid #D5D7DA;
  border-radius: 50%;
}
.user-profile-picture .user-status.online {
  background-color: #17B26A;
}

.workshop-description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 12px;
}

.workshop-actions {
  display: flex;
  gap: 12px;
}

.btn-dismiss {
  background: none;
  border: none;
  color: #414651;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
}
.btn-dismiss:hover {
  color: #181D27;
}

.btn-join {
  background: none;
  border: none;
  color: #fa5d64;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
}
.btn-join:hover {
  color: #fa5d64;
}

.main-content {
  flex: 1;
  padding-left: 300px;
  min-height: 100vh;
  background: #FFFFFF;
  max-width: 100%;
}

.leads-dashboard .dashboard-content {
  padding: 0 32px 32px;
}
.leads-dashboard .welcome-section {
  margin-bottom: 32px;
}
.leads-dashboard .welcome-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 8px;
}
.leads-dashboard .welcome-subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #414651;
}
.leads-dashboard .traffic-section {
  background: #FFFFFF;
  margin-bottom: 32px;
}
.leads-dashboard .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .leads-dashboard .section-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.leads-dashboard .section-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.leads-dashboard .section-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin: 0;
}
.leads-dashboard .growth-indicator {
  background: #E6F9F6;
  color: #079455;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}
.leads-dashboard .section-filters {
  display: flex;
  align-items: center;
  padding: 0;
  border: 1px solid #E9EAEB;
  background-color: #FAFAFA;
  border-radius: 8px;
}
.leads-dashboard .filter-btn {
  background: none;
  border: 1px solid transparent;
  color: #414651;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.leads-dashboard .filter-btn:hover {
  color: #181D27;
}
.leads-dashboard .filter-btn.active {
  background: #FFFFFF;
  border-color: #E9EAEB;
  color: #414651;
}
.leads-dashboard .filter-btn.filter-btn-icon {
  display: flex;
  align-items: center;
  gap: 6px;
}
.leads-dashboard .filter-icon {
  font-size: 12px;
}
.leads-dashboard .chart-container {
  height: 300px;
  position: relative;
}
.leads-dashboard .chart {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.leads-dashboard .chart-bars {
  flex: 1;
  display: flex;
  align-items: end;
  gap: 4px;
  padding-bottom: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .leads-dashboard .chart-bars {
    gap: 2px;
  }
}
.leads-dashboard .chart-bar {
  flex: 1;
  background: #fa5d64;
  border-radius: 2px 2px 0 0;
  min-height: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  max-width: 10px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transform-origin: bottom center;
}
.leads-dashboard .chart-bar:hover {
  background: #fa5d64;
  transform: scaleY(1.05);
}
.leads-dashboard .chart-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}
.leads-dashboard .chart-label {
  font-size: 12px;
  color: #717680;
  font-weight: 500;
}
.leads-dashboard .recently-active-section {
  background: #FFFFFF;
}
.leads-dashboard .recently-active-section .section-header {
  margin-bottom: 0;
  align-items: center;
}
.leads-dashboard .table-container {
  margin-top: 20px;
}
.leads-dashboard .table-header {
  padding: 16px 0;
}
.leads-dashboard .bulk-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.leads-dashboard .selected-count {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #414651;
}
.leads-dashboard .bulk-action-btn {
  background: none;
  border: 1px solid #D5D7DA;
  color: #414651;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}
.leads-dashboard .bulk-action-btn:hover {
  background: #FAFAFA;
}
.leads-dashboard .data-table {
  border-radius: 8px;
  overflow-x: auto;
}
.leads-dashboard .table-header-row {
  display: grid;
  grid-template-columns: 40px minmax(250px, 1fr) 300px 180px 180px 80px;
  background: #FAFAFA;
}
.leads-dashboard .table-row {
  display: grid;
  grid-template-columns: 40px minmax(250px, 1fr) 300px 180px 180px 80px;
  transition: background-color 0.2s ease;
}
.leads-dashboard .table-row:hover {
  background: #F3F4F6;
}
.leads-dashboard .table-row:hover .table-cell {
  background: #F3F4F6;
}
.leads-dashboard .table-row.selected {
  background: #FAFAFA;
}
.leads-dashboard .table-row.selected .table-cell {
  background: #FAFAFA;
}
.leads-dashboard .table-row:last-child {
  border-bottom: none;
}
.leads-dashboard .table-row:last-child .table-cell {
  border-bottom: none;
}
.leads-dashboard .table-cell {
  padding: 16px 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E9EAEB;
}
.leads-dashboard .table-cell:first-child {
  padding-left: 16px;
}
.leads-dashboard .table-cell:last-child {
  padding-right: 16px;
  justify-content: center;
}
.leads-dashboard .table-header-cell {
  font-size: 12px;
  font-weight: 600;
  color: #535862;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background-color: #FAFAFA;
}
.leads-dashboard .sort-icon {
  color: #717680;
  font-size: 10px;
}
.leads-dashboard .table-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #D5D7DA;
  border-radius: 4px;
  cursor: pointer;
}
.leads-dashboard .table-checkbox:checked {
  background: #fa5d64;
  border-color: #fa5d64;
}
.leads-dashboard .user-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.leads-dashboard .user-table-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.leads-dashboard .user-table-info {
  display: flex;
  flex-direction: column;
}
.leads-dashboard .user-table-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #181D27;
}
.leads-dashboard .user-table-email {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #414651;
}
.leads-dashboard .access-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.leads-dashboard .access-badge {
  background: #FFFFFF;
  color: #414651;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid #D5D7DA;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.leads-dashboard .access-badge .dot-purple {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #D5D7DA;
  background-color: #9E77ED;
  border-radius: 50%;
}
.leads-dashboard .access-badge .dot-blue {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #D5D7DA;
  background-color: #2E90FA;
  border-radius: 50%;
}
.leads-dashboard .access-badge .dot-green {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #D5D7DA;
  background-color: #17B26A;
  border-radius: 50%;
}
.leads-dashboard .date-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #414651;
}
.leads-dashboard .action-menu-btn {
  background: none;
  border: none;
  color: #717680;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.leads-dashboard .action-menu-btn:hover {
  background: #FAFAFA;
  color: #414651;
}
.leads-dashboard .table-footer {
  padding: 16px 0;
  border-top: 1px solid #E9EAEB;
}
.leads-dashboard .pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.leads-dashboard .pagination-btn {
  background: none;
  border: 1px solid #D5D7DA;
  color: #414651;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.leads-dashboard .pagination-btn:hover:not(:disabled) {
  background: #FAFAFA;
  color: #181D27;
}
.leads-dashboard .pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.leads-dashboard .pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}
.leads-dashboard .pagination-number {
  background: none;
  border: none;
  color: #414651;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.leads-dashboard .pagination-number:hover {
  background: #FAFAFA;
  color: #181D27;
}
.leads-dashboard .pagination-number.active {
  background: #fa5d64;
  color: #FFFFFF;
}
.leads-dashboard .pagination-dots {
  color: #717680;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 8px 4px;
}

@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-content {
    margin-left: 0;
    padding-left: 0;
    max-width: 100%;
  }
  .leads-dashboard .dashboard-content {
    padding: 20px;
  }
  .table-header-row,
  .table-row {
    grid-template-columns: 40px 1fr 150px 100px 100px 40px;
  }
}
@media (max-width: 768px) {
  .leads-dashboard .dashboard-header {
    padding: 16px 20px;
    gap: 16px;
  }
  .leads-dashboard .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .leads-dashboard .section-filters {
    flex-wrap: wrap;
  }
  .leads-dashboard .table-header-row,
  .leads-dashboard .table-row {
    grid-template-columns: 40px 1fr 40px;
  }
  .leads-dashboard .table-cell:nth-child(3),
  .leads-dashboard .table-cell:nth-child(4),
  .leads-dashboard .table-cell:nth-child(5) {
    display: none;
  }
  .leads-dashboard .chart-container {
    height: 200px;
  }
  .leads-dashboard .pagination {
    flex-direction: column;
    gap: 16px;
  }
  .leads-dashboard .recently-active-section .section-header {
    flex-direction: row;
  }
}
@media (max-width: 480px) {
  .leads-dashboard .dashboard-content {
    padding: 16px;
  }
  .welcome-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .recently-active-section {
    padding: 16px 0;
  }
}
.settings-content {
  padding: 0 32px 32px;
}
.settings-content .search-input-group {
  max-width: 320px;
}
.settings-content .settings-header {
  margin: 32px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.settings-content .settings-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #181D27;
  margin: 0;
}
.settings-content .settings-nav {
  margin-bottom: 32px;
}
.settings-content .settings-tabs {
  display: flex;
  overflow: hidden;
  overflow-x: auto;
  padding: 0;
  border: 1px solid #E9EAEB;
  background-color: #FAFAFA;
  border-radius: 8px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}
.settings-content .settings-tabs::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}
.settings-content .settings-tab {
  background: none;
  border: none;
  color: #717680;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.settings-content .settings-tab:hover {
  color: #181D27;
}
.settings-content .settings-tab.active {
  color: #181D27;
  border: 1px solid #E9EAEB;
  background-color: #FFFFFF;
}
.settings-content .tab-badge {
  background: #F9F5FF;
  color: #42307D;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}
.settings-content .settings-form {
  background: #FFFFFF;
  overflow: hidden;
}
.settings-content .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9EAEB;
}
@media (max-width: 768px) {
  .settings-content .section-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
.settings-content .section-info {
  flex: 1;
}
.settings-content .section-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #181D27;
  margin-bottom: 4px;
}
.settings-content .section-description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
  margin: 0;
}
.settings-content .section-actions {
  display: flex;
  gap: 12px;
}
.settings-content .form-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9EAEB;
  align-items: start;
}
@media (max-width: 768px) {
  .settings-content .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.settings-content .form-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #181D27;
  margin: 0;
  padding-top: 10px;
}
.settings-content .form-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 512px;
}
.settings-content .input-group {
  position: relative;
}
.settings-content .input-group.input-with-icon .form-input {
  padding-left: 40px;
}
.settings-content .input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #717680;
}
.settings-content .photo-upload {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.settings-content .current-photo {
  flex-shrink: 0;
  position: relative;
}
.settings-content .current-photo::before {
  content: "X";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  transition: all 0.2s ease;
  opacity: 0;
  visibility: hidden;
}
.settings-content .current-photo:hover::before {
  opacity: 1;
  visibility: visible;
}
.settings-content .photo-preview {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.settings-content .upload-area {
  flex: 1;
}
.settings-content .upload-zone {
  border: 2px solid #E9EAEB;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.settings-content .upload-zone:hover {
  background: #F9F5FF;
  border-color: #fa5d64;
}
.settings-content .upload-zone .file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.settings-content .upload-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
  display: flex;
  align-items: center;
  justify-content: center;
}
.settings-content .upload-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #535862;
  margin-bottom: 4px;
}
.settings-content .upload-link {
  color: #fa5d64;
  font-weight: 600;
  cursor: pointer;
}
.settings-content .upload-link:hover {
  color: #fa5d64;
}
.settings-content .upload-formats {
  font-size: 12px;
  color: #535862;
}
.settings-content .textarea-group {
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  overflow: hidden;
}
.settings-content .textarea-group .form-textarea {
  border: none;
  box-shadow: none;
}
.settings-content .textarea-group:focus-within {
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}
.settings-content .editor-toolbar {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  background: #FAFAFA;
  border-bottom: 1px solid #E9EAEB;
}
.settings-content .editor-btn {
  background: none;
  border: none;
  color: #414651;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.settings-content .editor-btn:hover {
  background: #F3F4F6;
  color: #181D27;
}
.settings-content .character-count {
  font-size: 14px;
  color: #717680;
}
.settings-content .field-help {
  font-size: 14px;
  color: #535862;
  margin: 0;
}
.settings-content .portfolio-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.settings-content .uploaded-files {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.settings-content .file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #E9EAEB;
  border-radius: 8px;
  background: #FFFFFF;
  position: relative;
}
.settings-content .file-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}
.settings-content .file-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 3px;
}
.settings-content .file-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.settings-content .file-name {
  font-size: 14px;
  font-weight: 500;
  color: #181D27;
}
.settings-content .file-size {
  font-size: 14px;
  color: #717680;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 480px) {
  .settings-content .file-size {
    flex-direction: column;
    align-items: flex-start;
  }
}
.settings-content .file-status {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.settings-content .file-status.complete {
  color: #079455;
}
.settings-content .file-status.uploading {
  color: #717680;
}
.settings-content .file-status .img-fluid {
  width: 16px;
  height: 16px;
}
.settings-content .file-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}
.settings-content .progress-bar {
  flex: 1;
  height: 6px;
  background: #F3F4F6;
  border-radius: 3px;
  overflow: hidden;
}
.settings-content .progress-fill {
  height: 100%;
  background: #fa5d64;
  border-radius: 3px;
  transition: width 0.3s ease;
}
.settings-content .progress-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #414651;
  min-width: 32px;
  text-align: right;
}
.settings-content .file-delete {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  top: 8px;
  right: 8px;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.settings-content .file-delete:hover {
  background: #FECDD6;
}
.settings-content .btn-cancel {
  background: none;
  border: 1px solid #D5D7DA;
  color: #414651;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.settings-content .btn-cancel:hover {
  background: #FAFAFA;
  color: #181D27;
}
.settings-content .btn-save {
  background: #fa5d64;
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.settings-content .btn-save:hover {
  background: #fa5d64;
}
.settings-content .btn-upgrade {
  background: none;
  border: none;
  color: #42307D;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.settings-content .btn-upgrade:hover {
  color: #fa5d64;
}
.settings-content .settings-bottom {
  background: #FFFFFF;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1024px) {
  .settings-content .settings-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
  }
}
.settings-content .storage-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.settings-content .storage-circle-container {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.settings-content .storage-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#7c3aed calc(var(--percent) * 1%), #e5e7eb 0%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.settings-content .storage-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.settings-content .storage-bg {
  fill: none;
  stroke: #F3F4F6;
  stroke-width: 2;
}
.settings-content .storage-fill {
  fill: none;
  stroke: #fa5d64;
  stroke-width: 2;
  stroke-linecap: round;
}
.settings-content .storage-text {
  fill: #181D27;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  position: absolute;
}
.settings-content .storage-circle-image {
  margin-bottom: 20px;
}
.settings-content .storage-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.settings-content .storage-title {
  font-size: 14px;
  font-weight: 600;
  color: #181D27;
  margin: 0;
}
.settings-content .storage-description {
  font-size: 12px;
  color: #414651;
  margin: 0;
}
.settings-content .storage-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.settings-content .user-profile-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}
.settings-content .user-info-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}
.settings-content .user-avatar-bottom {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.settings-content .user-details-bottom {
  display: flex;
  flex-direction: column;
}
.settings-content .user-name-bottom {
  font-size: 14px;
  font-weight: 600;
  color: #181D27;
}
.settings-content .user-email-bottom {
  font-size: 12px;
  color: #717680;
}
.settings-content .user-actions-bottom {
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .settings-content .settings-form .form-section .section-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
  }
  .settings-content .settings-content {
    padding: 0 20px 32px;
  }
  .settings-content .photo-upload {
    align-items: center;
    text-align: center;
  }
  .settings-content .file-item {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .settings-content .file-progress {
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .settings-content .settings-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .settings-content .section-header {
    padding-bottom: 16px;
  }
  .settings-content .upload-zone {
    padding: 16px;
  }
}

.main-content .property-listing {
  margin-right: 488px;
  padding: 32px;
  max-width: calc(100vw - 488px);
}
@media screen and (max-width: 1600px) {
  .main-content .property-listing {
    margin-right: 350px;
    max-width: calc(100vw - 350px);
  }
}
@media screen and (max-width: 1410px) {
  .main-content .property-listing {
    max-width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .main-content .property-listing {
    padding: 16px;
  }
}
.main-content .property-listing .filters-section {
  margin-bottom: 24px;
}
.main-content .property-listing .filter-row {
  margin-bottom: 16px;
}
.main-content .property-listing .filter-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  .main-content .property-listing .filter-group {
    gap: 8px;
  }
}
.main-content .property-listing .filter-item {
  flex-shrink: 0;
}
.main-content .property-listing .filter-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  color: #414651;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.main-content .property-listing .filter-btn:hover {
  background: #FAFAFA;
  border-color: #fa5d64;
}
.main-content .property-listing .filter-btn.more-filters {
  background: #FAFAFA;
}
.main-content .property-listing .filter-btn [class*=-icon] .img-fluid {
  width: 16px;
  height: 16px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .content-header {
    flex-direction: column;
    gap: 16px;
  }
}

.header-info {
  flex: 1;
}

.page-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #414651;
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-share {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background: none;
  border: 1px solid #D5D7DA;
  color: #414651;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-share:hover {
  background: #FAFAFA;
  color: #181D27;
}

.btn-save-search {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  background: #fa5d64;
  border: none;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn-save-search:hover {
  background: #fa5d64;
}

.save-icon {
  font-size: 16px;
}

.location-flag,
.date-icon,
.price-icon,
.filter-icon {
  font-size: 16px;
  display: flex;
}

.filter-arrow {
  font-size: 12px;
  color: #717680;
}

.search-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.search-container {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
}

.search-icon {
  position: absolute;
  left: 12px;
  font-size: 16px;
  color: #717680;
}

.search-input {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  width: 100%;
  padding: 10px 12px 10px 40px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  background: #FFFFFF;
  color: #181D27;
}
.search-input::placeholder {
  color: #717680;
}
.search-input:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}

.search-shortcut {
  position: absolute;
  right: 12px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #717680;
  background: #F3F4F6;
  padding: 2px 6px;
  border-radius: 4px;
}

.search-actions {
  display: flex;
  gap: 8px;
}

.btn-clear {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background: none;
  border: 1px solid #D5D7DA;
  color: #414651;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-clear:hover {
  background: #FAFAFA;
}

.btn-search {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  background: #fa5d64;
  border: none;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-search:hover {
  background: #fa5d64;
}

.controls-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sort-controls {
  display: flex;
  gap: 8px;
}

.sort-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background: none;
  border: 1px solid #D5D7DA;
  color: #414651;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sort-btn:hover {
  background: #FAFAFA;
}
.sort-btn.active {
  background: #F9F5FF;
  border-color: #fa5d64;
  color: #42307D;
}

.view-controls {
  display: flex;
  gap: 4px;
}

.view-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid #D5D7DA;
  color: #414651;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.view-btn:hover {
  background: #FAFAFA;
}
.view-btn.active {
  background: #F9F5FF;
  border-color: #fa5d64;
  color: #42307D;
}

.view-icon {
  font-size: 16px;
}

.listings-section {
  margin-bottom: 48px;
}

.property-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
}
.property-list.grid {
  flex-direction: row;
}
.property-list.grid .property-card {
  flex-direction: column;
  flex: 1 1 auto;
  max-width: calc(50% - 12px);
}
@media screen and (min-width: 1700px) {
  .property-list.grid .property-card {
    max-width: calc(33.33% - 16px);
  }
}
@media screen and (min-width: 2000px) {
  .property-list.grid .property-card {
    max-width: calc(25% - 18px);
  }
}
@media screen and (min-width: 1200px) and (max-width: 1410px) {
  .property-list.grid .property-card {
    max-width: calc(33.33% - 16px);
  }
}
@media screen and (min-width: 900px) and (max-width: 1024px) {
  .property-list.grid .property-card {
    max-width: calc(33.33% - 16px);
  }
}
.property-list.grid .property-card .property-image {
  width: 100%;
}
.property-list.grid .property-card .property-content .property-details {
  margin-top: auto;
  flex-wrap: wrap;
}
.property-list.grid .property-card .property-content .property-details .property-price {
  margin-left: 0 !important;
}
@media screen and (max-width: 600px) {
  .property-list.grid .property-card {
    max-width: 100%;
  }
}

.property-card {
  display: flex;
  gap: 20px;
  padding: 16px;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  background: #FFFFFF;
  transition: all 0.2s ease;
  position: relative;
}
.property-card:hover {
  box-shadow: 0px 2px 2px -1px rgba(10, 13, 18, 0.04), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 12px 16px -4px rgba(10, 13, 18, 0.08);
  border-color: #fa5d64;
}

.property-image {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .property-image {
    width: 188px;
  }
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorite-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.2s ease;
}
.favorite-btn .heart-icon {
  line-height: 20px;
  display: flex;
  align-items: center;
}
.favorite-btn .heart-icon svg {
  transition: all 0.2s ease;
}
.favorite-btn .heart-icon svg path {
  transition: all 0.2s ease;
}
.favorite-btn:hover {
  background: #FFFFFF;
  transform: scale(1.05);
}
.favorite-btn:hover .heart-icon svg {
  fill: #F04438;
}
.favorite-btn:hover .heart-icon svg path {
  stroke: #F04438;
}

.heart-icon {
  font-size: 16px;
}

.rare-find-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #FFFFFF;
  color: #181D27;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.badge-icon {
  font-size: 12px;
}

.property-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.property-category {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #42307D;
  max-width: 80%;
}

.property-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin: 0;
  line-height: 1.3;
  max-width: 80%;
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 14px;
  color: #FFD700;
}

.rating-score {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #181D27;
}

.rating-count {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
}

.property-details {
  display: flex;
  gap: 16px;
  margin: 8px 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.detail-icon {
  font-size: 14px;
  color: #717680;
  display: flex;
}

.detail-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
}

.property-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #181D27;
}

.price-currency {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
}

.pagination-section {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background: none;
  border: 1px solid #D5D7DA;
  color: #414651;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.pagination-btn:hover:not(:disabled) {
  background: #FAFAFA;
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 16px;
}

.pagination-number {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background: none;
  border: none;
  color: #414651;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pagination-number:hover {
  background: #FAFAFA;
}
.pagination-number.active {
  background: #fa5d64;
  color: #FFFFFF;
}

.pagination-dots {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #717680;
  padding: 8px 4px;
}

.pagination-icon {
  font-size: 14px;
}

.map-section {
  width: 488px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background: #FAFAFA;
  border-left: 1px solid #E9EAEB;
}
@media screen and (max-width: 1600px) {
  .map-section {
    width: 350px;
  }
}
@media screen and (max-width: 1410px) {
  .map-section {
    position: static;
    width: 100%;
    height: 350px;
    margin-bottom: 30px;
  }
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.map-container .map-iframe {
  width: 100%;
  height: 100%;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-controls {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.map-toggle {
  display: flex;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.map-toggle-btn {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  background: none;
  border: none;
  color: #414651;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.map-toggle-btn.active {
  background: #fa5d64;
  color: #FFFFFF;
}

.map-zoom {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.zoom-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: #414651;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.zoom-btn:hover {
  background: #FAFAFA;
}
.zoom-btn:first-child {
  border-bottom: 1px solid #E9EAEB;
}

.map-markers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
}

.marker-price {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  background: #fa5d64;
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
  white-space: nowrap;
}

.google-logo {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #717680;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .property-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .property-card {
    flex-direction: column;
  }
  .property-image {
    width: 100%;
    height: 240px;
  }
  .filter-group {
    flex-wrap: wrap;
  }
  .filter-btn {
    justify-content: space-between;
  }
  .controls-section {
    gap: 16px;
  }
  .sort-controls {
    justify-content: center;
  }
  .view-controls {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .page-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .search-container {
    flex-direction: column;
    align-items: stretch;
  }
  .property-details {
    flex-direction: column;
    gap: 8px;
  }
  .property-details .property-price {
    margin-left: 0 !important;
  }
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 399px) {
  .property-listing .sort-btn {
    padding: 8px;
    white-space: nowrap;
  }
  .property-listing .view-btn {
    width: 38px;
    height: 38px;
  }
}
.property-listing-upload .contact-container {
  display: flex;
  min-height: 100vh;
}
@media (max-width: 968px) {
  .property-listing-upload .contact-container {
    flex-direction: column;
  }
}
@media (min-width: 991px) {
  .property-listing-upload .contact-container {
    height: 100vh;
    min-height: 1px;
  }
}
.property-listing-upload .contact-form-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .property-listing-upload .contact-form-section {
    padding: 32px 20px;
  }
}
@media (min-width: 991px) {
  .property-listing-upload .contact-form-section {
    overflow-y: auto;
    min-height: 100vh;
  }
}
.property-listing-upload .form-container {
  width: 100%;
  max-width: 480px;
}
.property-listing-upload .form-header {
  margin-bottom: 32px;
  text-align: left;
}
.property-listing-upload .contact-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 12px;
  line-height: 1.2;
}
.property-listing-upload .contact-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  margin: 0;
  line-height: 1.5;
}
.property-listing-upload .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.property-listing-upload .contact-form .form-row {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.property-listing-upload .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .property-listing-upload .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.property-listing-upload .phone-input-group {
  display: flex;
  gap: 0;
}
.property-listing-upload .country-select {
  position: relative;
}
.property-listing-upload .country-dropdown {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 10px 12px;
  border: 1px solid #E9EAEB;
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: #FAFAFA;
  color: #181D27;
  cursor: pointer;
  appearance: none;
  min-width: 80px;
  height: 46px;
}
.property-listing-upload .country-dropdown:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}
.property-listing-upload .phone-input {
  border-radius: 0 8px 8px 0 !important;
  border-left: none !important;
  flex: 1;
}
.property-listing-upload .phone-input:focus {
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}
.property-listing-upload .checkbox-group {
  margin: 8px 0;
}
.property-listing-upload .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.property-listing-upload .form-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #fa5d64;
  cursor: pointer;
}
.property-listing-upload .checkbox-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
  cursor: pointer;
  line-height: 1.5;
  margin: 0;
}
.property-listing-upload .privacy-link {
  color: #414651;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.property-listing-upload .privacy-link:hover {
  color: #42307D;
  text-decoration: underline;
}
.property-listing-upload .submit-btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  background: #fa5d64;
  color: #FFFFFF;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 12px;
}
.property-listing-upload .submit-btn:hover:not(:disabled) {
  background: #fa5d64;
  transform: translateY(-1px);
}
.property-listing-upload .submit-btn:active {
  transform: translateY(0);
}
.property-listing-upload .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.property-listing-upload .contact-image-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
}
@media (max-width: 968px) {
  .property-listing-upload .contact-image-section {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .property-listing-upload .contact-image-section {
    min-height: 300px;
  }
}
.property-listing-upload .image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.property-listing-upload .contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.property-listing-upload .form-input:invalid:not(:placeholder-shown),
.property-listing-upload .form-textarea:invalid:not(:placeholder-shown) {
  border-color: #F04438;
}
.property-listing-upload .form-input:invalid:not(:placeholder-shown):focus,
.property-listing-upload .form-textarea:invalid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 3px rgba(240, 68, 56, 0.1);
}
.property-listing-upload .submit-btn:disabled {
  background: #fa5d64;
  opacity: 0.7;
}
.property-listing-upload .submit-btn:disabled::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 968px) {
  .property-listing-upload .contact-container {
    flex-direction: column;
  }
  .property-listing-upload .contact-form-section {
    order: 1;
  }
  .property-listing-upload .contact-image-section {
    order: 2;
  }
}
@media (max-width: 768px) {
  .property-listing-upload .contact-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .property-listing-upload .contact-subtitle {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .property-listing-upload .form-container {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .property-listing-upload .contact-form-section {
    padding: 24px 16px;
  }
  .property-listing-upload .form-header {
    margin-bottom: 24px;
  }
  .property-listing-upload .contact-form {
    gap: 16px;
  }
  .property-listing-upload .phone-input-group {
    gap: 10px;
  }
  .property-listing-upload .country-dropdown {
    border-radius: 8px;
    border-right: 1px solid #E9EAEB;
    height: 46px;
  }
  .property-listing-upload .phone-input {
    border-radius: 8px !important;
    border-left: 1px solid #E9EAEB !important;
  }
}
.property-listing-upload .form-input:focus + .form-input,
.property-listing-upload .form-textarea:focus {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .property-listing-upload * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .property-listing-upload .form-input,
  .property-listing-upload .form-textarea,
  .property-listing-upload .country-dropdown {
    border-width: 2px;
  }
  .property-listing-upload .submit-btn {
    border: 2px solid transparent;
  }
}

.account-content {
  padding: 32px;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .account-content {
    padding: 20px;
  }
}

.account-header {
  margin-bottom: 32px;
}

.account-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin: 0;
}

.profile-hero {
  display: flex;
  gap: 32px;
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .profile-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 24px;
  }
}

.profile-image-section {
  flex-shrink: 0;
}

.profile-image {
  width: 160px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #E9EAEB;
}

.profile-info-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #181D27;
  margin: 0;
}

.profile-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  font-size: 16px;
  color: #717680;
}

.contact-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #414651;
}

.profile-role {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.role-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #42307D;
}

.role-company {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #414651;
}

.account-nav {
  margin-bottom: 32px;
}

.account-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #E9EAEB;
}

.account-tab {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: none;
  border: none;
  color: #414651;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.account-tab:hover {
  color: #181D27;
  background: #FAFAFA;
}
.account-tab.active {
  color: #42307D;
  border-bottom-color: #fa5d64;
  background: #fff0f0;
}

.profile-details-section {
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .section-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

.edit-profile-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  background: #fa5d64;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.edit-profile-btn:hover {
  background: #fa5d64;
  transform: translateY(-1px);
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #F5F5F5;
}
.detail-row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.detail-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #414651;
  margin: 0;
}

.detail-value {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #181D27;
}

.about-section {
  background: #FFEDCF;
  border: 1px solid #DC6803;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.about-header {
  margin-bottom: 16px;
}

.about-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #DC6803;
  margin: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #181D27;
  line-height: 1.6;
  margin: 0;
}

.stats-section {
  margin-bottom: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 968px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
}
.stat-card:hover {
  border-color: #fa5d64;
  box-shadow: 0px 1px 3px 0px rgba(10, 13, 18, 0.06), 0px 1px 2px 0px rgba(10, 13, 18, 0.1);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #42307D;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #414651;
}

@media (max-width: 768px) {
  .account-tabs {
    flex-wrap: wrap;
  }
  .account-tab {
    flex: 1;
    min-width: 120px;
  }
  .profile-contact {
    align-items: center;
  }
}
@media (max-width: 480px) {
  .account-content {
    padding: 16px;
  }
  .profile-hero {
    padding: 16px;
  }
  .profile-image {
    width: 120px;
    height: 120px;
  }
  .profile-details-section,
  .about-section {
    padding: 16px;
  }
  .stat-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat-card {
  animation: fadeInUp 0.3s ease;
}

.detail-row:hover {
  background: #FAFAFA;
  margin: 0 -16px;
  padding: 16px;
  border-radius: 8px;
}

.edit-profile-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.edit-profile-btn:disabled::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .profile-hero,
  .profile-details-section,
  .about-section,
  .stat-card {
    border-width: 2px;
  }
}
.password-settings-container .password-section {
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}
.password-settings-container .password-section .password-header {
  margin-bottom: 32px;
}
.password-settings-container .password-section .password-header .password-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #181D27;
  margin: 0 0 8px 0;
}
.password-settings-container .password-section .password-header .password-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #414651;
  margin: 0;
}
.password-settings-container .password-section .password-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.password-settings-container .password-section .password-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 512px;
}
.password-settings-container .password-section .password-form .form-group .form-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #181D27;
  margin: 0;
}
.password-settings-container .password-section .password-form .form-group .form-label .required {
  color: #D92D20;
}
.password-settings-container .password-section .password-form .form-group .password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.password-settings-container .password-section .password-form .form-group .password-input-wrapper .password-input {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  width: 100%;
  padding: 12px 48px 12px 16px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  background: #FFFFFF;
  color: #181D27;
  transition: all 0.2s ease;
}
.password-settings-container .password-section .password-form .form-group .password-input-wrapper .password-input::placeholder {
  color: #717680;
}
.password-settings-container .password-section .password-form .form-group .password-input-wrapper .password-input:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0px 0px 0px 4px rgb(158, 119, 237), 0px 0px 0px 2px rgb(255, 255, 255);
}
.password-settings-container .password-section .password-form .form-group .password-input-wrapper .password-input:hover {
  border-color: #E9EAEB;
}
.password-settings-container .password-section .password-form .form-group .password-input-wrapper .password-input.error {
  animation: shake 0.3s ease-in-out;
  border-color: #F04438;
}
.password-settings-container .password-section .password-form .form-group .password-input-wrapper .password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.password-settings-container .password-section .password-form .form-group .password-input-wrapper .password-toggle:hover {
  background: #FAFAFA;
}
.password-settings-container .password-section .password-form .form-group .password-input-wrapper .password-toggle.active svg path {
  stroke: #42307D;
}
.password-settings-container .password-section .password-form .form-group .password-requirements {
  margin-top: 8px;
}
.password-settings-container .password-section .password-form .form-group .password-requirements .requirement-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
  margin: 0;
  transition: color 0.2s ease;
}
.password-settings-container .password-section .password-form .form-group .error-message {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #D92D20;
  margin-top: 4px;
}
.password-settings-container .password-section .password-form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 480px) {
  .password-settings-container .password-section .password-form .form-actions {
    flex-direction: column-reverse;
  }
}
.password-settings-container .password-section .password-form .form-actions .cancel-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  background: #FFFFFF;
  color: #414651;
  border: 1px solid #D5D7DA;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.password-settings-container .password-section .password-form .form-actions .cancel-btn:hover {
  background: #FAFAFA;
  border-color: #E9EAEB;
}
.password-settings-container .password-section .password-form .form-actions .update-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  background: #fa5d64;
  color: #FFFFFF;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.password-settings-container .password-section .password-form .form-actions .update-btn:hover {
  background: #fa5d64;
}
.password-settings-container .password-section .password-form .form-actions .update-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.password-settings-container .password-section .password-form .form-actions .update-btn:disabled::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.password-settings-container .login-sessions-section {
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}
.password-settings-container .login-sessions-section .sessions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.password-settings-container .login-sessions-section .sessions-header .sessions-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin: 0;
}
.password-settings-container .login-sessions-section .sessions-header .sessions-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.password-settings-container .login-sessions-section .sessions-header .sessions-menu:hover {
  background: #FAFAFA;
}
.password-settings-container .login-sessions-section .sessions-description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
  margin: 0 0 24px 0;
}
.password-settings-container .login-sessions-section .sessions-description strong {
  color: #181D27;
}
.password-settings-container .login-sessions-section .sessions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.password-settings-container .login-sessions-section .sessions-list .session-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #F5F5F5;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.password-settings-container .login-sessions-section .sessions-list .session-item:hover {
  border-color: #E9EAEB;
  background: #FAFAFA;
}
.password-settings-container .login-sessions-section .sessions-list .session-item .session-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  border-radius: 8px;
}
.password-settings-container .login-sessions-section .sessions-list .session-item .session-info {
  flex: 1;
}
.password-settings-container .login-sessions-section .sessions-list .session-item .session-info .session-device {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 4px;
}
.password-settings-container .login-sessions-section .sessions-list .session-item .session-info .session-details {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
  display: flex;
  align-items: center;
  gap: 8px;
}
.password-settings-container .login-sessions-section .sessions-list .session-item .session-info .session-details .session-separator {
  color: #717680;
}
.password-settings-container .login-sessions-section .sessions-list .session-item .session-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.password-settings-container .login-sessions-section .sessions-list .session-item .session-status .status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #717680;
}
.password-settings-container .login-sessions-section .sessions-list .session-item .session-status .status-indicator.active {
  background: #079455;
}
.password-settings-container .login-sessions-section .sessions-list .session-item .session-status .status-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #079455;
}
@media (max-width: 768px) {
  .password-settings-container .password-section,
  .password-settings-container .login-sessions-section {
    padding: 24px;
  }
  .password-settings-container .login-sessions-section .sessions-list .session-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .password-settings-container .login-sessions-section .sessions-list .session-item .session-status {
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .password-settings-container .password-section,
  .password-settings-container .login-sessions-section {
    padding: 16px;
  }
  .password-settings-container .login-sessions-section .sessions-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .password-settings-container * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .password-settings-container .password-section,
  .password-settings-container .login-sessions-section {
    border-width: 2px;
  }
  .password-settings-container .password-section .session-item,
  .password-settings-container .login-sessions-section .session-item {
    border-width: 2px;
  }
}
.fintech-landing-container .fintech-hero {
  padding: 80px 0;
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
}
.fintech-landing-container .fintech-hero .hero-content {
  padding: 60px 0 120px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .fintech-landing-container .fintech-hero .hero-content {
    margin-bottom: 40px;
  }
}
.fintech-landing-container .fintech-hero .hero-content .hero-title {
  font-size: 60px;
  line-height: 72px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 24px;
}
.fintech-landing-container .fintech-hero .hero-content .hero-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 48px;
  line-height: 1.6;
}
@media screen and (max-width: 575px) {
  .fintech-landing-container .fintech-hero .hero-content .hero-description {
    margin-bottom: 32px;
  }
}
.fintech-landing-container .fintech-hero .hero-content .hero-actions form .form-group {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 6px;
}
.fintech-landing-container .fintech-hero .hero-content .hero-actions form .form-group .hero-input {
  flex-grow: 1;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
  margin-right: 16px;
}
.fintech-landing-container .fintech-hero .hero-content .hero-actions form .form-group .hero-btn {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  background: #fa5d64;
  color: #FFFFFF;
  border: none;
  transition: all 0.2s ease;
}
.fintech-landing-container .fintech-hero .hero-content .hero-actions form .form-group .hero-btn:hover {
  background: #fa5d64;
  transform: translateY(-2px);
}
.fintech-landing-container .fintech-hero .hero-content .hero-actions form p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
}
.fintech-landing-container .fintech-hero .hero-content .hero-actions form p a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
  text-decoration: underline;
}
.fintech-landing-container .fintech-hero .hero-content .hero-actions .hero-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .fintech-landing-container .fintech-hero .hero-content .hero-actions .hero-buttons {
    justify-content: center;
  }
}
.fintech-landing-container .fintech-hero .hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 400px;
  margin-top: -100px;
  position: relative;
}
.fintech-landing-container .fintech-hero .hero-visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 480px;
  background: #00b5dc;
  z-index: -1;
  border-radius: 16px;
}
@media screen and (max-width: 1199px) {
  .fintech-landing-container .fintech-hero .hero-visual::before {
    height: 360px;
  }
}
@media screen and (max-width: 991px) {
  .fintech-landing-container .fintech-hero .hero-visual::before {
    height: 250px;
    bottom: 26px;
  }
}
@media screen and (max-width: 767px) {
  .fintech-landing-container .fintech-hero .hero-visual::before {
    bottom: 0;
    height: 180px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 399px) {
  .fintech-landing-container .fintech-hero .hero-visual::before {
    height: 210px;
  }
}
.fintech-landing-container .fintech-hero .hero-visual .hero-image {
  max-height: 608px;
  object-fit: cover;
}
@media screen and (max-width: 1399px) {
  .fintech-landing-container .fintech-hero .hero-visual .hero-image {
    max-height: 538px;
  }
}
@media screen and (max-width: 1199px) {
  .fintech-landing-container .fintech-hero .hero-visual .hero-image {
    max-height: 438px;
  }
}
@media screen and (max-width: 991px) {
  .fintech-landing-container .fintech-hero .hero-visual .hero-image {
    max-height: none;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .fintech-landing-container .fintech-hero .hero-visual .hero-image {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fintech-landing-container .fintech-hero .hero-visual {
    align-items: flex-end;
    min-height: 300px;
  }
}
@media screen and (max-width: 575px) {
  .fintech-landing-container .fintech-hero .hero-visual {
    min-height: 280px;
  }
}
@media screen and (max-width: 480px) {
  .fintech-landing-container .fintech-hero .hero-visual {
    min-height: 240px;
  }
}
@media screen and (max-width: 360px) {
  .fintech-landing-container .fintech-hero .hero-visual {
    min-height: 220px;
  }
}

.joined-companies {
  padding: 96px 0;
}
.joined-companies .section-description {
  margin-bottom: 48px !important;
}
.joined-companies .company-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.joined-companies .company-logos .logo-item img {
  height: 80px;
  width: auto;
  transition: all 0.2s ease;
}

.simple-cta-section {
  padding: 120px 0;
}
.simple-cta-section .cta-content {
  padding-right: 40px;
}
.simple-cta-section .cta-content .cta-title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  color: #181D27;
  margin-bottom: 24px;
  line-height: 1.2;
}
.simple-cta-section .cta-content .cta-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 40px;
  line-height: 1.6;
}
.simple-cta-section .cta-content .cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.simple-cta-section .cta-content .cta-buttons .btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.simple-cta-section .cta-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: #414651;
  border-color: #E9EAEB;
}
.simple-cta-section .cta-content .cta-buttons .btn.btn-outline:hover {
  background: #FAFAFA;
  border-color: #fa5d64;
  color: #181D27;
  transform: translateY(-2px);
}
.simple-cta-section .cta-content .cta-buttons .btn.btn-primary {
  background: #fa5d64;
  color: #FFFFFF;
  border-color: #fa5d64;
}
.simple-cta-section .cta-content .cta-buttons .btn.btn-primary:hover {
  background: #fa5d64;
  border-color: #fa5d64;
  transform: translateY(-2px);
}
.simple-cta-section .cta-image {
  padding-left: 40px;
}
.simple-cta-section .cta-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.simple-cta-section .cta-image img:hover {
  transform: translateY(-8px);
}

.customer-reviews {
  padding: 96px 0;
}
.customer-reviews .section-description {
  margin: 0;
}
.customer-reviews .review-slider {
  margin-top: 64px;
}
.customer-reviews .review-slider .nav-arrows {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}
.customer-reviews .review-slider .nav-arrows .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  padding: 16px;
  border: 1px solid #E9EAEB;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.customer-reviews .review-slider .nav-arrows .button:hover:not(.swiper-button-disabled) {
  border-color: #fa5d64;
}
.customer-reviews .review-slider .nav-arrows .button.swiper-button-disabled {
  opacity: 0.5;
}
.customer-reviews .review-card {
  position: relative;
  overflow: hidden;
  /*&:hover {
      .review-content {
          .review {
              opacity: 1;
              transform: translateY(0);
          }

          .play-icon {
              opacity: 1;
              transform: translateY(0);
          }
      }
  }*/
}
.customer-reviews .review-card .review-image img {
  width: 100%;
  height: 528px;
  object-fit: cover;
}
.customer-reviews .review-card .review-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}
.customer-reviews .review-card .review-content .review {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.6;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s linear;
  overflow: hidden;
}
.customer-reviews .review-card .review-content .play-icon {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s linear;
  overflow: hidden;
  text-align: center;
  margin-bottom: 20px;
}
.customer-reviews .review-card .review-content .play-icon img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.customer-reviews .review-card .review-content .information {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.124);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  padding: 20px;
  transition: all 0.4s linear;
}
.customer-reviews .review-card .review-content .information .name-and-stars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.customer-reviews .review-card .review-content .information .name-and-stars .stars {
  display: flex;
  gap: 4px;
}
.customer-reviews .review-card .review-content .information .name-and-stars .stars img {
  width: 20px;
}
.customer-reviews .review-card .review-content .information .name-and-stars .name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #FFFFFF;
}
.customer-reviews .review-card .review-content .information .text-and-supportingText {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.customer-reviews .review-card .review-content .information .text-and-supportingText .review-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #FFFFFF;
}
.customer-reviews .review-card .review-content .information .text-and-supportingText .supporting-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #FFFFFF;
}

@media (max-width: 992px) {
  .simple-cta-section {
    padding: 80px 0;
  }
  .simple-cta-section .cta-content {
    padding-right: 0;
    margin-bottom: 60px;
  }
  .simple-cta-section .cta-image {
    padding-left: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .simple-cta-section {
    padding: 60px 0;
  }
  .simple-cta-section .cta-content {
    margin-bottom: 40px;
  }
  .simple-cta-section .cta-content .cta-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .simple-cta-section .cta-content .cta-description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 32px;
  }
  .simple-cta-section .cta-content .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .simple-cta-section .cta-content .cta-buttons .btn {
    width: 200px;
  }
  .customer-reviews {
    padding: 60px 0;
  }
  .customer-reviews .cta-buttons {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .customer-reviews .review-slider .nav-arrows {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .simple-cta-section .cta-content .cta-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
  }
  .simple-cta-section .cta-content .cta-description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.simple-cta-container .cta-content {
  animation: fadeInUp 0.8s ease-out;
}
.simple-cta-container .cta-image {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@media (prefers-reduced-motion: reduce) {
  .simple-cta-container * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .simple-cta-container .cta-image img {
    border: 2px solid #D5D7DA;
  }
  .simple-cta-container .btn {
    border-width: 2px !important;
  }
}
.simple-cta-container .btn:focus {
  outline: 2px solid #42307D;
  outline-offset: 2px;
}
.simple-cta-container .cta-image:focus-within {
  outline: 2px solid #42307D;
  outline-offset: 4px;
}

.trust-section {
  padding: 80px 0;
  background: #F9F5FF;
  text-align: center;
}
.trust-section .trust-content {
  max-width: 600px;
  margin: 0 auto;
}
.trust-section .trust-content .trust-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: #181D27;
  margin-bottom: 16px;
}
.trust-section .trust-content .trust-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 32px;
}
.trust-section .trust-content .btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  background: #fa5d64;
  color: #FFFFFF;
  border: none;
  transition: all 0.2s ease;
}
.trust-section .trust-content .btn:hover {
  background: #fa5d64;
  transform: translateY(-2px);
}

.financial-tools-section {
  padding: 100px 0;
  background: #FFFFFF;
}
.financial-tools-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.financial-tools-section .section-header .section-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: #181D27;
  max-width: 800px;
  margin: 0 auto;
}
.financial-tools-section .tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.financial-tools-section .tools-grid .tool-card {
  padding: 32px;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
}
.financial-tools-section .tools-grid .tool-card:hover {
  border-color: #fa5d64;
  transform: translateY(-4px);
  box-shadow: 0px 2px 2px -1px rgba(10, 13, 18, 0.04), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 12px 16px -4px rgba(10, 13, 18, 0.08);
}
.financial-tools-section .tools-grid .tool-card .tool-icon {
  width: 64px;
  height: 64px;
  background: #fff0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #42307D;
}
.financial-tools-section .tools-grid .tool-card .tool-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 12px;
}
.financial-tools-section .tools-grid .tool-card .tool-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #414651;
  line-height: 1.6;
}

.new-pricing-section {
  padding: 120px 0;
  background: #FFFFFF;
}
.new-pricing-section .pricing-header {
  text-align: left;
  margin-bottom: 80px;
}
.new-pricing-section .pricing-header .upgrade-badge {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #fa5d64;
  display: inline-block;
  margin-bottom: 16px;
}
.new-pricing-section .pricing-header .pricing-title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  color: #181D27;
  margin-bottom: 20px;
  line-height: 1.2;
}
.new-pricing-section .pricing-header .pricing-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  line-height: 1.6;
  max-width: 600px;
}
.new-pricing-section .features-list {
  padding-right: 20px;
}
.new-pricing-section .features-list .feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.new-pricing-section .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #FAFAFA;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #414651;
  border: 1px solid #E9EAEB;
}
.new-pricing-section .features-list .feature-item .feature-content .feature-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 4px;
}
.new-pricing-section .features-list .feature-item .feature-content .feature-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #535862;
  line-height: 1.6;
}
.new-pricing-section .pricing-card {
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0px 2px 2px -1px rgba(10, 13, 18, 0.04), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 12px 16px -4px rgba(10, 13, 18, 0.08);
  margin-left: 0 32px 0 20px;
}
.new-pricing-section .pricing-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 32px 24px;
  border-bottom: 1px solid #E9EAEB;
}
@media screen and (max-width: 575px) {
  .new-pricing-section .pricing-card .card-header {
    padding-inline: 16px;
  }
}
.new-pricing-section .pricing-card .card-header .plan-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.new-pricing-section .pricing-card .card-header .plan-info .plan-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.new-pricing-section .pricing-card .card-header .plan-info .plan-heading h2.plan-name {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
}
.new-pricing-section .pricing-card .card-header .plan-info .plan-heading .plan-name {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin: 0;
}
.new-pricing-section .pricing-card .card-header .plan-info .plan-heading .popular-badge {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #42307D;
  background: #fff0f0;
  padding: 4px 8px;
  border-radius: 12px;
}
.new-pricing-section .pricing-card .card-header .plan-info .plan-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #535862;
  margin: 0;
}
.new-pricing-section .pricing-card .card-header .plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0;
}
.new-pricing-section .pricing-card .card-header .plan-price .price {
  font-size: 60px;
  line-height: 72px;
  font-weight: 600;
  color: #181D27;
}
.new-pricing-section .pricing-card .card-header .plan-price .price small {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  position: relative;
  top: -16px;
}
@media screen and (max-width: 480px) {
  .new-pricing-section .pricing-card .card-header .plan-price .price small {
    font-size: 24px;
    top: -12px;
  }
}
.new-pricing-section .pricing-card .card-header .plan-price .period {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #535862;
}
@media screen and (max-width: 575px) {
  .new-pricing-section .pricing-card .card-header .plan-price .period {
    font-size: 14px;
    white-space: nowrap;
  }
}
.new-pricing-section .pricing-card .card-header .plan-price.small-price .price {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
}
.new-pricing-section .pricing-card .card-header .plan-price.small-price .price small {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  top: -6px;
}
.new-pricing-section .pricing-card .card-body {
  padding: 32px 32px 40px;
}
@media screen and (max-width: 575px) {
  .new-pricing-section .pricing-card .card-body {
    padding-inline: 16px;
  }
}
.new-pricing-section .pricing-card .card-body .team-header {
  margin-bottom: 24px;
}
.new-pricing-section .pricing-card .card-body .team-header label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #181D27;
  margin-bottom: 6px;
}
.new-pricing-section .pricing-card .card-body .team-header .form-control {
  height: 50px;
}
.new-pricing-section .pricing-card .card-body .features-header {
  margin-bottom: 24px;
}
.new-pricing-section .pricing-card .card-body .features-header h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #181D27;
  margin-bottom: 4px;
}
.new-pricing-section .pricing-card .card-body .features-header p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #535862;
  margin: 0;
}
.new-pricing-section .pricing-card .card-footer {
  padding: 32px;
  border-top: 1px solid #E9EAEB;
}
@media screen and (max-width: 575px) {
  .new-pricing-section .pricing-card .card-footer {
    padding-inline: 16px;
  }
}
.new-pricing-section .pricing-card .card-footer .btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  width: 100%;
  padding: 12px 24px;
  border-radius: 8px;
  background: #fa5d64;
  color: #FFFFFF;
  border: none;
  transition: all 0.2s ease;
}
.new-pricing-section .pricing-card .card-footer .btn:hover {
  background: #fa5d64;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .new-pricing-section {
    padding: 80px 0;
  }
  .new-pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .new-pricing-section .features-list {
    padding-right: 0;
    margin-bottom: 60px;
  }
  .new-pricing-section .features-list .feature-item {
    margin-bottom: 32px;
  }
  .new-pricing-section .pricing-card {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .new-pricing-section {
    padding: 60px 0;
  }
  .new-pricing-section .pricing-header .pricing-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
  }
  .new-pricing-section .pricing-header .pricing-description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .new-pricing-section .features-list .feature-item .feature-content .feature-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }
  .new-pricing-section .features-list .feature-item .feature-content .feature-description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }
  .new-pricing-section .pricing-card {
    padding: 0;
  }
  .new-pricing-section .pricing-card .card-body .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .new-pricing-section {
    padding: 40px 0;
  }
  .new-pricing-section .pricing-header .pricing-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
  }
  .new-pricing-section .pricing-header .pricing-description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .new-pricing-section .features-list .feature-item {
    gap: 16px;
    margin-bottom: 24px;
  }
  .new-pricing-section .features-list .feature-item .feature-icon {
    width: 40px;
    height: 40px;
  }
  .new-pricing-section .pricing-card {
    padding: 0;
  }
  .new-pricing-section .pricing-card .card-header .plan-price .price {
    font-size: 40px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.new-pricing-container .pricing-header {
  animation: fadeInUp 0.8s ease-out;
}
.new-pricing-container .feature-item {
  animation: fadeInUp 0.6s ease-out;
}
.new-pricing-container .feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.new-pricing-container .feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.new-pricing-container .feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.new-pricing-container .pricing-card {
  animation: slideInRight 0.8s ease-out 0.4s both;
}

@media (prefers-reduced-motion: reduce) {
  .new-pricing-container * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .new-pricing-container .pricing-card {
    border-width: 2px;
  }
  .new-pricing-container .feature-icon {
    border-width: 2px;
  }
  .new-pricing-container .btn {
    border-width: 2px !important;
  }
}
.new-pricing-container .btn:focus {
  outline: 2px solid #42307D;
  outline-offset: 2px;
}
.new-pricing-container .feature-item:focus-within {
  outline: 2px solid #42307D;
  outline-offset: 4px;
  border-radius: 8px;
}

.cta-section {
  padding: 80px 0;
  background: #fa5d64;
  text-align: center;
}
.cta-section .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.cta-section .cta-content .cta-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.cta-section .cta-content .cta-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #E9D7FE;
  margin-bottom: 32px;
}
.cta-section .cta-content .cta-form {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.cta-section .cta-content .cta-form .form-control {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #E9D7FE;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.cta-section .cta-content .cta-form .form-control::placeholder {
  color: #717680;
}
.cta-section .cta-content .cta-form .form-control:focus {
  outline: none;
  border-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}
.cta-section .cta-content .cta-form .btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  background: #FFFFFF;
  color: #42307D;
  border: none;
  transition: all 0.2s ease;
}
.cta-section .cta-content .cta-form .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.dashboard-section {
  padding: 96px 0 0;
  background: #FFFFFF;
}
.dashboard-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.dashboard-section .section-header .section-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: #181D27;
  margin-bottom: 20px;
}
.dashboard-section .section-header .section-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  max-width: 600px;
  margin: 0 auto;
}
.dashboard-section .dashboard-mockup {
  text-align: center;
}
.dashboard-section .dashboard-mockup .dashboard-image {
  width: 100%;
  height: auto;
}

.blog-section {
  padding: 100px 0;
  background: #FAFAFA;
}
.blog-section .section-header {
  margin-bottom: 60px;
}
.blog-section .section-header .section-header-content .section-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: #181D27;
}
.blog-section .section-header .section-header-content .btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  background: #fa5d64;
  color: #FFFFFF;
  border: none;
  transition: all 0.2s ease;
}
.blog-section .section-header .section-header-content .btn:hover {
  background: #fa5d64;
  transform: translateY(-2px);
}
@media (max-width: 575px) {
  .blog-section .section-header .cta-buttons {
    margin-top: 26px;
  }
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}
.blog-section .blog-grid .blog-card {
  border: none;
}
.blog-section .blog-grid .blog-card:hover .blog-image {
  border-color: #fa5d64;
  transform: translateY(-4px);
  box-shadow: 0px 2px 2px -1px rgba(10, 13, 18, 0.04), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 12px 16px -4px rgba(10, 13, 18, 0.08);
}
.blog-section .blog-grid .blog-card:hover .blog-content .arrow img {
  transform: rotate(45deg);
}
.blog-section .blog-grid .blog-card .blog-image {
  border-radius: 12px 12px 0 0;
  transition: all 0.2s ease;
  overflow: hidden;
  margin-bottom: 12px;
}
.blog-section .blog-grid .blog-card .blog-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.blog-section .blog-grid .blog-card .blog-content {
  padding: 0;
}
.blog-section .blog-grid .blog-card .blog-content .arrow img {
  transition: all 0.2s ease;
}
.blog-section .blog-grid .blog-card .blog-content .blog-category {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #42307D;
  display: inline-block;
  margin-bottom: 8px;
}
.blog-section .blog-grid .blog-card .blog-content .blog-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 4px;
}
.blog-section .blog-grid .blog-card .blog-content .blog-excerpt {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #535862;
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-section .blog-grid .blog-card .blog-content .blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-section .blog-grid .blog-card .blog-content .blog-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-section .blog-grid .blog-card .blog-content .blog-author .author-info .author-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 2px;
}
.blog-section .blog-grid .blog-card .blog-content .blog-author .author-info .blog-date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
}

@media (max-width: 992px) {
  .features .features-grid {
    max-height: none;
    max-width: 100%;
    overflow-y: visible;
  }
  .features .features-grid .feature-card {
    margin-bottom: 16px;
  }
  .features .features-grid .feature-image {
    height: auto;
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .fintech-landing-container .fintech-hero {
    padding: 80px 0 60px;
  }
  .fintech-landing-container .fintech-hero .hero-content {
    text-align: center;
    margin-bottom: 0;
  }
  .fintech-landing-container .fintech-hero .hero-content .hero-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
  }
  .fintech-landing-container .fintech-hero .hero-content .hero-description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .fintech-landing-container .fintech-hero .hero-visual .credit-cards-stack {
    width: 250px;
    height: 160px;
  }
  .fintech-landing-container .fintech-hero .hero-visual .credit-cards-stack .credit-card {
    width: 240px;
    height: 150px;
    padding: 20px;
  }
  .fintech-landing-container .fintech-hero .company-logos {
    gap: 20px;
  }
  .fintech-landing-container .fintech-hero .company-logos .logo-item img {
    height: 24px;
  }
  .fintech-landing-container .joined-companies, .fintech-landing-container .features-section, .fintech-landing-container .social-proof-section, .fintech-landing-container .financial-tools-section, .fintech-landing-container .blog-section {
    padding: 60px 0;
  }
  .fintech-landing-container .dashboard-section {
    padding: 0;
  }
  .fintech-landing-container .testimonials-grid,
  .fintech-landing-container .tools-grid,
  .fintech-landing-container .blog-grid {
    grid-template-columns: 1fr;
  }
  .fintech-landing-container .pricing-table .pricing-header-row,
  .fintech-landing-container .pricing-table .pricing-row,
  .fintech-landing-container .pricing-table .pricing-actions-row {
    grid-template-columns: 1fr;
  }
  .fintech-landing-container .pricing-table .pricing-header-row .pricing-cell,
  .fintech-landing-container .pricing-table .pricing-row .pricing-cell,
  .fintech-landing-container .pricing-table .pricing-actions-row .pricing-cell {
    border-left: none;
    border-top: 1px solid #E9EAEB;
  }
  .fintech-landing-container .pricing-table .pricing-header-row .pricing-cell:first-child,
  .fintech-landing-container .pricing-table .pricing-row .pricing-cell:first-child,
  .fintech-landing-container .pricing-table .pricing-actions-row .pricing-cell:first-child {
    border-top: none;
  }
  .fintech-landing-container .cta-section .cta-form {
    flex-direction: column;
    max-width: 300px;
  }
  .fintech-landing-container .blog-section .section-header .section-header-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .fintech-landing-container .company-logos .logo-item {
    flex: 1;
    max-width: 50%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .fintech-landing-container .fintech-hero {
    padding: 60px 0 60px;
  }
  .fintech-landing-container .features-section,
  .fintech-landing-container .social-proof-section,
  .fintech-landing-container .financial-tools-section,
  .fintech-landing-container .dashboard-section,
  .fintech-landing-container .blog-section {
    padding: 60px 0;
  }
  .fintech-landing-container .section-header .section-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
  }
  .fintech-landing-container .section-header .section-description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .fintech-landing-container .company-logos .logo-item img {
    height: 60px;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fintech-landing-container .credit-card {
  animation: float 6s ease-in-out infinite;
}
.fintech-landing-container .credit-card:nth-child(2) {
  animation-delay: -2s;
}
.fintech-landing-container .credit-card:nth-child(3) {
  animation-delay: -4s;
}
.fintech-landing-container .feature-item,
.fintech-landing-container .testimonial-card,
.fintech-landing-container .tool-card,
.fintech-landing-container .blog-card {
  animation: fadeInUp 0.6s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .fintech-landing-container * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .fintech-landing-container .testimonial-card,
  .fintech-landing-container .tool-card,
  .fintech-landing-container .blog-card,
  .fintech-landing-container .pricing-table {
    border-width: 2px;
  }
}
.newsletter-section {
  padding: 80px 0;
  background: #FAFAFA;
}
.newsletter-section .newsletter-content .newsletter-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 20px;
  line-height: 1.2;
}
.newsletter-section .newsletter-content .newsletter-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #535862;
  line-height: 1.6;
  margin: 0;
}
.newsletter-section .newsletter-form-wrapper {
  padding-left: 40px;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group {
  display: flex;
  border: 1px solid #E9EAEB;
  border-radius: 8px;
  overflow: hidden;
  background: #FFFFFF;
  transition: all 0.2s ease;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group:focus-within {
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .email-input {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  flex: 1;
  border: none;
  padding: 12px 16px;
  background: transparent;
  color: #181D27;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .email-input::placeholder {
  color: #717680;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .email-input:focus {
  outline: none;
  box-shadow: none;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .subscribe-btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  background: #fa5d64;
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .subscribe-btn:hover:not(:disabled) {
  background: #fa5d64;
  transform: none;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .subscribe-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .privacy-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #414651;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .privacy-text .privacy-link {
  color: #42307D;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .privacy-text .privacy-link:hover {
  color: #fa5d64;
  text-decoration: none;
}
.newsletter-section .newsletter-form-wrapper .form-message {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 16px;
  text-align: center;
}
.newsletter-section .newsletter-form-wrapper .form-message.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.newsletter-section .newsletter-form-wrapper .form-message.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

@media (max-width: 992px) {
  .newsletter-section {
    padding: 60px 0;
  }
  .newsletter-section .newsletter-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .newsletter-section .newsletter-form-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .newsletter-section {
    padding: 50px 0;
  }
  .newsletter-section .newsletter-content {
    margin-bottom: 32px;
  }
  .newsletter-section .newsletter-content .newsletter-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .email-input {
    border-bottom: 1px solid #E9EAEB;
    border-radius: 0;
    width: 100%;
  }
  .newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .subscribe-btn {
    border-radius: 0;
    padding: 14px 24px;
  }
  .newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .privacy-text {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .newsletter-section {
    padding: 40px 0;
  }
  .newsletter-section .newsletter-content .newsletter-description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .email-input {
    padding: 14px 16px;
  }
  .newsletter-section .newsletter-form-wrapper .newsletter-form .form-group .input-group .subscribe-btn {
    padding: 16px 24px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
  }
}
main {
  margin-top: 96px;
}

.features-page {
  background: #FFFFFF;
  padding: 96px 0;
}
.features-page .features-header {
  text-align: center;
  margin-bottom: 96px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.features-page .features-header .features-badge {
  display: inline-flex;
  align-items: center;
  color: #fa5d64;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.features-page .features-header .page-title {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 20px;
  line-height: 1.2;
}
.features-page .features-header .page-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #535862;
  line-height: 1.6;
  margin: 0;
}
.features-page .features-section .feature-row {
  margin-bottom: 96px;
}
.features-page .features-section .feature-row:last-child {
  margin-bottom: 0;
}
.features-page .features-section .feature-row .feature-content {
  padding-right: 40px;
}
.features-page .features-section .feature-row .feature-content .feature-icon {
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #fff0f0;
  border: none;
}
.features-page .features-section .feature-row .feature-content .feature-icon svg {
  width: 48px;
  height: 48px;
}
.features-page .features-section .feature-row .feature-content .feature-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 16px;
  line-height: 1.3;
}
.features-page .features-section .feature-row .feature-content .feature-description {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #535862;
  margin-bottom: 32px;
  line-height: 1.6;
}
.features-page .features-section .feature-row .feature-content .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-page .features-section .feature-row .feature-content .feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.features-page .features-section .feature-row .feature-content .feature-list .feature-item:last-child {
  margin-bottom: 0;
}
.features-page .features-section .feature-row .feature-content .feature-list .feature-item .check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff0f0;
}
.features-page .features-section .feature-row .feature-content .feature-list .feature-item span {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #535862;
  line-height: 1.5;
}
.features-page .features-section .feature-row .feature-image::before {
  display: none;
}
.features-page .features-section .feature-row .feature-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.features-page .features-section .feature-row.feature-row-reverse .feature-content {
  padding-right: 0;
  padding-left: 40px;
}

@media (max-width: 992px) {
  .features-page {
    padding: 80px 0;
  }
  .features-page .features-header {
    margin-bottom: 50px;
    text-align: left;
  }
  .features-page .features-header .page-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
  .features-page .features-header .page-description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .features-page .features-section .feature-row {
    margin-bottom: 48px;
  }
  .features-page .features-section .feature-row .feature-content {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-bottom: 32px;
  }
  .features-page .features-section .feature-row .feature-content .feature-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .features-page .features-section .feature-row .feature-content .feature-list .feature-item span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .features-page .feature-image {
    justify-content: flex-start;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .features-page {
    padding: 42px 0 80px;
  }
  .features-page .features-section .feature-row {
    margin-bottom: 64px;
  }
  .features-page .features-section .feature-row .feature-content {
    margin-bottom: 20px;
  }
  .features-page .features-section .feature-row .feature-content .feature-icon {
    margin-bottom: 24px;
  }
  .features-page .features-section .feature-row .feature-content .feature-icon svg {
    width: 40px;
    height: 40px;
  }
  .features-page .features-section .feature-row .feature-content .feature-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .features-page .features-section .feature-row .feature-content .feature-description {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .features-page .features-section .feature-row .feature-content .feature-list .feature-item {
    margin-bottom: 12px;
  }
  .features-page .features-section .feature-row .feature-image {
    margin-top: 0;
  }
  .features-page .features-section .feature-row .feature-image img {
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .features-page .features-section .feature-row {
    margin-bottom: 48px;
  }
  .features-page .features-section .feature-row .feature-content .feature-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
  }
  .features-page .features-section .feature-row .feature-content .feature-list .feature-item {
    gap: 8px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features-page-container .features-header {
  animation: fadeInUp 0.8s ease-out;
}
.features-page-container .feature-row {
  animation: fadeInUp 0.8s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .features-page-container * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.features-page-container .feature-image {
  transition: transform 0.3s ease;
}
.features-page-container .feature-image:hover {
  transform: translateY(-8px);
}
.features-page-container .feature-icon {
  transition: transform 0.3s ease;
}
.features-page-container .feature-icon:hover {
  transform: scale(1.05);
}

.signup-container {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.signup-container .signup-form-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 32px;
  overflow-y: auto;
  position: relative;
}
.signup-container .signup-form-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.signup-container .signup-form-section .logo-container {
  margin-bottom: 16px;
}
.signup-container .signup-form-section .logo-container .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.signup-container .signup-form-section .logo-container .logo img {
  height: 50px;
  object-fit: contain;
}
.signup-container .signup-form-section .logo-container .logo svg {
  width: 32px;
  height: 32px;
}
.signup-container .signup-form-section .logo-container .logo .logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #181D27;
}
.signup-container .signup-form-section .form-container {
  max-width: 600px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
}
.signup-container .signup-form-section .form-container .form-header {
  margin-bottom: 32px;
}
.signup-container .signup-form-section .form-container .form-header .form-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 8px;
}
.signup-container .signup-form-section .form-container .form-header .form-subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #535862;
}
.signup-container .signup-form-section .form-container .signup-form .form-group {
  margin-bottom: 20px;
}
.signup-container .signup-form-section .form-container .signup-form .form-group .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #181D27;
}
.signup-container .signup-form-section .form-container .signup-form .form-group .form-input.error {
  border-color: #F04438;
}
.signup-container .signup-form-section .form-container .signup-form .form-group .form-input.error:focus {
  border-color: #F04438;
  box-shadow: 0px 0px 0px 4px rgba(240, 68, 56, 0.12);
}
.signup-container .signup-form-section .form-container .signup-form .form-group .password-wrapper {
  position: relative;
}
.signup-container .signup-form-section .form-container .signup-form .form-group .password-wrapper .password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #717680;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.signup-container .signup-form-section .form-container .signup-form .form-group .password-wrapper .password-toggle:hover {
  color: #535862;
}
.signup-container .signup-form-section .form-container .signup-form .form-group .password-wrapper .password-toggle .eye-icon {
  width: 20px;
  height: 20px;
}
.signup-container .signup-form-section .form-container .signup-form .form-group .password-hint {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #535862;
  margin-top: 6px;
}
.signup-container .signup-form-section .form-container .signup-form .form-group .error-message {
  display: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #D92D20;
  margin-top: 6px;
}
.signup-container .signup-form-section .form-container .signup-form .btn-primary {
  width: 100%;
  margin-bottom: 16px;
}
.signup-container .signup-form-section .form-container .signup-form .btn-primary:hover:not(:disabled) {
  background-color: #fa5d64;
  border-color: #fa5d64;
}
.signup-container .signup-form-section .form-container .signup-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.signup-container .signup-form-section .form-container .signup-form .btn-primary .btn-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.signup-container .signup-form-section .form-container .signup-form .btn-primary .btn-spinner .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #FFFFFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.signup-container .signup-form-section .form-container .signup-form .btn-google {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #181D27;
  background-color: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 32px;
}
.signup-container .signup-form-section .form-container .signup-form .btn-google:hover {
  background-color: #FAFAFA;
  border-color: #E9EAEB;
}
.signup-container .signup-form-section .form-container .signup-form .btn-google .google-icon {
  width: 20px;
  height: 20px;
}
.signup-container .signup-form-section .form-container .signup-form .login-link {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #535862;
}
.signup-container .signup-form-section .form-container .signup-form .login-link .login-text {
  color: #7F56D9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.signup-container .signup-form-section .form-container .signup-form .login-link .login-text:hover {
  color: #fa5d64;
}
.signup-container .signup-form-section .form-container .signup-form .login-link .login-text:focus {
  outline: none;
  text-decoration: underline;
}
.signup-container .signup-form-section .form-container .form-footer {
  max-width: 360px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .signup-container .signup-form-section .form-container .features-grid {
    grid-template-columns: 1fr;
  }
}
.signup-container .image-section {
  flex: 1;
  position: relative;
  background-color: #FAFAFA;
  overflow: hidden;
}
.signup-container .image-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 414px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.signup-container .image-section .background-image {
  width: 100%;
  height: 100%;
}
.signup-container .image-section .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signup-container .image-section .testimonial-card {
  position: absolute;
  bottom: 32px;
  right: 32px;
  left: 32px;
  padding: 24px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.54);
}
.signup-container .image-section .testimonial-card .testimonial-content .testimonial-quote {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.signup-container .image-section .testimonial-card .testimonial-content .testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.signup-container .image-section .testimonial-card .testimonial-content .testimonial-author .author-info .author-name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.signup-container .image-section .testimonial-card .testimonial-content .testimonial-author .author-info .author-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.signup-container .image-section .testimonial-card .testimonial-content .testimonial-author .author-info .author-company {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0;
}
.signup-container .image-section .testimonial-card .testimonial-content .testimonial-author .rating {
  display: flex;
  gap: 4px;
  margin-top: 7px;
}
.signup-container .image-section .testimonial-card .testimonial-content .testimonial-author .rating svg,
.signup-container .image-section .testimonial-card .testimonial-content .testimonial-author .rating img {
  width: 20px;
  height: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .signup-container .signup-form-section {
    padding: 24px 48px;
  }
  .signup-container .image-section .testimonial-card {
    bottom: 24px;
    right: 24px;
    padding: 20px;
  }
  .signup-container .image-section .testimonial-card .testimonial-content .testimonial-quote {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .signup-container .image-section .testimonial-card .testimonial-content .testimonial-author {
    flex-direction: column-reverse;
  }
  .signup-container .image-section .testimonial-card .testimonial-content .testimonial-author .author-info .author-name {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .signup-container {
    flex-direction: column;
  }
  .signup-container .signup-form-section {
    flex: none;
    height: auto;
    min-height: 100vh;
    padding: 24px 32px;
  }
  .signup-container .signup-form-section .logo-container {
    margin-bottom: 48px;
  }
  .signup-container .signup-form-section .form-container {
    max-width: 100%;
  }
  .signup-container .signup-form-section .form-container .form-header {
    margin-bottom: 24px;
  }
  .signup-container .signup-form-section .form-container .form-header .form-title {
    font-size: 24px;
    line-height: 32px;
  }
  .signup-container .image-section {
    display: none;
  }
}
@media (max-width: 480px) {
  .signup-container .signup-form-section {
    padding: 20px 24px;
  }
  .signup-container .signup-form-section .logo-container {
    margin-bottom: 32px;
  }
  .signup-container .signup-form-section .form-container .form-group {
    margin-bottom: 16px;
  }
  .signup-container .signup-form-section .form-container .form-group .form-input {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .signup-container .signup-form-section {
    border-right: 2px solid #181D27;
  }
  .signup-container .form-input {
    border-width: 2px;
  }
  .signup-container .btn-primary,
  .signup-container .btn-google {
    border-width: 2px;
  }
}
.form-input:focus-visible,
.btn-primary:focus-visible,
.btn-google:focus-visible,
.login-text:focus-visible {
  outline: 2px solid #fa5d64;
  outline-offset: 2px;
}

.login-container {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.login-container .login-form-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 32px;
  overflow-y: auto;
  position: relative;
}
.login-container .login-form-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.login-container .login-form-section .logo-container {
  margin-bottom: 16px;
}
.login-container .login-form-section .logo-container .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login-container .login-form-section .logo-container .logo svg {
  width: 32px;
  height: 32px;
}
.login-container .login-form-section .logo-container .logo .logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #181D27;
}
.login-container .login-form-section .form-container {
  max-width: 360px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
}
.login-container .login-form-section .form-container .form-header {
  margin-bottom: 32px;
}
.login-container .login-form-section .form-container .form-header .form-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 8px;
}
.login-container .login-form-section .form-container .form-header .form-subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #535862;
}
.login-container .login-form-section .form-container .form-header .form-subtitle strong {
  font-weight: 500;
}
.login-container .login-form-section .form-container .form-header .header-icon {
  width: 56px;
  height: 56px;
  border: 1px solid #D5D7DA;
  padding: 8px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  margin: 0 auto 24px;
}
.login-container .login-form-section .form-container .form-header .header-icon .icon {
  width: 28px;
  height: 28px;
}
.login-container .login-form-section .form-container .login-form .form-group {
  margin-bottom: 20px;
}
.login-container .login-form-section .form-container .login-form .form-group .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #181D27;
}
.login-container .login-form-section .form-container .login-form .form-group .form-input.error {
  border-color: #F04438;
}
.login-container .login-form-section .form-container .login-form .form-group .form-input.error:focus {
  border-color: #F04438;
  box-shadow: 0px 0px 0px 4px rgba(240, 68, 56, 0.12);
}
.login-container .login-form-section .form-container .login-form .form-group .password-wrapper {
  position: relative;
}
.login-container .login-form-section .form-container .login-form .form-group .password-wrapper .password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #717680;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.login-container .login-form-section .form-container .login-form .form-group .password-wrapper .password-toggle:hover {
  color: #535862;
}
.login-container .login-form-section .form-container .login-form .form-group .password-wrapper .password-toggle .eye-icon {
  width: 20px;
  height: 20px;
}
.login-container .login-form-section .form-container .login-form .form-group .password-hint {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #535862;
  margin-top: 6px;
}
.login-container .login-form-section .form-container .login-form .form-group .error-message {
  display: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #D92D20;
  margin-top: 6px;
}
.login-container .login-form-section .form-container .login-form .remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.login-container .login-form-section .form-container .login-form .remember-forgot .remember-me {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  gap: 8px;
}
.login-container .login-form-section .form-container .login-form .remember-forgot .forgot-link .forgot-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #fa5d64;
  text-decoration: none;
}
.login-container .login-form-section .form-container .login-form .remember-forgot .forgot-link .forgot-text:hover {
  text-decoration: underline;
}
.login-container .login-form-section .form-container .login-form .btn-primary {
  width: 100%;
  margin-bottom: 16px;
}
.login-container .login-form-section .form-container .login-form .btn-primary:hover:not(:disabled) {
  background-color: #fa5d64;
  border-color: #fa5d64;
}
.login-container .login-form-section .form-container .login-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.login-container .login-form-section .form-container .login-form .btn-primary .btn-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-container .login-form-section .form-container .login-form .btn-primary .btn-spinner .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #FFFFFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.login-container .login-form-section .form-container .login-form .btn-google {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #181D27;
  background-color: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 32px;
}
.login-container .login-form-section .form-container .login-form .btn-google:hover {
  background-color: #FAFAFA;
  border-color: #E9EAEB;
}
.login-container .login-form-section .form-container .login-form .btn-google .google-icon {
  width: 20px;
  height: 20px;
}
.login-container .login-form-section .form-container .login-form .login-link {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #535862;
}
.login-container .login-form-section .form-container .login-form .login-link .login-text {
  color: #7F56D9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.login-container .login-form-section .form-container .login-form .login-link .login-text:hover {
  color: #fa5d64;
}
.login-container .login-form-section .form-container .login-form .login-link .login-text:focus {
  outline: none;
  text-decoration: underline;
}
.login-container .login-form-section .form-container .login-form .resend-link {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-weight: 400;
  color: #535862;
  margin: 32px 0;
}
.login-container .login-form-section .form-container .login-form .resend-link .resend-text {
  color: #7F56D9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.login-container .login-form-section .form-container .login-form .resend-link .resend-text:hover {
  color: #fa5d64;
}
.login-container .login-form-section .form-container .login-form .resend-link .resend-text:focus {
  outline: none;
  text-decoration: underline;
}
.login-container .login-form-section .form-container .login-form .form-footer-link {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #535862;
}
.login-container .login-form-section .form-container .login-form .form-footer-link .link-text {
  color: #535862;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.login-container .login-form-section .form-container .login-form .form-footer-link .link-text:hover {
  color: #7F56D9;
}
.login-container .login-form-section .form-container .login-form .form-footer-link .link-text:hover img {
  transform: translateX(-4px);
}
.login-container .login-form-section .form-container .login-form .form-footer-link .link-text:focus {
  outline: none;
  text-decoration: underline;
}
.login-container .login-form-section .form-container .login-form .form-footer-link .link-text img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.login-container .image-section {
  flex: 1;
  position: relative;
  background-color: #FAFAFA;
  overflow: hidden;
}
.login-container .image-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 414px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.login-container .image-section .background-image {
  width: 100%;
  height: 100%;
}
.login-container .image-section .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login-container .image-section .testimonial-card {
  position: absolute;
  bottom: 32px;
  right: 32px;
  left: 32px;
  padding: 24px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.54);
}
.login-container .image-section .testimonial-card .testimonial-content .testimonial-quote {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.login-container .image-section .testimonial-card .testimonial-content .testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.login-container .image-section .testimonial-card .testimonial-content .testimonial-author .author-info .author-name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.login-container .image-section .testimonial-card .testimonial-content .testimonial-author .author-info .author-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.login-container .image-section .testimonial-card .testimonial-content .testimonial-author .author-info .author-company {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0;
}
.login-container .image-section .testimonial-card .testimonial-content .testimonial-author .rating {
  display: flex;
  gap: 4px;
  margin-top: 7px;
}
.login-container .image-section .testimonial-card .testimonial-content .testimonial-author .rating svg,
.login-container .image-section .testimonial-card .testimonial-content .testimonial-author .rating img {
  width: 20px;
  height: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .login-container .login-form-section {
    padding: 24px 48px;
  }
  .login-container .image-section .testimonial-card {
    bottom: 24px;
    right: 24px;
    padding: 20px;
  }
  .login-container .image-section .testimonial-card .testimonial-content .testimonial-quote {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .login-container .image-section .testimonial-card .testimonial-content .testimonial-author {
    flex-direction: column-reverse;
  }
  .login-container .image-section .testimonial-card .testimonial-content .testimonial-author .author-info .author-name {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }
  .login-container .login-form-section {
    flex: none;
    height: auto;
    min-height: 100vh;
    padding: 24px 32px;
  }
  .login-container .login-form-section .logo-container {
    margin-bottom: 48px;
  }
  .login-container .login-form-section .form-container {
    max-width: 100%;
  }
  .login-container .login-form-section .form-container .form-header {
    margin-bottom: 24px;
  }
  .login-container .login-form-section .form-container .form-header .form-title {
    font-size: 24px;
    line-height: 32px;
  }
  .login-container .image-section {
    display: none;
  }
}
@media (max-width: 480px) {
  .login-container .login-form-section {
    padding: 20px 24px;
  }
  .login-container .login-form-section .logo-container {
    margin-bottom: 32px;
  }
  .login-container .login-form-section .form-container .form-group {
    margin-bottom: 16px;
  }
  .login-container .login-form-section .form-container .form-group .form-input {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .login-container .login-form-section {
    border-right: 2px solid #181D27;
  }
  .login-container .form-input {
    border-width: 2px;
  }
  .login-container .btn-primary,
  .login-container .btn-google {
    border-width: 2px;
  }
}
.form-input:focus-visible,
.btn-primary:focus-visible,
.btn-google:focus-visible,
.login-text:focus-visible {
  outline: 2px solid #fa5d64;
  outline-offset: 2px;
}

.blog-post-page {
  background-color: #FFFFFF;
  min-height: 100vh;
  padding: 90px 0 0;
}
.blog-post-page .blog-hero {
  padding: 64px 0 96px;
}
@media (max-width: 767px) {
  .blog-post-page .blog-hero {
    padding: 96px 0 0;
  }
}
.blog-post-page .blog-hero .blog-hero-content {
  margin-bottom: 32px;
}
.blog-post-page .blog-hero .blog-hero-content .blog-metadata {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  background-color: #FAFAFA;
  border: 1px solid #D5D7DA;
  border-radius: 10px;
  margin-bottom: 16px;
}
.blog-post-page .blog-hero .blog-hero-content .blog-metadata .tag {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px 4px;
  background-color: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 6px;
}
.blog-post-page .blog-hero .blog-hero-content .blog-metadata .shadow-dot {
  width: 12px;
  height: 12px;
  background-color: #EBE9FE;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-post-page .blog-hero .blog-hero-content .blog-metadata .dot {
  display: inline-flex;
  align-items: center;
  width: 6px;
  height: 6px;
  background-color: #7A5AF8;
  border-radius: 50%;
}
.blog-post-page .blog-hero .blog-hero-content .blog-metadata .category {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  font-weight: 500;
  color: #414651;
  margin: 0;
}
.blog-post-page .blog-hero .blog-hero-content .blog-metadata .read-time {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #414651;
  font-weight: 400;
}
.blog-post-page .blog-hero .blog-hero-content .blog-title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 24px;
}
.blog-post-page .blog-hero .blog-hero-content .blog-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #535862;
  margin-bottom: 0;
  max-width: 600px;
}
.blog-post-page .blog-hero .blog-hero-image {
  overflow: hidden;
  box-shadow: 0px 2px 2px -1px rgba(10, 13, 18, 0.04), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 12px 16px -4px rgba(10, 13, 18, 0.08);
}
.blog-post-page .blog-hero .blog-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-post-page .article-content .content-section {
  margin-bottom: 32px;
}
.blog-post-page .article-content .content-section .lead-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #535862;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E9EAEB;
}
.blog-post-page .article-content .content-section .section-heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 20px;
  margin-top: 40px;
}
.blog-post-page .article-content .content-section .section-heading:first-child {
  margin-top: 0;
}
.blog-post-page .article-content .content-section p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #535862;
  margin-bottom: 16px;
}
.blog-post-page .article-content .content-section p:last-child {
  margin-bottom: 0;
}
.blog-post-page .article-content .content-section .resource-list {
  margin: 24px 0;
  padding-left: 20px;
}
.blog-post-page .article-content .content-section .resource-list li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #535862;
}
.blog-post-page .article-content .quote-section {
  margin: 48px 0;
}
.blog-post-page .article-content .quote-section .blog-quote {
  margin: 0;
  text-align: center;
}
.blog-post-page .article-content .quote-section .blog-quote p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #181D27;
  font-style: italic;
  margin-bottom: 32px;
}
.blog-post-page .article-content .quote-section .blog-quote .quote-author {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.blog-post-page .article-content .quote-section .blog-quote .quote-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.blog-post-page .article-content .quote-section .blog-quote .quote-author .author-name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 0;
}
.blog-post-page .article-content .quote-section .blog-quote .quote-author .author-desg {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #535862;
  margin-bottom: 0;
  font-style: normal;
}
.blog-post-page .article-content .content-image {
  margin: 48px 0;
  text-align: center;
}
.blog-post-page .article-content .content-image img {
  border-radius: 12px;
  box-shadow: 0px 1px 3px 0px rgba(10, 13, 18, 0.06), 0px 1px 2px 0px rgba(10, 13, 18, 0.1);
  margin-bottom: 12px;
  width: 100%;
}
.blog-post-page .article-content .content-image .image-caption {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #535862;
  font-style: italic;
  margin: 0;
}
.blog-post-page .article-content .boxed-content {
  padding: 32px;
  background-color: #FAFAFA;
  border-radius: 16px;
}
.blog-post-page .article-content .boxed-content .content-section {
  margin-bottom: 0;
}
@media (min-width: 1199px) {
  .blog-post-page .blog-details [class*=container] {
    padding: 0 76px;
  }
}
.blog-post-page .blog-sidebar {
  max-width: 300px;
}
@media (max-width: 991px) {
  .blog-post-page .blog-sidebar {
    padding-left: 0;
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .blog-post-page .blog-sidebar {
    max-width: 100%;
    margin-bottom: 64px;
  }
}
.blog-post-page .blog-sidebar .sidebar-section {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #E9EAEB;
}
.blog-post-page .blog-sidebar .sidebar-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.blog-post-page .blog-sidebar .sidebar-section .sidebar-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #7F56D9;
  margin-bottom: 16px;
}
.blog-post-page .blog-sidebar .table-of-contents .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-post-page .blog-sidebar .table-of-contents .toc-list li {
  margin: 0 0 12px;
}
.blog-post-page .blog-sidebar .table-of-contents .toc-list li:last-child {
  margin-bottom: 0;
}
.blog-post-page .blog-sidebar .table-of-contents .toc-list li .toc-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #535862;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}
.blog-post-page .blog-sidebar .table-of-contents .toc-list li .toc-link:hover {
  color: #42307D;
}
.blog-post-page .blog-sidebar .authors-section .author-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.blog-post-page .blog-sidebar .authors-section .author-card:last-child {
  margin-bottom: 0;
}
.blog-post-page .blog-sidebar .authors-section .author-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-post-page .blog-sidebar .authors-section .author-card .author-info .author-name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 2px;
}
.blog-post-page .blog-sidebar .authors-section .author-card .author-info .author-role {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #535862;
  margin: 0;
}
.blog-post-page .blog-sidebar .newsletter-signup .newsletter-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 8px;
}
.blog-post-page .blog-sidebar .newsletter-signup .newsletter-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 20px;
}
.blog-post-page .blog-sidebar .newsletter-signup .newsletter-form .form-group {
  margin-bottom: 16px;
}
.blog-post-page .blog-sidebar .social-media-list {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.blog-post-page .blog-sidebar .social-media-list li {
  list-style: none;
}
.blog-post-page .blog-sidebar .social-media-list .social-media-item {
  border: 1px solid #D5D7DA;
  padding: 10px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.blog-post-page .blog-sidebar .social-media-list .social-media-item .icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .blog-post-page {
    padding: 20px 0;
  }
  .blog-post-page .blog-hero .blog-hero-content .blog-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
  .blog-post-page .blog-hero .blog-hero-content .blog-subtitle {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .blog-post-page .article-content .content-section .section-heading {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
  }
  .blog-post-page .article-content .quote-section {
    padding: 20px;
    margin: 32px 0;
  }
  .blog-post-page .article-content .quote-section .blog-quote p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .blog-post-page .blog-sidebar .sidebar-section {
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .blog-post-page .blog-hero .blog-hero-content .blog-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
  }
  .blog-post-page .quote-section {
    padding: 16px;
  }
}

.about-page {
  padding-top: 96px;
}

.about-hero {
  padding: 96px 0;
  background-color: #FFFFFF;
}
.about-hero__title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 24px;
}
.about-hero__description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 0;
}
.about-hero__image {
  text-align: center;
}
.about-hero__image img {
  border-radius: 12px;
  box-shadow: 0px 2px 2px -1px rgba(10, 13, 18, 0.04), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 12px 16px -4px rgba(10, 13, 18, 0.08);
}

.about-stats {
  padding: 64px 0;
  background-color: #FAFAFA;
  margin-top: 96px;
  border-radius: 16px;
}
.about-stats__number {
  font-size: 60px;
  line-height: 72px;
  font-weight: 600;
  color: #7F56D9;
  margin-bottom: 12px;
}
.about-stats__label {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
}

.about-trusted {
  padding: 96px 0;
  background-color: #FFFFFF;
}
.about-trusted__subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #535862;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-trusted__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.about-trusted__logo {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #717680;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.about-trusted__logo:hover {
  opacity: 1;
}

.about-story {
  padding: 96px 0;
}
.about-story .content {
  border-bottom: 1px solid #E9EAEB;
  padding-bottom: 96px;
}
.about-story__title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 24px;
}
.about-story__text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 16px;
}
.about-story__content {
  padding-left: 48px;
}
@media (max-width: 991px) {
  .about-story__content {
    padding-left: 0;
    margin-top: 48px;
  }
}
.about-story__list {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  margin-bottom: 16px;
}
.about-story__list-item {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #414651;
}
.about-story__quote {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #181D27;
  font-style: italic;
  margin: 32px 0;
  padding: 24px;
  background-color: #FFFFFF;
  border-left: 4px solid #fa5d64;
  border-radius: 8px;
}
.about-story__quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.about-story__quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.about-story__quote-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #181D27;
}
.about-story__quote-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #535862;
}

.about-team {
  padding: 96px 0;
  background-color: #FFFFFF;
}
.about-team__subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #fa5d64;
  margin-bottom: 12px;
}
.about-team__title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 20px;
}
.about-team__description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  max-width: 768px;
  margin: 0 auto;
}
.about-team__member {
  padding: 0 4px;
}
.about-team__avatar {
  margin-bottom: 20px;
}
.about-team__image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}
.about-team__name {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 0;
}
.about-team__role {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fa5d64;
  margin-bottom: 8px;
}
.about-team__bio {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #535862;
  margin-bottom: 16px;
}
.about-team__social {
  display: flex;
  gap: 16px;
}
.about-team__social-link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #535862;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-team__social-link:hover {
  color: #fa5d64;
}
.about-team__cta {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  background-color: #fa5d64;
  color: #FFFFFF;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.about-team__cta:hover {
  background-color: #fa5d64;
}

.about-careers {
  padding: 96px 0;
  background-color: #FAFAFA;
}
.about-careers__title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 20px;
}
.about-careers__description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 48px;
}
.about-careers__jobs {
  display: flex;
  flex-direction: column;
}
.about-careers__job {
  border-top: 1px solid #E9EAEB;
  padding: 24px 0 32px;
}
.about-careers__job-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.about-careers__job-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #181D27;
  margin: 0;
}
.about-careers__job-badge {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  background-color: #F9F5FF;
  color: #fa5d64;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-careers__job-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #414651;
  margin-bottom: 16px;
}
.about-careers__job-meta {
  display: flex;
  gap: 16px;
}
.about-careers__job-location, .about-careers__job-type {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #535862;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 6px;
}
.about-careers__image {
  text-align: center;
  height: 100%;
}
.about-careers__image img {
  border-radius: 0;
  height: 100%;
  width: 100%;
  box-shadow: 0px 2px 2px -1px rgba(10, 13, 18, 0.04), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 12px 16px -4px rgba(10, 13, 18, 0.08);
}

.about-newsletter {
  padding: 96px 0;
}
.about-newsletter__content {
  background: linear-gradient(150deg, #fa5d64 0%, #53389E 50%);
  color: #FFFFFF;
  padding: 64px;
  border-radius: 16px;
  text-align: center;
}
.about-newsletter__title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.about-newsletter__description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #D6BBFB;
  margin-bottom: 32px;
}
.about-newsletter__form {
  max-width: 480px;
  margin: 0 auto;
}
.about-newsletter__input-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .about-newsletter__input-group {
    flex-direction: column;
  }
}
.about-newsletter__input {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #181D27;
  min-width: 200px;
}
.about-newsletter__input::placeholder {
  color: #717680;
}
.about-newsletter__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.about-contact {
  padding: 0 0 64px;
  background-color: #FFFFFF;
}
.about-contact__subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #fa5d64;
  margin-bottom: 12px;
}
.about-contact__title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 20px;
}
.about-contact__description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #414651;
}
.about-contact__form {
  background-color: #FFFFFF;
  padding: 32px;
}
.about-contact__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #414651;
  display: block;
  margin-bottom: 6px;
}
.about-contact__phone-group {
  display: flex;
  gap: 12px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  overflow: hidden;
}
.about-contact__phone-group .form-input {
  border: none;
  padding-left: 0;
}
.about-contact__phone-group .form-input:focus {
  box-shadow: none;
  outline: none;
}
.about-contact__phone-group:focus {
  outline: none;
  border-color: #fa5d64;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}
.about-contact__country-select {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding: 8px;
  border: none;
  background-color: #FFFFFF;
  color: #181D27;
  min-width: 60px;
}
.about-contact__country-select:focus {
  outline: none;
}
.about-contact .btn-primary {
  width: 100%;
}

.about-footer-cta {
  padding: 96px 0;
  background-color: #0A0D12;
}
.about-footer-cta__content {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}
.about-footer-cta__title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.about-footer-cta__description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.about-footer-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.about-footer-cta .btn-outline {
  border: 1px solid #D5D7DA;
  box-shadow: none;
  color: #FFFFFF;
}
.about-footer-cta .btn-outline:hover {
  color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
  background-color: transparent;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 64px 0;
    text-align: center;
  }
  .about-hero__title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
  .about-hero__description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .about-stats {
    padding: 64px 0;
  }
  .about-stats__number {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
  }
  .about-story {
    padding: 64px 0;
  }
  .about-story .content {
    padding-bottom: 52px;
  }
  .about-story__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .about-story__text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .about-team {
    padding: 64px 0;
  }
  .about-team__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .about-team__description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .about-careers {
    padding: 64px 0;
  }
  .about-careers__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .about-careers__description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .about-newsletter {
    padding: 64px 0;
  }
  .about-newsletter__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .about-newsletter__description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .about-contact {
    padding: 64px 0;
  }
  .about-contact__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .about-contact__description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .about-contact__form {
    padding: 24px;
  }
  .about-footer-cta {
    padding: 64px 0;
  }
  .about-footer-cta__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
  .about-footer-cta__description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .about-footer-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .about-footer-cta__button {
    width: 100%;
    max-width: 200px;
  }
}
@media screen and (min-width: 1500px) {
  .feature-image img {
    max-width: 150%;
  }
  .phone-mockup-container .phone-mockup {
    max-width: 150%;
  }
}
@media screen and (min-width: 1025px) {
  .sidebar-toggle {
    display: none;
  }
  .dashboard-header {
    display: none;
  }
  .dashboard-header .navbar-brand {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .company-logos span {
    max-width: 115px;
  }
  .company-logos span img {
    height: 36px;
  }
  .cta-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
  }
  .cta-description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
  .hero .hero-cards-container {
    height: 224px;
  }
  .hero .hero-cards-container .hero-card {
    width: 450px;
  }
  .feature-image img {
    max-width: 100%;
  }
  .phone-mockup-container .phone-mockup {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .dashboard-header {
    padding: 20px 20px 12px;
  }
  .dashboard-header .user-profile {
    display: none;
  }
  .flyer-form.style-2 .contact-image-section {
    display: none;
  }
  .settings-content {
    padding: 32px 20px;
  }
}
@media screen and (max-width: 991px) {
  .feature-image {
    margin-top: 30px;
  }
  .feature-image img {
    max-width: 500px;
  }
  .phone-mockup-container .phone-mockup {
    max-width: 500px;
  }
  .feature-item {
    margin-bottom: 40px;
  }
  .feature-item h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
  }
  .cta-buttons {
    justify-content: flex-start;
    margin-top: 40px;
  }
  .footer-newsletter .newsletter-text {
    margin-top: 48px;
  }
  .footer-divider {
    margin-top: 48px;
  }
  .navbar-toggler .navbar-toggler-icon {
    height: 3px;
    background-color: #414651;
    border-radius: 2px;
    position: relative;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
  }
  .navbar-toggler .navbar-toggler-icon::before, .navbar-toggler .navbar-toggler-icon::after {
    content: "";
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #414651;
    border-radius: 2px;
    opacity: 0;
  }
  .navbar-toggler .navbar-toggler-icon::after {
    top: 0;
    opacity: 1;
    transform: rotate(90deg);
  }
  .navbar-toggler.collapsed .navbar-toggler-icon {
    transform: rotate(0deg);
  }
  .navbar-toggler.collapsed .navbar-toggler-icon::before, .navbar-toggler.collapsed .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    top: -9px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #414651;
    border-radius: 2px;
    transform: rotate(0deg);
    opacity: 1;
  }
  .navbar-toggler.collapsed .navbar-toggler-icon::after {
    top: 9px;
    transform: rotate(0deg);
  }
  .navbar {
    position: static;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-collapse {
    background-color: #FFFFFF;
    padding: 20px 0 20px;
    border-bottom: 1px solid #E9EAEB;
    position: absolute;
    width: 100%;
    top: calc(100% - 20px);
    left: 0;
  }
  .nav-link:hover {
    background-color: #F3F4F6;
  }
}
@media (max-width: 768px) {
  .phone-mockup-container .phone-mockup {
    display: none;
  }
  .phone-mockup-container .phone-mockup.mobile-image {
    display: block;
    max-height: 700px;
    object-fit: cover;
    width: 100%;
    object-position: 20px top;
  }
  .hero .hero-cards-container .hero-card {
    width: 350px;
    height: 230px;
  }
  .hero .hero-content {
    margin-bottom: 60px;
  }
  .hero .hero-content .hero-title {
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
  }
  .features,
  .pricing,
  .mobile-app,
  .integrations,
  .additional-features {
    padding: 64px 0;
  }
  .cta {
    padding: 64px 0;
  }
  .cta-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 16px;
    text-align: center;
    align-items: flex-start !important;
  }
  .trusted-by {
    margin-bottom: 0;
  }
  .company-logos {
    gap: 24px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 12px 32px;
  }
  .footer-nav li {
    flex: 1 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
  .pricing-card.pricing-featured .popular-tag {
    right: 0;
  }
  .hero .hero-cards-container .hero-card.card-back {
    transform: translateX(-60px) rotate(30deg);
  }
  .hero .hero-cards-container .hero-card.card-front {
    transform: translateX(60px) rotate(30deg);
  }
}
@media screen and (max-width: 575px) {
  .dashboard-header .breadcrumb-nav {
    display: none;
  }
  .settings-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .search-input-group {
    width: 100%;
  }
  .feature-item h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
  }
  .pricing-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
  .feature-card {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
  }
  .section-description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
  }
  .feature-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
  }
  .hero .hero-cards-container {
    height: 310px;
  }
  .footer-newsletter .newsletter-form {
    flex-direction: column;
  }
  .footer-newsletter .newsletter-form .form-control {
    height: 44px;
  }
  .feature-image img {
    max-width: 100%;
    object-position: 0 top;
  }
  .phone-mockup-container .phone-mockup {
    max-width: 100%;
  }
  .hero .hero-content {
    text-align: left;
  }
  .hero .hero-content .hero-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
  .hero .hero-content .hero-buttons {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .hero .hero-content .hero-buttons .btn {
    width: 100%;
  }
  .cta-buttons {
    flex-direction: column-reverse;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .cta-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
  }
  .cta-inner {
    padding: 40px 24px;
  }
  .phone-mockup-container .phone-mockup {
    display: none;
  }
  .phone-mockup-container .phone-mockup.mobile-image {
    max-height: 500px;
  }
  .integration-item h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
  }
  .trusted-by .trusted-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .company-logos span {
    max-width: 100px;
  }
  .company-logos span img {
    height: 32px;
  }
}
@media screen and (max-width: 399px) {
  .hero-title br {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
