/*//////////////////////////////////////////////////////////////////
[ 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: #f6f8fc;
    color: #1f2937;
    margin-inline: calc(50% - 50vw);
    overflow-x: hidden;
}

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

.landing-nav {
    background: #f6f8fc;
    padding: 1.25rem 0;
}

.landing-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-nav-logo {
    width: 42px;
    height: auto;
    display: block;
}

.landing-brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.landing-hero {
    padding: 3rem 0 5rem;
    background:
        radial-gradient(circle at 78% 22%, rgba(140, 188, 255, 0.22), transparent 24%),
        radial-gradient(circle at 65% 82%, rgba(110, 193, 163, 0.18), transparent 20%),
        linear-gradient(to bottom, #f6f8fc 0%, #eef4ff 100%);
}

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

.landing-logo {
    display: block;
    width: clamp(160px, 24vw, 240px);
    max-width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.landing-title {
    font-size: 4.3rem;
    line-height: 1.02;
    font-weight: 800;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    color: #1e2a44;
    max-width: 620px;
}

.landing-tagline {
    font-size: 1.35rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.landing-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 600px;
    margin-bottom: 2rem;
}

.landing-hero-inner .landing-intro {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

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

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

.landing-hero-actions,
.landing-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.landing-hero-note {
    margin-top: 1rem;
    font-size: 0.98rem;
    color: #6b7280;
}

.landing-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 580px;
}

.landing-phone-frame {
    width: 360px;
    max-width: 100%;
    background: #ffffff;
    border-radius: 42px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(30, 42, 68, 0.16);
    transform: rotate(6deg);
    position: relative;
    z-index: 2;
}

.landing-phone-screen {
    border-radius: 30px;
    background: #f8fafc;
    min-height: 620px;
    padding: 1.25rem;
    overflow: hidden;
}

.landing-phone-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.landing-phone-header strong {
    font-size: 1.55rem;
    color: #1f2937;
}

.landing-phone-header span {
    font-size: 0.96rem;
    color: #374151;
}

.landing-phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.landing-mini-card {
    border-radius: 18px;
    padding: 1rem;
    min-height: 180px;
    color: #111827;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.landing-mini-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.landing-mini-card p {
    font-size: 0.93rem;
    line-height: 1.45;
    margin-bottom: 0;
}

.mini-do-now {
    background: #e7bf48;
}

.mini-plan-ahead {
    background: #73d0b3;
}

.mini-good-to-know {
    background: #9fbae8;
}

.mini-for-later {
    background: #c6b3ea;
}

.landing-floating {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(30, 42, 68, 0.15);
    z-index: 3;
}

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

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

.landing-section h2,
.landing-faqs > h2 {
    font-size: 2.35rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.landing-section p {
    font-size: 1.06rem;
    line-height: 1.8;
    color: #4b5563;
}

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

.landing-step {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(30, 42, 68, 0.04);
}

.landing-step h3 {
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

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

.landing-feature-band {
    padding: 4rem 0;
    background: #ffffff;
}

.landing-feature-grid,
.landing-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.landing-feature-copy h2,
.landing-story-grid h2,
.landing-section-title,
.landing-cta h2 {
    font-size: 2.35rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;

}

.landing-feature-copy p,
.landing-story-grid p,
.landing-info-card p,
.landing-faq-section p,
.landing-cta p {
    font-size: 1.06rem;
    line-height: 1.8;
    color: #4b5563;
}

.landing-feature-panel,
.landing-story-panel {
    background: linear-gradient(180deg, #eff4ff 0%, #f7fbff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    min-height: 320px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-feature-mock {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: 0 18px 40px rgba(30, 42, 68, 0.08);
}

.landing-feature-mock-header {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.landing-feature-mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}


.landing-feature-mock-grid span {
    display: block;
    min-height: 90px;
    border-radius: 16px;
}

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

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

.landing-info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(30, 42, 68, 0.04);
}

.landing-info-card h3,
.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.landing-steps-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #4b5563;
}

.landing-steps-list li {
    margin-bottom: 0.55rem;
    line-height: 1.7;
}
.landing-story-section {
    padding: 4rem 0;
    background: #ffffff;
}


.landing-story-badge {
    max-width: 320px;
    background: #6ec1a3;
    color: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(110, 193, 163, 0.28);
}

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

.landing-faqs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.landing-faqs > h2 {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.5rem;
}

.landing-cta {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(to bottom, #eef4ff 0%, #f6f8fc 100%);
}

.landing-cta-inner {
    text-align: center;
    max-width: 760px;
}

.landing-cta p {
    max-width: 620px;
    margin: 0.75rem auto 1.5rem;
}

@media (max-width: 991px) {
    .landing-steps,
    .landing-hero-grid,
    .landing-feature-grid,
    .landing-story-grid,
    .landing-cards-grid,
    .landing-faqs {
        grid-template-columns: 1fr;
    }
    .landing-title {
        font-size: 3.2rem;
    }

    .landing-hero-visual {
        min-height: auto;
    }

    .landing-phone-frame {
        transform: none;
    }

    .landing-floating {
        display: none;
    }
}

@media (max-width: 576px) {
    .landing-nav-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .landing-hero {
        padding-top: 2rem;
    }

    .landing-mini-card {
        min-height: 150px;
    }

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

    .landing-hero-actions,
    .landing-cta-actions {
        flex-direction: column;
    }

    .landing-actions {
        flex-direction: column;
    }

    .landing-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .landing-hero-actions .btn,
    .landing-cta-actions .btn,
    .landing-nav-actions .btn {
        width: 100%;
    }
}

.landing-dashboard-image {
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(30, 42, 68, 0.2);
    transform: rotate(6deg);
}

.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.is-invalid {
    border-color: rgba(220, 53, 69, 0.45) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.08);
}

.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);
}

.onboarding-question-step {
    display: none;
}

.onboarding-question-step.is-active {
    display: block;
}

.onboarding-navigation {
    align-items: center;
}

.onboarding-navigation .btn {
    min-width: 11rem;
}

iframe[src*="debug-kit/toolbar/"],
iframe[src*="debug_kit/toolbar/"] {
    display: none !important;
}

@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;
    }

    .onboarding-navigation .btn {
        min-width: 0;
    }
}
