/* ============================================================
   STEPS (Figma 87:219)
   ============================================================ */
.section-steps .section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    max-width: 649px;
}
.section-steps .section-eyebrow {
    text-transform: none;
    letter-spacing: 0;
    line-height: 20px;
    margin-bottom: 0;
}
.section-steps .steps-board {
    border-top: 2px solid rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    min-height: 376px;
}
.section-steps .steps-grid {
    /* Figma 87:226 — flex, gap 26, equal columns */
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 26px;
    width: 100%;
    min-width: 0;
}
.section-steps .step-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 26px;
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    background: transparent;
    border-top: none;
    border-radius: 0;
    box-sizing: border-box;
}
.section-steps .step-card:last-child {
    border-right: none;
}
.section-steps .step-card__num {
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
    color: var(--primary);
    opacity: 1;
    text-transform: uppercase;
    margin-bottom: 0;
}
.section-steps .step-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
}
.section-steps .step-card__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    opacity: 0.8;
    margin: 0;
}
/* Mobile-only divider (Figma 125:1984); hidden on desktop board layout */
.section-steps .step-card__rule {
    display: none;
}
.section-steps .step-card__desc {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.8;
    margin-bottom: 0;
}
.section-steps .step-card__phone {
    display: inline;
    margin-top: 0;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}
.section-steps .step-card__phone:hover {
    opacity: 0.85;
}
.section-steps .step-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 54px;
    margin-top: auto;
    padding: 18px 24px;
    box-sizing: border-box;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .section-steps .steps-board {
        min-height: 0;
    }
    .section-steps .steps-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        flex-wrap: unset;
    }
    .section-steps .step-card {
        padding: 26px;
        flex: unset;
        width: auto;
    }
    .section-steps .step-card:nth-child(2) {
        border-right: none;
    }
    .section-steps .step-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    }
}

/* CLN-M06 P0 + CLN-M07: stack steps as bordered cards (Figma 125:1984) */
@media (max-width: 768px) {
    .section-steps {
        overflow-x: hidden;
    }
    .section-steps .section-header {
        gap: 10px;
        margin-bottom: 26px;
    }
    .section-steps .section-eyebrow {
        font-size: 13px;
        line-height: 20px;
        opacity: 0.7;
    }
    .section-steps .section-title {
        font-size: 24px;
        line-height: 34px;
    }
    .section-steps .steps-board {
        overflow-x: hidden;
        max-width: 100%;
        border-top: none;
        border-bottom: none;
        min-height: 0;
    }
    .section-steps .steps-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .section-steps .step-card {
        gap: 14px;
        border: 1px solid rgba(51, 55, 66, 0.2);
        border-right: 1px solid rgba(51, 55, 66, 0.2);
        border-bottom: 1px solid rgba(51, 55, 66, 0.2);
        padding: 16px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .section-steps .step-card:nth-child(-n+2),
    .section-steps .step-card:nth-child(2),
    .section-steps .step-card:last-child {
        border-right: 1px solid rgba(51, 55, 66, 0.2);
        border-bottom: 1px solid rgba(51, 55, 66, 0.2);
        padding: 16px;
    }
    .section-steps .step-card__num {
        font-size: 28px;
        line-height: 34px;
    }
    .section-steps .step-card__body {
        gap: 14px;
    }
    .section-steps .step-card__title {
        font-size: 17px;
        line-height: 24px;
    }
    .section-steps .step-card__rule {
        display: block;
        width: 100%;
        height: 0;
        border: none;
        border-top: 1px solid rgba(51, 55, 66, 0.2);
        margin: 0;
        padding: 0;
    }
    .section-steps .step-card__desc {
        font-size: 14px;
        line-height: 22px;
    }
    .section-steps .step-card__btn {
        min-width: 0;
        max-width: 100%;
        height: 46px;
        padding: 16px 50px;
        font-size: 14px;
    }
}

/* ============================================================
   FAQ (Figma 89:441)
   ============================================================ */
.section-faq .section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    max-width: 649px;
}
.section-faq .section-eyebrow {
    text-transform: none;
    letter-spacing: 0;
    line-height: 20px;
    margin-bottom: 0;
}
.section-faq .section-title__accent {
    color: var(--text-dark);
}
.section-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
    align-items: start;
}
.section-faq .faq-item {
    background: #f1f4f6;
    border-bottom: none;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    align-self: start;
}
.section-faq .faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: left;
    cursor: pointer;
    color: var(--text-dark);
}
.section-faq .faq-item__q-text {
    flex: 1 1 auto;
    min-width: 0;
}
.section-faq .faq-item__toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 49px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.section-faq .faq-item__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    transition: transform 0.25s ease;
}
.section-faq .faq-item__icon--close {
    display: none;
    transform: rotate(-45deg);
}
.section-faq .faq-item.is-open .faq-item__icon--plus {
    display: none;
}
.section-faq .faq-item.is-open .faq-item__icon--close {
    display: block;
}
.section-faq .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.section-faq .faq-item.is-open .faq-item__answer {
    max-height: 600px;
}
.section-faq .faq-item__answer-inner {
    padding-top: 16px;
    font-size: 16px;
    line-height: 24px;
    opacity: 0.9;
    color: var(--text-dark);
}
.section-faq .faq-item__answer-inner p {
    margin: 0 0 10px;
    padding-bottom: 0;
    font-size: inherit;
    line-height: inherit;
    opacity: 1;
}
.section-faq .faq-item__answer-inner ol {
    margin: 0;
    padding: 0;
    list-style: decimal;
}
.section-faq .faq-item__answer-inner li {
    margin: 0 0 6px 24px;
    list-style: decimal;
}

