@import "../fonts/Aktiv-Grotesk/all.css";
@import "../fonts/montserrat/all.css";
@import "../libs/fontawesome-pro-5.15.4-web/css/all.min.css";
header.header {
  padding: 10px 0;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}
header.header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header .header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.header .header-left a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
header.header .header-left img {
  height: 52px;
  margin-left: -5px;
}
header.header .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
header.header .header-right .btn-primary {
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
}
header.header .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3366ff, #5f8cff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
header.header .logo-text-main {
  font-weight: 700;
  letter-spacing: 0.02em;
}
header.header .logo-text-sub {
  font-size: 15px;
  color: var(--text-muted);
}
header.header .nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--text-muted);
}
header.header .nav a.active {
  color: var(--text-main);
  font-weight: 600;
}
header.header .header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.header .lang-toggle {
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: #f9f9ff;
  font-size: 12px;
  color: var(--text-muted);
}
header.header .lang-toggle span.active {
  background: #fff;
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--text-main);
  font-weight: 600;
}

.footer {
  margin-top: 32px;
  padding: 20px 18px 6px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  font-size: 16px;
}

.footer-top {
  display: flex;
  gap: 30px;
  margin-bottom: 16px;
}

.footer-brand {
  width: 330px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  flex-wrap: wrap;
  width: calc(100% - 330px);
}

.footer-column-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-column a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid #edf0ff;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 12px;
  gap: 8px;
}

.chat-section {
  margin-bottom: 60px;
  border-top: 1px solid var(--border-soft);
}
.chat-section .section-title {
  font-size: 36px;
  line-height: 1.1;
  margin-top: 40px;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: 400;
}
.chat-section .section-title span {
  color: #4b61ef;
}
.chat-section .subtitle {
  font-size: 20px;
  color: #000;
  margin: 0 0 30px;
  width: 100%;
  font-weight: 300;
  text-align: center;
}
.chat-section .subtitle sup {
  font-size: 8px;
  color: #4b61ef;
}
.chat-section .chat-history .chat-answer {
  display: inline-block;
  background: #FFF;
  border-radius: 14px;
  max-width: 70%;
  padding: 12px 15px;
  line-height: 1.35;
  font-size: 22px;
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text-muted);
}
.chat-section form {
  position: relative;
}
.chat-section .chat-input {
  width: 100%;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 2px solid var(--border-soft);
  background: #fff;
  padding: 20px 58px 70px 15px;
  font-size: 20px;
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text-muted);
  box-shadow: none;
  outline: none;
  transition: all 0.2s linear;
  overflow: hidden;
}
.chat-section .chat-input::placeholder {
  color: #000;
}
.chat-section .chat-input:active, .chat-section .chat-input:focus {
  border-color: #4b61ef;
  box-shadow: none;
}
.chat-section .actions {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: auto;
  padding: 10px 15px 20px;
}
.chat-section .actions .upload_ticket {
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  background: #eef2ff;
  color: #000;
  border: 2px solid var(--border-soft);
  transition: all 0.2s linear;
}
.chat-section .actions .upload_ticket:hover {
  background: #4b61ef;
  border-color: #4b61ef;
  color: #FFF;
}
.chat-section .actions .chat-upload-pill {
  position: absolute;
  bottom: 25px;
  right: 15px;
  display: flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary-dark);
  border: none;
  cursor: pointer;
  transition: all 0.2s linear;
}
.chat-section .actions .chat-upload-pill:hover {
  background: #4b61ef;
  color: #FFF;
}
.chat-section .disclaimer {
  font-size: 15px;
  opacity: 0.7;
}

.faq-section a {
  color: #4b61ef;
  font-weight: 500;
  text-decoration: none;
}
.faq-section .section-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}
.faq-section .section-title span {
  color: var(--primary);
}
.faq-section .description {
  font-size: 20px;
  color: #000;
  margin: 0 0 40px;
  font-weight: 300;
}
.faq-section .faq-wrap h2 {
  font-family: "Aktiv Grotesk Corp", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}
.faq-section .faq-wrap .subtitle {
  margin-bottom: 40px;
}
.faq-section .faq_list .card-header {
  position: relative;
  color: #2d3c48;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  padding: 20px 20px 20px 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.175);
}
.faq-section .faq_list .card-header[aria-expanded=true]:after {
  transform: rotate(180deg);
}
.faq-section .faq_list .card-header::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 20px;
}
.faq-section .faq_list .card-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  padding: 20px 0;
}

.important_details {
  padding-bottom: 0;
  margin-bottom: 20px;
}
.important_details h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
  font-family: "Aktiv Grotesk Corp", sans-serif;
}
.important_details .check_list ul {
  margin: 0 0 40px;
  padding-left: 0;
  text-align: left;
  list-style: none;
}
.important_details .check_list li {
  margin: 10px 0;
  padding-left: 30px;
  position: relative;
}
.important_details .check_list li:before {
  content: " ";
  display: inline-block;
  border-style: solid;
  border-width: 0 0 2px 2px;
  width: 15px;
  height: 7px;
  transform: rotate(-45deg);
  color: #4b61ef;
  position: absolute;
  top: 8px;
  left: 0;
  margin-left: 0;
  margin-right: 10px;
}

