/* =========================================
   Home Page
========================================= */

.home-page {
    background: #fff;
    color: #111;
}


/* =========================================
   Home Hero
========================================= */

.home-hero {
    position: relative;
    overflow: hidden;
}

.home-hero__inner {
    width: min(1440px, calc(100% - 96px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 40px;
    position: relative;
}

.home-hero__content {
    position: relative;
    z-index: 3;
    padding: 80px 0 86px;
}

.home-hero__brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 52px;
}

.home-hero__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 52px;
    color: #111;
}

    .home-hero__brand-mark .gappun-symbol {
        width: 100%;
        height: 100%;
    }

.home-hero__brand-text {
    color: #111;
    white-space: nowrap;
}

.home-hero__title {
    margin: 0;
    color: #111;
}

.home-hero__sub {
    position: relative;
    margin: 34px 0 24px;
    color: #333;
}

.home-hero__desc {
    margin: 0 0 14px;
    color: #222;
}

.home-hero__sub-desc {
    margin: 0;
    color: #555;
}

.home-hero__buttons {
    display: flex;
    gap: 12px;
    margin-top: 42px;
}

.home-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-width: 240px;
    height: 66px;
    padding: 0 30px 0 34px;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: 0.24s ease;
}

.home-hero__btn--outline {
    border: 1.5px solid #111;
    background: rgba(255, 255, 255, 0.72);
    color: #111;
}

    .home-hero__btn--outline:hover {
        background: #111;
        color: #fff;
    }

.home-hero__btn--filled {
    border: 1.5px solid #111;
    background: #111;
    color: #fff;
}

    .home-hero__btn--filled:hover {
        background: #333;
        border-color: #333;
    }

.home-hero__btn-arrow {
    transform: translateY(-1px);
}

.home-hero__visual {
    position: relative;
    z-index: 2;
    align-self: stretch;
    overflow: hidden;
    pointer-events: none;
}

    .home-hero__visual img {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: min(860px, 62vw);
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        filter: grayscale(1);
    }

.home-hero__visual-mobile {
    display: none;
}

.only-pc {
    display: block;
}


/* =========================================
   Home Process
========================================= */

.home-process {
    background: #f8f8f6;
    padding: 120px 0;
    overflow: hidden;
}

.home-process__inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-areas:
        "head visual"
        "grid grid";
    align-items: center;
    gap: 56px 72px;
}

.home-process__head {
    grid-area: head;
}

.home-process__eyebrow {
    margin: 0 0 18px;
    color: #777;
    letter-spacing: 0.06em;
}

.home-process__title {
    margin: 0 0 22px;
    color: #111;
}

.home-process__desc {
    margin: 0;
    color: #444;
}

.home-process__visual {
    grid-area: visual;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .home-process__visual img {
        width: 100%;
        max-width: 560px;
        height: auto;
        display: block;
        filter: grayscale(1);
    }

.home-process__grid {
    grid-area: grid;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-process__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e4e0d8;
    overflow: hidden;
}

.home-process__card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: #fafaf8;
    border-bottom: 1px solid #e4e0d8;
}

    .home-process__card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: grayscale(1);
    }

.home-process__card-body {
    width: 100%;
    padding: 22px 20px 26px;
}

.home-process__no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 26px;
    padding: 0 8px;
    border: 1px solid #d8d2c9;
    background: #fff;
    color: #888;
    margin-bottom: 14px;
}

.home-process__card-title {
    margin: 0 0 10px;
    color: #111;
}

.home-process__card-desc {
    margin: 0;
    color: #555;
}


/* =========================================
   Home Programs
========================================= */

.home-programs {
    background: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.home-programs__inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 48px 72px;
}

.home-programs__content {
    position: relative;
    z-index: 2;
}

.home-programs__eyebrow {
    margin: 0 0 18px;
    color: #777;
    letter-spacing: 0.06em;
}

.home-programs__title {
    margin: 0 0 22px;
    color: #111;
}

.home-programs__desc {
    margin: 0 0 40px;
    color: #444;
}

.home-programs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.home-programs__item-inner {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 0 18px;
    min-height: 88px;
    padding: 18px 20px 18px 0;
    border-bottom: 1px solid #e4e0d8;
    text-decoration: none;
    transition: background 0.2s ease;
}

