@charset "UTF-8";

.hero {
    position: relative;
    width: 100%;
    height: 980px;
    background: linear-gradient(72deg, #D8C3A8 0%, #F2750E 29%, #E01902 51.4%, #980800 75.3%, #200703 100.54%), #D9D9D9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-text-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.bg-text-line {
    display: flex;
    white-space: nowrap;
    /* 투명도를 0.1에서 0.25로 상향 조정 */
    opacity: 0.25; 
    /* 배경색과 자연스럽게 겹치도록 블렌딩 모드 추가 */
    mix-blend-mode: soft-light; 
}

.bg-text-line .track {
    display: flex;
    flex-wrap: nowrap;
}

.bg-text-line img {
    height: 220px;
    width: auto;
    object-fit: contain;
}

.line-first {
    margin-bottom: -40px; 
    padding-right: 350px; 
}

.line-first .track {
    animation: marqueeLeft 40s linear infinite;
}

.line-second {
    padding-left: 350px; 
}

.line-second .track {
    animation: marqueeRight 40s linear infinite;
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-item {
    width: 490.421px;
    height: 491.722px;
    margin: 100px 0;
}

.main-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-description {
    width: 790px;
    margin: 0 auto;
    color: #FFCDBD;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.5px;
}

@media (max-width: 1024px) {
    .hero {
        height: 800px;
    }
    .main-item {
        width: 350px;
        height: auto;
    }
    .hero-description {
        width: 90%;
        font-size: 18px;
    }
    .bg-text-line img {
        height: 150px;
    }
}

@media (max-width: 735px) {
    .hero {
        height: 600px;
    }
    .main-item {
        width: 250px;
    }
    .hero-description {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* --- 섹션 공통 레이아웃 --- */
.main-why {
    padding: 160px 0; /* 시안의 여백미를 위해 상하 패딩 확대 */
    background: #FFF;
    width: 100%;
}

.main-why .inner {
    display: flex;
    max-width: 1720px; /* 1920px 기준 좌우 여백 각 100px 확보 */
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
}

/* --- 왼쪽 타이틀 영역 --- */
.title-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    top: 150px;
}

.category {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category .dot {
    width: 8px;
    height: 8px;
    background-color: #FF5D27;
    border-radius: 50%;
}

.category .cat-txt {
    color: #FF5D27;
    font-family: "Pretendard", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.45px;
}

.main-title {
    color: #1E1E1E;
    font-family: "Pretendard", sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.85px;
    white-space: nowrap;
}

/* --- 오른쪽 콘텐츠 영역 --- */
.content-area {
    width: 950px; /* 요청하신 오른쪽 영역 고정 너비 */
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 30px; /* 행간 48px, 열간 30px */
}

.why-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-card .img-box {
    display: flex;
    width: 460px;
    height: 260px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #F0F1F4;
    overflow: hidden;
}

.why-card .img-box img {
    height: 200px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover .img-box img {
    transform: scale(1.15);
}

.why-card .txt-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-card h3 {
    color: #323232;
    font-family: "Pretendard", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.5px;
}

.why-card p {
    color: #767676;
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.35px;
    word-break: keep-all;
}

/* --- 반응형 레이아웃 --- */
@media (max-width: 1720px) {
    .main-why .inner {
        width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 1280px) {
    .main-why .inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
    }
    
    .title-area {
        position: static;
    }
    
    .content-area {
        width: 100%;
    }
}

@media (max-width: 735px) {
    .main-why {
        padding: 80px 0;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-card .img-box {
        width: 100%;
        height: 200px;
        padding: 30px;
    }
    
    .main-title {
        font-size: 28px;
        line-height: 38px;
    }
}

.main-performance {
    padding: 160px 0;
    background: #FFF;
}

.main-performance .inner {
    display: flex;
    max-width: 1720px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
}

/* 아코디언 영역 */
.accordion-area {
    width: 950px;
}

.acc-item {
    border-bottom: 1px solid #E5E5EC;
}

.acc-header {
    display: flex;
    padding: 36px 0;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.acc-item.active .acc-header {
    padding-bottom: 20px; /* 열린 상태 사이 간격 */
}

/* 텍스트 스타일 */
.acc-header .num {
    width: 104px;
    color: #767676;
    font-size: 18px;
    letter-spacing: -0.45px;
}

.acc-header .sub-tit {
    width: 240px;
    color: #323232;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.acc-header .main-tit {
    color: #1E1E1E;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

/* 아코디언 바디 (상세 내용) */
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding-left: 344px; /* num(104px) + sub-tit(240px) */
}

.acc-item.active .acc-body {
    max-height: 200px;
    padding-bottom: 36px;
}

.acc-body p {
    color: #767676;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.4px;
    word-break: keep-all;
}

/* 아코디언 아이콘 (+, -) */
.acc-btn {
    margin-left: auto;
    width: 18px;
    height: 18px;
    position: relative;
}

.acc-btn::before,
.acc-btn::after {
    content: '';
    position: absolute;
    background: #888;
    transition: all 0.3s ease;
}

/* 가로선 (-) */
.acc-btn::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 세로선 (열기 전 + 형태 유지용) */
.acc-btn::after {
    width: 2px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.acc-item.active .acc-btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0; /* 열리면 세로선 숨겨서 - 형태가 됨 */
}

@media (max-width: 1280px) {
    .main-performance .inner { flex-direction: column; gap: 40px; }
    .accordion-area { width: 100%; }
    .acc-body { padding-left: 0; }
    .acc-header .num { width: 50px; }
    .acc-header .sub-tit { width: 150px; }
}

@charset "UTF-8";

/* --- [Section 4] Template System --- */
.main-template {
    width: 100%;
    background: #F8F8F8;
    padding: 160px 0;
    overflow: hidden;
}

.template-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.template-header {
    text-align: center;
    max-width: 1239px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
}

.template-header .sub-tit {
    color: #FF5D27;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.45px;
}

.template-header .display-title {
    color: #1E1E1E;
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -1.2px;
}

.template-header .desc {
    color: #767676;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.45px;
}

/* 필터 */
.category-filter {
    display: flex;
    padding: 4px;
    background: #ECEFF4;
    border-radius: 4px;
}

.cat-btn {
    width: 118px;
    padding: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #999;
    border-radius: 4px;
    transition: all 0.3s;
}

.cat-btn.active {
    background: #FFF;
    color: #1E1E1E;
    box-shadow: 2px 2px 2px 0 rgba(35, 35, 43, 0.12);
}

/* 슬라이더 카드 */
.slider-wrap {
    width: 100%;
    padding: 0 40px;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-out;
}

.template-card {
    flex-shrink: 0;
    width: 500px;
    height: 620px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(75px);
    -webkit-backdrop-filter: blur(75px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.card-inner {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.port-img {
    width: 420px;
    height: 484px;
    border-radius: 12px;
    overflow: hidden;
    background: #FFF;
}

.port-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 18px;
    font-weight: 500;
}

.price-tag {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(20px);
    border-radius: 4px;
    color: #FFF;
    font-size: 16px;
}

/* 슬라이더 컨트롤러 영역 */
.slider-ctrl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-ctrl button {
    display: flex;
    width: 52px;
    height: 52px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 8px; /* var(--border3, 8px) */
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

/* 왼쪽 버튼: 연한 그레이 배경 */
.prev-btn {
    background: #F0F1F4; /* var(--Bg-color-bg-color-300) */
}

.prev-btn svg path {
    stroke: #888888;
    transition: stroke 0.3s ease;
}

/* 오른쪽 버튼: 어두운 배경 (포인트) */
.next-btn {
    background: #1E1E1E;
}

.next-btn svg path {
    stroke: #FFFFFF;
    transition: stroke 0.3s ease;
}

/* 호버 효과 */
.slider-ctrl button:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.prev-btn:active, .next-btn:active {
    transform: translateY(0);
}

/* --- [Responsive] --- */

@media (max-width: 735px) {
    .main-template { padding: 80px 0; }
    
    .template-header .display-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .template-header .desc {
        font-size: 16px;
        line-height: 24px;
    }

    /* 슬라이더 카드 사이즈 축소 및 배치 */
    .template-card {
        width: 320px;
        height: 420px;
    }
    
    .card-inner { width: 280px; gap: 12px; }
    
    .port-img {
        width: 280px;
        height: 320px;
    }
    
    .category-filter {
        width: calc(100% - 40px);
        overflow-x: auto;
    }
    
    .cat-btn { width: 25%; min-width: 80px; font-size: 14px; }
}

@media (max-width: 400px) {
    /* Scale Down 지침 적용: 폰트 및 패딩 10~15% 축소 */
    .template-header .display-title {
        font-size: 28px;
    }
    
    .template-card {
        width: 280px;
        height: 380px;
    }
    
    .card-inner { width: 240px; }
    
    .port-img {
        width: 240px;
        height: 280px;
    }

    .brand span { font-size: 15px; }
    .price-tag { font-size: 13px; padding: 6px 12px; }
}

.main-signature {
    width: 100%;
    padding: 160px 0;
    background: #FFF;
    overflow: hidden;
}

.signature-inner {
    display: flex;
    width: 100%;
    max-width: 1840px; /* 타이틀을 더 왼쪽으로 밀기 위해 너비 확장 */
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 0 40px; /* 실제 화면 끝과의 최소 간격 */
}

.signature-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.signature-header .title-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signature-header .sub-tit {
    color: #FF5D27;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.45px;
}

.signature-header .main-title {
    color: #1E1E1E;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.85px;
    white-space: nowrap;
}

.signature-header .header-desc {
    width: 780px;
    color: #999;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.4px;
    word-break: keep-all;
}

.sig-slider-wrap {
    width: 100vw;
    /* 슬라이더가 타이틀 시작점(inner의 왼쪽 패딩)과 일치하도록 마진 조정 */
    margin-left: -40px; 
}

.sig-slider-track {
    display: flex;
    gap: 30px;
    padding-left: 40px; /* 타이틀과 시작 라인 일치 */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.sig-card {
    flex-shrink: 0;
    width: 670px;
    height: 400px;
    padding: 24px;
    border-radius: 16px;
    background: #F0F1F4 center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
}

.dot-white {
    width: 6px;
    height: 6px;
    background: #FFF;
    border-radius: 50%;
}

.price-tag {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 4px;
    color: #FFF;
    font-size: 16px;
}

.sig-ctrl {
    display: flex;
    gap: 12px;
}

.sig-ctrl button {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sig-prev { background: #F0F1F4; }
.sig-next { background: #1E1E1E; }

@media (max-width: 1024px) {
    .signature-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .signature-header .header-desc { width: 100%; }
    .sig-card { width: 85vw; height: 300px; }
}
@charset "UTF-8";

.main-contact {
    width: 100%;
    background: #FFF;
    padding: 100px 0 160px;
    display: flex; /* 섹션 자체를 플렉스 컨테이너로 */
    justify-content: center;
}

.contact-inner {
    display: flex; /* inline-flex에서 flex로 변경 */
    width: 100%;
    max-width: 1650px; /* 전체 콘텐츠 폭 고정 */
    justify-content: center; /* 내부 요소들 중앙 정렬 */
    align-items: center;
    gap: 30px;
}

.contact-column {
    display: flex;
    width: 530px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    border-right: 1px solid #E5E5EC;
    padding-right: 30px; /* 보더와 우측 텍스트 사이 간격 확보 */
    box-sizing: border-box;
}

.contact-column.last {
    border-right: none;
    padding-right: 0;
}

.contact-column .txt-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-column .contact-title {
    color: #1E1E1E;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.5px;
}

.contact-column .contact-desc {
    color: #767676;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.35px;
}

.contact-column .link-box {
    display: flex;
    padding: 14px;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: #F0F1F4;
    text-decoration: none;
}

.contact-column .link-txt {
    color: #767676;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.4px;
}

@media (max-width: 1650px) {
    .contact-inner {
        padding: 0 40px;
        gap: 20px;
    }
    .contact-column {
        width: 33.33%;
    }
}

@media (max-width: 1024px) {
    .contact-inner {
        flex-direction: column;
    }
    .contact-column {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E5E5EC;
        padding-bottom: 40px;
        padding-right: 0;
    }
    .contact-column.last {
        border-bottom: none;
    }
}

.main-benefit {
    width: 100%;
    background: #FFF;
    padding: 100px 0;
}

.benefit-inner {
    display: flex;
    width: 1650px;
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-item {
    display: flex;
    padding: 60px 0;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-top: 1px solid #E5E5EC;
}

/* 좌측 텍스트 영역 */
.benefit-item .txt-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 600px;
}

.benefit-item .badge {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #FBEAE7;
    color: #FF5D27;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.35px;
}

.benefit-item .benefit-title {
    color: #323232;
    font-size: 34px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.85px;
}

.benefit-item .benefit-desc {
    color: #767676;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.4px;
    word-break: keep-all;
}

/* 우측 이미지 영역 */
.benefit-item .img-side {
    position: relative;
    width: 760px;
    height: 420px;
    border-radius: 20px;
    background: #F0F1F4;
    overflow: hidden;
}

.benefit-item .mockup-box {
    position: absolute;
    width: 545px;
    height: 290px;
    right: 108px;
    top: 65px; /* 시안 밸런스에 맞춰 조정 */
}

.benefit-item .main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 그림자 효과로 입체감 부여 */
    filter: drop-shadow(0px 20px 40px rgba(0,0,0,0.1));
}

/* 반응형 처리 */
@media (max-width: 1700px) {
    .benefit-inner {
        width: 100%;
        padding: 0 40px;
    }
    .benefit-item .img-side {
        width: 50%;
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .benefit-item {
        flex-direction: column;
        gap: 40px;
    }
    .benefit-item .txt-side, 
    .benefit-item .img-side {
        width: 100%;
    }
}