@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("/static/landing_pages/askPc/fonts/manrope/Manrope-VariableFont_wght.ttf") format("truetype");
}

html,
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #0e0f12;
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

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

.lp {
    background: #ffffff;
    color: #0e0f12;
    min-height: 100dvh;
}

.lp :focus-visible {
    outline: 2px solid rgba(4, 181, 220, 0.85);
    outline-offset: 2px;
}

.lp a {
    color: inherit;
}

.lp-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
}

.lp-muted {
    color: #8FA1BF;
}

.lp-h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -0.02em;
    color: #101828;
}

.lp-p {
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    color: #6c748b;
}

/* Nav */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 80px;
    backdrop-filter: blur(7.5px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid #f3f4f6;
}

.lp-nav__inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.lp-nav__brand img {
    width: auto;
    height: 28px;
}

.lp-nav__login {
    appearance: none;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #101828;
    background: #ffffff;
    color: #000000;
    padding: 11px 25px;
    font-size: 14px;
    line-height: 21px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.lp-nav__login:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.03);
}

.lp-nav__login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Buttons */
.lp-btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.lp-btn:active:not(:disabled) {
    transform: translateY(1px);
}

.lp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.lp-btn--primary {
    position: relative;
    border-radius: 8px;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    width: max-content;
    padding: 12px 16px;
}

.lp-btn--primary:hover:not(:disabled) {
    box-shadow: 0 16px 28px -12px rgba(0, 0, 0, 0.25);
}

.lp-btn--onDark {
    background: #0f172a;
}

/* animated border */
.lp-animated-border {
    position: relative;
    isolation: isolate;
    border: none !important;
}

.lp-animated-border::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(90deg, #00c6ff, #0072ff, #7a5cff, #00c6ff);
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-run 2.5s linear infinite;
}

@keyframes border-run {
    to {
        background-position: 300% 0;
    }
}

/* Loader */
.lp-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 100000000;
    background-color: #ffffff;
}

.lp-loader-image {
    width: 80px;
    height: 80px;
    animation: zoomIn 1.2s ease-in-out infinite;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.6);
        opacity: 0.6;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.6);
        opacity: 0.6;
    }
}

/* Hero */
.lp-hero {
    position: relative;
    padding-bottom: 96px;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.lp-hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 80px !important;
}

.lp-hero__title {
    margin: 0;
    font-size: 76px;
    line-height: 90px;
    font-weight: 600;
    color: #101828;
}

.lp-hero__subtitle {
    margin: 20px 0 0;
    font-size: 24px;
    line-height: 36px;
    color: #8FA1BF;
    max-width: 720px;
}

.lp-hero__actions {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.lp-hero__note {
    font-size: 14px;
    line-height: 22px;
    color: #6a7282;
}

.lp-hero__mock {
    margin-top: 48px;
    width: min(896px, 100%);
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 12px;
}

.lp-hero__mockVideo {
    width: 100%;
    height: auto;
    display: block;
    background: #ffffff;
}

/* Marquee */
.lp-marquee {
    background: #ffffff;
}

.lp-marquee__inner {
    padding-top: 64px !important;
    padding-bottom: 48px !important;
}

.lp-marquee__title {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #8FA1BF;
}

.lp-marquee__rail {
    height: 120px;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    overflow: hidden;
    position: relative;
}

.lp-marquee__rail::before,
.lp-marquee__rail::after {
    content: "";
    position: absolute;
    top: 0;
    width: 128px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.lp-marquee__rail::after {
    right: 0;
    transform: rotate(180deg);
}

.lp-marquee__rail::before {
    left: 0;
}

.lp-marquee__track {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 54px;
    padding: 0 32px;
    width: max-content;
    animation: lp-marquee 20s linear infinite;
}

.lp-marquee__track.is-paused {
    animation-play-state: paused;
}

@media (hover: hover) and (pointer: fine) {
    .lp-marquee__track:hover {
        animation-play-state: paused;
    }
}

.lp-marquee__logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

@keyframes lp-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Workflows */
.lp-workflows {
    padding: 128px 0;
    background: #ffffff;
    gap: 80px;
    display: flex;
    flex-direction: column;
}

.lp-workflows__header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-workflows__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(374px, 406px));
    gap: 16px;
    justify-content: center;
}

