



/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

:root {
  --ll-font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ll-font-weight-heading: 600;
  --ll-font-weight-subheading: 500;
  --ll-font-weight-body: 400;
  --ll-font-weight-microcopy: 300;
  --bs-body-font-family: var(--ll-font-family);
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-body);
}

/*---------------------------------------------*/
a {
	font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-body);
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
  font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-heading);
}

p {
	font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-body);
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-body);
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

.txt2 {
  font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-body);
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #f2f2f2;
}

.wrap-login100 {
  width: 390px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 77px 55px 33px 55px;

  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  display: block;
  font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-heading);
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}
.login100-form-title i {
  font-size: 60px;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #adadad;
  margin-bottom: 37px;
}

.input100 {
  font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-body);
  font-size: 15px;
  color: #555555;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px;
}

/*---------------------------------------------*/
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #6a7dfe;
  background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  background: -o-linear-gradient(left, #21d4fd, #b721ff);
  background: -moz-linear-gradient(left, #21d4fd, #b721ff);
  background: linear-gradient(left, #21d4fd, #b721ff);
}

.focus-input100::after {
  font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-body);
  font-size: 15px;
  color: #999999;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100::after {
  top: -15px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -15px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

/*---------------------------------------------*/
.btn-show-pass {
  font-size: 15px;
  color: #999999;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding-right: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-show-pass:hover {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}

.btn-show-pass.active {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}



/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: -o-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: -moz-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-subheading);
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 77px 15px 33px 15px;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: var(--ll-font-family);
  font-weight: var(--ll-font-weight-body);
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

body {
    background: #f5f5f5;
    font-family: var(--ll-font-family) !important;
    font-weight: var(--ll-font-weight-body);
}

body,
button,
input,
textarea,
select,
option,
label,
.btn,
.form-control,
.nav-link,
.navbar-brand,
.badge,
.alert {
    font-family: var(--ll-font-family) !important;
}

.fw-bold {
    font-weight: var(--ll-font-weight-heading) !important;
}

.fw-semibold,
.form-label,
.ll-nav-link,
.ll-navbar-brand,
.badge {
    font-weight: var(--ll-font-weight-subheading) !important;
}

small,
.small,
.form-text,
.text-secondary,
.text-body-secondary {
    font-weight: var(--ll-font-weight-body) !important;
}

input::placeholder,
textarea::placeholder {
    font-weight: var(--ll-font-weight-microcopy);
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 3rem 2.5rem;
}

.auth-logo {
    display: block;
    margin: 0 auto 1.25rem auto;
    width: 180px;
    max-width: 100%;
    height: auto;
}

.auth-title {
    text-align: center;
    font-size: 3rem;
    font-weight: var(--ll-font-weight-heading);
    color: #1f2937;
    margin-bottom: 2rem;
}

.auth-form .form-label {
    font-weight: var(--ll-font-weight-subheading);
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.auth-form .form-control {
    border-radius: 12px;
    min-height: 52px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    box-shadow: none;
}

.auth-form .form-control:focus {
    border-color: #6ec1a3;
    box-shadow: 0 0 0 0.2rem rgba(110, 193, 163, 0.2);
}

.btn-primary-custom {
    background-color: #6ec1a3 !important;
    border-color: #6ec1a3 !important;
    color: #fff !important;
    font-weight: var(--ll-font-weight-heading);
    border-radius: 14px;
    min-height: 54px;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background-color: #5bb893 !important;
    border-color: #5bb893 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links p {
    margin-bottom: 0.75rem;
}

.auth-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: var(--ll-font-weight-subheading);
}

.auth-links a:hover {
    color: #111827;
    text-decoration: underline;
}
.auth-page * {
    font-family: var(--ll-font-family) !important;
}

.tailor-card {
    max-width: 900px;
}

.tailor-header-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.tailor-title {
    margin-bottom: 0.75rem;
}

.tailor-intro {
    text-align: center;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.tailor-intro p {
    margin-bottom: 0.5rem;
}

.tailor-modules {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tailor-module {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.25rem;
    background: #ffffff;
}

.tailor-module-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tailor-module-text {
    flex: 1 1 500px;
}

.tailor-module-title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: var(--ll-font-weight-heading);
    color: #1f2937;
}

.tailor-module-description {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.tailor-module-status {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: var(--ll-font-weight-subheading);
}

.tailor-module-status.is-complete {
    color: #2e8b57;
}

.tailor-module-status.is-incomplete {
    color: #9ca3af;
}

.tailor-module-action .btn {
    min-width: 120px;
}

.tailor-footer {
    margin-top: 2rem;
    text-align: center;
}

.tailor-footer p {
    color: #4b5563;
    margin-bottom: 0;
}

.tailor-empty {
    text-align: center;
}

.tailor-empty p {
    margin-bottom: 1rem;
    color: #4b5563;
}

@media (max-width: 576px) {
    .tailor-card {
        max-width: 100%;
    }

    .tailor-module-action {
        width: 100%;
    }

    .tailor-module-action .btn {
        width: 100%;
    }
}

/* ===== LANDING PAGE ===== */

.landing-page {
    background: #f8faf9;
    color: #1f2937;
}

.landing-container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.landing-hero {
    padding: 5rem 1.25rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, #f8faf9 0%, #eef7f2 100%);
}

.landing-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.landing-logo {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
}

.landing-title {
    font-size: 3.8rem;
    font-weight: var(--ll-font-weight-heading);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.landing-tagline {
    font-size: 1.4rem;
    font-weight: var(--ll-font-weight-subheading);
    color: #4b5563;
    margin-bottom: 1rem;
}

.landing-intro {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 2rem auto;
}

.landing-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-actions .btn {
    min-width: 170px;
}

.landing-section {
    padding: 4rem 0;
}

.landing-section-alt {
    background: #ffffff;
}

.landing-section h2,
.landing-cta h2 {
    font-size: 2.2rem;
    font-weight: var(--ll-font-weight-heading);
    margin-bottom: 1.25rem;
    color: #1f2937;
}

.landing-section p,
.landing-cta p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.landing-step {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.landing-step h3 {
    font-size: 1.2rem;
    font-weight: var(--ll-font-weight-heading);
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.landing-step p {
    margin-bottom: 0;
}

.landing-faqs .faq-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.landing-faqs .faq-item:last-child {
    border-bottom: none;
}

.landing-faqs h3 {
    font-size: 1.1rem;
    font-weight: var(--ll-font-weight-heading);
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.landing-faqs p {
    margin-bottom: 0;
}

.landing-cta {
    padding: 4rem 0 5rem;
    background: #eef7f2;
}

.landing-cta .btn {
    margin-top: 1rem;
    min-width: 180px;
}

@media (max-width: 768px) {
    .landing-hero {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .landing-title {
        font-size: 2.8rem;
    }

    .landing-tagline {
        font-size: 1.15rem;
    }

    .landing-section h2,
    .landing-cta h2 {
        font-size: 1.8rem;
    }

    .landing-steps {
        grid-template-columns: 1fr;
    }
}

.ll-popup-open {
    overflow: hidden;
}

.ll-popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.52);
    backdrop-filter: blur(6px);
}

.ll-popup-backdrop.is-hidden {
    display: none;
}

.ll-popup-card {
    position: relative;
    width: min(100%, 440px);
    padding: 2rem 1.75rem 1.5rem;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
    text-align: left;
}

.ll-popup-card--success {
    border-top: 6px solid #5bb893;
}

.ll-popup-card--warning {
    border-top: 6px solid #f2b84b;
}

.ll-popup-card--info {
    border-top: 6px solid #6ec1a3;
}

.ll-popup-close {
    position: absolute;
    top: 0.85rem;
    right: 0.95rem;
    font-size: 1.8rem;
    line-height: 1;
    color: #6b7280;
}

.ll-popup-close:hover {
    color: #111827;
}

.ll-popup-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: #eef7f2;
    color: #1f2937;
    font-size: 0.82rem;
    font-weight: var(--ll-font-weight-subheading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ll-popup-title {
    margin-bottom: 0.75rem;
    font-size: 1.55rem;
    font-weight: var(--ll-font-weight-heading);
    color: #111827;
}

.ll-popup-message {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.ll-popup-button {
    width: 100%;
}

.onboarding-page {
    padding-bottom: 2rem;
}

.onboarding-summary-card {
    position: sticky;
    top: 1.5rem;
    background: linear-gradient(180deg, #f7fcf9 0%, #ffffff 100%);
    border: 1px solid rgba(110, 193, 163, 0.15);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.onboarding-progress-bar {
    background: linear-gradient(90deg, #6ec1a3 0%, #8fd0b7 100%);
}

.onboarding-question-card {
    background: #fcfcfd;
    border-color: #e5e7eb !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.onboarding-question-card:focus-within {
    border-color: rgba(110, 193, 163, 0.6) !important;
    box-shadow: 0 0 0 0.2rem rgba(110, 193, 163, 0.12);
}

.onboarding-summary-card p,
.onboarding-question-card p {
    font-family: var(--bs-body-font-family);
}

.onboarding-form .form-control {
    min-height: 56px;
    padding: 0.9rem 1rem;
    border: 1px solid #d1d5db !important;
    background-color: #ffffff;
    box-shadow: none;
}

.onboarding-form textarea.form-control {
    min-height: 140px;
}

.onboarding-form .form-control:focus {
    border-color: #6ec1a3 !important;
    box-shadow: 0 0 0 0.2rem rgba(110, 193, 163, 0.16);
}

.onboarding-choice {
    min-height: 100%;
    border-width: 1px;
    border-color: #d1d5db;
    background: #ffffff;
    color: #1f2937;
    white-space: normal;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.onboarding-choice:hover {
    border-color: #6ec1a3;
    color: #111827;
    transform: translateY(-1px);
}

.btn-check:checked + .onboarding-choice {
    border-color: #6ec1a3;
    background-color: rgba(110, 193, 163, 0.1);
    color: #111827;
    box-shadow: 0 0 0 0.2rem rgba(110, 193, 163, 0.14);
}

.btn-check:focus-visible + .onboarding-choice {
    box-shadow: 0 0 0 0.2rem rgba(110, 193, 163, 0.18);
}

@media (max-width: 991.98px) {
    .onboarding-summary-card {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .onboarding-page {
        padding-bottom: 1rem;
    }

    .onboarding-page .card-body {
        padding: 1.5rem !important;
    }

    .onboarding-question-card {
        padding: 1rem !important;
    }

    .onboarding-form .form-control {
        min-height: 52px;
    }
}