.home-programs__list li:first-child .home-programs__item-inner {
    border-top: 1px solid #e4e0d8;
}

.home-programs__item-inner:hover {
    background: #f8f8f6;
    padding-left: 12px;
    margin-left: -12px;
}

.home-programs__item-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .home-programs__item-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: grayscale(1);
    }

.home-programs__item-text {
    min-width: 0;
}

.home-programs__item-title {
    margin: 0 0 6px;
    color: #111;
}

.home-programs__item-desc {
    margin: 0;
    color: #555;
}

.home-programs__item-arrow {
    color: #111;
    flex-shrink: 0;
    justify-self: end;
}

.home-programs__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .home-programs__visual img {
        width: 100%;
        max-width: 560px;
        height: auto;
        display: block;
        filter: grayscale(1);
    }

.home-programs__visual-mobile {
    display: none;
}


/* =========================================
   Home Constitution Test
========================================= */

.home-ctest {
    background: #f8f8f6;
    padding: 120px 0;
    overflow: hidden;
}

.home-ctest__inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 0 72px;
}

.home-ctest__content {
    position: sticky;
    top: 40px;
}

.home-ctest__eyebrow {
    margin: 0 0 10px;
    color: #777;
    letter-spacing: 0.06em;
}

.home-ctest__eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: #bbb;
    margin-bottom: 28px;
}

.home-ctest__title {
    margin: 0 0 24px;
    color: #111;
}

.home-ctest__desc {
    margin: 0 0 22px;
    color: #333;
    line-height: 1.85;
}

.home-ctest__sub {
    margin: 0 0 48px;
    color: #666;
    line-height: 1.8;
}

.home-ctest__visual img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    filter: grayscale(1);
}

.home-ctest__card {
    background: #fff;
    border: 1px solid #ddd8cf;
    border-radius: 16px;
    padding: 36px 36px 28px;
}

.home-ctest__card-lead {
    margin: 0 0 20px;
    color: #555;
    text-align: center;
}

.home-ctest__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.home-ctest__item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 0 14px;
    min-height: 72px;
    padding: 14px 18px;
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    background: #fdfcfa;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .home-ctest__item:hover {
        border-color: #bbb;
        background: #f8f6f2;
    }

.home-ctest__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: #f1ede6;
    border-radius: 50%;
    flex-shrink: 0;
}

    .home-ctest__item-icon img {
        width: 26px;
        height: 26px;
        object-fit: contain;
        filter: grayscale(1);
    }

.home-ctest__item-text {
    color: #111;
    line-height: 1.5;
}

.home-ctest__item-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    flex-shrink: 0;
}

.home-ctest__card-action {
    margin-bottom: 24px;
}

.home-ctest__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 64px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-bottom: 12px;
}

    .home-ctest__btn:hover {
        background: #333;
    }

.home-ctest__btn-arrow {
    transition: transform 0.2s ease;
}

.home-ctest__btn:hover .home-ctest__btn-arrow {
    transform: translateX(4px);
}

.home-ctest__btn-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    color: #888;
}

.home-ctest__card-outcomes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.home-ctest__outcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #555;
}

.home-ctest__outcome-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .home-ctest__outcome-icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
        filter: grayscale(1);
    }

.home-ctest__outcome-dot {
    color: #ccc;
    margin-bottom: 20px;
}

.home-ctest__card-note {
    margin: 0;
    color: #888;
    text-align: center;
}


/* =========================================
   Home Contact
========================================= */

.home-contact {
    background: #fff;
    padding: 100px 0 60px;
}

.home-contact__inner {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.home-contact__head {
    text-align: center;
    margin-bottom: 48px;
}

.home-contact__eyebrow {
    margin: 0 0 14px;
    color: #888;
    letter-spacing: 0.08em;
}

.home-contact__title {
    margin: 0 0 12px;
    color: #111;
}

.home-contact__subtitle {
    margin: 0;
    color: #666;
}

.home-contact__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.home-contact__card {
    background: #fff;
    border: 1px solid #e4e0d8;
    border-radius: 14px;
    padding: 28px 28px 24px;
}

.home-contact__card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

    .home-contact__card-head h3 {
        margin: 0;
        color: #111;
    }

.home-contact__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #f1ede6;
    border-radius: 50%;
    flex-shrink: 0;
}

    .home-contact__card-icon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        filter: grayscale(1);
    }

