html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter";
  line-height: 1.6;
  color: #333;
  line-height: 1.3;
  overflow-x: hidden;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  list-style: none;
}

ul {
  padding: 0px;
  margin: 0px;
}

li {
  list-style: none;
}

h1,
h2,
h3 {
  margin-bottom: 0px;
}

.container-lite {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 40em) {
  .container-lite {
    max-width: 720px;
  }
}
@media (min-width: 64em) {
  .container-lite {
    max-width: 1440px;
  }
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none !important;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.noscroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

.btn {
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: #BE2739;
  color: white;
  border: none;
}
.btn-primary:hover {
  background: #991F31;
  transition: all 0.5s ease-in-out;
}

.btn-secondary {
  background-color: #f8f9fa;
  border: 1px solid #BE2739;
  color: #BE2739;
}
.btn-secondary:hover {
  background-color: #BE2739;
  color: white;
  border: none;
}

.btn-current-plan {
  border: 1px solid #A1A1AA;
  color: #A1A1AA;
  padding: 1rem;
  font-size: 1rem;
  width: 100%;
  text-align: center;
}

.btn-plan {
  width: 100%;
  padding: 1rem;
  text-align: center;
}

.btn-enterprise-plan {
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  border: 1px solid #27272A;
  color: #27272A;
  background-color: #FFFFFE;
}
.btn-enterprise-plan:hover {
  background-color: #BE2739;
  border-color: transparent;
  color: white;
}

.has-fade {
  visibility: hidden;
  transform: translateX(100%);
  will-change: transform, opacity;
}

/* Fade + slide in */
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(14%); /* subtle offset */
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}
.slide-in {
  animation: slide-in 360ms cubic-bezier(0.2, 0.9, 0.24, 1) forwards;
}

@keyframes slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
  to {
    opacity: 0;
    transform: translateX(14%);
    visibility: hidden;
  }
}
.slide-out {
  animation: slide-out 360ms cubic-bezier(0.2, 0.9, 0.24, 1) forwards;
}

.header {
  padding: 1rem;
  border-bottom: 1px solid #E4E4E7;
}
@media (min-width: 40em) {
  .header {
    padding: 30.5px 70px;
  }
}
@media (min-width: 64em) {
  .header {
    padding: 24px 108px;
  }
}
.header.open .header__nav-menu > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__nav-menu > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__nav-menu > span:last-child {
  transform: rotate(-45deg);
}
.header.on-scroll {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FFFFFE;
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__nav-logo img {
  width: 131px;
  height: 28px;
}
@media (min-width: 40em) {
  .header__nav-logo img {
    width: 163px;
    height: 35px;
  }
}
.header__nav-menu > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #27272A;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__nav-menu > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__links {
  display: flex;
  list-style: none;
  margin: 0;
}
.header__links li:not(:last-child) {
  margin-right: 24px;
}
.header__links a {
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__links a.active, .header__links a:hover {
  color: #c62828;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid red;
}
.header__actions .btn-outline {
  background: white;
  color: #BE2739;
  font-weight: 600;
  font-size: 1rem;
}
.header__actions .btn-outline:hover {
  background: #BE2739;
  color: white;
}
.header__menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: white;
  padding: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 999;
}
@media (min-width: 40em) {
  .header__menu {
    top: 96px;
    height: calc(100vh - 96px);
    padding: 40px 70px;
  }
}
.header__menu .header__links-wrap ul {
  flex-direction: column;
  gap: 24px;
  padding: 0px;
}
.header__menu .header__nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.header__nav-actions > a:first-child {
  color: #BE2739;
}
.header__nav-actions > a:first-child:hover {
  color: #991F31;
}

