

/* ── HERO ──────────────────────────────────────────────────── */
.lp-template .lp-hero {
    padding-top: 63px;
    padding-bottom: 63px;
    color: #fff;
}

@media (max-width: 640px) {
    .lp-template .lp-hero {
        padding-top: 63px;
        padding-bottom: 40px;
    }
}

.lp-template .lp-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-hero__inner {
    max-width: 665px;
}

.lp-template .lp-hero__title {
    font-size: 40px;
    font-weight: 700;
    text-align: left;
}

@media (max-width: 768px) {
    .lp-template .lp-hero__title {
        font-size: 32px;
        text-align: center;
    }
}

.lp-template .lp-hero__desc {
    font-size: 20px;
    font-weight: 500;
    text-align: left;
}

@media (max-width: 768px) {
    .lp-template .lp-hero__desc {
        font-size: 16px;
        text-align: center;
    }
}

.lp-template .lp-hero__btn-wrap {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .lp-template .lp-hero__btn-wrap {
        justify-content: center;
    }
}

/* ── SUBHEADER (text left + image right) ──────────────────── */
.lp-template .lp-subheader {
    padding-top: 60px;
    padding-bottom: 60px;
}

.lp-template .lp-subheader__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .lp-template .lp-subheader__inner {
        flex-direction: column;
        gap: 40px;
    }
}

.lp-template .lp-subheader__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: 1.75;
}

.lp-template .lp-subheader__title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}

.lp-template .lp-subheader__desc {
    font-size: 16px;
    color: var(--t-foreground-primary-rgb);
}

.lp-template .lp-subheader__desc a {
    color: var(--primary-500-rgb);
    text-decoration: none;
}

.lp-template .lp-subheader__btn-wrap {
    margin-top: 8px;
}

.lp-template .lp-subheader__img-wrap {
    flex: 0 0 auto;
    width: 500px;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .lp-template .lp-subheader__img-wrap {
        width: 100%;
    }
}

.lp-template .lp-subheader__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px; 
    display: block;
}

@media (max-width: 640px) {
    .lp-template .lp-subheader__img {
        height: 260px;
    }
}

/* ── CARDS ROW ─────────────────────────────────────────────── */
.lp-template .lp-cards {
    padding-top: 40px;
    padding-bottom: 60px;
}

.lp-template .lp-cards__grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}


.lp-template .lp-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(6, 23, 53, 0.07);
    flex: 1 1 200px;
    max-width: 280px;
    transition: border-color 0.2s ease;
}

.lp-template .lp-card:hover {
    border-color: var(--primary-500-rgb);
}

.lp-template .lp-card__icon {
    font-size: 22px;
    color: var(--primary-500-rgb);
}

.lp-template .lp-card__title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--t-foreground-primary-rgb);
}

.lp-template .lp-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--t-foreground-primary-rgb);
    margin: 0;
}

@media (max-width: 768px) {
    .lp-template .lp-card {
        max-width: 100%;
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .lp-template .lp-card {
        flex-basis: 100%;
    }
}

/* ── CONTENT BLOCK (image left, text right) ────────────────── */
.lp-template .lp-block {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #f8f8f9; 
}

.lp-template .lp-block__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .lp-template .lp-block__inner {
        flex-direction: column;
        gap: 40px;
    }
}

.lp-template .lp-block__img-wrap {
    flex: 0 0 auto;
    width: 500px;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .lp-template .lp-block__img-wrap {
        width: 100%;
    }
}

.lp-template .lp-block__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px; 
    display: block;
}

@media (max-width: 768px) {
    .lp-template .lp-hero__btn-wrap .btn,
    .lp-template .lp-subheader__btn-wrap .btn,
    .lp-template .lp-block__btn-wrap .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .lp-template .lp-block__img {
        height: 260px;
    }
}

.lp-template .lp-block__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-template .lp-block__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 640px) {
    .lp-template .lp-block__title {
        font-size: 28px;
    }
}

.lp-template .lp-block__desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--t-foreground-primary-rgb);
}

.lp-template .lp-block__desc a {
    color: var(--primary-500-rgb);
    text-decoration: none;
}

.lp-template .lp-block__desc li {
    display: list-item;
}

.lp-template .lp-block__desc ul {
    list-style-position: inside;
}

.lp-template .lp-block__desc ol {
    list-style-type: decimal;
}

.lp-template .lp-block__btn-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-template .faq_local {
    width: 100%;
    padding: 20px;
    margin: 40px auto;
    border-radius: 12px;
    border: 1px solid #dbe2ef;
    background-color: #fff;
    font-weight: 400;
    color: var(--t-foreground-primary-rgb);
}

.lp-template .faq__list_local {
    margin-top: 8px;
}

.lp-template .faq_h2 {
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.lp-template .faq__answer_local a {
    text-decoration: underline;
}

.lp-template .faq__item_local {
    padding: 12px 16px 12px 40px;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    margin-bottom: 12px;
    background-color: var(--primary-25-rgb);
}

.lp-template .faq__item_local:nth-child(even) {
    background-color: var(--primary-75-rgb);
}

.lp-template .faq__toggle-carret_local {
    width: 20px;
    height: 20px;
    fill: var(--t-foreground-primary-rgb);
    position: absolute;
    left: 10px;
    top: 14px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

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

.lp-template .faq__question_local {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.lp-template .faq__answer_local {
    margin-top: 8px;
    gap: 8px;
}

.lp-template summary::-webkit-details-marker,
.lp-template summary::marker {
    display: none;
}

.lp-template .needs_bg h2 {
    text-decoration: none;
}