#modalTags,
#modalLogin,
#modalForgot,
#modalThanks {
  background-color: hsla(0, 0%, 100%, 0.95);
  z-index: 1051;
}
#modalTags .modal-dialog,
#modalLogin .modal-dialog,
#modalForgot .modal-dialog,
#modalThanks .modal-dialog {
  max-width: unset;
}
#modalTags h3,
#modalLogin h3,
#modalForgot h3,
#modalThanks h3 {
  text-align: center;
}
#modalTags .message,
#modalLogin .message,
#modalForgot .message,
#modalThanks .message {
  position: relative;
  text-align: center;
  color: #000;
  padding: 10px 0px;
  font-size: 18px;
  margin-top: 15px;
}
#modalTags .message.error,
#modalLogin .message.error,
#modalForgot .message.error,
#modalThanks .message.error {
  background-color: #ff5a5f;
}
#modalTags .message.error:before, #modalTags .message.error:after,
#modalLogin .message.error:before,
#modalLogin .message.error:after,
#modalForgot .message.error:before,
#modalForgot .message.error:after,
#modalThanks .message.error:before,
#modalThanks .message.error:after {
  background-color: #ff5a5f;
}
#modalTags .message.success,
#modalLogin .message.success,
#modalForgot .message.success,
#modalThanks .message.success {
  background-color: #689E4B;
}
#modalTags .message.success:before, #modalTags .message.success:after,
#modalLogin .message.success:before,
#modalLogin .message.success:after,
#modalForgot .message.success:before,
#modalForgot .message.success:after,
#modalThanks .message.success:before,
#modalThanks .message.success:after {
  background-color: #689E4B;
}
#modalTags .message:before, #modalTags .message:after,
#modalLogin .message:before,
#modalLogin .message:after,
#modalForgot .message:before,
#modalForgot .message:after,
#modalThanks .message:before,
#modalThanks .message:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: 100%;
  height: 100%;
}
#modalTags .message:before,
#modalLogin .message:before,
#modalForgot .message:before,
#modalThanks .message:before {
  left: -100%;
}
#modalTags .subtitle,
#modalLogin .subtitle,
#modalForgot .subtitle,
#modalThanks .subtitle {
  text-align: center;
  font-size: 17px;
}
#modalTags .modal-content,
#modalLogin .modal-content,
#modalForgot .modal-content,
#modalThanks .modal-content {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  box-shadow: 10px 10px 40px 0 rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  text-align: center;
  margin: 0 auto;
  border: none;
  max-width: 480px;
}
#modalTags .modal-body,
#modalLogin .modal-body,
#modalForgot .modal-body,
#modalThanks .modal-body {
  padding: 3rem;
  text-align: left;
  overflow: hidden;
}
#modalTags .modal-body .close,
#modalLogin .modal-body .close,
#modalForgot .modal-body .close,
#modalThanks .modal-body .close {
  font-size: 0.9rem;
  top: 1rem;
  line-height: 1.7rem;
  right: 2rem;
  opacity: unset;
  position: absolute;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s linear;
  padding: 10px;
  border-radius: 50%;
}
#modalTags .modal-body .close:hover,
#modalLogin .modal-body .close:hover,
#modalForgot .modal-body .close:hover,
#modalThanks .modal-body .close:hover {
  background: rgb(247, 247, 247) none repeat scroll 0 0;
}
#modalTags .modal-body .modal-title,
#modalLogin .modal-body .modal-title,
#modalForgot .modal-body .modal-title,
#modalThanks .modal-body .modal-title {
  font-size: 28px;
  color: #4a4a4a;
  font-weight: 800;
  line-height: 3rem;
  margin-bottom: 0;
  text-align: center;
}
#modalTags .modal-body .modal-actions,
#modalLogin .modal-body .modal-actions,
#modalForgot .modal-body .modal-actions,
#modalThanks .modal-body .modal-actions {
  margin-top: 40px;
}
#modalTags .modal-body .global-subtitle,
#modalLogin .modal-body .global-subtitle,
#modalForgot .modal-body .global-subtitle,
#modalThanks .modal-body .global-subtitle {
  margin-bottom: 2.5rem;
}
#modalTags .modal-body ul.tags,
#modalLogin .modal-body ul.tags,
#modalForgot .modal-body ul.tags,
#modalThanks .modal-body ul.tags {
  list-style: none;
  padding: 0;
  margin: 0 -10px;
}
#modalTags .modal-body ul.tags li,
#modalLogin .modal-body ul.tags li,
#modalForgot .modal-body ul.tags li,
#modalThanks .modal-body ul.tags li {
  padding: 0 10px;
  color: #CCC;
  font-size: 15px;
  font-weight: 200;
  text-align: left;
  transition: all 0.3s linear;
}
#modalTags .modal-body ul.tags li label,
#modalLogin .modal-body ul.tags li label,
#modalForgot .modal-body ul.tags li label,
#modalThanks .modal-body ul.tags li label {
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 10px 0;
  margin: 0;
  text-transform: capitalize;
}
#modalTags .modal-body ul.tags li label:hover span,
#modalLogin .modal-body ul.tags li label:hover span,
#modalForgot .modal-body ul.tags li label:hover span,
#modalThanks .modal-body ul.tags li label:hover span {
  color: #4b61ef;
}
#modalTags .modal-body ul.tags li label input,
#modalLogin .modal-body ul.tags li label input,
#modalForgot .modal-body ul.tags li label input,
#modalThanks .modal-body ul.tags li label input {
  display: none;
}
#modalTags .modal-body ul.tags li label input:checked ~ span,
#modalLogin .modal-body ul.tags li label input:checked ~ span,
#modalForgot .modal-body ul.tags li label input:checked ~ span,
#modalThanks .modal-body ul.tags li label input:checked ~ span {
  color: #4b61ef;
  font-weight: 600;
}
#modalTags .result,
#modalLogin .result,
#modalForgot .result,
#modalThanks .result {
  text-align: center;
}