.navbar {
  padding: 1rem;
  border-bottom: 1px solid #E4E4E7;
}
@media (min-width: 40em) {
  .navbar {
    padding: 1.5rem;
  }
}
.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar__logo img {
  width: 162.9999847412px;
  height: 35px;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar__notification-bell img {
  width: 24px;
  height: 24px;
}
@media (min-width: 64em) {
  .navbar__notification-bell img {
    width: 32px;
    height: 32px;
  }
}

.profile-icon {
  background-color: #BE2739;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
}
@media (min-width: 40em) {
  .profile-icon {
    width: 40px;
    height: 40px;
  }
}

.profile-initials {
  font-size: 12px;
  color: #FBFAFF;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (min-width: 40em) {
  .profile-initials {
    font-size: 20px;
  }
}

.user-logout {
  background-color: white;
  border: 1px solid white;
  border-radius: 8px;
  display: none;
  height: 56px;
  padding: 24px;
  cursor: pointer;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 70px;
  right: 24px;
  transition: all 0.3s ease-in-out;
}

.show {
  display: block;
}

.dashboard-footer {
  border-top: 1px solid #E4E4E7;
  padding: 1.25rem;
}
.dashboard-footer__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.contact-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}
.contact-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.contact-form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.contact-form-container h2 .highlight {
  color: #BE2739;
}
.contact-form-container > p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form .form-group {
  margin-bottom: 24px;
}
.contact-form .form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.contact-form .form-group label .required {
  color: #BE2739;
}
.contact-form .form-group input[type=text],
.contact-form .form-group input[type=email],
.contact-form .form-group input[type=tel],
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}
.contact-form .form-group input[type=text]:focus,
.contact-form .form-group input[type=email]:focus,
.contact-form .form-group input[type=tel]:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #BE2739;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.contact-form .form-group input[type=text]::placeholder,
.contact-form .form-group input[type=email]::placeholder,
.contact-form .form-group input[type=tel]::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #999;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .btn {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1rem;
}