/* 문의 카드 */
.home-contact__phone {
    margin: 0 0 8px;
    color: #111;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.home-contact__phone-note {
    margin: 0 0 24px;
    color: #666;
    text-align: center;
    line-height: 1.7;
}

.home-contact__kakao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: background 0.2s ease;
}

    .home-contact__kakao:hover {
        background: #333;
    }

    .home-contact__kakao img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        filter: invert(1);
    }

.home-contact__kakao--ready {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.home-contact__kakao-note {
    margin: 0;
    color: #888;
    text-align: center;
}

/* 진료시간 카드 */
.home-contact__hours {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 0;
}

.home-contact__hours-group {
    border-bottom: 1px solid #f0ece4;
    padding: 14px 0;
}

    .home-contact__hours-group:first-child {
        border-top: 1px solid #f0ece4;
    }

.home-contact__hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.home-contact__hours-row--sub {
    margin-top: 6px;
    padding-left: 4px;
}

    .home-contact__hours-row--sub .home-contact__hours-day {
        color: #999;
    }

    .home-contact__hours-row--sub .home-contact__hours-time {
        color: #999;
        font-weight: 400;
    }

.home-contact__hours-day {
    color: #333;
}

.home-contact__hours-time {
    color: #111;
    font-weight: 500;
}

.home-contact__hours-note {
    margin: 0;
    color: #999;
}

/* 오시는 길 카드 */
.home-contact__map {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #e8e4dc;
}

    .home-contact__map .root_daum_roughmap {
        width: 100% !important;
        aspect-ratio: 16 / 6;
        position: relative;
    }

        .home-contact__map .root_daum_roughmap iframe {
            width: 100% !important;
            height: 100% !important;
            position: absolute;
            top: 0;
            left: 0;
        }

.home-contact__address {
    font-style: normal;
    color: #333;
    line-height: 1.7;
    margin-bottom: 8px;
}

.home-contact__parking-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 9px 18px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .home-contact__parking-btn:hover {
        border-color: #111;
        background: #f8f8f6;
        color: #111;
    }

/* 사업자 정보 */
.home-contact__biz {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #aaa;
    flex-wrap: wrap;
}

.home-contact__biz-divider {
    color: #ddd;
}


/* =========================================
   Responsive — 1180px
========================================= */

@media (max-width: 1180px) {

    .home-hero__inner {
        width: min(100% - 56px, 1100px);
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .home-hero__brand {
        margin-bottom: 36px;
    }

    .home-hero__visual img {
        width: min(860px, 62vw);
    }

    .home-process {
        padding: 100px 0;
    }

    .home-process__inner {
        width: min(100% - 40px, 1100px);
        gap: 44px 48px;
    }

    .home-programs {
        padding: 100px 0;
    }

    .home-programs__inner {
        width: min(100% - 40px, 1100px);
        gap: 40px 48px;
    }

    .home-ctest {
        padding: 100px 0;
    }

    .home-ctest__inner {
        width: min(100% - 40px, 1100px);
        gap: 0 48px;
    }

    .home-contact {
        padding: 86px 0 52px;
    }

    .home-contact__inner {
        width: min(100% - 40px, 1100px);
    }
}


/* =========================================
   Responsive — 900px
========================================= */

@media (max-width: 900px) {

    /* Hero */
    .home-hero__inner {
        width: 100%;
        display: block;
        padding: 0 0 56px;
    }

    .home-hero__content {
        width: min(100% - 40px, 640px);
        margin: 0 auto;
        padding: 32px 0 0;
        display: flex;
        flex-direction: column;
    }

    .home-hero__visual {
        display: none;
    }

    .home-hero__visual-mobile {
        display: block;
        width: calc(100% + 40px);
        height: clamp(300px, 40svh, 400px);
        margin: 24px 0 32px -20px;
        overflow: hidden;
    }

        .home-hero__visual-mobile img {
            width: 116%;
            max-width: none;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            filter: grayscale(1);
        }

    .home-hero__brand {
        gap: 14px;
        margin-bottom: 20px;
    }

    .home-hero__brand-mark {
        width: 36px;
        height: 42px;
    }

    .home-hero__title {
        order: 1;
    }

    .home-hero__sub {
        order: 2;
        margin: 10px 0 0;
    }

    .home-hero__visual-mobile {
        order: 3;
    }

    .home-hero__desc {
        order: 4;
        margin-top: 28px;
        margin-bottom: 0;
    }

    .home-hero__sub-desc {
        order: 5;
        margin-top: 10px;
    }

    .home-hero__buttons {
        order: 6;
        gap: 10px;
        margin-top: 28px;
    }

    .home-hero__btn {
        min-width: 220px;
        gap: 24px;
    }

    .only-pc {
        display: none;
    }

    /* Process */
    .home-process {
        padding: 86px 0;
    }

    .home-process__inner {
        width: min(100% - 40px, 860px);
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "visual"
            "grid";
        gap: 36px;
    }

    .home-process__head {
        text-align: center;
    }

    .home-process__visual img {
        max-width: 480px;
        margin: 0 auto;
    }

    .home-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    /* Programs */
    .home-programs {
        padding: 86px 0;
    }

    .home-programs__inner {
        width: min(100% - 40px, 860px);
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-programs__content {
        text-align: center;
    }

    .home-programs__desc {
        margin-bottom: 0;
    }

    .home-programs__visual {
        display: none;
    }

    .home-programs__visual-mobile {
        display: block;
        width: calc(100% + 40px);
        margin: 0 -20px;
    }

        .home-programs__visual-mobile img {
            width: 100%;
            height: auto;
            display: block;
            filter: grayscale(1);
        }

    /* Constitution Test */
    .home-ctest {
        padding: 86px 0;
    }

    .home-ctest__inner {
        width: min(100% - 40px, 680px);
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-ctest__content {
        position: static;
        text-align: center;
    }

    .home-ctest__eyebrow-line {
        margin: 10px auto 28px;
    }

    .home-ctest__visual {
        display: none;
    }

    /* Contact */
    .home-contact {
        padding: 72px 0 48px;
    }

    .home-contact__inner {
        width: min(100% - 40px, 860px);
    }

    .home-contact__cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


/* =========================================
   Responsive — 768px
========================================= */

@media (max-width: 768px) {

    /* Hero */
    .home-hero__inner {
        padding: 0 0 48px;
    }

    .home-hero__content {
        width: min(100% - 36px, 560px);
        padding-top: 28px;
    }

    .home-hero__visual-mobile {
        width: calc(100% + 36px);
        height: clamp(280px, 36svh, 340px);
        margin-left: -18px;
    }

    .home-hero__brand {
        gap: 12px;
        margin-bottom: 14px;
    }

    .home-hero__brand-mark {
        width: 34px;
        height: 40px;
    }

    .home-hero__buttons {
        flex-direction: column;
    }

    .home-hero__btn {
        width: 100%;
        min-width: 0;
        height: 64px;
        gap: 12px;
        justify-content: space-between;
        padding: 0 24px;
    }

    /* Process */
    .home-process {
        padding: 72px 0;
    }

    .home-process__inner {
        width: min(100% - 28px, 560px);
        gap: 28px;
    }

    .home-process__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-process__card {
        flex-direction: row;
        text-align: left;
        align-items: stretch;
    }

    .home-process__card-image {
        flex: 0 0 110px;
        width: 110px;
        aspect-ratio: unset;
        border-bottom: none;
        border-right: 1px solid #e4e0d8;
        padding: 16px;
    }

    .home-process__card-body {
        padding: 16px 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .home-process__no {
        margin-bottom: 8px;
    }

    .home-process__card-title {
        margin-bottom: 6px;
    }

    /* Programs */
    .home-programs {
        padding: 72px 0;
    }

    .home-programs__inner {
        width: min(100% - 28px, 560px);
    }

    .home-programs__visual-mobile {
        width: calc(100% + 28px);
        margin: 0 -14px;
    }

    .home-programs__item-inner {
        grid-template-columns: 54px minmax(0, 1fr) 20px;
        gap: 0 14px;
        min-height: 80px;
        padding: 16px 16px 16px 0;
    }

        .home-programs__item-inner:hover {
            padding-left: 10px;
            margin-left: -10px;
        }

    .home-programs__item-icon {
        width: 48px;
        height: 48px;
    }

    /* Constitution Test */
    .home-ctest {
        padding: 72px 0;
    }

    .home-ctest__inner {
        width: min(100% - 28px, 560px);
        gap: 32px;
    }

    .home-ctest__desc,
    .home-ctest__sub {
        text-align: left;
    }

    .home-ctest__card {
        padding: 28px 24px 22px;
        border-radius: 12px;
    }

    .home-ctest__item {
        grid-template-columns: 44px minmax(0, 1fr) 24px;
        gap: 0 12px;
        min-height: 64px;
        padding: 12px 14px;
    }

    .home-ctest__item-icon {
        width: 40px;
        height: 40px;
    }

        .home-ctest__item-icon img {
            width: 22px;
            height: 22px;
        }

    .home-ctest__btn {
        height: 58px;
    }

    .home-ctest__card-outcomes {
        gap: 10px;
    }

    /* Contact */
    .home-contact {
        padding: 64px 0 44px;
    }

    .home-contact__inner {
        width: min(100% - 28px, 560px);
    }

    .home-contact__head {
        margin-bottom: 36px;
    }

    .home-contact__card {
        padding: 22px 20px 20px;
        border-radius: 12px;
    }

    .home-contact__biz {
        gap: 10px;
    }
}


/* =========================================
   Responsive — 480px
========================================= */

@media (max-width: 480px) {

    /* Hero */
    .home-hero__content {
        width: min(100% - 32px, 480px);
        padding-top: 24px;
    }

    .home-hero__visual-mobile {
        width: calc(100% + 32px);
        height: clamp(260px, 34svh, 320px);
        margin-left: -16px;
    }

        .home-hero__visual-mobile img {
            width: 118%;
            object-position: center 30%;
        }

    .home-hero__btn {
        height: 60px;
    }

    /* Process */
    .home-process {
        padding: 64px 0;
    }

    .home-process__inner {
        width: min(100% - 24px, 480px);
    }

    .home-process__visual img {
        max-width: 360px;
    }

    .home-process__card-image {
        flex: 0 0 90px;
        width: 90px;
        padding: 12px;
    }

    .home-process__card-body {
        padding: 14px;
    }

    /* Programs */
    .home-programs {
        padding: 64px 0;
    }

    .home-programs__inner {
        width: min(100% - 24px, 480px);
        gap: 24px;
    }

    .home-programs__item-inner {
        grid-template-columns: 48px minmax(0, 1fr) 18px;
        gap: 0 12px;
        min-height: 72px;
        padding: 14px 12px 14px 0;
    }

    .home-programs__item-icon {
        width: 42px;
        height: 42px;
    }

    /* Constitution Test */
    .home-ctest {
        padding: 64px 0;
    }

    .home-ctest__inner {
        width: min(100% - 24px, 480px);
    }

    .home-ctest__card {
        padding: 24px 18px 20px;
    }

    .home-ctest__item {
        grid-template-columns: 40px minmax(0, 1fr) 22px;
        gap: 0 10px;
        min-height: 58px;
        padding: 10px 12px;
    }

    .home-ctest__outcome-dot {
        display: none;
    }

    .home-ctest__card-outcomes {
        gap: 16px;
    }

    /* Contact */
    .home-contact {
        padding: 56px 0 40px;
    }

    .home-contact__inner {
        width: min(100% - 24px, 480px);
    }

    .home-contact__phone {
        font-size: clamp(24px, 7vw, 32px);
    }
}


/* =========================================
   Responsive — 380px
========================================= */

@media (max-width: 380px) {

    /* Hero */
    .home-hero__visual-mobile {
        height: clamp(240px, 32svh, 290px);
    }

        .home-hero__visual-mobile img {
            width: 120%;
        }

    /* Process */
    .home-process__inner {
        width: min(100% - 20px, 380px);
    }

    .home-process__card-image {
        flex: 0 0 80px;
        width: 80px;
    }

    /* Programs */
    .home-programs__inner {
        width: min(100% - 20px, 380px);
    }

    /* Constitution Test */
    .home-ctest__inner {
        width: min(100% - 20px, 380px);
    }

    /* Contact */
    .home-contact__inner {
        width: min(100% - 20px, 380px);
    }

    .home-contact__biz {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .home-contact__biz-divider {
        display: none;
    }
}
