@charset "utf-8";

:root {
    --header-text: #20283d;
    --header-accent: #ffe000;
    --header-accent-shadow: rgba(255, 224, 0, 0.38);
    --header-line: rgba(32, 40, 61, 0.12);
    --header-arrow-bg: #20283d;
    --header-demo-bg: #f4f7fb;
}

html {
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", sans-serif;
    font-size: 16px;
    color: var(--header-text);
    background: #ffffff;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

body.menu-open {
    overflow: hidden;
}

.footer__copy {
    margin: 0;
    padding: 24px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--header-line);
    box-shadow: 0 4px 16px rgba(29, 36, 51, 0.06);
}

#service,
#reasons,
#pricing,
#company {
    scroll-margin-top: 90px;
}

.header__inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo-image {
    width: 95px;
    height: auto;
}

.header__nav {
    margin-left: auto;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    font-weight: 700;
    color: #4b4b4b;
    white-space: nowrap;
}

.header__menu a {
    transition: opacity 0.2s ease;
}

.header__menu a:hover {
    opacity: 0.7;
}

.header__cta {
    min-width: 125px;
    padding: 10px 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #ff7a28, #f7a300);
    box-shadow: 0 6px 14px rgba(247, 140, 20, 0.26);
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 140, 20, 0.38);
    filter: brightness(1.05);
}

.header__cta::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.mv {
    background:
        radial-gradient(circle at top center, rgba(228, 238, 245, 0.95), rgba(255, 255, 255, 0.98) 72%),
        #ffffff;
}

.mv__inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 40px 20px 50px;
}

.mv__copy {
    max-width: 760px;
    margin: 0 auto;
}

.mv__title {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: 0.02em;
    text-align: center;
    color: #171717;
}

.mv__visual {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mv__image-wrap {
    flex: 1;
    max-width: 720px;
}

.mv__image {
    width: 100%;
}

.mv__badge {
    width: 280px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, #1fb289, #16a8c7);
}

.mv__badge-lead {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.mv__badge-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 500;
}

.mv__cta {
    position: relative;
    min-height: 68px;
    width: fit-content;
    min-width: 370px;
    margin: 10px auto 0;
    padding: 10px 72px 10px 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #ff3150 0%, #ff6a2d 50%, #f8a108 100%);
    box-shadow: 0 10px 20px rgba(240, 126, 20, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.mv__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(240, 126, 20, 0.36);
    filter: brightness(1.05);
}

.mv__cta::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
}

.mv__cta::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 34px;
    z-index: 1;
    width: 6px;
    height: 6px;
    border-top: 3px solid #f39a12;
    border-right: 3px solid #f39a12;
    transform: translateY(-50%) rotate(45deg);
}

.consultation {
    padding: 42px 0 88px;
    background: #fff;
}

.consultation__inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 54px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: start;
    column-gap: 32px;
}

.consultation__eyebrow {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
    color: #27b364;
}

.consultation__title {
    margin: 14px 0 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.03em;
    color: #171717;
}

.consultation__list {
    margin-top: 56px;
    display: grid;
    gap: 42px;
}

.consultation-card {
    max-width: 490px;
}

.consultation-card__title {
    position: relative;
    margin: 0;
    padding: 10px;
    border-radius: 0px 18px 18px 18px;
    background: #2f3b4b;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.consultation-card__title::before {
    content: "";
    position: absolute;
    top: 0;
    left: -22px;
    width: 0;
    height: 0;
    border-top: 18px solid #2f3b4b;
    border-left: 22px solid transparent;
}

.consultation-card__text {
    margin: 16px 0 0 10px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #20283d;
}

.consultation__visual {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.consultation__image {
    display: block;
    width: min(100%, 560px);
    margin-top: 28px;
}

.service-features {
    padding: 78px 0 92px;
    background: linear-gradient(90deg, #1fb06e 0%, #18b2bf 100%);
}

.service-features__inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 42px;
}

.service-features__heading {
    color: #fff;
}

.service-features__title {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.service-features__lead {
    margin: 18px 0 0;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
}

.service-features__grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 36px;
}

.service-card {
    min-height: 146px;
    padding: 26px 28px 24px 30px;
    border-radius: 18px;
    background: #fff;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "text text";
    align-items: center;
    column-gap: 18px;
    row-gap: 12px;
}

.service-card__icon {
    grid-area: icon;
    width: 62px;
    flex-shrink: 0;
}

.service-card__body {
    min-width: 0;
    display: contents;
}

.service-card__title {
    grid-area: title;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #2b2b2b;
    align-self: center;
}

.service-card__text {
    grid-area: text;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #3f3f3f;
}

.service-options {
    margin-top: 54px;
    padding: 34px 24px 26px;
    border-radius: 18px;
    background: #fff;
}

.service-options__title {
    margin: 0;
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.6;
    color: #1bb279;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 28px;
}

.service-option + .service-option {
    margin-top: 22px;
    padding-top: 22px;
}

.service-option__icon {
    width: 160px;
    flex-shrink: 0;
}

.service-option__body {
    min-width: 0;
}

.service-option__heading {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #2b2b2b;
}

.service-option__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.85;
    color: #3f3f3f;
}
.reasons {
    padding: 74px 0 110px;
    background: #fff;
}

