@charset "utf-8";



.inner-144 {
    max-width: 1440px;
    margin: 0 auto;
}

.inner-128 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec1 {
    padding: 0;
}

.sec1 {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.sec1 .inner-128 {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
}

.sec1-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #1a3d34;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sec1-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(8, 42, 36, 0.72) 0%,
        rgba(10, 52, 44, 0.62) 50%,
        rgba(12, 58, 48, 0.72) 100%
    );
}

.sec1 .scroll-mouse {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 5;
    width: 30px;
    height: 48px;
    pointer-events: none;
}

.sec1 .scroll-mouse__body {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    position: relative;
    box-sizing: border-box;
}

.sec1 .scroll-mouse__wheel {
    position: absolute;
    left: 50%;
    top: 9px;
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%);
    animation: mouseWheelMove 1.6s ease-in-out infinite;
}

@keyframes mouseWheelMove {
    0% {
        top: 9px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        top: 25px;
        opacity: 1;
    }

    100% {
        top: 29px;
        opacity: 0;
    }
}

.sec1-hero__content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 769px) {
    .sec1 .inner-128 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sec1-hero__actions {
        justify-content: center;
    }
}

.sec1-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 28px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(255, 255, 255, 0.92);
}

.sec1-hero__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7ee8d8;
}

.sec1-hero__badge-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.sec1-hero__title {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #fff;
}

.sec1-hero__title-line {
    display: block;
}

.sec1-hero__title-line--roll {
    min-height: 1.28em;
    text-align: center;
}

.sec1-hero__title-line--fixed {
    margin-top: 8px;
    color: #fff;
}

.sec1-hero__roll {
    display: block;
    position: relative;
    width: 100%;
    min-width: 0;
    height: 1.28em;
    overflow: hidden;
    color: #5fe8d4;
}