.lp-card {
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.lp-card__head {
    display: flex;
    gap: 18px;
    align-items: center;
}

.lp-card__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #1e293b;
}

.lp-card__body {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 22.75px;
    color: #475569;
}

.lp-card--purple {
    background: linear-gradient(127deg, #faf4fe 0%, #f4e9ff 100%);
}

.lp-card--cyan {
    background: linear-gradient(129deg, #effbff 0%, #d9f6ff 100%);
}

.lp-card--blue {
    background: linear-gradient(177deg, #eef5ff 6.5%, #e1e8fe 93.5%);
}

/* Compare */
.lp-compare {
    padding: 88px 0;
    background: #ffffff;
}

.lp-compare__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.lp-compare__title {
    text-align: center;
    max-width: 1135px;
}

.lp-compare__table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 188px;
    row-gap: 40px;
    width: min(993px, 100%);
}

.lp-compare__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 188px;
    width: min(993px, 100%);
}

.lp-compare__colHead {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 48px;
}

.lp-compare__badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-compare__badge--gray {
    background: #f5f5f5;
}

.lp-compare__badge--blue {
    background: #e7eefe;
}

.lp-compare__colTitle {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #1e2939;
}

.lp-compare__colTitle img {
    height: 28px;
    width: auto;
}

.lp-compare__cellEmpty {
    min-height: 1px;
}

.lp-compare__list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lp-compare__item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: baseline;
    font-size: 16px;
    line-height: 28px;
    color: #45556c;
    padding-left: 13px;
}

.lp-compare__dot {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.lp-compare__dot--bad {
    background: #ea6b71;
}

.lp-compare__dot--good {
    background: #10b981;
}

.lp-compare__dot .ui-icon {
    display: flex !important;
    color: #ffffff !important;
}

/* Only one comparison layout visible at once */
@media (min-width: 721px) {
    .lp-compare__cols {
        display: none;
    }
}

@media (max-width: 720px) {
    .lp-compare__table {
        display: none;
    }
}

/* Metrics */
.lp-metrics {
    background: #0f172a;
    padding: 48px 0;
    margin-bottom: 88px;
}

.lp-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
}

.lp-metric__value {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.lp-metric__label {
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    color: #99a1af;
    text-align: center;
}

/* Plans */
.lp-plans {
    position: relative;
    padding: 120px 0 88px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 32px 32px 0 0;
}

.lp-plans__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    transform: rotate(180deg);
    pointer-events: none;
    opacity: 0.8;
}

.lp-plans__inner {
    position: relative;
    text-align: center;
}

.lp-plans__title {
    color: #0f172a;
}

.lp-plans__subtitle {
    margin-top: 16px;
    color: #0f172a;
    opacity: 0.9;
}

.lp-plans__grid {
    margin-top: 80px;
    text-align: left;
}

.lp-plans__grid .planMeta {
    margin-top: 40px !important;
}

.planGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(242px, 1fr));
    gap: 16px;
    row-gap: 32px;
}

.planMeta {
    color: #878789;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
}