#modalLogin input[name=type] {
  display: none;
}
#modalLogin input[name=type].type_login:checked ~ .login, #modalLogin input[name=type].type_login:checked ~ div .login {
  display: block;
}
#modalLogin input[name=type].type_login:checked ~ .signup, #modalLogin input[name=type].type_login:checked ~ div .signup {
  display: none;
}
#modalLogin input[name=type].type_signup:checked ~ .signup, #modalLogin input[name=type].type_signup:checked ~ div .signup {
  display: block;
}
#modalLogin input[name=type].type_signup:checked ~ .login, #modalLogin input[name=type].type_signup:checked ~ div .login {
  display: none;
}
#modalLogin .switch_form {
  margin-top: 40px;
  text-align: center;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
}
#modalLogin .switch_form button {
  border: none;
  background: transparent;
  color: #FFF;
  opacity: 0.8;
  text-decoration: underline;
  transition: all 0.2s linear;
}
#modalLogin .switch_form button:hover {
  opacity: 1;
}
#modalLogin .forgot {
  margin-top: 10px;
}

.signin_or_signup label {
  padding: 0 25px !important;
}

.form-group {
  margin-top: 30px;
  position: relative;
}
.form-group label {
  width: 100%;
  font-size: 0.9375rem;
  font-family: Montserrat;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  padding: 0px;
  color: #484848;
}
.form-group button[type=submit] {
  margin-top: 20px;
}

a, a:focus,
button, button:focus,
input, input:focus,
textarea, textarea:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=password] {
  border-radius: 100px;
  display: inline-block;
  outline: 0;
  padding: 0 25px;
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  background: #fff;
  font-size: 17px;
  line-height: normal;
  box-shadow: none;
  border: 1px solid #c4cdd5;
  color: #737373;
  min-height: 52px;
  caret-color: #737373 !important;
  outline: 0;
  box-shadow: none !important;
}

input:active,
input:focus,
select:active,
select:focus,
textarea:active,
textarea:focus {
  border: 1px solid #4b61ef !important;
  box-shadow: none !important;
  outline: 0;
}

body.page-about .about-section a {
  color: #4b61ef;
  font-weight: 500;
  text-decoration: none;
}
body.page-about .about-section .section-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}
body.page-about .about-section .section-title span {
  color: var(--primary);
}
body.page-about .about-section .description {
  font-size: 20px;
  color: #000;
  margin: 0 0 40px;
  font-weight: 300;
}
body.page-about .about-section .contact_form {
  margin-bottom: calc(var(--cel, 2.5vw) * 1.75);
}
body.page-about .about-section .contact_form h2 {
  font-family: "Aktiv Grotesk Corp", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}
body.page-about .about-section .contact_form .inner {
  margin: 0 auto;
  max-width: 540px;
}
body.page-about .about-section .contact_form .item {
  margin-bottom: 20px;
}
body.page-about .about-section .contact_form label {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 5px;
  display: block;
  padding: 0;
  text-align: left;
}
body.page-about .about-section .contact_form input,
body.page-about .about-section .contact_form textarea {
  border-radius: 3px;
  display: inline-block;
  padding: 13px 15px;
  vertical-align: middle;
  font-weight: 300;
  background: #fff;
  font-size: 17px;
  line-height: normal;
  border: 1px solid #c4cdd5;
  color: #737373;
  min-height: 52px;
  outline: 0;
  box-shadow: none;
  width: 100%;
  transition: all 0.2s linear;
}
body.page-about .about-section .contact_form input:active, body.page-about .about-section .contact_form input:focus,
body.page-about .about-section .contact_form textarea:active,
body.page-about .about-section .contact_form textarea:focus {
  border-color: #4b61ef;
}
body.page-about .about-section .contact_form .error_validation input, body.page-about .about-section .contact_form .error_validation textarea {
  border-color: #ff5a5f;
}
body.page-about .about-section .contact_form .error {
  font-size: 11px;
  color: #ff5a5f;
}
body.page-about .about-section .contact_form .successfully {
  font-size: 11px;
  color: #689E4B;
}
body.page-about .about-section .contact_form [type=submit] {
  cursor: pointer;
  outline: 0;
  padding: 0 30px !important;
}
body.page-about .about-section .contact_form [type=submit][disabled], body.page-about .about-section .contact_form [type=submit][disabled]:hover {
  background: #CCC;
  border-color: #CCC;
  color: #DDD !important;
}
body.page-about .about-section .contact_form [type=submit][disabled] i, body.page-about .about-section .contact_form [type=submit][disabled]:hover i {
  display: inline-block;
}
body.page-about .about-section .contact_form [type=submit] i {
  display: none;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  color: #FFF;
}