@media (max-width: 900px) {
    .section-faq .faq-grid {
        grid-template-columns: 1fr;
    }
    .section-faq .faq-item__question {
        font-size: 18px;
        line-height: 26px;
    }
}

/* CLN-M07: FAQ mobile parity (Figma 125:1985) — collapsed by default via markup/JS */
@media (max-width: 768px) {
    .section-faq .section-header {
        gap: 10px;
        margin-bottom: 26px;
    }
    .section-faq .section-eyebrow {
        font-size: 13px;
        line-height: 20px;
        opacity: 0.7;
    }
    .section-faq .section-title {
        font-size: 24px;
        line-height: 34px;
    }
    .section-faq .faq-grid {
        gap: 10px;
    }
    .section-faq .faq-item {
        padding: 16px;
    }
    .section-faq .faq-item__question {
        align-items: flex-start;
        font-size: 16px;
        line-height: 24px;
    }
    .section-faq .faq-item__toggle {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
    }
    .section-faq .faq-item__icon {
        width: 14px;
        height: 14px;
        flex: 0 0 14px;
    }
    .section-faq .faq-item__answer-inner {
        padding-top: 12px;
        font-size: 14px;
        line-height: 22px;
    }
    .section-faq .faq-item__answer-inner p {
        margin: 0 0 8px;
    }
    .section-faq .faq-item__answer-inner li {
        margin: 0 0 4px 21px;
    }
}

/* ============================================================
   SEO (Figma 89:470)
   ============================================================ */
.section-seo {
    padding: 80px 0;
    background: #fff;
}
.section-seo .section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    max-width: 649px;
}
.section-seo .section-eyebrow {
    text-transform: none;
    letter-spacing: 0;
    line-height: 20px;
    margin-bottom: 0;
}
.section-seo .seo-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.section-seo .seo-layout__content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.section-seo .seo-layout__lead {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-dark);
    max-width: 874px;
    margin: 0;
    opacity: 1;
}
.section-seo .seo-layout__blocks {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.section-seo .seo-layout__more {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.section-seo .seo-layout__more[hidden] {
    display: none;
}
.section-seo .seo-block-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.section-seo .seo-block-item__h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin: 0;
    color: var(--text-dark);
}
.section-seo .seo-block-item__h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
    color: var(--text-dark);
}
.section-seo .seo-block-item__text p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 0;
    opacity: 1;
    color: var(--text-dark);
}
.section-seo .seo-block-item__text p + p {
    margin-top: 0;
}
.section-seo .seo-block-item__list-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
    color: var(--text-dark);
}
.section-seo .seo-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.section-seo .seo-list__item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0;
    list-style: none;
}
.section-seo .seo-list__bullet {
    flex: 0 0 8px;
    width: 8px;
    height: 24px;
    margin: 0;
}
.section-seo .seo-list__item span {
    flex: 1 1 auto;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-dark);
}
.section-seo .seo-layout__toggle {
    align-self: flex-start;
    min-width: 0;
}
.section-seo .seo-layout__media {
    flex: 0 0 428px;
    width: 428px;
    max-width: 100%;
    align-self: stretch;
    position: relative;
    overflow: hidden;
}
.section-seo .seo-layout__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1200px) {
    .section-seo .seo-layout {
        flex-direction: column;
    }
    .section-seo .seo-layout__media {
        flex: none;
        width: 100%;
        max-height: 480px;
    }
}

@media (max-width: 600px) {
    .section-seo {
        padding: 56px 0;
    }
    .section-seo .seo-block-item__h3 {
        font-size: 22px;
        line-height: 30px;
    }
    .section-seo .seo-layout__toggle {
        width: 100%;
    }
    .section-seo .seo-layout__media {
        max-height: 360px;
    }
}