.sec1-hero__roll-track {
    display: grid;
    place-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.sec1-hero__roll-item {
    grid-area: 1 / 1;
    display: block;
    position: relative;
    width: max-content;
    max-width: min(100vw - 48px, 860px);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.sec1-hero__roll-item.is-active {
    opacity: 1;
    transform: translateY(0);
}

.sec1-hero__roll-item.is-leaving {
    opacity: 0;
    transform: translateY(-12px);
}

.sec1-hero__desc {
    margin: 28px 0 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
}

.sec1-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 17px;
    margin-top: 50px;
}

.sec1-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 73px;
    padding: 0 34px;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.sec1-hero__btn--primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.sec1-hero__btn--primary:hover {
    background: var(--primary-dark, #0A7361);
    border-color: var(--primary-dark, #0A7361);
    color: #fff;
}

.sec1-hero__btn--glass {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.sec1-hero__btn--glass:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.sec1-hero__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sec1-hero__btn-icon svg {
    display: block;
}

.sec1-hero__btn-kakao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
}

.sec1-hero__btn-kakao img {
    display: block;
    width: 31px;
    height: 31px;
}

@media (max-width: 768px) {
    .sec1 .inner-128 {
        padding-top: 96px;
        padding-bottom: 80px;
    }

    .sec1-hero__content {
        text-align: left;
    }

    .sec1-hero__badge {
        margin-bottom: 20px;
        padding: 9px 14px;
        font-size: 0.8125rem;
    }

    .sec1-hero__title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .sec1-hero__title-line--roll {
        text-align: left;
    }

    .sec1-hero__roll {
        height: auto;
    }

    .sec1-hero__roll-track {
        display: block;
        min-height: 1.28em;
    }

    .sec1-hero__roll-item {
        grid-area: auto;
        position: absolute;
        left: 0;
        top: 0;
        max-width: 100%;
        white-space: normal;
    }

    .sec1-hero__title-line--fixed {
        margin-top: 6px;
    }

    .sec1-hero__desc {
        margin-top: 20px;
        font-size: 0.9375rem;
    }

    .sec1-hero__actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 39px;
    }

    .sec1-hero__btn {
        width: 100%;
    }

    .sec1 .scroll-mouse {
        display: none;
    }
}

.sec-review {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.sec-review .sec-title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sec-review .sec-title h2 > span:first-of-type {
    color: var(--primary);
}

.sec-review-avg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: #111;
}

.sec-review-avg__star {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: currentColor;
    color: #ffb400;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.sec-review-avg strong {
    font-weight: 700;
}

.sec-review .review-marquee {
    margin-top: 40px;
    overflow: hidden;
}

.sec-review .sec-review-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: 40px auto 0;
    padding: 14px 32px;
    border: 1px solid #d5dbe3;
    border-radius: 999px;
    background: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    color: #111;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.sec-review .sec-review-more:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sec-review .sec-review-more__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.sec-review .sec-review-more__icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.sec-review .review-marquee__viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
}

.sec-review .review-marquee__track {
    display: flex;
    width: max-content;
    gap: 24px;
    will-change: transform;
}

.sec-review .review-marquee__group {
    display: flex;
    flex-shrink: 0;
    gap: 24px;
}

@media (prefers-reduced-motion: reduce) {
    .sec-review .review-marquee__track {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        box-sizing: border-box;
        transform: none !important;
        will-change: auto;
    }

    .sec-review .review-marquee__group--clone {
        display: none;
    }

    .sec-review .review-marquee__viewport {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

.sec-review .review-marquee__group .review-card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 360px;
    max-width: calc(100vw - 48px);
    box-sizing: border-box;
    padding: 24px;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow .2s ease, transform .2s ease;
}

.sec-review .review-marquee__group .review-card * {
    cursor: pointer;
}

.sec-review .review-marquee.is-paused .review-marquee__group .review-card:hover,
.sec-review .review-marquee__group .review-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.sec-review .review-marquee__group .review-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.sec-review .review-card__head,
.review-modal__body .review-card__head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sec-review .review-card__thumb {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f5f7;
}

.sec-review .review-card__thumb img,
.review-modal__body .review-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-review .review-card__meta,
.review-modal__body .review-card__meta {
    flex: 1;
    min-width: 0;
}

.sec-review .review-card__rating,
.review-modal__body .review-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sec-review .review-card__stars,
.review-modal__body .review-card__stars {
    display: inline-flex;
    gap: 2px;
}

.sec-review .review-card__stars i,
.review-modal__body .review-card__stars i {
    display: block;
    width: 18px;
    height: 18px;
    background: currentColor;
    color: #ffb400;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.sec-review .review-card__score,
.review-modal__body .review-card__score {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111;
}

.sec-review .review-card__customer,
.review-modal__body .review-card__customer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.45;
    color: #111;
    word-break: keep-all;
}

.sec-review .review-card__customer-name,
.review-modal__body .review-card__customer-name {
    flex: 1;
    min-width: 0;
}

.sec-review .review-card__vehicle,
.review-modal__body .review-card__vehicle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    word-break: keep-all;
}

.sec-review .review-card__vehicle-line {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.review-modal__body .review-card__vehicle-line {
    flex: 1;
    min-width: 0;
}

.sec-review .review-card__avatar,
.review-modal__body .review-card__avatar {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 0;
    border-radius: 50%;
    background: #d9d9d9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 3.6-7 8-7s8 3 8 7'/%3E%3C/svg%3E") center/14px no-repeat;
}

.sec-review .review-marquee__group .review-card__content {
    margin: 20px 0 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #333;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-modal__body .review-card__content {
    margin: 20px 0 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #333;
    word-break: keep-all;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    white-space: normal;
}

.sec-review .review-card__foot,
.review-modal__body .review-card__foot {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.sec-review .review-card__badge,
.review-modal__body .review-card__badge {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 4px;
    background: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

.sec-review .review-card__tag,
.review-modal__body .review-card__tag {
    font-size: 0.9375rem;
    color: #888;
}

.sec-review .review-card__divider {
    flex-shrink: 0;
    width: 1px;
    height: 12px;
    background: #d5d5d5;
}

.review-modal-dim {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    z-index: 9998;
}

.review-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    max-width: calc(100% - 32px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    z-index: 9999;
}

.review-modal__inner {
    position: relative;
    padding: 20px 20px 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.review-modal__body {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.review-modal__top {
    padding: 24px 24px 0;
}

.review-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-modal__close svg {
    display: block;
    width: 20px;
    height: 20px;
    color: #111;
}

.review-modal__body .review-card__thumb.review-modal__thumb {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 240px;
    margin-top: 20px;
    border-radius: 0;
    overflow: hidden;
    background: #f4f5f7;
}

.review-modal-swiper {
    width: 100%;
    height: 100%;
}

.review-modal-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f5f7;
}

.review-modal-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-modal-swiper .swiper-pagination {
    bottom: 6px;
}

.review-modal-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.review-modal-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
}

.review-modal-swiper .swiper-button-prev,
.review-modal-swiper .swiper-button-next {
    width: 28px;
    height: 28px;
    margin-top: -14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-modal-swiper .swiper-button-prev::after,
.review-modal-swiper .swiper-button-next::after {
    content: none;
}

.review-modal-swiper .swiper-button-prev svg,
.review-modal-swiper .swiper-button-next svg {
    display: block;
    width: 18px;
    height: 18px;
    color: #333;
}

.review-modal-swiper.is-single .swiper-pagination,
.review-modal-swiper.is-single .swiper-button-prev,
.review-modal-swiper.is-single .swiper-button-next {
    display: none;
}

.review-modal__body,
.review-modal__body *:not(.review-modal__cta):not(.swiper-button-prev):not(.swiper-button-next) {
    cursor: default;
}

.review-modal-swiper .swiper-button-prev,
.review-modal-swiper .swiper-button-next {
    cursor: pointer;
}

.review-modal__cta {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease;
}

.review-modal__cta:hover {
    background: var(--primary-dark, #0A7361);
    color: #fff;
}

@media (max-width: 768px) {
    .sec-review-avg {
        font-size: 1.5rem;
    }

    .sec-review-avg__star {
        width: 22px;
        height: 22px;
    }

    .sec-review .sec-review-more {
        font-size: 1rem;
    }

    .sec-review .review-marquee__viewport {
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    }

    .sec-review .review-marquee__group .review-card {
        width: 300px;
        padding: 20px;
    }

    .sec-review .review-card__score,
    .review-modal__body .review-card__score,
    .sec-review .review-card__customer,
    .review-modal__body .review-card__customer {
        font-size: 1rem;
    }

    .sec-review .review-card__vehicle,
    .review-modal__body .review-card__vehicle {
        font-size: 0.9375rem;
    }

    .sec-review .review-marquee__group .review-card__content,
    .review-modal__body .review-card__content {
        font-size: 1rem;
    }

    .sec-review .review-card__badge,
    .review-modal__body .review-card__badge {
        font-size: 0.8125rem;
        height: 26px;
    }

    .sec-review .review-card__tag,
    .review-modal__body .review-card__tag {
        font-size: 0.875rem;
    }

    .review-modal__inner {
        padding: 16px 16px 20px;
    }

    .review-modal__body {
        padding: 0;
    }

    .review-modal__top {
        padding: 20px 20px 0;
    }

    .review-modal__body .review-card__thumb.review-modal__thumb {
        height: 200px;
    }
}

.sec2 {
    padding: 100px 0 120px;
}

.sec2 .inner-128 {
    max-width: 1280px;
}

.sec2 .sec-title h2 span {
    color: var(--primary);
}

.sec4 {
    padding: 100px 0;
}

.sec6 {
    padding: 80px 0;
    background: #f1f3f7;
}

.text-banner .banner-box {
    position: relative;
    border-radius: 12px;
    padding: 40px 60px;
    overflow: hidden;
    background: linear-gradient(90deg, #c33636 0%, #5c2121 100%);
    display: flex;
    align-items: center;
    min-height: 160px;
}

/* 우측 원형 느낌 */
.text-banner .banner-box::after {
    content: "";
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

/* 배경 이미지 영역 (네가 background-image 넣으면 됨) */
.text-banner .banner-box {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.text-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.text-banner .sub {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.text-banner .title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
}

.sec4.card-wrap .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}



/* sec2 — 좌측 이미지 + 우측 아코디언 (전체 펼침) */
.sec2 .wrap {
    display: flex;
    align-items: stretch;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    height: var(--sec2-wrap-h, auto);
    box-sizing: border-box;
}

.sec2 .wrap .visual {
    flex: 1 1 50%;
    position: relative;
    min-width: 0;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #e8eeec;
}

.sec2 .wrap .visual img.visual__img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.sec2 .wrap .visual img.visual__img.is-active {
    opacity: 1;
    z-index: 1;
}

.sec2 .wrap .visual .caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: 0;
    padding: 32px 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
    box-sizing: border-box;
}

.sec2 .wrap .visual .caption__sub {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
}

.sec2 .wrap .visual .caption__title {
    display: block;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.sec2 .wrap .accordion {
    flex: 1 1 50%;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    box-sizing: border-box;
}

.sec2 .wrap .acc-item {
    flex: none;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 20px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #f2f4f3;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    transition:
        background-color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.sec2 .wrap .acc-item.active {
    background: #eefaf7;
    border-color: color-mix(in srgb, var(--primary) 45%, #fff);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 18%, transparent);
}

.sec2 .wrap .acc-item .icon {
    flex: 0 0 48px;
    flex-shrink: 0;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    border-radius: 12px;
    background: #fff;
    color: var(--primary);
}

.sec2 .wrap .acc-item .icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.sec2 .wrap .acc-item .acc-body {
    flex: 1;
    min-width: 0;
}

.sec2 .wrap .acc-item .sub {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary);
}

.sec2 .wrap .acc-item strong {
    display: block;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

.sec2 .wrap .acc-item .acc-body p {
    display: block;
    margin: 12px 0 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    font-weight: 400;
    color: #555;
}

@media (max-width: 768px) {
    .sec2 .wrap {
        flex-direction: column;
        gap: 24px;
        min-height: 0;
    }

    .sec2 .wrap .visual {
        width: 100%;
        height: auto;
        min-height: 280px;
    }

    .sec2 .wrap .visual img.visual__img {
        min-height: 280px;
    }

    .sec2 .wrap .accordion {
        height: auto;
        justify-content: flex-start;
        gap: 12px;
    }

    .sec2 .wrap .visual .caption {
        padding: 24px 20px;
    }

    .sec2 .wrap .visual .caption__sub {
        margin-bottom: 8px;
        font-size: 0.875rem;
    }

    .sec2 .wrap .visual .caption__title {
        font-size: 1.75rem;
    }

    .sec2 .wrap .acc-item {
        padding: 18px 20px;
    }

    .sec2 .wrap .acc-item .sub {
        font-size: 0.9375rem;
    }

    .sec2 .wrap .acc-item strong {
        font-size: 1.1875rem;
    }

    .sec2 .wrap .acc-item .acc-body p {
        font-size: 1rem;
    }
}

.sec3 {
    padding: 100px 0;
    background: #f1f3f7;
}

.sec3 .inner-128 {
    max-width: 1280px;
}

.sec3 .sec3-dflx__title {
    text-align: center;
}

/* sec3 — 차별점 카드 4열 */
.sec3 .dflx {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sec3 .sec3-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sec3 .sec3-card__thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.sec3 .sec3-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sec3 .sec3-card__tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sec3 .sec3-card__body {
    padding: 24px 22px 28px;
}

.sec3 .sec3-card__head {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.sec3 .sec3-card__icon {
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.sec3 .sec3-card__icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.sec3 .sec3-card__sub {
    margin: 0;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary);
}

.sec3 .sec3-card__desc {
    margin: 0;
    min-height: calc(1.0625rem * 1.6 * 2);
    font-size: 1.0625rem;
    line-height: 1.6;
    font-weight: 400;
    color: #555;
}

@media (max-width: 1024px) {
    .sec3 .dflx {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .sec3 .dflx {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
    }

    .sec3 .sec3-card__body {
        padding: 20px 18px 24px;
    }

    .sec3 .sec3-card__tag {
        font-size: 0.9375rem;
    }

    .sec3 .sec3-card__sub {
        font-size: 1.1875rem;
    }

    .sec3 .sec3-card__desc {
        min-height: 0;
        font-size: 1rem;
    }
}

.sec6 .inner {
    max-width: 1440px;
    margin: 0 auto;
}

.sec6 .faq-list {
    max-width: 960px;
    margin: 40px auto 0px;
    word-break: keep-all;
}

.sec6 .faq-list .boxwrap.is-faq-hidden {
    display: none;
}

.sec6 .sec6-faq-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px auto 0;
    padding: 14px 32px;
    border: 1px solid #d5dbe3;
    border-radius: 999px;
    background: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    color: #111;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.sec6 .sec6-faq-more:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sec6 .sec6-faq-more__count {
    margin-left: 2px;
    color: var(--primary);
    font-weight: 700;
}

.sec6 .sec6-faq-more__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.sec6 .sec6-faq-more__icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.sec6 .faq-list .boxwrap {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    padding: 0 40px;
    margin-bottom: 20px;
}

.sec6 .faq-list .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    cursor: pointer;
}

.sec6 .faq-list .question .mark {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
}

.sec6 .faq-list .question .tit {
    box-sizing: border-box;
    width: calc(100% - 50px - 30px);
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    margin-left: 24px;
}

.sec6 .faq-list .question .arr {
    width: 30px;
    height: 30px;
    text-align: center;
}

.sec6 .faq-list .question .arr:after {
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    margin: 12px 0 0 0;
    border-right: 3px solid #222;
    border-bottom: 3px solid #222;
    transform: rotate(45deg);
    transition: all 0.4s;
}

.sec6 .faq-list .question.active .arr:after {
    transform: rotate(225deg) translate(-6px, -6px);
}

.sec6 .faq-list .answer {
    display: none;
    padding: 25px 0;
    border-top: 1px solid #ddd;
}

.sec6 .faq-list .answer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec6 .faq-list .answer > div .mark {
    width: 50px;
    height: 50px;
    background: #505255;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 50px;
}

.sec6 .faq-list .answer > div .txt {
    box-sizing: border-box;
    width: calc(100% - 30px);
    font-size: 17px;
    color: #666;
    text-align: left;
    line-height: 180%;
    margin-left: 24px;
}

.sec6 .faq-list .answer > div p {
    font-size: 17px;
    color: #666;
    text-align: left;
    line-height: 180%;
}

.sec6 .faq-list .answer > div a {
    box-sizing: border-box;
    font-size: 17px;
    color: #666;
    padding: 8px 95px 0 0;
    text-align: left;
    line-height: 180%;
}

.sec6 .faq-list .answer > div a > p {
    width: auto;
    padding: 0;
}

@media (max-width:768px) {
    .sec6 .sec6-faq-more {
        width: 100%;
        max-width: 320px;
        padding: 13px 24px;
        font-size: 0.9375rem;
    }

    .sec6 .faq-list .boxwrap {
        padding: 0 20px;
    }

    .sec6 .faq-list .question,
    .sec6 .faq-list .answer {
        padding: 16px 0;
    }

    .sec6 .faq-list .answer > div .mark,
    .sec6 .faq-list .question .mark {
        width: 32px;
        height: 32px;
        font-size: 15px;
        line-height: 32px;
    }

    .sec6 .faq-list .question .tit {
        width: calc(100% - 32px - 20px);
        min-width: 0;
        margin-left: 12px;
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sec6 .faq-list .question .arr {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
    }

    .sec6 .faq-list .question .arr:after {
        width: 8px;
        height: 8px;
        margin: 0;
        border-right-width: 2px;
        border-bottom-width: 2px;
    }

    .sec6 .faq-list .question.active .arr:after {
        transform: rotate(225deg) translate(-2px, -2px);
    }

    .sec6 .faq-list .answer > div .txt,
    .sec6 .faq-list .answer > div p,
    .sec6 .faq-list .answer > div a {
        font-size: 14px;
        margin-left: 12px;
    }
}

@media (max-width: 768px) {
    .sec2,
    .sec3,
    .sec-review,
    .sec6 {
        padding: 50px 0;
    }
}