body.page-chat .chat-section {
  border-top: none;
  margin-bottom: 30px;
}
body.page-chat .section-title {
  margin-top: 0;
}

body.page-join .pricing_block .header_row {
  justify-content: center;
}
body.page-join .pricing_block .header .title {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}
body.page-join .pricing_block .header .title span {
  color: #4b61ef;
}
body.page-join .pricing_block .header .subtitle {
  font-size: 20px;
  color: #000;
  margin: 0 0 40px;
  max-width: 435px;
  font-weight: 300;
}
body.page-join .pricing_block .payment_plan__container {
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}
body.page-join .pricing_block .payment_plan {
  text-align: center;
  justify-content: center;
}
body.page-join .pricing_block .payment_plan .align-items-center {
  justify-content: center;
}
body.page-join .pricing_block .payment_plan .options {
  text-align: left;
  margin-bottom: 40px;
}
body.page-join .pricing_block .payment_plan .item {
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  body.page-join .pricing_block .payment_plan .item {
    margin-bottom: 20px;
  }
}
body.page-join .pricing_block .payment_plan [type=radio] {
  display: none;
}
body.page-join .pricing_block .payment_plan [type=radio]:checked + .inner .radio::after {
  background-color: #4840BB;
  transform: scale(1, 1);
  animation: effect 250ms ease-in;
  content: " ";
  width: 12px;
  height: 12px;
  left: 4px;
  border-radius: 50%;
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  display: inline-block;
  position: absolute;
  top: 4px;
}
body.page-join .pricing_block .payment_plan [type=radio][disabled] + .label {
  filter: grayscale(1);
  cursor: default;
}
body.page-join .pricing_block .payment_plan [type=radio][disabled] + .label .title,
body.page-join .pricing_block .payment_plan [type=radio][disabled] + .label .subtitle,
body.page-join .pricing_block .payment_plan [type=radio][disabled] + .label .price {
  color: #CCC !important;
}
body.page-join .pricing_block .payment_plan .inner {
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px 30px 60px;
  border: 1px solid #dbdbdb;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
body.page-join .pricing_block .payment_plan .inner .radio {
  position: absolute;
  right: 35px;
  top: 15px;
}
body.page-join .pricing_block .payment_plan .inner .radio:before {
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  background-color: #fff;
  transition: border 0.15s ease-in-out;
  display: inline-block;
  position: absolute;
}
body.page-join .pricing_block .payment_plan .inner .cancel {
  position: absolute;
  right: 0px;
  bottom: 15px;
  width: 100%;
  height: auto;
  text-align: center;
  color: #333;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}
body.page-join .pricing_block .payment_plan .inner .title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 40px;
  padding: 0 10px;
  line-height: 1.5;
}
body.page-join .pricing_block .payment_plan .inner .title span {
  font-size: 20px;
  color: #4b61ef;
  font-weight: 300;
}
body.page-join .pricing_block .payment_plan .inner .subtitle {
  color: #333;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 20px;
}
body.page-join .pricing_block .payment_plan .inner .subtitle span {
  background-color: #4b61ef;
  border-radius: 20px;
  color: #FFF;
  display: inline-block;
  font-family: inherit;
  margin-left: 7px;
  padding: 5px 12px;
  position: relative;
  width: auto;
}
body.page-join .pricing_block .payment_plan .inner .discount {
  position: relative;
  top: -3px;
  display: inline-block;
  width: auto;
  font-family: inherit;
  font-weight: 500;
  font-size: 12px;
  color: #FFF;
  background-color: #4b61ef;
  border-radius: 20px;
  padding: 3px 9px;
  margin-left: 7px;
}
body.page-join .pricing_block .payment_plan .inner .price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (max-width: 660px) {
  body.page-join .pricing_block .payment_plan .inner .price {
    padding-top: 20px;
  }
}
body.page-join .pricing_block .payment_plan .inner .price .amount {
  display: flex;
  align-items: flex-start;
  font-size: 64px;
  line-height: 64px;
  font-weight: 700;
  position: relative;
}
@media all and (min-width: 768px) {
  body.page-join .pricing_block .payment_plan .inner .price .amount {
    margin-top: 0;
  }
}
@media print {
  body.page-join .pricing_block .payment_plan .inner .price .amount {
    margin-top: 0;
  }
}
body.page-join .pricing_block .payment_plan .inner .price .amount span {
  font-size: 42px;
  line-height: 1;
  position: relative;
  top: 32px;
  left: -5px;
}
body.page-join .pricing_block .payment_plan .inner .price sup {
  font-size: 28px;
  font-weight: 600;
  position: relative;
  top: 22px;
}
body.page-join .pricing_block .payment_plan .inner .price sub {
  font-size: 20px;
  font-weight: 400;
  position: relative;
  top: 45px;
  bottom: unset;
}
body.page-join .pricing_block .payment_plan .inner .check_list ul {
  margin: 0 0 40px;
  padding-left: 0;
  text-align: left;
  list-style: none;
}
body.page-join .pricing_block .payment_plan .inner .check_list li {
  margin: 10px 0;
  padding-left: 30px;
  position: relative;
}
body.page-join .pricing_block .payment_plan .inner .check_list li:before {
  content: " ";
  display: inline-block;
  border-style: solid;
  border-width: 0 0 2px 2px;
  width: 15px;
  height: 7px;
  transform: rotate(-45deg);
  color: #4b61ef;
  position: absolute;
  top: 8px;
  left: 0;
  margin-left: 0;
  margin-right: 10px;
}
body.page-join .pricing_block .payment_plan .inner .actions {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: calc(100% - 60px);
  transform: translateX(-50%);
  text-align: center;
}
body.page-join .pricing_block .payment_plan .inner .actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  color: #FFF;
  background: linear-gradient(135deg, #4b61ef, #4b61ef);
  border: none;
  outline: none;
  transition: all 0.2s linear;
}
body.page-join .pricing_block .payment_plan .inner .actions .btn:hover {
  background: linear-gradient(135deg, #2450d6, #4c75ff);
}
body.page-join .payment_details {
  margin-bottom: 60px;
  justify-content: center;
}
body.page-join .payment_details.free .payment-form-fields,
body.page-join .payment_details.free .error_stripe_validate {
  display: none !important;
}
body.page-join .payment_details.free .general_payment_information {
  margin-top: 0 !important;
}
body.page-join .payment_details .title {
  font-size: calc(18px + 2vw);
  line-height: 1;
  font-weight: 500;
  text-align: left;
  margin-bottom: 20px;
}
body.page-join .payment_details input[type=text] {
  border-radius: 10px;
}
body.page-join .general_payment_information {
  border-top: 1px solid rgba(19, 20, 49, 0.1);
  margin: 40px 0px 20px;
  padding: 20px 0px;
  font-size: 29px;
  line-height: 1;
  font-weight: 500;
  text-align: left;
}
body.page-join .general_payment_information .name {
  padding-left: 0px;
}
body.page-join .general_payment_information .subtotal {
  position: relative;
  text-align: right;
  padding-right: 0px;
}
body.page-join .general_payment_information .subtotal:before {
  content: "USD";
  display: inline-block;
  background-color: #919191;
  color: #FFF;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 3px 7px;
  border-radius: 4px;
  margin-right: 5px;
  position: relative;
  top: -5px;
}
body.page-join .general_payment_information .description {
  padding: 0px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
}
body.page-join button.pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  color: #FFF;
  background: linear-gradient(135deg, #4b61ef, #4b61ef);
  border: none;
  outline: none;
  transition: all 0.2s linear;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  letter-spacing: 1.5px;
}
body.page-join button.pay:hover {
  background: linear-gradient(135deg, #2450d6, #4c75ff);
}
body.page-join .alert-success {
  display: flex;
  margin-bottom: 40px;
  justify-content: left;
}
body.page-join .alert-success .close {
  position: absolute;
  right: 20px;
  color: #0f5132;
  text-decoration: none;
}
body.page-join footer {
  margin-top: 60px;
}

body.page-login,
body.page-register,
body.page-forgot-password {
  padding-bottom: 60px;
}
body.page-login .content_wrapper,
body.page-register .content_wrapper,
body.page-forgot-password .content_wrapper {
  min-height: calc(100vh - 152px);
}
body.page-login .content_wrapper > .container,
body.page-register .content_wrapper > .container,
body.page-forgot-password .content_wrapper > .container {
  max-width: 440px;
  margin: 0 auto;
}
body.page-login .content_wrapper h1,
body.page-register .content_wrapper h1,
body.page-forgot-password .content_wrapper h1 {
  text-align: center;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 300;
}
body.page-login .content_wrapper label,
body.page-register .content_wrapper label,
body.page-forgot-password .content_wrapper label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 0.5rem;
  width: 100%;
}
body.page-login .content_wrapper input[name=email], body.page-login .content_wrapper input[name=password], body.page-login .content_wrapper input[name=password_confirmation], body.page-login .content_wrapper input[type=text],
body.page-register .content_wrapper input[name=email],
body.page-register .content_wrapper input[name=password],
body.page-register .content_wrapper input[name=password_confirmation],
body.page-register .content_wrapper input[type=text],
body.page-forgot-password .content_wrapper input[name=email],
body.page-forgot-password .content_wrapper input[name=password],
body.page-forgot-password .content_wrapper input[name=password_confirmation],
body.page-forgot-password .content_wrapper input[type=text] {
  width: 100%;
  border-radius: 4px;
}
body.page-login .content_wrapper [for=password] + div,
body.page-login .content_wrapper [for=password_confirmation] + div,
body.page-register .content_wrapper [for=password] + div,
body.page-register .content_wrapper [for=password_confirmation] + div,
body.page-forgot-password .content_wrapper [for=password] + div,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div {
  position: relative;
}
body.page-login .content_wrapper [for=password] + div [name=password] + div,
body.page-login .content_wrapper [for=password] + div [name=password_confirmation] + div,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password] + div,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div,
body.page-register .content_wrapper [for=password] + div [name=password] + div,
body.page-register .content_wrapper [for=password] + div [name=password_confirmation] + div,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password] + div,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div,
body.page-forgot-password .content_wrapper [for=password] + div [name=password] + div,
body.page-forgot-password .content_wrapper [for=password] + div [name=password_confirmation] + div,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password] + div,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 !important;
}
body.page-login .content_wrapper [for=password] + div [name=password] + div button,
body.page-login .content_wrapper [for=password] + div [name=password_confirmation] + div button,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password] + div button,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button,
body.page-register .content_wrapper [for=password] + div [name=password] + div button,
body.page-register .content_wrapper [for=password] + div [name=password_confirmation] + div button,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password] + div button,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button,
body.page-forgot-password .content_wrapper [for=password] + div [name=password] + div button,
body.page-forgot-password .content_wrapper [for=password] + div [name=password_confirmation] + div button,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password] + div button,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button {
  width: 52px;
  height: 100%;
  padding: 0;
  border: none;
}
body.page-login .content_wrapper [for=password] + div [name=password] + div button svg,
body.page-login .content_wrapper [for=password] + div [name=password_confirmation] + div button svg,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password] + div button svg,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button svg,
body.page-register .content_wrapper [for=password] + div [name=password] + div button svg,
body.page-register .content_wrapper [for=password] + div [name=password_confirmation] + div button svg,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password] + div button svg,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button svg,
body.page-forgot-password .content_wrapper [for=password] + div [name=password] + div button svg,
body.page-forgot-password .content_wrapper [for=password] + div [name=password_confirmation] + div button svg,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password] + div button svg,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button svg {
  width: 20px;
}
body.page-login .content_wrapper [for=password] + div [name=password] + div button svg:first-child,
body.page-login .content_wrapper [for=password] + div [name=password_confirmation] + div button svg:first-child,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password] + div button svg:first-child,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button svg:first-child,
body.page-register .content_wrapper [for=password] + div [name=password] + div button svg:first-child,
body.page-register .content_wrapper [for=password] + div [name=password_confirmation] + div button svg:first-child,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password] + div button svg:first-child,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button svg:first-child,
body.page-forgot-password .content_wrapper [for=password] + div [name=password] + div button svg:first-child,
body.page-forgot-password .content_wrapper [for=password] + div [name=password_confirmation] + div button svg:first-child,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password] + div button svg:first-child,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button svg:first-child {
  display: inline-block !important;
}
body.page-login .content_wrapper [for=password] + div [name=password] + div button svg:last-child,
body.page-login .content_wrapper [for=password] + div [name=password_confirmation] + div button svg:last-child,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password] + div button svg:last-child,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button svg:last-child,
body.page-register .content_wrapper [for=password] + div [name=password] + div button svg:last-child,
body.page-register .content_wrapper [for=password] + div [name=password_confirmation] + div button svg:last-child,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password] + div button svg:last-child,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button svg:last-child,
body.page-forgot-password .content_wrapper [for=password] + div [name=password] + div button svg:last-child,
body.page-forgot-password .content_wrapper [for=password] + div [name=password_confirmation] + div button svg:last-child,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password] + div button svg:last-child,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button svg:last-child {
  display: none !important;
}
body.page-login .content_wrapper [for=password] + div [name=password] + div button[data-viewable-open=true] svg:first-child,
body.page-login .content_wrapper [for=password] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:first-child,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password] + div button[data-viewable-open=true] svg:first-child,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:first-child,
body.page-register .content_wrapper [for=password] + div [name=password] + div button[data-viewable-open=true] svg:first-child,
body.page-register .content_wrapper [for=password] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:first-child,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password] + div button[data-viewable-open=true] svg:first-child,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:first-child,
body.page-forgot-password .content_wrapper [for=password] + div [name=password] + div button[data-viewable-open=true] svg:first-child,
body.page-forgot-password .content_wrapper [for=password] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:first-child,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password] + div button[data-viewable-open=true] svg:first-child,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:first-child {
  display: none !important;
}
body.page-login .content_wrapper [for=password] + div [name=password] + div button[data-viewable-open=true] svg:last-child,
body.page-login .content_wrapper [for=password] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:last-child,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password] + div button[data-viewable-open=true] svg:last-child,
body.page-login .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:last-child,
body.page-register .content_wrapper [for=password] + div [name=password] + div button[data-viewable-open=true] svg:last-child,
body.page-register .content_wrapper [for=password] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:last-child,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password] + div button[data-viewable-open=true] svg:last-child,
body.page-register .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:last-child,
body.page-forgot-password .content_wrapper [for=password] + div [name=password] + div button[data-viewable-open=true] svg:last-child,
body.page-forgot-password .content_wrapper [for=password] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:last-child,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password] + div button[data-viewable-open=true] svg:last-child,
body.page-forgot-password .content_wrapper [for=password_confirmation] + div [name=password_confirmation] + div button[data-viewable-open=true] svg:last-child {
  display: inline-block !important;
}
body.page-login .content_wrapper [type=submit],
body.page-register .content_wrapper [type=submit],
body.page-forgot-password .content_wrapper [type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  color: #FFF;
  background: linear-gradient(135deg, #4b61ef, #4b61ef);
  border: none;
  outline: none;
  transition: all 0.2s linear;
  border-radius: 4px;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}
body.page-login .content_wrapper [type=submit]:hover,
body.page-register .content_wrapper [type=submit]:hover,
body.page-forgot-password .content_wrapper [type=submit]:hover {
  background: linear-gradient(135deg, #2450d6, #4c75ff);
}
body.page-login .content_wrapper .footer-form,
body.page-register .content_wrapper .footer-form,
body.page-forgot-password .content_wrapper .footer-form {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}
body.page-login .content_wrapper .footer-form a,
body.page-register .content_wrapper .footer-form a,
body.page-forgot-password .content_wrapper .footer-form a {
  position: relative;
  text-decoration: none;
}
body.page-login .content_wrapper .footer-form a:hover,
body.page-register .content_wrapper .footer-form a:hover,
body.page-forgot-password .content_wrapper .footer-form a:hover {
  color: #4b61ef;
}
body.page-login .content_wrapper .footer-form a:after,
body.page-register .content_wrapper .footer-form a:after,
body.page-forgot-password .content_wrapper .footer-form a:after {
  background-color: #4b61ef;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
body.page-login footer#footer,
body.page-register footer#footer,
body.page-forgot-password footer#footer {
  display: none;
}

:root {
  --bg: #f3f5ff;
  --card: #ffffff;
  --primary: #3366ff;
  --primary-dark: #2450d6;
  --accent: #5f8cff;
  --text-main: #101828;
  --text-muted: #000;
  --border-soft: #e0e7ff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --font-main: Aktiv Grotesk Corp;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 300;
  background: radial-gradient(circle at top left, #e8edff, #f6f7ff 45%, #eef2ff 100%);
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  padding: 9px 32px;
  border-radius: var(--radius-pill);
  background: #4b61ef;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  height: 50px;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2450d6, #4c75ff);
}

.btn-secondary {
  padding: 9px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid #4149d8;
  background: #fff;
  color: #4149d8;
  box-shadow: var(--shadow-soft);
  font-size: 18px;
  font-weight: 500;
  height: 50px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f5f7ff;
}

/* HERO */
.hero > .container {
  display: grid;
  grid-template-columns: 45% 55%;
  /*gap: 28px;*/
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .hero > .container .hero {
    grid-template-columns: 1fr;
  }
}
.hero .hero-title {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}
.hero .hero-title span {
  color: var(--primary);
}
.hero .hero-sub {
  font-size: 20px;
  color: #000;
  margin: 0 0 40px;
  max-width: 435px;
  font-weight: 300;
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.hero .hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
}
.hero .hero-bullets sup {
  font-size: 8px;
  color: #4b61ef;
}
.hero .hero-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.hero .hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}
.hero .hero-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}
.hero .hero-right {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero .hero-right .disclaimer {
  padding: 10px 20px 20px;
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.chat-title {
  font-size: 14px;
  font-weight: 600;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16a34a;
}

.chat-window {
  padding: 10px 20px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: auto;
  overflow: hidden;
}

.chat-bubble {
  max-width: 70%;
  padding: 12px 15px;
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.35;
}

.chat-bubble.user {
  margin-left: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.chat-bubble.ai {
  background: #e3e9ff;
  border-radius: 14px;
}

.chat-input {
  width: calc(100% - 40px);
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: #fff;
  padding: 12px 15px;
  font-size: 16px;
  color: var(--text-muted);
}

.chat-input span {
  flex: 1;
  opacity: 0.4;
}

.chat-upload-pill {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary-dark);
}

.ticket-intake {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  font-size: 12px;
}

.ticket-intake button {
  grid-column: span 2;
  margin-top: 4px;
}

.input-soft {
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 7px 10px;
  background: #fff;
}

.input-soft label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.input-soft select,
.input-soft input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 12px;
  background: transparent;
}

/* HOW IT WORKS */
.section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 22px;
  font-weight: 400;
  margin: 10px 0 20px;
}

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 800px) {
  .how-cards {
    grid-template-columns: 1fr;
  }
}
.how-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  padding: 20px 20px;
  border: 2px solid #4b61ef;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
}
.how-card .inner {
  display: flex;
  align-items: center;
}
.how-card .inner .icon {
  width: 40px;
  font-size: 30px;
  text-align: center;
  color: #4b61ef;
}
.how-card .inner .content {
  padding-left: 10px;
  width: calc(100% - 40px);
}