.planCard {
    position: relative;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.planCard--featured {
    border-color: rgba(15, 23, 42, 0.12);
}

.planCard__badge {
    position: absolute;
    top: -14px;
    right: 18px;
    padding: 4px 10px;
    border-radius: 10px;
    background: #0e0f12;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    line-height: 18px;
    white-space: nowrap;
}

.planCard__badge--center {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.planCard__badge--right {
    right: 18px;
}

.planCard__name {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #0e0f12;
}

.planCard__priceRow {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.planCard__priceAmount {
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    color: #0e0f12;
}

.planCard__pricePeriod {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #878789;
}

.planCard__features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 10px;
}

.planCard__featureLine {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0e0f12;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.planCard__featureIcon {
    flex: 0 0 auto;
    font-size: 14px;
    color: #3e3f41;
}

.planCard__featureText {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.planCard__cta {
    margin-top: auto;
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: #0e0f12;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
}

.planCard__cta:hover {
    filter: brightness(0.96);
}

/* FAQ */
.lp-faq {
    padding: 120px 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.lp-faq__body {
    width: 100%;
    max-width: 896px;
}

.lp-faq__body .faq {
    padding: 0 !important;
}

.lp-faq__body .faq__list {
    padding-left: 12px !important;
}

.lp-faq__body .faq__list--single {
    list-style: none;
}

.lp-faq__title {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    color: #101828;
}

.lp-faq__titleShort {
    display: none;
}

/* FAQ component (ported from app-faq-page) */
.faq {
    width: 100%;
    min-height: 100%;
    padding: 0 24px;
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans";
    color: #0e0f12;
}

.faq__content {
    width: 100%;
}

.faq__section {
    display: flex;
    flex-direction: column;
}

.faq__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 16px 8px 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #0e0f12;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.faq__header::-webkit-details-marker {
    display: none;
}

.faq__header::marker {
    content: "";
}
.faq__headerTitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
}

.faq__chev {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 180ms cubic-bezier(0.2, 0, 0, 1);
}

.faq__chev--open {
    transform: rotate(180deg);
}

.faq__body {
    padding: 0 0 20px;
}
.faq__section[open] .faq__chev {
    transform: rotate(180deg);
}
.faq__body li {
    -webkit-tap-highlight-color: transparent;
}

.faq__body--collapsed {
    display: none;
}

.faq__list {
    margin: 0;
    padding-left: 24px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #3e3f41;
}

.faq__list > li {
    padding-left: 4px;
}

.faq__list > li + li {
    margin-top: 12px;
}

.faq__sublist {
    margin: 12px 0 0;
    padding-left: 20px;
    list-style-type: disc;
}

.faq__sublist > li + li {
    margin-top: 8px;
}

.faq__sublist .faq__sublist {
    list-style-type: circle;
}

.faq__divider {
    width: 100%;
    height: 1px;
    background: #e6e6e6;
}
/* Final CTA */
.lp-final {
    background: #000000;
    padding: 88px 0;
}

.lp-final__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.lp-final__title {
    margin: 0;
    font-size: 48px;
    line-height: 57px;
    font-weight: 400;
    color: #ffffff;
    max-width: 720px;
}

.lp-final__subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    color: #b8b8bc;
    max-width: 720px;
}

/* Footer */
.lp-footer {
    background: #ffffff;
    padding: 80px 0 54px;
}

.lp-footer__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.lp-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 120px;
    padding-bottom: 100px;
}

.lp-footer__left {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 286px;
}

.lp-footer__logo {
    display: block;
    width: 130px;
    height: auto;
}

.lp-footer__addr,
.lp-footer__contact {
    font-size: 14px;
    line-height: 26px;
    color: #0f172a;
    display: flex;
    flex-direction: column;
}

.lp-footer__contactLink {
    color: inherit;
    text-decoration: none;
}

.lp-footer__contactLink:hover {
    text-decoration: underline;
}

.lp-footerAcc__list {
    display: none;
}

.lp-footer__cols {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.lp-footer__colTitle {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    color: #868788;
}

.lp-footer__colLinks {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-footer__link {
    font-size: 14px;
    line-height: 26px;
    color: #0f172a;
    text-decoration: none;
}

.lp-footer__link:hover {
    text-decoration: underline;
}

.lp-footer__divider {
    border-top: 1px solid #e5e7eb;
}

.lp-footer__bottom {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-footer__copyright {
    font-size: 14px;
    line-height: 26px;
    color: #0f172a;
}

.lp-footer__social {
    display: flex;
    gap: 28px;
    align-items: center;
}

.lp-footer__socialBtn {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.lp-footer__socialBtn img {
    width: 24px;
    height: 24px;
    display: block;
}

/* Footer accordion (mobile/tablet) */
@media (max-width: 1024px) {
    .lp-container {
        padding: 0 24px;
        max-width: 100%;
    }

    .lp-h2 {
        font-size: 36px;
        line-height: 54px;
        text-align: center;
    }

    .lp-hero__title {
        font-size: 50px;
        line-height: 64px;
    }

    .lp-hero__subtitle {
        font-size: 20px;
        line-height: 30px;
    }

    .lp-workflows {
        padding: 88px 0;
        gap: 48px;
    }

    .lp-workflows__grid {
        grid-template-columns: repeat(auto-fit, minmax(374px, 1fr));
        gap: 20px;
    }

    .lp-compare {
        padding: 0 0 48px 0;
    }

    .lp-compare__inner {
        gap: 48px;
    }

    .lp-compare__table {
        column-gap: 72px;
        row-gap: 32px;
    }

    .lp-metrics {
        margin-bottom: 80px;
    }

    .lp-metrics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-plans {
        padding: 88px 0 88px;
    }
     .lp-faq {
        padding: 0 24px 88px 24px;
        gap: 56px;
    }

    .lp-faq__title {
        font-size: 36px;
        line-height: 54px;
    }
    .lp-footer {
        padding: 60px 0;
    }

    .lp-footerAcc__list {
        display: block;
        width: 100%;
    }

    .lp-footer__cols {
        display: none;
    }

    .lp-footer__inner {
        padding: 0 16px;
    }

    .lp-footer__top {
        flex-direction: column;
        gap: 16px;
        padding-bottom: 0;
    }

    .lp-footer__logo {
        margin-bottom: 20px;
        width: 100px;
    }

    .lp-footer__left {
        width: 100%;
        gap: 16px;
    }

    .lp-footer__right {
        width: 100%;
    }

    .lp-footer__bottom {
        padding-top: 36px;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 36px;
    }

    .lp-footer__social {
        justify-content: center;
        gap: 48px;
    }

    .lp-footer__copyright {
        text-align: center;
    }

    .lp-footerAcc__rule {
        border-top: 1px solid #e5e7eb;
    }

    .lp-footer__divider {
        display: none;
    }

    .lp-footerAcc__section {
        margin: 0;
        padding: 0;
    }

    .lp-footerAcc__row {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        appearance: none;
        border: 0;
        background: transparent;
        padding: 16px 0;
        cursor: pointer;
        font-size: 14px;
        line-height: 26px;
        color: #0e0f12;
        list-style: none;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    .lp-footerAcc__row::-webkit-details-marker {
        display: none;
    }

    .lp-footerAcc__row::marker {
        content: "";
    }

    .lp-footerAcc__row:active {
        background: transparent;
    }

    .lp-footerAcc__row:focus {
        background: transparent;
    }

    .lp-footerAcc__chev {
        transition: transform 160ms ease;
        transform: rotate(0deg);
    }

    details[open] .lp-footerAcc__chev {
        transform: rotate(180deg);
    }

    .lp-footerAcc__items {
        padding: 0 0 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .lp-footerAcc__item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        line-height: 26px;
        color: #0f172a;
        text-decoration: none;
        padding-left: 24px;
    }
}

@media (max-width: 720px) {
    .lp-container {
        padding: 0 16px;
    }

    .lp-h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .lp-hero {
        min-height: calc(100dvh - 80px);
        padding-bottom: 0;
    }

    .lp-hero__title {
        font-size: 38px;
        line-height: 50px;
    }

    .lp-hero__subtitle {
        font-size: 18px;
        line-height: 30px;
        margin: 16px 0 0;
    }

    .lp-workflows {
        padding: 80px 0;
        gap: 48px;
    }

    .lp-workflows__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(322px, 1fr));
        gap: 20px;
    }

    .lp-card {
        padding: 20px;
    }

    .lp-compare {
        padding: 0 0 80px 0;
    }

    .lp-compare__cols {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lp-metric__value {
        font-size: 30px;
        line-height: 36px;
    }

    .lp-plans {
        padding: 48px 0;
    }

    .lp-plans__grid {
        margin-top: 48px;
    }
     .lp-faq {
        padding: 0 24px 48px;
        gap: 28px;
    }

    .lp-faq__title {
        font-size: 28px;
        line-height: 40px;
        text-align: center;
    }

    .lp-faq__titleLong {
        display: none;
    }

    .lp-faq__titleShort {
        display: inline;
    }

    .lp-faq__body .faq__list {
        padding-left: 4px !important;
    }
    .lp-final {
        padding: 48px 0;
    }

    .lp-final__title {
        font-size: 28px;
        line-height: 40px;
    }

    .lp-plans {
        .planGrid {
            grid-template-columns: repeat(1, minmax(221px, 1fr)) !important;
        }
    }
}

/* Elevate */
.elevate-on-scroll {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: transform 600ms ease, box-shadow 600ms ease;
    will-change: transform;
}

.elevate-on-scroll.is-visible {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}

@media (min-width: 720px) and (max-width: 1184px) {
    .lp-plans {
        .planGrid {
            grid-template-columns: repeat(2, minmax(221px, 1fr)) !important;
        }
    }
}