@charset "UTF-8";

/* ==================== */
/* Hero Section         */
/* ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/uploads/2026/02/visual_bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 90px 0;
}

.hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: calc(100% - 280px);
    margin: 0 auto;
}

.hero-title {
    line-height: 1;
}

.hero-title img {
    width: auto;
}

.hero-tagline {
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* ==================== */
/* Who We Are Section   */
/* ==================== */
.who-we-are {
    padding: 120px 0;
    background: var(--white);
}

.who-we-are .section-label {
    margin-bottom: 25px;
}

.who-we-are-content {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.who-we-are-left {
	width: 60%;
    padding: 20px 20px 78px 0;
}

.section-label {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.who-we-are-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 94px;
}

.who-we-are-title strong {
    font-weight: 700;
}

.btn-learn-more {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 208px;
    height: 88px;
    border: 1px solid var(--text-tertiary);
    border-radius: 4px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.btn-learn-more:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.who-we-are-right {
    flex: 1;
    border-left: 1px solid var(--gray-200);
    padding: 20px;
    display: flex;
}

.who-we-are-desc {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==================== */
/* Service Section      */
/* ==================== */
.service {
    padding: 0 0 100px 0;
    background: var(--white);
}

.service-content {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.service-left {
    flex: 1;
    position: relative;
    min-height: 850px;
}

.service-left .service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-image-layer.active {
    opacity: 1;
}

.service-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-right .section-label {
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
}

.service-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.service-item-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.service-item:hover .service-item-title {
    color: var(--primary);
}

.service-item-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover .service-item-content {
    margin-top: 16px;
    max-height: 100px;
}

.service-item-desc {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-item-link {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
}

.service-item:hover .service-item-link {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== */
/* Cross Border Section */
/* ==================== */
.cross-border {
    padding: 0;
    background: var(--white);
}

.cross-border-inner {
    background: var(--primary);
    border-radius: 280px 0 0 0px;
    padding: 140px 0;
}

.cross-border-content {
    display: flex;
    align-items: flex-start;
    max-width: calc(100% - 280px);
    margin: 0 auto;
}

.cross-border-left {
    flex: 1;
}

.cross-border .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.cross-border-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 90px;
}

.cross-border-title strong {
    font-weight: 700;
}

.cross-border-icon {
    width: 288px;
}

.cross-border-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	mix-blend-mode: lighten;
}

.cross-border-right {
    flex: 1;
}

.value-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.value-item:last-child {
    border-bottom: none;
}

.value-label {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.value-text {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

/* ==================== */
/* Goal Setting Section */
/* ==================== */
.goal-setting {
    position: relative;
}

.goal-setting.fixed .goal-setting-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.goal-setting.end .goal-setting-block {
    position: absolute;
    bottom: 0;
    top: auto;
}

.goal-setting-block {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 배경 이미지 영역 */
.goal-setting-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.goal-bg-items {
    position: relative;
    width: 100%;
    height: 100%;
}

.goal-bg-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.goal-bg-item.active {
    opacity: 1;
}

.goal-bg-item.prev {
    opacity: 0;
}

.goal-bg-item.next {
    opacity: 0;
}

/* 각 스텝별 배경 이미지 */
.goal-bg-item[data-index="0"] {
    background-image: url('/wp-content/uploads/2026/02/goal-bg01.jpg');
}
.goal-bg-item[data-index="1"] {
    background-image: url('/wp-content/uploads/2026/02/goal-bg02.jpg');
}
.goal-bg-item[data-index="2"] {
    background-image: url('/wp-content/uploads/2026/02/goal-bg03.jpg');
}

/* 콘텐츠 영역 */
.goal-setting-contents {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.goal-contents-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px 120px;
}

.goal-step {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 80px;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.goal-step.active {
    opacity: 1;
    visibility: visible;
}

.goal-step .section-label {
    color: var(--text-tertiary);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.goal-step-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.goal-step-desc {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
}

/* 페이지네이션 */
.goal-pagination {
    position: absolute;
    transform: translateY(200px);
    width: 60px;
    height: 50px;
}

.goal-current {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

.goal-slash {
    position: absolute;
    top: 28px;
    left: 21px;
    width: 25px;
    height: 1px;
    background-color: var(--primary);
    transform: rotate(-45deg);
}

.goal-total {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-tertiary);
}

/* 프로그레스 바 (숨김 처리, 페이지네이션으로 대체) */
.goal-progress {
    display: none;
}

/* ==================== */
/* Partnership Section  */
/* ==================== */
.partnership {
    padding: 150px 0 150px;
    background: var(--white);
}

.partnership-inner {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
}

.partnership .section-label {
	font-size: 18px;
    margin-bottom: 5px;
}

.partnership-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    min-height: 100px;
}

.partner-item img {
    object-fit: contain;
    transition: all var(--transition-normal);
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==================== */
/* Community Section    */
/* ==================== */
.community {
    padding: 120px 0;
    background: var(--white);
}

.community-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
}

.community-header-left {
    flex: 1;
}

.community .section-label {
    font-size: 18px;
    margin-bottom: 16px;
}

.community-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
}

.btn-learn-more-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
    transition: all var(--transition-normal);
}

.btn-learn-more-arrow:hover {
    color: var(--primary);
}

.btn-learn-more-arrow span {
    transition: transform var(--transition-normal);
}

.btn-learn-more-arrow:hover span {
    transform: translateX(4px);
}

/* Community Content Layout */
.community-content {
    display: flex;
    gap: 40px;
}

/* 왼쪽 메인 카드 (800x550 이미지 + 텍스트) */
.community-main {
    width: 800px;
    flex-shrink: 0;
}

.community-main-image {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.community-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-main-info {
    padding: 0;
    margin-top: 24px;
}

.community-main-desc {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
}

/* 오른쪽 리스트 (550 높이를 3등분) */
.community-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 550px;
}

.community-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.community-item-image {
    flex-shrink: 0;
    width: 320px;
    height: 170px;
    overflow: hidden;
}

.community-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-item-info {
    flex: 1;
    padding-top: 4px;
}

.community-item-desc {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    margin-top: 12px;
}

/* 공통 태그 스타일 */
.community-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #957E62;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    background: transparent;
    color: #957E62;
}

/* ==================== */
/* Responsive           */
/* ==================== */
@media (max-width: 1200px) {
    .hero-title img {
        max-height: 80px;
    }

    .who-we-are-title {
        font-size: 28px;
    }

    .cross-border-title {
        font-size: 32px;
    }

    .cross-border-icon {
        width: 220px;
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 48px 40px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        max-width: 100%;
        padding: 0 30px;
    }

    .hero-title img {
        max-height: 60px;
    }

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

    .who-we-are {
        padding: 80px 0;
    }

    .who-we-are-content {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }

    .who-we-are-left {
        width: 100%;
        padding: 20px 0 40px;
        border-bottom: 1px solid var(--gray-200);
    }

    .who-we-are-title {
        margin-bottom: 40px;
    }

    .who-we-are-right {
        width: 100%;
        padding: 40px 0 20px;
        border-left: none;
    }

    .btn-learn-more {
        width: 180px;
        height: 70px;
        font-size: 18px;
    }

    .service-content {
        flex-direction: column;
    }

    .service-left {
        min-height: 400px;
    }

    .service-right {
        padding: 60px 24px;
    }

    .cross-border-inner {
        padding: 80px 40px;
        border-radius: 80px 0 0 0;
    }

    .cross-border-content {
        flex-direction: column;
        gap: 48px;
        max-width: 100%;
        padding: 0;
    }

    .cross-border-icon {
        width: 180px;
    }

    .value-item {
        padding: 30px 0;
    }

    .value-text {
        font-size: 28px;
    }

    /* Goal Setting 태블릿 */
    .goal-setting-bg {
        width: 100%;
        height: 40vh;
    }

    .goal-setting-contents {
        width: 100%;
        height: 60vh;
        top: 40vh;
        border-left: none;
        border-top: 1px solid var(--gray-200);
    }

    .goal-contents-inner {
        padding: 60px 40px 100px;
    }

    .goal-step {
        padding: 0 40px;
    }

    .goal-step-title {
        font-size: 32px;
    }

    .goal-pagination {
        left: 40px;
        bottom: 40px;
        transform: none;
    }

    .partnership {
        padding: 80px 0;
    }

    .partnership-inner {
        padding: 60px 40px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community {
        padding: 80px 0;
    }

    .community-content {
        flex-direction: column;
        height: auto;
        gap: 48px;
    }

    .community-main {
        width: 100%;
    }

    .community-main-image {
        height: 400px;
    }

    .community-list {
        height: auto;
        gap: 24px;
    }

    .community-item-image {
        width: 180px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .hero-inner {
        padding: 0 20px;
        gap: 20px;
    }

    .hero-title img {
        max-height: 40px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .who-we-are {
        padding: 60px 0;
    }

    .who-we-are-left {
        padding: 16px 0 32px;
    }

    .who-we-are-title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .who-we-are-right {
        padding: 32px 0 16px;
    }

    .who-we-are-desc {
        font-size: 14px;
    }

    .btn-learn-more {
        width: 150px;
        height: 56px;
        font-size: 16px;
    }

    .section-label {
        font-size: 16px;
    }

    .service-left {
        min-height: 300px;
    }

    .service-right {
        padding: 48px 20px;
    }

    .service-item-title {
        font-size: 20px;
    }

    .service-item-desc {
        font-size: 14px;
    }

    .service-item-link {
        font-size: 14px;
    }

    /* 모바일에서는 항상 콘텐츠 표시 */
    .service-item .service-item-content {
        margin-top: 12px;
        max-height: 150px;
    }

    .service-item .service-item-link {
        opacity: 1;
        transform: translateX(0);
    }

    .cross-border-inner {
        padding: 60px 24px;
        border-radius: 60px 0 0 0;
    }

    .cross-border-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .cross-border-icon {
        width: 140px;
    }

    .value-item {
        padding: 20px 0;
    }

    .value-label {
        font-size: 16px;
    }

    .value-text {
        font-size: 20px;
    }

    /* Goal Setting 모바일 */
    .goal-setting-bg {
        height: 35vh;
    }

    .goal-setting-contents {
        height: 65vh;
        top: 35vh;
    }

    .goal-contents-inner {
        padding: 48px 24px 80px;
    }

    .goal-step {
        padding: 0 24px;
    }

    .goal-step .section-label {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .goal-step-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .goal-step-desc {
        font-size: 14px;
    }

    .goal-pagination {
        left: 24px;
        bottom: 32px;
        width: 90px;
        height: 60px;
        transform: none;
    }

    .goal-current {
        font-size: 36px;
    }

    .goal-slash {
        top: 34px;
        left: 44px;
        width: 18px;
    }

    .goal-total {
        font-size: 24px;
    }

    .partnership {
        padding: 60px 0;
    }

    .partnership-inner {
        padding: 48px 24px;
        border-radius: var(--radius-md);
    }

    .partnership-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .partner-item {
        padding: 24px 20px;
        min-height: 80px;
    }

    .partner-item img {
        max-width: 120px;
        max-height: 36px;
    }

    .community {
        padding: 60px 0;
    }

    .community-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .community-title {
        font-size: 28px;
    }

    .community-content {
        flex-direction: column;
        gap: 32px;
    }

    .community-item {
        flex-direction: column;
        gap: 16px;
    }

    .community-item-image {
        width: 100%;
        height: 180px;
    }

    .community-item-desc {
        font-size: 14px;
    }

    .community-main-desc {
        font-size: 14px;
    }
}