.card-title {
  display: flex;
  align-items: center;
}

.how-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
}

.how-label {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

/* LAWYERS + CONSEQUENCES */
.lawyer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
.lawyer-layout .card-lawyers {
  width: 100%;
  background: transparent;
  padding: 0;
  border-radius: unset;
  box-shadow: unset;
  border: none;
}
.lawyer-layout .card-lawyers .lawyer-actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  width: calc(100% - 42px);
}
.lawyer-layout .card-lawyers .btn-chat {
  background: #4b61ef;
  height: 40px;
  color: #FFF;
  width: 50%;
  font-size: 16px;
  font-weight: 400;
}

.card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-soft);
}

.estimates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 16px;
  margin-top: 8px;
}

.est-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.est-value {
  font-size: 20px;
  font-weight: 700;
}

.mini-chart {
  width: 100%;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e5ebff, #f6f7ff);
  position: relative;
  overflow: hidden;
}

.mini-bar {
  position: absolute;
  bottom: 8px;
  width: 9px;
  border-radius: 999px;
  background: #3366ff;
}

.mini-bar:nth-child(1) {
  left: 24%;
  height: 30px;
  opacity: 0.6;
}

.mini-bar:nth-child(2) {
  left: 42%;
  height: 40px;
  opacity: 0.8;
}