.reasons__inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 42px;
}

.reasons__heading {
    margin-bottom: 72px;
}

.reasons__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #27b364;
}

.reasons__lead {
    margin: 14px 0 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
}

.reasons__list {
    display: grid;
    gap: 92px;
}

.reason-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    align-items: center;
    gap: 42px;
}

.reason-item--reverse .reason-item__content {
    order: 2;
}

.reason-item--reverse .reason-item__visual {
    order: 1;
}

.reason-item__number {
    width: 58px;
    height: 58px;
    margin: 0 0 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    background: #22b05e;
}

.reason-item__title {
    margin: 0;
    padding-bottom: 18px;
    border-bottom: 3px solid #e5eff3;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.45;
    color: #20283d;
}

.reason-item__text {
    margin: 24px 0 0;
    font-size: 15px;
    line-height: 2;
    color: #30343c;
}

.reason-item__visual {
    width: 100%;
}

.reason-item__image {
    display: block;
    width: 100%;
    border-radius: 18px;
}
@media (max-width: 1120px) {
    .service-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 900px) {
    .reasons {
        padding: 60px 0 84px;
    }

    .reasons__inner {
        padding: 0 24px;
    }

    .reasons__heading {
        margin-bottom: 48px;
    }

    .reasons__title {
        font-size: 40px;
    }

    .reasons__lead {
        font-size: 20px;
        margin-top: 12px;
    }

    .reasons__list {
        gap: 54px;
    }

    .reason-item,
    .reason-item--reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reason-item--reverse .reason-item__content,
    .reason-item--reverse .reason-item__visual {
        order: initial;
    }

    .reason-item__title {
        font-size: 28px;
    }
}
@media (max-width: 900px) {
    .header__inner {
        padding: 14px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header__nav {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .header__menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 20px;
    }

    .mv__inner {
        padding: 110px 20px 50px;
        box-sizing: border-box;
    }
    

    .mv__visual {
        flex-direction: column;
        gap: 20px;
    }

    .mv__badge {
        width: min(100%, 320px);
        height: auto;
        border-radius: 28px;
        padding: 28px 22px;
    }

    .consultation {
        padding: 32px 0 72px;
    }

    .consultation__inner {
        padding: 0 24px;
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .consultation__list {
        margin-top: 40px;
        gap: 30px;
    }

    .consultation-card {
        max-width: none;
    }

    .consultation-card__text {
        margin-left: 0;
    }

    .consultation__visual {
        justify-content: center;
    }

    .service-features {
        padding: 62px 0 76px;
    }

    .service-features__inner {
        padding: 0 24px;
    }

    .service-features__title {
        font-size: 44px;
    }

    .service-features__lead {
        margin-top: 14px;
        font-size: 20px;
    }

    .service-features__grid {
        margin-top: 34px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        min-height: 0;
    }

    .service-options {
        margin-top: 34px;
        padding: 28px 20px 20px;
    }

    .service-options__title {
        font-size: 24px;
    }

    .service-option {
        align-items: center;
        gap: 18px;
    }

    .service-option__icon {
        width: 124px;
    }

    .service-option__heading {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

@media (max-width: 560px) {
    .pricing {
        padding: 46px 0 56px;
    }

    .pricing__inner {
        padding: 0 16px;
    }

    .pricing__heading {
        margin-bottom: 32px;
    }

    .pricing__title {
        font-size: 34px;
    }

    .pricing__lead {
        font-size: 18px;
        line-height: 1.6;
    }

    .pricing-card__title {
        font-size: 18px;
    }

    .pricing-card__body {
        padding: 22px 18px 24px;
    }

    .pricing-card__row {
        gap: 12px;
    }

    .pricing-card__label {
        min-width: 68px;
        font-size: 12px;
    }

    .pricing-card__price {
        font-size: 18px;
    }

    .pricing-card__price--accent {
        font-size: 26px;
    }

    .pricing__notes {
        font-size: 13px;
    }

    .pricing-cta {
        padding: 16px;
    }

    .pricing-cta__panel {
        padding: 22px 18px 124px;
        border-radius: 20px;
    }

    .pricing-cta__title {
        font-size: 20px;
    }

    .pricing-cta__text {
        font-size: 13px;
        line-height: 1.8;
    }

    .pricing-cta__button {
        min-width: 100%;
        padding: 18px 50px 18px 24px;
        font-size: 16px;
    }

    .pricing-cta__person {
        width: 88px;
    }

    .pricing-cta__person--left {
        left: 14px;
    }

    .pricing-cta__person--right {
        right: 14px;
    }

    .header__inner {
        gap: 14px;
    }

    .header__logo-image {
        width: 90px;
    }

    .header__cta {
        min-width: 110px;
        padding: 9px 18px;
        font-size: 16px;
    }

    .header__menu {
        font-size: 16px;
        gap: 12px 16px;
    }

    .mv__title {
        font-size: 24px;
        text-align: left;
    }

    .mv__badge-lead {
        font-size: 16px;
    }

    .mv__badge-title {
        font-size: 22px;
    }

    .mv__cta {
        min-width: 50%;
        padding: 10px 44px 10px 24px;
        font-size: 20px;
    }

    .consultation {
        padding: 24px 0 56px;
    }

    .consultation__inner {
        padding: 0 18px;
    }

    .consultation__title {
        margin-top: 10px;
    }

    .consultation__list {
        margin-top: 30px;
        gap: 22px;
    }

    .consultation-card__title {
        padding: 16px 18px 16px 28px;
        font-size: 16px;
    }

    .consultation-card__title::before {
        left: -16px;
        border-top-width: 15px;
        border-left-width: 16px;
    }

    .consultation-card__text {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .consultation__image {
        width: 100%;
        margin-top: 4px;
    }

    .service-features {
        padding: 48px 0 56px;
    }

    .service-features__inner {
        padding: 0 16px;
    }

    .service-features__title {
        font-size: 34px;
    }

    .service-features__lead {
        font-size: 18px;
        line-height: 1.6;
    }

    .service-card {
        padding: 20px 18px;
        grid-template-columns: 56px minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 10px;
    }

    .service-card__icon {
        width: 56px;
    }

    .service-card__title {
        margin: 0 0 8px;
        font-size: 18px;
    }

    .service-card__text {
        font-size: 13px;
        line-height: 1.75;
    }

    .service-options {
        padding: 24px 16px 18px;
    }

    .service-options__title {
        font-size: 21px;
        line-height: 1.7;
    }

    .service-option {
        flex-direction: column;
        gap: 12px;
    }

    .service-option + .service-option {
        margin-top: 18px;
        padding-top: 18px;
    }

    .service-option__icon {
        width: 110px;
    }

    .service-option__heading {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-option__text {
        font-size: 13px;
        line-height: 1.75;
    }
}


.pricing {
    padding: 82px 0 92px;
    background: #fff;
}

.pricing__inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 42px;
}

.pricing__heading {
    margin-bottom: 46px;
}

.pricing__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #27b364;
}

.pricing__lead {
    margin: 14px 0 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
}

.pricing__plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.pricing-card {
    border: 2px solid #c8d5df;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.pricing-card__title {
    margin: 0;
    padding: 14px 18px 16px;
    background: #344050;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.pricing-card--featured .pricing-card__title {
    background: linear-gradient(90deg, #21b05d 0%, #18b86d 100%);
}

.pricing-card__body {
    padding: 28px 26px 30px;
}

.pricing-card__row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pricing-card__row + .pricing-card__row {
    margin-top: 14px;
}

.pricing-card__label {
    min-width: 76px;
    padding: 6px 10px;
    border-radius: 10px;
    background: #e8eff3;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    color: #51606f;
}

.pricing-card__price {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #344050;
}

.pricing-card__price--accent {
    font-size: 22px;
    color: #18ad62;
}

.pricing__plans--single {
    display: flex;
    justify-content: center;
}

.pricing-card--single {
    width: min(100%, 460px);
    border-color: #21b05d;
    box-shadow: 0 14px 32px rgba(33, 176, 93, 0.16);
}

.pricing-card--single .pricing-card__title {
    padding: 18px 18px 20px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pricing-card--single .pricing-card__body {
    padding: 34px 26px 40px;
    text-align: center;
}

.pricing-card__price-lead {
    margin: 0 0 10px;
    font-size: 16px;
    color: #51606f;
}

.pricing-card__price-main {
    margin: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: #18ad62;
    line-height: 1;
}

.pricing-card__amount {
    font-size: 72px;
    font-weight: 700;
}

.pricing-card__unit {
    font-size: 30px;
    font-weight: 700;
}

.pricing-card__from {
    font-size: 30px;
    font-weight: 700;
}

.pricing__notes {
    margin-top: 42px;
    font-size: 14px;
    line-height: 1.8;
    color: #30343c;
}

.pricing__notes p {
    margin: 0;
}

.pricing__notes p + p {
    margin-top: 2px;
}

.pricing-cta {
    margin-top: 52px;
    padding: 38px 36px;
    border-radius: 18px;
    background: linear-gradient(135deg, #20b05d 0%, #20b05d 34%, #27b966 34%, #27b966 66%, #1faa58 66%, #1faa58 100%);
}

.pricing-cta__panel {
    position: relative;
    min-height: 240px;
    padding: 30px 180px 22px;
    border-radius: 26px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.pricing-cta__content {
    position: relative;
    z-index: 1;
}

.pricing-cta__title {
    margin: 0;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.6;
    color: #22b05e;
}

.pricing-cta__text {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.85;
    color: #37404a;
}

.pricing-cta__button {
    position: relative;
    min-width: 366px;
    margin-top: 22px;
    padding: 22px 70px 22px 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #ff2d55 0%, #ff7d11 100%);
    box-shadow: 0 10px 18px rgba(255, 112, 18, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.pricing-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 26px rgba(255, 112, 18, 0.36);
    filter: brightness(1.05);
}

.pricing-cta__button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
}

.pricing-cta__button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 32px;
    z-index: 1;
    width: 6px;
    height: 6px;
    border-top: 3px solid #f39a12;
    border-right: 3px solid #f39a12;
    transform: translateY(-50%) rotate(45deg);
}

.pricing-cta__person {
    position: absolute;
    bottom: 0;
    width: 140px;
}

.pricing-cta__person--left {
    left: 116px;
}

.pricing-cta__person--right {
    right: 116px;
}

@media (max-width: 1120px) {
    .pricing__plans {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .pricing {
        padding: 60px 0 72px;
    }

    .pricing__inner {
        padding: 0 24px;
    }

    .pricing__title {
        font-size: 40px;
    }

    .pricing__lead {
        font-size: 20px;
        margin-top: 12px;
    }

    .pricing__notes {
        margin-top: 28px;
    }

    .pricing-cta {
        margin-top: 38px;
        padding: 24px 20px;
    }

    .pricing-cta__panel {
        min-height: 0;
        padding: 28px 28px 140px;
    }

    .pricing-cta__title {
        font-size: 24px;
    }

    .pricing-cta__button {
        min-width: 320px;
    }

    .pricing-cta__person {
        width: 120px;
    }

    .pricing-cta__person--left {
        left: 30px;
    }

    .pricing-cta__person--right {
        right: 30px;
    }
}

@media (max-width: 560px) {
    .pricing {
        padding: 46px 0 56px;
    }

    .pricing__inner {
        padding: 0 16px;
    }

    .pricing__heading {
        margin-bottom: 32px;
    }

    .pricing__title {
        font-size: 34px;
    }

    .pricing__lead {
        font-size: 18px;
        line-height: 1.6;
    }

    .pricing-card__title {
        font-size: 18px;
    }

    .pricing-card__body {
        padding: 22px 18px 24px;
    }

    .pricing-card__row {
        gap: 12px;
    }

    .pricing-card__label {
        min-width: 68px;
        font-size: 12px;
    }

    .pricing-card__price {
        font-size: 18px;
    }

    .pricing-card__price--accent {
        font-size: 26px;
    }

    .pricing__notes {
        font-size: 13px;
    }

    .pricing-cta {
        padding: 16px;
    }

    .pricing-cta__panel {
        padding: 22px 18px 124px;
        border-radius: 20px;
    }

    .pricing-cta__title {
        font-size: 20px;
    }

    .pricing-cta__text {
        font-size: 13px;
        line-height: 1.8;
    }

    .pricing-cta__button {
        min-width: 100%;
        padding: 18px 50px 18px 24px;
        font-size: 16px;
    }

    .pricing-cta__person {
        width: 88px;
    }

    .pricing-cta__person--left {
        left: 14px;
    }

    .pricing-cta__person--right {
        right: 14px;
    }
}


.company-profile {
    padding: 84px 0 108px;
    background: #fff;
}

.company-profile__inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 28px;
}

.company-profile__heading {
    margin-bottom: 62px;
}

.company-profile__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #27b364;
}

.company-profile__table {
    border-top: 2px solid #c8d5df;
}

.company-profile__row {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px 52px;
    align-items: end;
    border-bottom: 2px solid #c8d5df;
}

.company-profile__label,
.company-profile__value {
    margin: 0;
    padding: 18px 0 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #3f4d63;
}

.company-profile__label {
    white-space: nowrap;
}

.company-profile__value {
    color: #35445b;
}

@media (max-width: 900px) {
    .company-profile {
        padding: 62px 0 78px;
    }

    .company-profile__inner {
        padding: 0 24px;
    }

    .company-profile__heading {
        margin-bottom: 40px;
    }

    .company-profile__title {
        font-size: 40px;
    }

    .company-profile__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .company-profile__label {
        padding-bottom: 0;
    }

    .company-profile__value {
        padding-top: 8px;
    }
}

@media (max-width: 560px) {
    .company-profile {
        padding: 46px 0 58px;
    }

    .company-profile__inner {
        padding: 0 16px;
    }

    .company-profile__heading {
        margin-bottom: 28px;
    }

    .company-profile__title {
        font-size: 34px;
    }

    .company-profile__label,
    .company-profile__value {
        font-size: 14px;
        line-height: 1.75;
    }

    .company-profile__label {
        padding: 14px 0 0;
    }

    .company-profile__value {
        padding: 6px 0 14px;
    }
}


.header__toggle {
    display: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 102;
}

.header__toggle span {
    position: absolute;
    left: 50%;
    width: 25px;
    height: 2px;
    background: #1d2433;
    transform: translateX(-50%);
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.header__toggle span:nth-child(1) {
    top: 16px;
}

.header__toggle span:nth-child(2) {
    top: 24px;
}

.header__toggle span:nth-child(3) {
    top: 32px;
}

.header__cta--mobile {
    display: none;
}

@media screen and (max-width: 640px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        width: 100%;
        box-shadow: 0 5px 20px rgba(29, 36, 51, 0.08);
    }

    .header__inner {
        min-height: 65px;
        padding: 10px 20px;
        gap: 15px;
    }

    .header__logo-image {
        width: 110px;
    }

    .header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .header__nav {
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        min-height: 100vh;
        padding: 95px 20px 32px;
        margin-left: 0;
        background: #ffffff;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        z-index: 101;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .header__menu li,
    .header__menu a {
        width: auto;
    }

    .header__menu a {
        display: inline-block;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .header > .header__inner > .header__cta {
        display: none;
    }

    .header__cta--mobile {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin-top: 25px;
        margin-left: auto;
        margin-right: auto;
        min-width: 0;
    }

    .header--open .header__nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header--open .header__toggle span:nth-child(1) {
        transform: translateX(-50%) translateY(8px) rotate(45deg);
    }

    .header--open .header__toggle span:nth-child(2) {
        opacity: 0;
    }

    .header--open .header__toggle span:nth-child(3) {
        transform: translateX(-50%) translateY(-8px) rotate(-45deg);
    }
}


 screen and (max-width: 640px) {
    body {
        padding-top: 65px;
        overflow-x: hidden;
    }

    .header__logo-image {
        width: 110px;
    }

    .mv__inner,
    .consultation__inner,
    .service-features__inner,
    .reasons__inner,
    .pricing__inner,
    .company-profile__inner {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .mv__inner {
        padding-top: 28px;
        padding-bottom: 36px;
    }

    .mv__title {
        font-size: 34px;
        line-height: 1.35;
        text-align: left;
    }

    .mv__visual {
        flex-direction: column;
        gap: 18px;
    }

    .mv__badge {
        width: min(100%, 320px);
        height: auto;
        border-radius: 28px;
        padding: 26px 20px;
    }

    .mv__badge-lead {
        font-size: 14px;
    }

    .mv__badge-title {
        font-size: 20px;
    }

    .mv__cta {
        min-width: 100%;
        width: 100%;
        padding: 16px 58px 16px 20px;
        font-size: 16px;
        line-height: 1.5;
    }

    .consultation {
        padding: 24px 0 52px;
    }

    .consultation__inner {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .consultation__eyebrow {
        font-size: 34px;
    }

    .consultation__title {
        margin-top: 10px;
        font-size: 24px;
        line-height: 1.6;
    }

    .consultation__list {
        margin-top: 28px;
        gap: 20px;
    }

    .consultation-card {
        max-width: none;
    }

    .consultation-card__title {
        padding: 14px 16px 14px 24px;
        font-size: 16px;
        line-height: 1.6;
    }

    .consultation-card__title::before {
        left: -16px;
        border-top-width: 14px;
        border-left-width: 16px;
    }

    .consultation-card__text {
        margin: 12px 0 0;
        font-size: 14px;
        line-height: 1.8;
    }

    .consultation__visual {
        justify-content: center;
    }

    .consultation__image {
        width: 100%;
        margin-top: 0;
    }

    .service-features {
        padding: 46px 0 54px;
    }

    .service-features__title {
        font-size: 34px;
    }

    .service-features__lead {
        font-size: 18px;
        line-height: 1.6;
    }

    .service-features__grid {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: 0;
        padding: 18px 16px;
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 10px;
    }

    .service-card__icon {
        width: 52px;
    }

    .service-card__title {
        font-size: 17px;
        line-height: 1.5;
    }

    .service-card__text {
        font-size: 13px;
        line-height: 1.75;
    }

    .service-options {
        margin-top: 30px;
        padding: 22px 16px 18px;
    }

    .service-options__title {
        font-size: 20px;
        line-height: 1.7;
    }

    .service-option {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .service-option + .service-option {
        margin-top: 18px;
        padding-top: 18px;
    }

    .service-option__icon {
        width: 104px;
    }

    .service-option__heading {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-option__text {
        font-size: 13px;
        line-height: 1.75;
    }

    .reasons {
        padding: 46px 0 58px;
    }

    .reasons__heading {
        margin-bottom: 32px;
    }

    .reasons__title {
        font-size: 34px;
    }

    .reasons__lead {
        font-size: 18px;
        line-height: 1.6;
    }

    .reasons__list {
        gap: 38px;
    }

    .reason-item,
    .reason-item--reverse {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reason-item--reverse .reason-item__content,
    .reason-item--reverse .reason-item__visual {
        order: initial;
    }

    .reason-item__number {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
        font-size: 24px;
    }

    .reason-item__title {
        padding-bottom: 14px;
        font-size: 22px;
        line-height: 1.5;
    }

    .reason-item__text {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.85;
    }

    .pricing {
        padding: 46px 0 56px;
    }

    .pricing__heading {
        margin-bottom: 30px;
    }

    .pricing__title {
        font-size: 34px;
    }

    .pricing__lead {
        font-size: 18px;
        line-height: 1.6;
    }

    .pricing__plans {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pricing-card__title {
        font-size: 18px;
    }

    .pricing-card__body {
        padding: 20px 16px 22px;
    }

    .pricing-card__row {
        gap: 10px;
        align-items: center;
    }

    .pricing-card__label {
        min-width: 66px;
        font-size: 12px;
    }

    .pricing-card__price {
        font-size: 16px;
        line-height: 1.5;
    }

    .pricing-card__price--accent {
        font-size: 25px;
    }

    .pricing__notes {
        margin-top: 24px;
        font-size: 12px;
        line-height: 1.75;
    }

    .pricing-cta {
        margin-top: 32px;
        padding: 14px;
    }

    .pricing-cta__panel {
        min-height: 0;
        padding: 20px 16px 118px;
        border-radius: 18px;
    }

    .pricing-cta__title {
        font-size: 19px;
        line-height: 1.7;
    }

    .pricing-cta__text {
        font-size: 13px;
        line-height: 1.8;
    }

    .pricing-cta__button {
        min-width: 100%;
        width: 100%;
        padding: 16px 58px 16px 20px;
        font-size: 15px;
        line-height: 1.5;
    }

    .pricing-cta__person {
        width: 84px;
    }

    .pricing-cta__person--left {
        left: 12px;
    }

    .pricing-cta__person--right {
        right: 12px;
    }

    .company-profile {
        padding: 46px 0 58px;
    }

    .company-profile__heading {
        margin-bottom: 28px;
    }

    .company-profile__title {
        font-size: 34px;
    }

    .company-profile__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .company-profile__label,
    .company-profile__value {
        font-size: 14px;
        line-height: 1.75;
    }

    .company-profile__label {
        padding: 14px 0 0;
    }

    .company-profile__value {
        padding: 6px 0 14px;
    }
}