.contact-info-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.contact-info-container .contact-info-item {
  margin-bottom: 40px;
}
.contact-info-container .contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-container .contact-info-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.contact-info-container .contact-info-item .info-description {
  color: #666;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.contact-info-container .contact-info-item .contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-container .contact-info-item .contact-detail .contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-info-container .contact-info-item .contact-detail .contact-value {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
  .contact-header {
    margin-bottom: 40px;
  }
  .contact-header h1 {
    font-size: 2rem;
  }
  .contact-header p {
    font-size: 1rem;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form-container,
  .contact-info-container {
    padding: 30px 24px;
  }
  .contact-info-item {
    margin-bottom: 30px;
  }
}
.login-page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: white;
}
.login-page-container__header {
  position: absolute;
  top: 50px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.login-page-container__header .login-page-container__bizos-logo {
  height: 40px;
  width: auto;
}
.login-page-container__content {
  display: flex;
  flex: 1;
  min-height: 100vh;
}
.login-page-container__left-section {
  flex: 1;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
  text-align: center;
}
.login-page-container__illustration {
  width: 100%;
  max-width: 480px;
  margin-bottom: 50px;
}
.login-page-container__illustration img {
  width: 100%;
  height: auto;
  display: block;
}
.login-page-container__welcome-text {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Georgia", serif;
  color: #333;
}
.login-page-container__right-section {
  flex: 1;
  background-image: url("/images/signup-bg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}
.login-page-container__login-card {
  background: white;
  padding: 60px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 550px;
}
.login-page-container__login-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}
.login-page-container__form-group {
  margin-bottom: 30px;
}
.login-page-container__form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 1rem;
}
.login-page-container__form-group label .required {
  color: #BE2739;
}
.login-page-container__form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}
.login-page-container__form-group input:focus {
  outline: none;
  border-color: #BE2739;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.login-page-container__form-group input::placeholder {
  color: #999;
}
.login-page-container__forgot-password {
  text-align: right;
  margin-bottom: 30px;
}
.login-page-container__forgot-password .login-page-container__forgot-link {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.login-page-container__forgot-password .login-page-container__forgot-link:hover {
  color: #BE2739;
}
.login-page-container__login-button {
  width: 100%;
  padding: 15px 30px;
  background: #BE2739;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.login-page-container__login-button:hover {
  background: #991F31;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.login-page-container__login-button:active {
  transform: translateY(0);
}
.login-page-container__signup-link {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 1rem;
}
.login-page-container__signup-link a {
  color: #BE2739;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.login-page-container__signup-link a:hover {
  color: #991F31;
}
.login-page-container__error-messages, .login-page-container__notice-messages {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}
.login-page-container__error-messages {
  background: #fee;
  color: #c33;
  border: 1px solid #fcc;
}
.login-page-container__notice-messages {
  background: #efe;
  color: #363;
  border: 1px solid #cfc;
}
@media (max-width: 992px) {
  .login-page-container__content {
    flex-direction: column;
  }
  .login-page-container__left-section {
    display: none;
  }
  .login-page-container__right-section {
    width: 100%;
    padding: 60px;
  }
  .login-page-container__login-card {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .login-page-container__right-section {
    padding: 24px;
  }
  .login-page-container__login-card {
    padding: 40px;
  }
  .login-page-container__login-card h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

.signup-page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: white;
}
.signup-page-container__header {
  position: absolute;
  top: 50px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.signup-page-container__content {
  display: flex;
  flex: 1;
  min-height: 100vh;
}
.signup-page-container__left-section {
  flex: 1;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
}
.signup-page-container__illustration-container {
  width: 100%;
  max-width: 500px;
  margin-bottom: 50px;
}
.signup-page-container__illustration-container img {
  width: 100%;
  height: auto;
  display: block;
}
.signup-page-container__welcome-text {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Georgia", serif;
  color: #333;
  text-align: center;
}
.signup-page-container__right-section {
  flex: 1;
  background-image: url("/images/signup-bg.png");
  background-repeat: no-repeat;
  background-position: center right;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}
.signup-page-container__name-fields {
  display: flex;
  gap: 24px;
}
.signup-page-container__signup-card {
  background: white;
  padding: 60px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 550px;
}
.signup-page-container__signup-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}
.signup-page-container__form-group {
  margin-bottom: 30px;
}
.signup-page-container__form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 1rem;
}
.signup-page-container__form-group label .required {
  color: #BE2739;
}
.signup-page-container__form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}
.signup-page-container__form-group input:focus {
  outline: none;
  border-color: #BE2739;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.signup-page-container__form-group input::placeholder {
  color: #999;
}
.signup-page-container__terms-agreement {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.signup-page-container__terms-agreement input[type=checkbox] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}
.signup-page-container__terms-agreement label {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}
.signup-page-container__terms-agreement label a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}
.signup-page-container__terms-agreement label a:hover {
  color: #BE2739;
  text-decoration: underline;
}
.signup-page-container__signup-button {
  width: 100%;
  padding: 15px 30px;
  background: #BE2739;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.signup-page-container__signup-button:hover {
  background: #991F31;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.signup-page-container__signup-button:active {
  transform: translateY(0);
}
.signup-page-container__login-link {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 1rem;
}
.signup-page-container__login-link a {
  color: #BE2739;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.signup-page-container__login-link a:hover {
  color: #991F31;
}
.signup-page-container__divider {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.signup-page-container__error-messages {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  background: #fee;
  color: #c33;
  border: 1px solid #fcc;
}
.signup-page-container__error-messages h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}
.signup-page-container__error-messages ul {
  margin: 0;
  padding-left: 20px;
}
.signup-page-container__error-messages ul li {
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .signup-page-container__content {
    flex-direction: column;
  }
  .signup-page-container__left-section {
    display: none;
  }
  .signup-page-container__right-section {
    width: 100%;
    padding: 60px;
  }
  .signup-page-container__signup-card {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .signup-page-container__right-section {
    padding: 24px;
  }
  .signup-page-container__signup-card {
    padding: 40px;
  }
  .signup-page-container__signup-card h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

.hero {
  background: linear-gradient(180deg, #F6F4FF 0%, #F8F6FF 43.2%, #E3DEFF 71.48%, #FFFFFF 100%);
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 56px;
  text-align: center;
  padding: 40px 20px 0px 20px;
}
@media (min-width: 40em) {
  .hero-section {
    padding: 64px 70px 0px 70px;
    gap: 64px;
  }
}
@media (min-width: 64em) {
  .hero-section {
    padding: 100px 104px 0px 104px;
    gap: 80px;
  }
}
.hero-section__title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-section__title h2 {
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #666;
}
@media (min-width: 40em) {
  .hero-section__title h2 {
    font-weight: 600;
    font-size: 1.5rem;
  }
}
@media (min-width: 64em) {
  .hero-section__title h2 {
    font-size: 2rem;
  }
}
.hero-section__title h1 {
  font-family: Optima;
  font-weight: 700;
  font-size: 32px;
  color: #18181B;
  margin-top: 0px;
}
@media (min-width: 40em) {
  .hero-section__title h1 {
    font-size: 48px;
  }
}
@media (min-width: 64em) {
  .hero-section__title h1 {
    font-size: 64px;
  }
}
.hero-section__description p {
  font-size: 1rem;
  color: #3F3F46;
  line-height: 1.6;
}
@media (min-width: 40em) {
  .hero-section__description p {
    font-size: 1.1rem;
  }
}
.hero-section__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-section__image img {
  width: 100%;
  max-width: 900px;
  height: auto;
}

.features-section {
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 40em) {
  .features-section {
    max-width: 48rem;
    padding: 5rem 4.375rem;
    gap: 4rem;
  }
}
@media (min-width: 64em) {
  .features-section {
    max-width: 1440px;
    padding: 104px;
    gap: 64px;
  }
}
.features-section__header h2 {
  font-family: Optima;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
}
@media (min-width: 40em) {
  .features-section__header h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 64em) {
  .features-section__header h2 {
    font-size: 3rem;
    line-height: 64px;
  }
}
.features-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 40em) {
  .features-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 64em) {
  .features-section__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.features-section__feature-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-section__feature-card h2 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}
@media (min-width: 40em) {
  .features-section__feature-card h2 {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 64em) {
  .features-section__feature-card h2 {
    font-size: 1.25rem;
  }
}
.features-section__feature-card p {
  font-family: Inter;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 40em) {
  .features-section__feature-card p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.features-section__details h3:not(:last-child) {
  margin-bottom: 16px;
}

.accordion {
  padding: 40px 20px;
}
@media (min-width: 40em) {
  .accordion {
    padding: 80px 70px;
  }
}
@media (min-width: 64em) {
  .accordion {
    padding: 104px 108px;
  }
}
.accordion__main-header {
  margin-bottom: 64px;
  text-align: center;
}
@media (min-width: 40em) {
  .accordion__main-header {
    max-width: 628px;
  }
}
@media (min-width: 64em) {
  .accordion__main-header {
    max-width: 1224px;
  }
}
.accordion__main-header h2 {
  font-family: Optima;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #27272A;
}
.accordion__main-header h2:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 40em) {
  .accordion__main-header h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .accordion__main-header h2:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 64em) {
  .accordion__main-header h2 {
    font-size: 48px;
    line-height: 64px;
  }
}
.accordion__main-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #52525B;
}
@media (min-width: 40em) {
  .accordion__main-header p {
    font-size: 20px;
    line-height: 32px;
  }
}
.accordion__container {
  display: flex;
  flex-direction: row;
}
@media (min-width: 64em) {
  .accordion__container {
    gap: 40px;
  }
}
.accordion__left-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 40em) {
  .accordion__left-item {
    gap: 20px;
  }
}
@media (min-width: 64em) {
  .accordion__left-item {
    flex: 1;
  }
}
.accordion__left {
  border-bottom: 1px solid #E4E4E7;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
}
@media (min-width: 40em) {
  .accordion__left {
    padding-bottom: 24px;
  }
}
@media (min-width: 64em) {
  .accordion__left {
    padding-bottom: none;
  }
}
.accordion__button {
  background: none;
  border: none;
  font-size: 18px;
  padding: 4px 0px;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 40em) {
  .accordion__button {
    padding: 20px 32px 24px 32px;
  }
}
@media (min-width: 64em) {
  .accordion__button {
    padding: 16px 32px;
  }
}
.accordion__button span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  color: #3F3F46;
}
@media (min-width: 40em) {
  .accordion__button span {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #52525B;
  }
}
.accordion__button img {
  width: 32px;
  height: 32px;
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion__body p {
  font-family: Inter;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  color: #52525B;
}
@media (min-width: 40em) {
  .accordion__body p {
    line-height: 28px;
  }
}
.accordion__icon {
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s ease;
}
.accordion__left.active .accordion__button span {
  color: #BE2739;
  font-weight: 600;
  font-size: 1rem;
  line-height: 18px;
}
@media (min-width: 40em) {
  .accordion__left.active .accordion__button span {
    font-size: 20px;
    line-height: 28px;
  }
}
.accordion__left.active .accordion__body--image-mobile img {
  width: 335px;
  height: 267px;
}
.accordion__left.active .accordion__body {
  padding-bottom: 20px;
}
@media (min-width: 40em) {
  .accordion__left.active .accordion__body {
    padding: 0px 32px 24px 32px;
  }
}
.accordion__body--image-mobile {
  display: none;
}
@media (max-width: 87.4375em) {
  .accordion__body--image-mobile {
    display: block;
    text-align: center;
  }
}
.accordion__right {
  display: block;
}
@media (max-width: 87.4375em) {
  .accordion__right {
    display: none;
    flex: 1;
  }
}
.accordion__right img {
  height: 100%;
}

.payment-methods {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 40em) {
  .payment-methods {
    padding: 80x 104px;
    gap: 72px;
  }
}
@media (min-width: 64em) {
  .payment-methods {
    flex-direction: row;
    align-items: center;
    padding: 104px;
  }
}
.payment-methods__image {
  flex: 1;
}
.payment-methods__image img {
  max-width: 100%;
  height: auto;
}
.payment-methods__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.payment-methods__content h2 {
  font-family: Optima;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 30px;
  color: #27272A;
}
@media (min-width: 40em) {
  .payment-methods__content h2 {
    font-size: 2.5rem;
    line-height: 48px;
  }
}
.payment-methods__content p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  color: #27272A;
}
@media (min-width: 40em) {
  .payment-methods__content p {
    font-size: 1.25rem;
    line-height: 30px;
  }
}