.mini-bar:nth-child(3) {
  left: 60%;
  height: 48px;
}

.consequence-notes {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}

.lawyer-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lawyer-list-header small {
  font-size: 14px;
  color: var(--text-muted);
}

.lawyer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.lawyer-card {
  background: linear-gradient(135deg, #e1e4f9, #c7cefa, #eef0fc);
  border-radius: 30px;
  padding: 25px 15px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
}

.lawyer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3366ff, #5f8cff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.lawyer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lawyer-name {
  font-size: 18px;
  font-weight: 400;
  padding-top: 7px;
  padding-bottom: 15px;
}

.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 10px;
}

.tag-pill {
  padding: 3px 10px;
  border-radius: 999px;
  background: #b3baf7;
  color: #000;
}
.tag-pill.green {
  background: #689E4B;
  color: #FFF;
  border: 1px solid #689E4B;
}

.lawyer-fit {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.3;
  margin-bottom: 10px;
}

.btn-chat {
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.btn-chat:hover {
  background: #f5f7ff;
}

/* STATS + TRUST */
.stats-strip {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  padding: 20px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
}
.stats-strip strong {
  display: block;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 5px;
}

.stats-group {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-icons {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.trust-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-dark);
}

@media (max-width: 800px) {
  .stats-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-icons {
    margin-left: 0;
  }
}
.disclaimer {
  margin-top: 16px;
  margin-bottom: 40px;
}

.box-with-shadow {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  border-radius: 30px;
  padding: 20px;
}
.box-with-shadow h3 {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 5px;
  margin: 0;
}
.box-with-shadow p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  margin: 0;
}