.plans {
  padding: 40px 20px;
}
@media (min-width: 40em) {
  .plans {
    padding: 80px 70px;
  }
}
@media (min-width: 64em) {
  .plans {
    padding: 104px 106px;
  }
}

.pricing {
  background: radial-gradient(50% 50% at 50% 50%, #EDEAFD 0%, #FCFCFF 100%);
}

.pricing-section:not(.websetup-pricing__section) {
  background: linear-gradient(180deg, #F2F3F6 0%, #F8F6FF 66.1%), linear-gradient(180deg, #F6F4FF 0%, #F8F6FF 43.2%, #E3DEFF 71.48%, #FFFFFF 100%);
}

.pricing-section__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 40em) {
  .pricing-section__container {
    gap: 64px;
  }
}
@media (min-width: 64em) {
  .pricing-section__container {
    gap: 72px;
  }
}
.pricing-section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 64em) {
  .pricing-section__header {
    gap: 24px;
  }
}
.pricing-section__header h2 {
  font-family: Optima;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 30px;
  color: #27272A;
}
@media (min-width: 40em) {
  .pricing-section__header h2 {
    font-size: 2.5rem;
    line-height: 40px;
  }
}
@media (min-width: 64em) {
  .pricing-section__header h2 {
    font-size: 3rem;
    line-height: 64px;
  }
}
.pricing-section__header p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  color: #52525B;
  margin-top: 0px;
}
@media (min-width: 40em) {
  .pricing-section__header p {
    font-size: 1.25rem;
    line-height: 32px;
  }
}
.pricing-section .pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 40em) {
  .pricing-section .pricing-cards {
    gap: 32px;
  }
}
@media (min-width: 64em) {
  .pricing-section .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.pricing-section .pricing-card {
  border: 1px solid #D4D4D8;
  padding: 24px 20px 48px 20px;
  border-radius: 12px;
  background-color: #FFFFFE;
}
@media (min-width: 40em) {
  .pricing-section .pricing-card {
    padding: 32px 32px 56px 32px;
    border-radius: 24px;
  }
}
@media (min-width: 64em) {
  .pricing-section .pricing-card {
    padding: 32px;
  }
}
.pricing-section .pricing-card--highlight {
  border-width: 2px;
  border-color: #212121;
  position: relative;
  overflow: visible;
  margin-top: 1rem;
}
@media (min-width: 64em) {
  .pricing-section .pricing-card--highlight {
    transform: translateY(-8px);
    margin-top: 0px;
  }
}
.pricing-section .pricing-card--highlight .pricing-card__ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #27272A;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  text-align: center;
}
.pricing-section .pricing-card__details {
  margin-bottom: 40px;
}
.pricing-section .pricing-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-section .pricing-card__header h3 {
  margin-top: 0px;
}
.pricing-section .pricing-card__name {
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #3F3F46;
}
@media (min-width: 40em) {
  .pricing-section .pricing-card__name {
    font-size: 1.5rem;
  }
}
.pricing-section .pricing-card__price {
  font-family: Optima;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #27272A;
}
.pricing-section .pricing-card__price span {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}
.pricing-section .pricing-card__subtitle {
  font-weight: 400;
  font-style: Regular;
  font-size: 1rem;
  line-height: 24px;
  color: #52525B;
}
.pricing-section .pricing-card__features-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pricing-section .pricing-card__features {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.pricing-section .pricing-card__features li {
  position: relative;
  padding-left: 36px;
  line-height: 1.4;
}
.pricing-section .pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-40%);
  width: 20px;
  height: 20px;
  background-image: url("/images/mdi_tick.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.pricing-section .pricing-card__features li strong {
  font-weight: 600;
  font-size: 1rem;
  line-height: 18px;
}

.security-section {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 40em) {
  .security-section {
    padding: 80px 70px;
    gap: 31px;
  }
}
@media (min-width: 64em) {
  .security-section {
    flex-direction: row;
    align-items: center;
    padding: 104px;
    gap: 32px;
  }
}
.security-section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.security-section__header h2 {
  font-family: Optima;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 30px;
  color: #27272A;
}
.security-section__header h2:not(:last-child) {
  margin-bottom: 24px;
  margin-top: 0px;
}
@media (min-width: 40em) {
  .security-section__header h2 {
    font-size: 2.5rem;
    line-height: 48px;
  }
}
@media (min-width: 64em) {
  .security-section__header h2 {
    font-size: 3rem;
    line-height: 64px;
  }
}
.security-section__header p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  color: #27272A;
}
@media (min-width: 40em) {
  .security-section__header p {
    font-size: 1.25rem;
    line-height: 30px;
  }
}
.security-section__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.125rem;
}
.security-section__feature {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: 0px;
}
@media (min-width: 40em) {
  .security-section__feature {
    padding-left: 40px;
  }
}
.security-section__feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/images/mdi_tick.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 40em) {
  .security-section__feature::before {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 40em) {
  .security-section__feature {
    font-size: 1.25rem;
    line-height: 30px;
  }
}
.security-section__illustration img {
  max-width: 100%;
  height: auto;
}

.final-cta {
  background: linear-gradient(179.88deg, #FCFCFF 0.11%, #F0EEFF 99.87%);
}

.cta-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
}
@media (min-width: 40em) {
  .cta-section {
    padding: 80px 70px;
    gap: 64px;
  }
}
@media (min-width: 64em) {
  .cta-section {
    align-items: center;
    padding: 104px;
  }
}
.cta-section__image img {
  max-width: 100%;
  height: auto;
}
.cta-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.cta-section__header h2 {
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 36px;
  color: #27272A;
}
@media (min-width: 40em) {
  .cta-section__header h2 {
    font-size: 2.5rem;
    line-height: 48px;
  }
}
@media (min-width: 64em) {
  .cta-section__header h2 {
    font-size: 3rem;
    line-height: 64px;
  }
}
.cta-section__header h2:not(:last-child) {
  margin-top: 0px;
  margin-bottom: 16px;
}
.cta-section__header p {
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
  color: #3F3F46;
}
@media (min-width: 40em) {
  .cta-section__header p {
    font-size: 1.125rem;
    line-height: 29px;
  }
}
@media (min-width: 64em) {
  .cta-section__header p {
    font-size: 1.25rem;
    line-height: 30px;
  }
}
.cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer {
  background: #2B2828;
  color: white;
  padding: 40px 20px;
}
@media (min-width: 40em) {
  .footer {
    padding: 48px 70px 32px 70px;
  }
}
@media (min-width: 64em) {
  .footer {
    padding: 64px 106px;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 40em) {
  .footer__inner {
    gap: 56px;
  }
}
@media (min-width: 64em) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 40em) {
  .footer__content {
    gap: 72px;
  }
}
@media (min-width: 64em) {
  .footer__content {
    gap: 150px;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 40em) {
  .footer__links {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
  }
}
.footer__column h4 {
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 1rem;
  margin-top: 0px;
}
.footer__column ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.footer__column ul li {
  margin-bottom: 10px;
}
.footer__column ul li a {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  color: white;
}
.footer__column ul li a:hover {
  text-decoration: underline;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 20px;
}
@media (min-width: 40em) {
  .faq {
    padding: 80px 70px;
    gap: 64px;
  }
}
@media (min-width: 64em) {
  .faq {
    padding: 104px;
  }
}
.faq__main-header {
  text-align: center;
}
.faq__main-header h2 {
  font-family: Optima;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #27272A;
}
@media (min-width: 40em) {
  .faq__main-header h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 64em) {
  .faq__main-header h2 {
    font-size: 48px;
    line-height: 64px;
  }
}
.faq__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 64em) {
  .faq__container {
    gap: 24px;
  }
}
.faq__left {
  border-bottom: 1px solid #E4E4E7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
}
@media (min-width: 40em) {
  .faq__left {
    gap: 16px;
    padding-bottom: 0;
  }
}
@media (min-width: 64em) {
  .faq__left {
    border-radius: 8px;
    background: #FFFFFE;
    border: 1px solid #E4E4E7;
  }
}
.faq__button {
  background: none;
  border: none;
  font-size: 18px;
  padding: 0.5rem 0;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__button:not(.active) {
  color: #52525B;
}
@media (min-width: 40em) {
  .faq__button {
    padding: 20px 32px 24px 32px;
  }
}
.faq__button span {
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
}
@media (min-width: 40em) {
  .faq__button span {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
  }
}
.faq__button img {
  width: 32px;
  height: 32px;
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
@media (min-width: 40em) {
  .faq__body {
    padding: 2px 32px 24px 32px;
  }
}
.faq__body p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  color: #52525B;
}
@media (min-width: 40em) {
  .faq__body p {
    line-height: 28px;
  }
}
.faq__icon {
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s ease;
}
.faq__left.active .accordion__button span {
  color: #BE2739;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 40em) {
  .step-indicator {
    gap: 12px;
  }
}
.step-indicator__line {
  border: 1px solid #71717A;
}
.step-indicator__line--mobile {
  width: 106px;
}
@media (min-width: 40em) {
  .step-indicator__line--mobile {
    display: none;
  }
}
.step-indicator__line--desktop {
  display: none;
}
@media (min-width: 40em) {
  .step-indicator__line--desktop {
    display: block;
    width: 66.5px;
  }
}
.step-indicator__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 40em) {
  .step-indicator__steps {
    flex-direction: row;
    align-items: center;
  }
}
.step-indicator__steps.active .step-indicator__step-number {
  width: 32px;
  height: 32px;
  padding: 9px 13.5px;
  gap: 5px;
  border-radius: 16px;
  border-width: 1px;
  background-color: #BE2739;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-indicator__steps.active .step-indicator__step-label {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
  color: #27272A;
}
.step-indicator__items {
  display: flex;
  align-items: center;
}
.step-indicator__step-number {
  width: 32px;
  height: 32px;
  padding: 9px 13.5px;
  gap: 5px;
  border-radius: 16px;
  border-width: 1px;
  background-color: #71717A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.step-indicator__step-label {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
  color: #A1A1AA;
}
.step-indicator .step-break {
  display: none;
}
@media (max-width: 63.9375em) {
  .step-indicator .step-break {
    display: inline;
  }
}

.websetup-pricing {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #FBF8FD;
  padding: 40px 20px;
}
@media (min-width: 40em) {
  .websetup-pricing {
    padding: 64px 24px;
  }
}
@media (min-width: 64em) {
  .websetup-pricing {
    padding: 64px 104px;
  }
}
.websetup-pricing__cards {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem 0.75rem;
  border-radius: 1rem;
}
@media (min-width: 40em) {
  .websetup-pricing__cards {
    padding: 3rem 1.5rem;
  }
}
@media (min-width: 64em) {
  .websetup-pricing__cards {
    border: 3rem 2.5rem;
  }
}
.websetup-pricing__container {
  gap: 2rem;
}
@media (min-width: 40em) {
  .websetup-pricing__container {
    gap: 3.5rem;
  }
}
.websetup-pricing__header {
  gap: 0.75rem;
}
@media (min-width: 40em) {
  .websetup-pricing__header {
    gap: 16px;
  }
}
.websetup-pricing .pricing-section__title.websetup-pricing__title {
  font-family: Inter;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #3F3F46;
  margin: 0px;
}
@media (min-width: 40em) {
  .websetup-pricing .pricing-section__title.websetup-pricing__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 40em) {
  .websetup-pricing .pricing-section__lead.websetup-pricing__lead {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* Company Information page styles */
.company-information__inner {
  padding: 20px 12px;
  border-radius: 1rem;
  background-color: #FFFFFE;
}
@media (min-width: 40em) {
  .company-information__inner {
    padding: 48px 24px;
  }
}
@media (min-width: 64em) {
  .company-information__inner {
    padding: 48px 287px;
  }
}
.company-information__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 40em) {
  .company-information__form {
    gap: 40px;
  }
}
.company-information__header {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 40em) {
  .company-information__header {
    gap: 1rem;
  }
}
.company-information__title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #3F3F46;
  margin: 0px;
}
@media (min-width: 40em) {
  .company-information__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.company-information__subtitle {
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 40em) {
  .company-information__subtitle {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.company-information__grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}
@media (min-width: 40em) {
  .company-information__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.company-information__grid .full-width {
  grid-column: 1/-1;
}
.company-information__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company-information .form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.company-information .form-label {
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
  color: #27272A;
}
.company-information .required {
  color: #c92b35;
}
.company-information .form-input {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #D4D4D8;
  background: #FFFFFE;
  font-size: 1rem;
}
.company-information .form-input:focus {
  outline: none;
  border: 1px solid #27272A;
}
.company-information .upload-dropzone {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px dashed #f0e9e9;
  padding: 28px;
  border-radius: 8px;
  cursor: pointer;
}
.company-information .upload-inner {
  text-align: center;
}
.company-information .upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  background: #fdecec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.company-information .upload-text {
  font-size: 14px;
}
.company-information .upload-sub {
  color: #a1a1aa;
  font-size: 12px;
  margin-top: 6px;
}
.company-information__social {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 40em) {
  .company-information__social {
    gap: 2.5rem;
  }
}
.company-information__section-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.company-details {
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #FBF8FD;
}
@media (min-width: 40em) {
  .company-details {
    padding: 64px 24px;
  }
}
@media (min-width: 64em) {
  .company-details {
    padding: 64px 104px;
    gap: 40px;
  }
}

.dashboard-sidebar {
  width: 250px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}
.dashboard-sidebar__menu {
  flex: 1;
}
.dashboard-sidebar__nav-items li {
  padding: 12px 24px;
}
.dashboard-sidebar__nav-items li.active {
  background: #F9F9F9;
  color: #BE2739;
  border-left: 3px solid #BE2739;
}
.dashboard-sidebar__nav-items li.active a.nav-item {
  color: #BE2739;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.dashboard-sidebar__nav-items li:not(.active) a.nav-item svg.nav-icon {
  color: #71717A;
}
.dashboard-sidebar__nav-items li:not(.active) a.nav-item span {
  color: #3F3F46;
}
.dashboard-sidebar__nav-items a.nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-card__main {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  background-color: #FBF8FD;
}
@media (min-width: 40em) {
  .status-card__main {
    padding: 44px 32px 0px 32px;
    background-color: #F8FAFD;
  }
}
@media (min-width: 64em) {
  .status-card__main {
    padding: 50px 112px 0px 56px;
    gap: 1.5rem;
  }
}
.status-card__limited-access {
  border-radius: 12px;
  border: 1px solid #E4E4E7;
  padding: 1rem;
}
@media (min-width: 64em) {
  .status-card__limited-access {
    padding: 1.5rem;
  }
}
.status-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 40em) {
  .status-card__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.status-card__content p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #3F3F46;
}
.status-card__content a {
  color: #BE2739;
  font-weight: 600;
  font-size: 1rem;
  gap: 1.5rem;
}
.status-card__content a:hover {
  color: #991F31;
  transition: all 0.2s ease-in-out;
}
.status-card__website-live {
  border-radius: 0.75rem;
  border: 1px solid #E4E4E7;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 64em) {
  .status-card__website-live {
    padding: 1.5rem;
  }
}
.status-card__info h2 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #000000;
}
@media (min-width: 40em) {
  .status-card__info h2 {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}
.status-card__info p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000000;
}
@media (min-width: 40em) {
  .status-card__info p {
    line-height: 1.625rem;
  }
}

.dashboard-container {
  display: flex;
  min-height: calc(100vh - 80px);
}

.menu {
  position: fixed;
  overflow: auto;
  display: flex;
  flex-direction: column;
  top: 0;
  left: -17rem;
  width: 18rem;
  height: 100%;
  opacity: 0;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  transition: all 0.5s cubic-bezier(0.6, 0.05, 0.28, 0.91);
}
.menu.active {
  left: 0;
  opacity: 1;
}

.noscroll {
  overflow: hidden;
}

.nav-logo {
  padding: 0.875rem 8.813rem 0.875rem 1rem;
}
.nav-logo img {
  width: 8.188rem;
  height: 1.75rem;
}