#how-it-works {
  margin-bottom: 40px;
}

.disclaimer_block {
  border-top: 1px solid var(--border-soft);
  padding-top: 30px;
  font-size: 16px;
}

body.sitemap .content_wrapper {
  min-height: calc(100vh - 334px);
  padding-bottom: 60px;
}
body.sitemap .content_wrapper a {
  font-size: 16px;
  display: flex;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: 100%;
  align-content: center;
  align-items: center;
  align-self: center;
}
body.sitemap .content_page a {
  display: inline-block;
  width: auto;
  padding: unset;
  border-bottom: none;
  height: auto;
  position: relative;
  font: inherit;
}
body.sitemap .content_page a:after {
  content: "";
  height: 1px;
  background-color: #4b61ef;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
body.sitemap .content_wrapper .min a {
  padding-top: 5px;
  padding-bottom: 5px;
}
body.sitemap ul, body.sitemap ol {
  padding-left: 0;
  list-style: none;
}
body.sitemap ul[type=a], body.sitemap ol[type=a] {
  list-style: lower-alpha;
  padding-left: 45px;
}
body.sitemap .sitemap_links {
  position: relative;
  padding-bottom: 60px;
}
body.sitemap .sitemap_list {
  position: relative;
}
body.sitemap .sitemap_list a {
  font-weight: 500;
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom: none;
}
body.sitemap .sitemap_list.fixed {
  position: fixed;
  top: 120px;
  width: calc(25% - 1.5rem);
}
body.sitemap .sitemap_list.absolute {
  position: absolute;
  top: unset;
  bottom: 0;
}
body.sitemap h1, body.sitemap h2 {
  font-weight: 800;
  margin-bottom: 0;
  font-size: 32px !important;
  text-align: left;
  padding: 25px 0 10px;
  margin-top: 10px;
  text-transform: none;
  line-height: 1.2;
  color: #4b61ef;
}
body.sitemap h1 {
  margin-top: 0;
  padding-top: 0;
}
body.sitemap h3 {
  font-weight: 600;
  margin: 0;
  font-size: 20px;
  text-align: left;
  padding: 25px 0 10px;
  text-transform: none;
  line-height: 1.2;
  color: #000;
}
body.sitemap .no_border a {
  border-bottom: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
}
body.sitemap .no_border a:hover {
  color: #689E4B;
}
body.sitemap .no_border a:after {
  display: none;
}

body {
  font-family: "Aktiv Grotesk Corp", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
}

.error_validation {
  color: #ff5a5f;
  font-size: 12px;
}

.status_ok {
  text-align: left;
  padding: 20px 0;
  background: #4b61ef;
  color: #FFF;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 25px;
  position: relative;
}
.status_ok a {
  color: #FFF;
  text-decoration: none;
}
.status_ok a:after {
  content: "";
  height: 1px;
  background-color: #FFF;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.status_ok i {
  display: inline-block;
}
.status_ok:before, .status_ok:after {
  content: "";
  width: 10000px;
  height: 100%;
  background: #4b61ef;
  display: block;
  position: absolute;
  top: 0;
  left: -10000px;
}
.status_ok:after {
  left: unset;
  right: -10000px;
}

.status_error {
  text-align: left;
  padding: 20px 0;
  background: rgba(255, 153, 0, 0.5);
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 25px;
  position: relative;
}
.status_error a {
  text-decoration: none;
}
.status_error a:after {
  content: "";
  height: 1px;
  background-color: #FFF;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.status_error i {
  display: inline-block;
}
.status_error:before, .status_error:after {
  content: "";
  width: 10000px;
  height: 100%;
  background: rgba(255, 153, 0, 0.5);
  display: block;
  position: absolute;
  top: 0;
  left: -10000px;
}
.status_error:after {
  left: unset;
  right: -10000px;
}

.hidden {
  display: none !important;
}

/*# sourceMappingURL=app.css.map */
